/* ===== SOBRE PAGE STYLES ===== */

/* Regra global para títulos */
h2, .section-title {
    color: #FFFFFF !important;
    color: white !important;
    font-weight: 700 !important;
}

/* Regra mais específica para garantir */
section h2,
section .section-title,
.section-header h2,
.section-header .section-title {
    font-size: 2 rem;
    color: #FFFFFF !important;
    margin-bottom: 1rem;
    font-weight: 700;
    text-align: center;
    letter-spacing: 1px;
    text-shadow: none !important;
    background: none !important;
    -webkit-text-fill-color: #FFFFFF !important;
    background-clip: unset !important;
}

/* Regras extremamente específicas para vencer conflitos */
.sobre-hero h2,
.historia-section h2,
.valores-section h2,
.regiao-section h2,
.localizacao-section h2,
.metodologia-section h2,
.modalidades-section h2,
.cta-section h2,
.sobre-hero .section-title,
.historia-section .section-title,
.valores-section .section-title,
.regiao-section .section-title,
.localizacao-section .section-title,
.metodologia-section .section-title,
.modalidades-section .section-title,
.cta-section .section-title {
    color: #FFFFFF !important;
    color: white !important;
    font-weight: 700 !important;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 1rem;
    position: relative;
    letter-spacing: 0.5px;
}

.title-underline {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), #00D4FF);
    margin: 0 auto;
    border-radius: 2px;
}

/* ===== HERO SECTION ===== */
.sobre-hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%2300B2FF" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%2300B2FF" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="%2300B2FF" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="%2300B2FF" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(10, 25, 47, 0.8), rgba(17, 34, 64, 0.8));
}

.floating-music-notes {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-music-notes i {
    position: absolute;
    color: var(--accent-color);
    opacity: 0.3;
    animation: float 6s ease-in-out infinite;
}

.note-1 {
    top: 20%;
    left: 10%;
    font-size: 2rem;
    animation-delay: 0s;
}

.note-2 {
    top: 60%;
    right: 15%;
    font-size: 1.5rem;
    animation-delay: 2s;
}

.note-3 {
    bottom: 30%;
    left: 20%;
    font-size: 1.8rem;
    animation-delay: 4s;
}

.note-4 {
    top: 40%;
    right: 30%;
    font-size: 1.2rem;
    animation-delay: 1s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.hero-content {
    text-align: center;
    z-index: 2;
    position: relative;
    max-width: 800px;
    padding: 0 2rem;
}

.hero-title {
    margin-bottom: 2rem;
}

.title-line {
    display: block;
    font-size: 4rem;
    font-weight: 800;
    color: var(--text-color);
    margin-bottom: 0.5rem;
    animation: slideInUp 1s ease-out;
}

.title-line:last-child {
    animation-delay: 0.3s;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--accent-color);
    margin-bottom: 3rem;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.6s forwards;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: var(--accent-color);
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* ===== HISTÓRIA SECTION ===== */
.historia-section {
    padding: 6rem 0;
    background: var(--secondary-color);
}

.historia-section .section-title {
    color: #FFFFFF !important;
    color: white !important;
    font-weight: 700;
}

.historia-section h2 {
    color: #FFFFFF !important;
    color: white !important;
}

.historia-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.quote-container {
    position: relative;
    margin-bottom: 3rem;
}

.quote-mark {
    position: absolute;
    font-size: 4rem;
    color: var(--accent-color);
    opacity: 0.3;
    font-family: serif;
}

.quote-mark:first-child {
    top: -1rem;
    left: -1rem;
}

.quote-mark:last-child {
    bottom: -2rem;
    right: -1rem;
}

.historia-descricao {
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--text-color);
    padding: 2rem;
    background: rgba(0, 178, 255, 0.05);
    border-left: 4px solid var(--accent-color);
    border-radius: 0 8px 8px 0;
}

.historia-detalhes {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.detalhe-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(0, 178, 255, 0.1);
    border-radius: 8px;
    transition: var(--transition);
}

.detalhe-item:hover {
    background: rgba(0, 178, 255, 0.15);
    transform: translateX(10px);
}

.detalhe-icon {
    width: 50px;
    height: 50px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.detalhe-info h4 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.detalhe-info p {
    color: var(--text-color);
    font-size: 0.9rem;
}

/* Timeline */
.timeline {
    position: relative;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--accent-color);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 2rem;
    width: 45%;
}

.timeline-item:nth-child(odd) {
    left: 0;
    text-align: right;
}

.timeline-item:nth-child(even) {
    left: 55%;
    text-align: left;
}

.timeline-dot {
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--accent-color);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    box-shadow: 0 0 0 4px var(--secondary-color);
}

