/* =========================================
   1. VARIÁVEIS E RESET
   ========================================= */
:root {
    /* Paleta de Cores */
    --bg-body: #FAF7F2;
    --bg-hero: #F9E6D0;
    --text-color: #1A3C40;
    --text-dark: #022C22;
    --primary-btn: #013A34;
    --primary-btn-hover: #025043;
    --nav-hover: #4A7C59;

    /* Fontes */
    --font-primary: 'Bricolage Grotesque', sans-serif;

    /* Medidas */
    --header-height: 80px;
    --container-max: 1400px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    font-family: var(--font-primary);
    background-color: var(--bg-body);
    color: var(--text-color);
    font-weight: 400;
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

img {
    display: block;
    max-width: 100%;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 20px;
}

/* =========================================
   2. ANIMAÇÕES
   ========================================= */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes scrollLogos {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.fade-in {
    animation: fadeIn 1s ease-out;
}

.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.scroll-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* =========================================
   3. HEADER (Cabeçalho Fixo)
   ========================================= */
#main-header {
    width: 100%;
    height: var(--header-height);
    display: flex;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    background-color: var(--bg-body);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    transition: box-shadow 0.3s ease;
}

#main-header.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo a {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    color: var(--text-dark);
    transition: transform 0.3s ease;
}

.logo a:hover {
    transform: scale(1.05);
}

.nav-left,
.nav-right {
    flex: 1;
    display: flex;
}

.nav-left {
    justify-content: flex-start;
}

.nav-right {
    justify-content: flex-end;
}

.nav-list {
    display: flex;
    gap: 32px;
}

.nav-list a {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-color);
    position: relative;
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--nav-hover);
    transition: width 0.3s ease;
}

.nav-list a:hover::after {
    width: 100%;
}