.timeline-item:nth-child(odd) .timeline-dot {
    right: -60px;
}

.timeline-item:nth-child(even) .timeline-dot {
    left: -60px;
}

.timeline-content {
    padding: 1rem;
    background: rgba(0, 178, 255, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(0, 178, 255, 0.2);
}

.timeline-content h4 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: var(--text-color);
    font-size: 0.9rem;
}

/* ===== VALORES SECTION ===== */
.valores-section {
    padding: 6rem 0;
    background: var(--primary-color);
}

.valores-section .section-title {
    color: #FFFFFF !important;
    color: white !important;
    font-weight: 700;
}

.valores-section h2 {
    color: #FFFFFF !important;
    color: white !important;
}

.valores-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.valor-card {
    background: var(--secondary-color);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(0, 178, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.valor-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 178, 255, 0.1), transparent);
    transition: left 0.5s;
}

.valor-card:hover::before {
    left: 100%;
}

.valor-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 178, 255, 0.2);
    border-color: var(--accent-color);
}

.valor-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-color), #00D4FF);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--primary-color);
}

.valor-card h3 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.valor-card p {
    color: var(--text-color);
    line-height: 1.6;
}

/* ===== LOCALIZAÇÃO SECTION ===== */
.localizacao-section {
    padding: 6rem 0;
    background: var(--secondary-color);
}

.localizacao-section .section-title {
    color: #FFFFFF !important;
    color: white !important;
    font-weight: 700;
}

.localizacao-section h2 {
    color: #FFFFFF !important;
    color: white !important;
}

.localizacao-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.localizacao-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.endereco-card {
    background: var(--primary-color);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(0, 178, 255, 0.2);
}

.endereco-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.endereco-header i {
    font-size: 1.5rem;
    color: var(--accent-color);
}

.endereco-header h3 {
    color: var(--accent-color);
}

.endereco-texto {
    color: var(--text-color);
    line-height: 1.8;
    font-size: 1.1rem;
}

.acesso-info h4,
.horario-info h4 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.acesso-lista {
    list-style: none;
    padding: 0;
}

.acesso-lista li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.acesso-lista i {
    color: var(--accent-color);
    width: 20px;
}

.horario-info p {
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.mapa-placeholder {
    background: var(--primary-color);
    height: 400px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 2px dashed var(--accent-color);
    cursor: pointer;
    transition: var(--transition);
}

.mapa-placeholder:hover {
    background: rgba(0, 178, 255, 0.1);
    border-color: #00D4FF;
}

.mapa-placeholder i {
    font-size: 4rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.mapa-placeholder p {
    color: var(--accent-color);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.mapa-placeholder small {
    color: var(--text-color);
    opacity: 0.7;
}

/* ===== METODOLOGIA SECTION ===== */
.metodologia-section {
    padding: 6rem 0;
    background: var(--primary-color);
}

.metodologia-section .section-title {
    color: #FFFFFF !important;
    color: white !important;
    font-weight: 700;
}

.metodologia-section h2 {
    color: #FFFFFF !important;
    color: white !important;
}

.metodologia-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.metodologia-text h3 {
    color: var(--accent-color);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.metodologia-text p {
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.metodologia-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.feature-item i {
    color: var(--accent-color);
    font-size: 1.2rem;
}

.feature-item span {
    color: var(--text-color);
}

.metodologia-steps {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.step {
    background: var(--secondary-color);
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(0, 178, 255, 0.2);
    transition: var(--transition);
}

.step:hover {
    transform: translateY(-5px);
    border-color: var(--accent-color);
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--primary-color);
    font-weight: bold;
}

.step h4 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.step p {
    color: var(--text-color);
    font-size: 0.9rem;
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    text-align: center;
}

.cta-section .section-title {
    color: #FFFFFF !important;
    color: white !important;
    font-weight: 700;
}

.cta-section h2 {
    color: #FFFFFF !important;
    color: white !important;
}

.cta-content h2 {
    color: var(--accent-color);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    color: var(--text-color);
    font-size: 1.2rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: 2px solid transparent;
}

.cta-button.primary {
    background: var(--accent-color);
    color: var(--primary-color);
}

.cta-button.primary:hover {
    background: #00D4FF;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 178, 255, 0.3);
}

.cta-button.secondary {
    background: transparent;
    color: var(--accent-color);
    border-color: var(--accent-color);
}

.cta-button.secondary:hover {
    background: var(--accent-color);
    color: var(--primary-color);
    transform: translateY(-3px);
}

/* ===== REGIÃO DE ATENDIMENTO SECTION ===== */
.regiao-section {
    padding: 6rem 0;
    background: var(--primary-color);
}

.regiao-section .section-title {
    color: #FFFFFF !important;
    color: white !important;
    font-weight: 700;
}

.regiao-section h2 {
    color: #FFFFFF !important;
    color: white !important;
}

.regiao-content {
    text-align: center;
}

.regiao-text {
    margin-bottom: 3rem;
}

.regiao-text h3 {
    color: var(--accent-color);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.regiao-text p {
    color: var(--text-color);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.cidades-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.cidade-card {
    background: var(--secondary-color);
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(0, 178, 255, 0.1);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.cidade-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 178, 255, 0.1), transparent);
    transition: left 0.5s;
}

.cidade-card:hover::before {
    left: 100%;
}

.cidade-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-color);
    box-shadow: 0 10px 25px rgba(0, 178, 255, 0.2);
}

.cidade-card i {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.cidade-card h4 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.cidade-card p {
    color: var(--text-color);
    font-size: 0.9rem;
    opacity: 0.8;
}

/* ===== MODALIDADES SECTION ===== */
.modalidades-section {
    padding: 6rem 0;
    background: var(--secondary-color);
}

.modalidades-section .section-title {
    color: #FFFFFF !important;
    color: white !important;
    font-weight: 700;
}

.modalidades-section h2 {
    color: #FFFFFF !important;
    color: white !important;
}

.modalidades-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.modalidade-card {
    background: var(--primary-color);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid rgba(0, 178, 255, 0.2);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.modalidade-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 178, 255, 0.05), transparent);
    transition: left 0.5s;
}

.modalidade-card:hover::before {
    left: 100%;
}

.modalidade-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-color);
    box-shadow: 0 15px 35px rgba(0, 178, 255, 0.15);
}

.modalidade-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-color), #00D4FF);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--primary-color);
}

.modalidade-card h3 {
    color: var(--accent-color);
    text-align: center;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.modalidade-card p {
    color: var(--text-color);
    text-align: center;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.modalidade-beneficios {
    list-style: none;
    padding: 0;
}

.modalidade-beneficios li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.8rem;
    color: var(--text-color);
}

.modalidade-beneficios i {
    color: var(--accent-color);
    font-size: 1rem;
    width: 20px;
}

/* ===== RESPONSIVIDADE ATUALIZADA ===== */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    .title-line {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .historia-content,
    .localizacao-content,
    .metodologia-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .valores-grid {
        grid-template-columns: 1fr;
    }
    
    .metodologia-steps {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-item {
        width: 100%;
        left: 0 !important;
        text-align: left !important;
        padding-left: 50px;
    }
    
    .timeline-item:nth-child(odd) .timeline-dot,
    .timeline-item:nth-child(even) .timeline-dot {
        left: 10px;
        right: auto;
    }
    
    .cidades-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1rem;
    }
    
    .modalidades-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .modalidade-card {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 2rem;
    }
    
    .title-line {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .historia-descricao {
        font-size: 1.1rem;
        padding: 1.5rem;
    }
    
    .valor-card,
    .endereco-card,
    .step,
    .cidade-card,
    .modalidade-card {
        padding: 1.5rem;
    }
    
    .cidades-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }
    
    .cidade-card {
        padding: 1rem;
    }
    
    .cidade-card h4 {
        font-size: 1rem;
    }
    
    .cidade-card p {
        font-size: 0.8rem;
    }
}

/* ===== ANIMAÇÕES DE ENTRADA ATUALIZADAS ===== */
.historia-section,
.regiao-section,
.valores-section,
.localizacao-section,
.metodologia-section,
.modalidades-section,
.cta-section {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease-out forwards;
}

.regiao-section {
    animation-delay: 0.1s;
}

.valores-section {
    animation-delay: 0.3s;
}

.localizacao-section {
    animation-delay: 0.5s;
}

.metodologia-section {
    animation-delay: 0.7s;
}

.modalidades-section {
    animation-delay: 0.9s;
}

.cta-section {
    animation-delay: 1.1s;
}

/* ===== HOVER EFFECTS ATUALIZADOS ===== */
.valor-card:hover .valor-icon {
    transform: scale(1.1) rotate(5deg);
}

.endereco-card:hover {
    border-color: var(--accent-color);
    transform: translateY(-5px);
}

.step:hover .step-number {
    transform: scale(1.1);
}

.cidade-card:hover i {
    transform: scale(1.1);
}

.modalidade-card:hover .modalidade-icon {
    transform: scale(1.05);
}

/* ===== FOCUS STATES ATUALIZADOS ===== */
.cta-button:focus,
.valor-card:focus,
.step:focus,
.cidade-card:focus,
.modalidade-card:focus {
    outline: 2px solid var(--accent-color);
    outline-offset: 2px;
}

/* ===== SCROLL SMOOTH ===== */
html {
    scroll-behavior: smooth;
}

/* ===== LOADING STATES ===== */
.loading {
    opacity: 0.6;
    pointer-events: none;
} 

/* ===== FOOTER STYLES ===== */
.footer {
    background: var(--primary-color);
    color: var(--text-color);
    padding: 3rem 0 1rem;
    margin-top: 0;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--primary-color);
    z-index: -1;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 3rem;
    align-items: start;
}