.nav-list a:hover {
    color: var(--nav-hover);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.mobile-menu-btn:hover {
    transform: scale(1.1);
}

.bar {
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-nav {
    display: none;
}

/* =========================================
   4. HERO SECTION
   ========================================= */
.hero-section {
    padding-top: calc(var(--header-height) + 20px);
    padding-bottom: 60px;
    display: flex;
    justify-content: center;
    width: 100%;
}

.hero-section .container {
    max-width: unset;
    width: 100%;
    padding: 0 20px;
}

.hero-card {
    width: 90%;
    margin: 0 auto;
    background-color: var(--bg-hero);
    border-radius: 70px;
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: transform 0.3s ease;
}

.hero-content {
    max-width: 800px;
    z-index: 2;
    position: relative;
    margin: 0 auto;
}

.hero-title {
    font-family: var(--font-primary);
    font-size: 4rem;
    line-height: 1.1;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 24px;
    letter-spacing: -0.04em;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-color);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 500;
}

.btn-primary {
    display: inline-block;
    background-color: var(--primary-btn);
    color: #ffffff;
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: var(--primary-btn-hover);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(1, 58, 52, 0.2);
}

.hero-img-wrapper {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 350px;
    z-index: 1;
    display: flex;
    align-items: center;
    pointer-events: none;
}

.hero-img-wrapper.left {
    left: 0;
    justify-content: flex-start;
    animation: slideInLeft 1s ease-out;
}

.hero-img-wrapper.right {
    right: 0;
    justify-content: flex-end;
    animation: slideInRight 1s ease-out;
}

.hero-img {
    max-width: 100%;
    height: 100%;
    object-fit: contain;
}

/* =========================================
   5. SEÇÃO SOBRE
   ========================================= */
.about-section {
    padding: 100px 0;
    background-color: var(--bg-body);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.overline {
    display: block;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-color);
    margin-bottom: 16px;
    font-weight: 600;
    opacity: 0.8;
}

.section-title {
    font-family: var(--font-primary);
    font-size: 3rem;
    line-height: 1.1;
    color: var(--text-dark);
    margin-bottom: 24px;
    font-weight: 700;
}

.highlight-text {
    color: var(--nav-hover);
}

.section-text {
    font-size: 1.125rem;
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 32px;
    max-width: 480px;
}

.about-card-wrapper {
    display: flex;
    justify-content: flex-end;
}

.about-card {
    background-color: #00373E;
    border-radius: 60px;
    padding: 60px;
    width: 100%;
    max-width: 550px;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 40px rgba(0, 55, 62, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-card:hover {
    transform: translateY(-10px) rotate(2deg);
    box-shadow: 0 30px 60px rgba(0, 55, 62, 0.25);
}

.about-img {
    width: 100%;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.about-card:hover .about-img {
    transform: scale(1.05);
}

/* =========================================
   6. SEÇÃO SERVIÇOS
   ========================================= */
.services-section {
    padding: 100px 0;
    background-color: var(--bg-body);
}

.section-header.centered {
    text-align: center;
    margin-bottom: 60px;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.service-card {
    border-radius: 50px;
    padding: 60px;
    position: relative;
    overflow: hidden;
    min-height: 450px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.card-beige {
    background-color: #F9E6D0;
}

.card-white {
    background-color: #FFFFFF;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.card-title {
    font-family: var(--font-primary);
    font-size: 2rem;
    line-height: 1.1;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-weight: 700;
}

.card-text {
    font-size: 1.125rem;
    color: var(--text-color);
    margin-bottom: 32px;
    max-width: 300px;
}

.btn-outline {
    display: inline-block;
    padding: 14px 32px;
    border: 1px solid var(--text-dark);
    border-radius: 50px;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background-color: var(--text-dark);
    color: #ffffff;
    transform: translateX(5px);
}

.card-illustration {
    position: absolute;
    bottom: 40px;
    right: 50px;
    width: 250px;
    height: auto;
    pointer-events: none;
    transition: transform 0.3s ease;
}

.service-card:hover .card-illustration {
    transform: scale(1.1) rotate(5deg);
}

/* =========================================
   7. BANNER COACHING
   ========================================= */
.coaching-banner {
    background-color: #FFFFFF;
    border-radius: 50px;
    padding: 80px 60px;
    width: 85%;
    max-width: 1400px;
    margin: 60px auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
}

.coaching-banner:hover {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    transform: translateY(-5px);
}

.coaching-content {
    flex: 1;
    z-index: 2;
    padding-right: 50px;
}

.coaching-banner .card-title {
    font-size: 3.5rem;
    white-space: nowrap;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.coaching-banner .card-text {
    font-size: 1.35rem;
    line-height: 1.6;
    max-width: 100%;
    margin-bottom: 30px;
}

.coaching-img-container {
    flex: 0 0 450px;
    display: flex;
    justify-content: flex-end;
}

.coaching-img {
    width: 100%;
    height: auto;
    object-fit: contain;
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

.coaching-banner:hover .coaching-img {
    transform: scale(1.15);
}

/* =========================================
   8. SEÇÃO DEPOIMENTOS
   ========================================= */
.testimonials-section {
    padding: 100px 0;
    background-color: var(--bg-body);
    overflow: hidden;
}

.testimonials-wrapper {
    display: flex;
    gap: 60px;
    align-items: center;
}

.testimonials-header {
    flex: 0 0 400px;
    max-width: 100%;
}

.slider-controls {
    display: flex;
    gap: 16px;
    margin-top: 40px;
}

.slider-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.slider-btn.prev {
    background-color: transparent;
    border: 1px solid var(--text-dark);
    color: var(--text-dark);
}

.slider-btn.prev:hover {
    background-color: rgba(0, 0, 0, 0.05);
    transform: translateX(-3px);
}

.slider-btn.next {
    background-color: var(--text-dark);
    color: #ffffff;
}

.slider-btn.next:hover {
    background-color: var(--primary-btn-hover);
    transform: translateX(3px);
}

.testimonials-slider-container {
    flex: 1;
    overflow: hidden;
    mask-image: linear-gradient(to right, black 85%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, black 85%, transparent 100%);
}

.testimonials-track {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding-bottom: 20px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.testimonials-track::-webkit-scrollbar {
    display: none;
}

.testimonial-card {
    flex: 0 0 400px;
    padding: 60px;
    border-radius: 50px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 400px;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.testimonial-quote {
    font-size: 1.25rem;
    line-height: 1.5;
    font-weight: 500;
    margin-bottom: 30px;
}

.testimonial-author {
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.testimonial-card.card-beige {
    background-color: #F9E6D0;
    color: var(--text-dark);
}

.testimonial-card.card-dark {
    background-color: #013A34;
    color: #ffffff;
}

/* =========================================
   9. SEÇÃO PARCEIROS
   ========================================= */
.partners-section {
    padding: 60px 0 100px 0;
    background-color: var(--bg-body);
}

.partners-bar {
    background-color: #FFFFFF;
    border-radius: 100px;
    padding: 40px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    overflow: hidden;
}

.partners-label {
    font-family: var(--font-primary);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-btn);
    white-space: nowrap;
    z-index: 2;
    background-color: #fff;
    padding-right: 20px;
}

.partners-mask {
    flex: 1;
    overflow: hidden;
    position: relative;
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.partners-track {
    display: flex;
    align-items: center;
    gap: 60px;
    width: max-content;
    animation: scrollLogos 30s linear infinite;
}

.partners-track:hover {
    animation-play-state: paused;
}

.partner-img {
    height: 30px;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.7);
    transition: filter 0.3s ease;
}

.partner-img:hover {
    filter: grayscale(0%) opacity(1);
}

/* =========================================
   10. SEÇÃO RECURSOS
   ========================================= */
.resources-section {
    padding: 50px 0 100px 0;
    background-color: var(--bg-body);
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.resource-card {
    background-color: #FFFFFF;
    border-radius: 50px;
    padding: 60px 40px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    min-height: 400px;
    transition: all 0.3s ease;
}

.resource-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.resource-title {
    font-family: var(--font-primary);
    font-size: 1.75rem;
    line-height: 1.2;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-weight: 700;
}

.resource-text {
    font-size: 1.05rem;
    color: var(--text-color);
    margin-bottom: 40px;
    line-height: 1.6;
}

.btn-resource {
    display: inline-block;
    padding: 14px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    color: #FFFFFF;
    transition: all 0.2s ease;
}

.btn-resource:hover {
    transform: translateY(-2px);
    opacity: 0.9;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.btn-yellow {
    background-color: #ECC62F;
}

.btn-teal {
    background-color: #54C6B1;
}

.btn-pink {
    background-color: #F198AA;
}

/* =========================================
   11. SEÇÃO COMUNIDADE
   ========================================= */
.community-section {
    padding: 100px 0;
    background-color: var(--bg-body);
}

.community-card {
    background-color: #FFFFFF;
    border-radius: 50px;
    padding: 80px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    overflow: hidden;
    transition: all 0.3s ease;
}

.community-card:hover {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    transform: translateY(-5px);
}

.community-content {
    flex: 1;
    max-width: 700px;
    z-index: 2;
}

.community-img-wrapper {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.community-img {
    max-width: 100%;
    height: auto;
    max-height: 500px;
    transform: scale(1.15);
    transform-origin: center right;
    transition: transform 0.3s ease;
}

.community-card:hover .community-img {
    transform: scale(1.2);
}

/* =========================================
   12. SEÇÃO FAQ
   ========================================= */
.faq-section {
    padding: 100px 0;
    background-color: var(--bg-body);
}

.faq-grid {
    display: grid;
    grid-template-columns: 40% 55%;
    gap: 5%;
    align-items: flex-start;
}

.faq-left {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
}

.faq-header-content {
    margin-bottom: 40px;
}

.faq-header-content .section-title {
    font-size: 3.5rem;
    margin-bottom: 24px;
}

.faq-header-content .section-text {
    font-size: 1.25rem;
}

.faq-img-card {
    background-color: #F9E6D0;
    border-radius: 50px;
    height: 320px;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 150px;
    position: relative;
    transition: transform 0.3s ease;
}

.faq-img-card:hover {
    transform: translateY(-5px);
}

.faq-img {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    height: 140%;
    max-height: none;
    object-fit: contain;
    z-index: 1;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.faq-item {
    background-color: #FFFFFF;
    border-radius: 40px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.faq-item.active {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 46px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: rgba(0, 0, 0, 0.02);
}

.faq-question h3 {
    font-family: var(--font-primary);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
    padding-right: 20px;
}

.faq-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    color: var(--nav-hover);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0 50px;
}

.faq-answer p {
    padding-bottom: 35px;
    color: var(--text-color);
    line-height: 1.6;
    font-size: 1rem;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.faq-item.active .faq-answer p {
    opacity: 1;
    transform: translateY(0);
}

/* =========================================
   13. SEÇÃO CONTATO
   ========================================= */
.contact-section {
    padding: 80px 0 120px 0;
    background-color: var(--bg-body);
}

.contact-main-card {
    background-color: #FFFFFF;
    border-radius: 50px;
    padding: 80px 60px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
    width: 100%;
    transition: box-shadow 0.3s ease;
}

.contact-main-card:hover {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-subtitle {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 30px;
}

.contact-item {
    margin-bottom: 24px;
}

.contact-label {
    display: block;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.contact-link,
.contact-address {
    font-size: 1.1rem;
    color: var(--text-color);
    line-height: 1.5;
}

.contact-link {
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: var(--nav-hover);
    text-decoration: underline;
}

.social-icons {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.social-link:hover {
    color: var(--nav-hover);
    transform: translateY(-3px);
}

.contact-form-wrapper {
    background-color: #FFF9F4;
    border-radius: 40px;
    padding: 50px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-color);
    margin-left: 10px;
}

.form-input {
    width: 100%;
    padding: 16px 24px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 30px;
    background-color: #FFFFFF;
    font-family: inherit;
    font-size: 1rem;
    color: var(--text-dark);
    outline: none;
    transition: border-color 0.3s ease;
}

.form-input:focus {
    border-color: var(--nav-hover);
}

.form-textarea {
    border-radius: 20px;
    min-height: 140px;
    resize: vertical;
}

.w-100 {
    width: 100%;
    margin-top: 10px;
}

/* =========================================
14. FOOTER
========================================= */
.footer-section {
    padding: 0 0 100px 0;
    background-color: var(--bg-body);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: stretch;
}

.footer-nav-card {
    background-color: #FFFFFF;
    border-radius: 50px;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 500px;
}

.footer-logo a {
    font-family: var(--font-primary);
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 40px;
    display: inline-block;
}

.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 60px;
}

.footer-links li {
    margin-bottom: 16px;
}

.footer-links a {
    font-size: 1rem;
    color: var(--text-color);
    font-weight: 500;
}

.footer-links a:hover {
    color: var(--nav-hover);
    text-decoration: underline;
}

.copyright {
    font-size: 0.9rem;
    color: #999;
    margin-top: auto;
}

.footer-cta-card {
    background-color: #013A34;
    border-radius: 50px;
    padding: 80px 60px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.footer-cta-img {
    position: absolute;
    top: 0;
    right: 0;
    width: 250px;
    height: auto;
    object-fit: contain;
}

.footer-cta-content {
    position: relative;
    z-index: 2;
}

.footer-cta-title {
    font-family: var(--font-primary);
    font-size: 3rem;
    line-height: 1.1;
    color: #FFFFFF;
    margin-bottom: 40px;
    font-weight: 700;
}

.btn-white {
    display: inline-block;
    background-color: #FFFFFF;
    color: #013A34;
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: transform 0.2s ease, background-color 0.3s ease;
}

.btn-white:hover {
    background-color: #f0f0f0;
    transform: translateY(-3px);
}
/* =========================================
   RESPONSIVIDADE COMPLETA
   ========================================= */

/* TABLETS GRANDES (992px - 1200px) */
@media (max-width: 1200px) {
    :root {
        --container-max: 1100px;
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .coaching-banner .card-title {
        font-size: 3rem;
    }

    .footer-cta-title {
        font-size: 2.5rem;
    }
}

/* TABLETS (768px - 992px) */
@media (max-width: 992px) {
    :root {
        --header-height: 70px;
    }

    /* Header Mobile */
    .desktop-only {
        display: none !important;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .header-container {
        padding: 0 15px;
    }

    .logo a {
        font-size: 1.75rem;
    }

    .mobile-nav {
        display: block;
        position: fixed;
        top: var(--header-height);
        left: 0;
        width: 100%;
        height: 0;
        background-color: var(--bg-body);
        overflow: hidden;
        transition: height 0.3s ease;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
        z-index: 999;
    }

    .mobile-nav.active {
        height: auto;
        padding-bottom: 20px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .mobile-nav-list {
        padding: 20px;
        display: flex;
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .mobile-nav-list a {
        font-size: 1.25rem;
        font-weight: 700;
        color: var(--text-dark);
        display: block;
        padding: 10px;
        transition: color 0.3s ease;
    }

    .mobile-nav-list a:hover {
        color: var(--nav-hover);
    }

    /* Hero */
    .hero-section {
        padding-top: calc(var(--header-height) + 20px);
        padding-bottom: 40px;
    }

    .hero-card {
        width: 95%;
        border-radius: 50px;
        padding: 60px 30px;
        min-height: 600px;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.125rem;
    }

    .hero-img-wrapper {
        width: 200px;
    }

    /* About */
    .about-grid {
        gap: 50px;
    }

    .about-card {
        max-width: 100%;
    }

    /* Services */
    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        padding: 50px 40px;
        min-height: 400px;
    }

    .card-illustration {
        width: 200px;
        bottom: 30px;
        right: 30px;
    }

    /* Coaching */
    .coaching-banner {
        flex-direction: column;
        padding: 60px 40px;
        width: 90%;
    }

    .coaching-content {
        padding-right: 0;
        text-align: center;
    }

    .coaching-banner .card-title {
        font-size: 2.5rem;
        white-space: normal;
    }

    .coaching-banner .card-text {
        font-size: 1.125rem;
    }

    .coaching-img-container {
        flex: 0 0 auto;
        margin-top: 30px;
    }

    .coaching-img {
        max-width: 350px;
        margin: 0 auto;
    }

    /* Testimonials */
    .testimonials-wrapper {
        flex-direction: column;
        gap: 40px;
    }

    .testimonials-header {
        flex: 1;
        max-width: 100%;
        text-align: center;
    }

    .slider-controls {
        justify-content: center;
    }

    /* Partners */
    .partners-bar {
        flex-direction: column;
        border-radius: 40px;
        padding: 40px;
        gap: 20px;
    }

    .partners-label {
        padding-right: 0;
        margin-bottom: 10px;
    }

    .partners-mask {
        width: 100%;
    }

    /* Resources */
    .resources-grid {
        grid-template-columns: 1fr;
    }

    /* Community */
    .community-card {
        flex-direction: column;
        padding: 60px 40px;
        text-align: center;
    }

    .community-content {
        max-width: 100%;
    }

    .community-img-wrapper {
        margin-top: 30px;
        justify-content: center;
    }

    .community-img {
        max-height: 400px;
        transform: scale(1);
    }

    /* FAQ */
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .faq-img-card {
        width: 100%;
        margin-top: 50px;
        height: 280px;
    }

    .faq-img {
        height: 130%;
    }

    /* Contact */
    .contact-main-card {
        padding: 50px 30px;
        border-radius: 40px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .contact-info {
        text-align: center;
        align-items: center;
        order: 2;
    }

    .contact-form-wrapper {
        padding: 30px;
        order: 1;
    }

    .social-icons {
        justify-content: center;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-nav-card {
        padding: 50px 30px;
        min-height: auto;
    }

    .footer-links-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .footer-logo {
        text-align: center;
    }

    .copyright {
        text-align: center;
        margin-top: 40px;
    }

    .footer-cta-card {
        padding: 60px 30px;
        min-height: 400px;
    }

    .footer-cta-title {
        font-size: 2.2rem;
    }

    .footer-cta-img {
        width: 180px;
        opacity: 0.5;
    }
}

/* MOBILE GRANDE (576px - 768px) */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    /* Hero */
    .hero-card {
        width: 100%;
        border-radius: 40px;
        padding: 50px 20px;
        min-height: 550px;
    }

    .hero-title {
        font-size: 2.75rem;
        line-height: 1.1;
    }

    .hero-subtitle {
        font-size: 1.05rem;
    }

    .btn-primary {
        padding: 16px 36px;
        font-size: 1rem;
    }

    .hero-img-wrapper {
        width: 140px;
        opacity: 0.4;
    }

    /* Sections */
    .about-section,
    .services-section,
    .testimonials-section,
    .resources-section,
    .community-section,
    .faq-section {
        padding: 70px 0;
    }

    .contact-section {
        padding: 60px 0 80px 0;
    }

    .section-title {
        font-size: 2.25rem;
    }

    .section-text {
        font-size: 1.05rem;
    }

    /* About */
    .about-grid {
        gap: 40px;
    }

    .about-card {
        padding: 50px;
        border-radius: 50px;
    }

    /* Services */
    .service-card {
        padding: 40px 30px;
        border-radius: 40px;
    }

    .card-title {
        font-size: 1.75rem;
    }

    .card-text {
        font-size: 1.05rem;
    }

    .card-illustration {
        width: 180px;
        bottom: 20px;
        right: 20px;
    }

    /* Coaching */
    .coaching-banner {
        margin: 40px auto;
        padding: 50px 30px;
    }

    .coaching-banner .card-title {
        font-size: 2.25rem;
    }

    .coaching-banner .card-text {
        font-size: 1.05rem;
    }

    /* Testimonials */
    .testimonial-card {
        flex: 0 0 350px;
        padding: 50px 40px;
        min-height: 380px;
    }

    .testimonial-quote {
        font-size: 1.125rem;
    }

    /* Resources */
    .resource-card {
        padding: 50px 30px;
        min-height: 380px;
        border-radius: 40px;
    }

    .resource-title {
        font-size: 1.5rem;
    }

    /* FAQ */
    .faq-header-content .section-title {
        font-size: 2.75rem;
    }

    .faq-question {
        padding: 36px 40px;
    }

    .faq-question h3 {
        font-size: 1.05rem;
    }

    .faq-answer {
        padding: 0 40px;
    }

    /* Footer */
    .footer-nav-card,
    .footer-cta-card {
        border-radius: 40px;
    }

    .footer-cta-title {
        font-size: 2rem;
    }

    /* Animações Mobile */
    .scroll-reveal {
        transition: opacity 0.4s ease-out, transform 0.4s ease-out;
    }

    .service-card:hover,
    .testimonial-card:hover,
    .resource-card:hover {
        transform: translateY(-5px);
    }

    .about-card:hover {
        transform: translateY(-5px) rotate(1deg);
    }
}

/* MOBILE MÉDIO (480px - 576px) */
@media (max-width: 576px) {
    /* Hero */
    .hero-card {
        padding: 40px 20px;
        min-height: 500px;
        border-radius: 35px;
    }

    .hero-title {
        font-size: 2.25rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .btn-primary {
        padding: 14px 32px;
        font-size: 0.95rem;
    }

    .hero-img-wrapper {
        width: 120px;
    }

    /* Sections */
    .about-section,
    .services-section,
    .testimonials-section,
    .resources-section,
    .community-section,
    .faq-section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-text {
        font-size: 1rem;
    }

    .overline {
        font-size: 0.8rem;
    }

    /* About */
    .about-card {
        padding: 40px;
        border-radius: 40px;
    }

    /* Services */
    .service-card {
        padding: 35px 25px;
        border-radius: 35px;
        min-height: 360px;
    }

    .card-title {
        font-size: 1.6rem;
        margin-bottom: 16px;
    }

    .card-text {
        font-size: 1rem;
        margin-bottom: 24px;
    }

    .btn-outline {
        padding: 12px 28px;
        font-size: 0.95rem;
    }

    .card-illustration {
        width: 160px;
    }

    /* Coaching */
    .coaching-banner {
        padding: 40px 25px;
        border-radius: 35px;
    }

    .coaching-banner .card-title {
        font-size: 2rem;
        margin-bottom: 20px;
    }

    .coaching-banner .card-text {
        font-size: 1rem;
        margin-bottom: 20px;
    }

    .coaching-img {
        max-width: 280px;
    }

    /* Testimonials */
    .testimonial-card {
        flex: 0 0 320px;
        padding: 40px 30px;
        min-height: 360px;
        border-radius: 40px;
    }

    .testimonial-quote {
        font-size: 1.05rem;
    }

    .testimonial-author {
        font-size: 0.9rem;
    }

    /* Partners */
    .partners-bar {
        padding: 30px 25px;
        border-radius: 35px;
    }

    .partners-label {
        font-size: 1.1rem;
    }

    .partner-img {
        height: 24px;
    }

    /* Resources */
    .resource-card {
        padding: 40px 25px;
        min-height: 360px;
        border-radius: 35px;
    }

    .resource-title {
        font-size: 1.4rem;
    }

    .resource-text {
        font-size: 1rem;
    }

    .btn-resource {
        padding: 12px 36px;
        font-size: 0.95rem;
    }

    /* Community */
    .community-card {
        padding: 50px 30px;
        border-radius: 35px;
    }

    .community-img {
        max-height: 320px;
    }

    /* FAQ */
    .faq-header-content .section-title {
        font-size: 2.25rem;
    }

    .faq-img-card {
        height: 240px;
        margin-top: 40px;
        border-radius: 35px;
    }

    .faq-question {
        padding: 30px 30px;
    }

    .faq-question h3 {
        font-size: 1rem;
    }

    .faq-answer {
        padding: 0 30px;
    }

    .faq-answer p {
        font-size: 0.95rem;
    }

    /* Contact */
    .contact-main-card {
        padding: 40px 25px;
        border-radius: 35px;
    }

    .contact-subtitle {
        font-size: 1.3rem;
        margin-bottom: 24px;
    }

    .contact-label {
        font-size: 0.9rem;
    }

    .contact-link,
    .contact-address {
        font-size: 1rem;
    }

    .contact-form-wrapper {
        padding: 25px;
        border-radius: 30px;
    }

    .form-label {
        font-size: 0.9rem;
    }

    .form-input {
        padding: 14px 20px;
        font-size: 0.95rem;
    }

    /* Footer */
    .footer-section {
        padding: 0 0 80px 0;
    }

    .footer-nav-card,
    .footer-cta-card {
        padding: 50px 25px;
        border-radius: 35px;
    }

    .footer-logo a {
        font-size: 1.75rem;
    }

    .footer-links a {
        font-size: 0.95rem;
    }

    .footer-cta-title {
        font-size: 1.85rem;
    }

    .footer-cta-img {
        width: 150px;
    }

    .btn-white {
        padding: 16px 36px;
        font-size: 1rem;
    }
}

/* MOBILE PEQUENO (até 480px) */
@media (max-width: 480px) {
    /* Hero */
    .hero-card {
        padding: 35px 15px;
        min-height: 450px;
        border-radius: 30px;
    }

    .hero-title {
        font-size: 2rem;
        margin-bottom: 16px;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 24px;
    }

    .btn-primary {
        padding: 12px 28px;
        font-size: 0.9rem;
    }

    .hero-img-wrapper {
        width: 100px;
        opacity: 0.3;
    }

    /* Sections */
    .about-section,
    .services-section,
    .testimonials-section,
    .resources-section,
    .community-section,
    .faq-section {
        padding: 50px 0;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .section-text {
        font-size: 0.95rem;
    }

    /* About */
    .about-card {
        padding: 35px 25px;
        border-radius: 35px;
    }

    /* Services */
    .service-card {
        padding: 30px 20px;
        border-radius: 30px;
        min-height: 340px;
    }

    .card-title {
        font-size: 1.5rem;
    }

    .card-illustration {
        width: 140px;
        bottom: 15px;
        right: 15px;
    }

    /* Coaching */
    .coaching-banner {
        width: 95%;
        padding: 35px 20px;
        border-radius: 30px;
    }

    .coaching-banner .card-title {
        font-size: 1.75rem;
    }

    .coaching-img {
        max-width: 250px;
    }

    /* Testimonials */
    .testimonial-card {
        flex: 0 0 290px;
        padding: 35px 25px;
        min-height: 340px;
        border-radius: 35px;
    }

    .testimonial-quote {
        font-size: 1rem;
    }

    /* Partners */
    .partners-bar {
        padding: 25px 20px;
        border-radius: 30px;
    }

    .partners-label {
        font-size: 1rem;
    }

    .partner-img {
        height: 20px;
    }

    .partners-track {
        gap: 40px;
    }

    /* Resources */
    .resource-card {
        padding: 35px 20px;
        min-height: 340px;
        border-radius: 30px;
    }

    .resource-title {
        font-size: 1.3rem;
    }

    /* Community */
    .community-card {
        padding: 40px 25px;
        border-radius: 30px;
    }

    /* FAQ */
    .faq-header-content .section-title {
        font-size: 2rem;
    }

    .faq-header-content .section-text {
        font-size: 1rem;
    }

    .faq-img-card {
        height: 200px;
        border-radius: 30px;
    }

    .faq-question {
        padding: 25px 20px;
    }

    .faq-question h3 {
        font-size: 0.95rem;
    }

    .faq-answer {
        padding: 0 20px;
    }

    .faq-answer p {
        padding-bottom: 25px;
        font-size: 0.9rem;
    }

    /* Contact */
    .contact-main-card {
        padding: 35px 20px;
        border-radius: 30px;
    }

    .contact-grid {
        gap: 35px;
    }

    .contact-subtitle {
        font-size: 1.2rem;
    }

    .contact-form-wrapper {
        padding: 20px;
    }

    .form-input {
        padding: 12px 18px;
    }

    .form-textarea {
        min-height: 120px;
    }

    .social-link {
        width: 40px;
        height: 40px;
    }

    /* Footer */
    .footer-nav-card,
    .footer-cta-card {
        padding: 40px 20px;
        border-radius: 30px;
    }

    .footer-logo a {
        font-size: 1.6rem;
        margin-bottom: 30px;
    }

    .footer-links-grid {
        margin-bottom: 40px;
    }

    .footer-links a {
        font-size: 0.9rem;
    }

    .copyright {
        font-size: 0.85rem;
    }

    .footer-cta-title {
        font-size: 1.6rem;
    }

    .footer-cta-img {
        width: 130px;
    }

    .btn-white {
        padding: 14px 32px;
        font-size: 0.95rem;
    }
}

/* MOBILE EXTRA PEQUENO (até 360px) */
@media (max-width: 360px) {
    .hero-title {
        font-size: 1.75rem;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .hero-card {
        min-height: 420px;
    }

    .service-card {
        min-height: 320px;
    }

    .card-illustration {
        width: 120px;
    }

    .testimonial-card {
        flex: 0 0 270px;
        padding: 30px 20px;
    }

    .faq-header-content .section-title {
        font-size: 1.75rem;
    }

    .footer-cta-title {
        font-size: 1.5rem;
    }
}

/* LANDSCAPE MOBILE */
@media (max-height: 500px) and (orientation: landscape) {
    .hero-card {
        min-height: 400px;
        padding: 30px 20px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-img-wrapper {
        display: none;
    }
}

/* OTIMIZAÇÕES DE PERFORMANCE MOBILE */
@media (max-width: 768px) {
    * {
        -webkit-tap-highlight-color: transparent;
    }

    button,
    a {
        touch-action: manipulation;
    }

    img {
        image-rendering: -webkit-optimize-contrast;
    }
}