.footer-info h3 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.footer-info p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
}

.contact-info i {
    color: var(--accent-color);
    width: 20px;
}

.footer-social h4 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--secondary-color);
    color: var(--accent-color);
    border-radius: 50%;
    text-decoration: none;
    transition: var(--transition);
    border: 1px solid rgba(0, 178, 255, 0.2);
}

.social-link:hover {
    background: var(--accent-color);
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 178, 255, 0.3);
}

.footer-credits {
    grid-column: 1 / -1;
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 178, 255, 0.2);
    margin-top: 2rem;
}

.footer-credits p {
    color: var(--text-color);
    font-size: 0.9rem;
    opacity: 0.8;
}

.footer-credits a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.footer-credits a:hover {
    color: #00D4FF;
    text-decoration: underline;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1000;
}

.whatsapp-float a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.5rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.whatsapp-float a:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
    }
    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.6);
    }
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
    }
}

/* ===== RESPONSIVIDADE DO FOOTER ===== */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-info {
        order: 1;
    }
    
    .footer-social {
        order: 2;
        justify-self: center;
    }
    
    .footer-credits {
        order: 3;
    }
    
    .contact-info p {
        justify-content: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .whatsapp-float {
        bottom: 1rem;
        right: 1rem;
    }
    
    .whatsapp-float a {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 2rem 0 1rem;
    }
    
    .footer-content {
        padding: 0 1rem;
        gap: 1.5rem;
    }
    
    .footer-info h3 {
        font-size: 1.3rem;
    }
    
    .contact-info p {
        font-size: 0.8rem;
    }
    
    .social-link {
        width: 35px;
        height: 35px;
    }
    
    .whatsapp-float {
        bottom: 0.8rem;
        right: 0.8rem;
    }
    
    .whatsapp-float a {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
}

/* ===== CORREÇÃO GLOBAL PARA ELIMINAR CANTOS BRANCOS ===== */
* {
    box-sizing: border-box;
}

html {
    background: var(--primary-color) !important;
    background-color: var(--primary-color) !important;
    overflow-x: hidden;
    width: 100%;
}

body {
    background: var(--primary-color) !important;
    background-color: var(--primary-color) !important;
    min-height: 100vh;
    width: 100vw;
    max-width: 100vw;
    overflow-x: hidden;
    margin: 0 !important;
    padding: 0 !important;
}

main {
    background: var(--primary-color) !important;
    background-color: var(--primary-color) !important;
    width: 100%;
    overflow-x: hidden;
}

/* Garantir que todas as seções tenham fundo consistente */
section {
    background: var(--primary-color) !important;
    background-color: var(--primary-color) !important;
    width: 100%;
    overflow-x: hidden;
}

.historia-section,
.localizacao-section,
.modalidades-section {
    background: var(--secondary-color) !important;
    background-color: var(--secondary-color) !important;
}

/* Corrigir overflow horizontal */
.container {
    max-width: 100%;
    overflow-x: hidden;
    width: 100%;
}

/* Garantir que o footer ocupe toda a largura */
.footer {
    margin-left: 0 !important;
    margin-right: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100vw !important;
    max-width: 100vw !important;
    position: relative !important;
    background: var(--primary-color) !important;
    background-color: var(--primary-color) !important;
    overflow: hidden;
}

/* Sobrescrever completamente o footer do main.css */
.footer,
.footer * {
    box-sizing: border-box;
}

/* Corrigir espaçamento entre seções */
.cta-section {
    margin-bottom: 0 !important;
    padding-bottom: 6rem !important;
}

/* Garantir que não haja margens ou paddings indesejados */
section:last-child {
    margin-bottom: 0 !important;
}

/* Corrigir qualquer elemento que possa estar causando espaços */
.wrapper,
.page-wrapper,
.content-wrapper {
    background: var(--primary-color) !important;
    background-color: var(--primary-color) !important;
    width: 100%;
    overflow-x: hidden;
} 