/* ============================================
   We.Voos Viagens — Landing Page Styles
   Mobile-first · Premium Travel Agency
   ============================================ */

:root {
    --green-dark: #03291F;
    --green: #073B2A;
    --green-light: #164F3D;
    --gold: #D9A441;
    --gold-light: #E8C56A;
    --cream: #F7F5ED;
    --white: #FFFFFF;
    --text-dark: #17211D;
    --text-muted: #6B746F;

    --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-script: 'Caveat', cursive;

    --header-height: 72px;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --shadow-sm: 0 2px 8px rgba(3, 41, 31, 0.08);
    --shadow-md: 0 8px 32px rgba(3, 41, 31, 0.12);
    --shadow-lg: 0 16px 48px rgba(3, 41, 31, 0.18);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --container: min(1140px, 100% - 2rem);
}

/* Reset */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-sans);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-dark);
    background: var(--cream);
    overflow-x: hidden;
    padding-bottom: 0;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

ul {
    list-style: none;
}

/* Container */
.container {
    width: var(--container);
    margin-inline: auto;
}

/* Section */
.section {
    padding: 5rem 0;
}

.section--dark {
    background: var(--green-dark);
    color: var(--cream);
}

.section--green {
    background: linear-gradient(160deg, var(--green-dark) 0%, var(--green) 50%, var(--green-light) 100%);
    color: var(--cream);
}

.section--cream {
    background: var(--cream);
}

/* Section wave transitions */
.wave-top {
    position: relative;
}

.wave-top::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: clamp(3.5rem, 7vw, 5.5rem);
    transform: translateY(calc(-100% + 1px));
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: center bottom;
    pointer-events: none;
    z-index: 1;
}

.wave-top--cream::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 120' preserveAspectRatio='none'%3E%3Cpath fill='%23F7F5ED' d='M0,52 C480,12 960,92 1440,52 L1440,120 L0,120 Z'/%3E%3C/svg%3E");
}

.wave-top--cream-alt::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 120' preserveAspectRatio='none'%3E%3Cpath fill='%23F7F5ED' d='M0,48 C480,88 960,8 1440,48 L1440,120 L0,120 Z'/%3E%3C/svg%3E");
}

.wave-top--dark::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 120' preserveAspectRatio='none'%3E%3Cpath fill='%2303291F' d='M0,52 C480,12 960,92 1440,52 L1440,120 L0,120 Z'/%3E%3C/svg%3E");
}

.wave-top--green::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 120' preserveAspectRatio='none'%3E%3Cpath fill='%2303291F' d='M0,48 C480,88 960,8 1440,48 L1440,120 L0,120 Z'/%3E%3C/svg%3E");
}

.wave-route {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: clamp(3.5rem, 7vw, 5.5rem);
    transform: translateY(calc(-100% - 10px));
    pointer-events: none;
    z-index: 2;
}

.wave-route svg {
    display: block;
    width: 100%;
    height: 100%;
}

.wave-route__path {
    fill: none;
    stroke: var(--gold-light);
    stroke-width: 3;
    stroke-linecap: round;
    stroke-dasharray: 10 14;
    filter: drop-shadow(0 0 8px rgba(217, 164, 65, 0.7));
    animation: wave-route 24s linear infinite;
}

@keyframes wave-route {
    to { stroke-dashoffset: -240; }
}

.wave-top > .container {
    position: relative;
    z-index: 2;
}

.section__title {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.section__title--light {
    color: var(--cream);
}

.section__lead {
    font-size: 1.125rem;
    color: var(--text-muted);
    max-width: 600px;
}

.section__lead--light {
    color: rgba(247, 245, 237, 0.75);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: 100px;
    transition: var(--transition);
    white-space: nowrap;
}

.btn__icon {
    width: 1.25rem;
    height: 1.25rem;
    flex-shrink: 0;
}

.btn--whatsapp {
    background: var(--gold);
    color: var(--green-dark);
    box-shadow: 0 4px 20px rgba(217, 164, 65, 0.35);
}

.btn--whatsapp:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(217, 164, 65, 0.45);
}

.btn--lg {
    padding: 1rem 2rem;
    font-size: 1rem;
}

.btn--xl {
    padding: 1.125rem 2.5rem;
    font-size: 1.0625rem;
}

.btn--sm {
    padding: 0.625rem;
    border-radius: 50%;
    width: 44px;
    height: 44px;
}

.btn--header {
    font-size: 0.875rem;
    padding: 0.75rem 1.25rem;
}

/* Reveal animation */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Route line */
.route-line {
    color: var(--gold);
    opacity: 0.4;
}

.route-line--animated {
    animation: dashMove 20s linear infinite;
}

@keyframes dashMove {
    to { stroke-dashoffset: -200; }
}

/* ============================================
   HEADER
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--header-height);
    transition: var(--transition);
}

.header--scrolled {
    background: rgba(3, 41, 31, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 1px 0 rgba(217, 164, 65, 0.08);
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.header__logo {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    text-decoration: none;
    flex-shrink: 0;
}

.header__logo-img {
    height: 44px;
    width: 44px;
    object-fit: contain;
    flex-shrink: 0;
}

.header__logo-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--cream);
    letter-spacing: -0.02em;
    line-height: 1;
}

.header__logo-accent {
    color: var(--gold);
}

.header__nav {
    display: none;
    align-items: center;
    gap: 2rem;
}

.header__menu {
    display: flex;
    gap: 1.75rem;
}

.header__link {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--cream);
    opacity: 0.85;
    transition: var(--transition);
    position: relative;
}

.header__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: var(--transition);
}

.header__link:hover {
    opacity: 1;
    color: var(--gold-light);
}

.header__link:hover::after {
    width: 100%;
}

.header__whatsapp-mobile {
    display: flex;
}

.header__toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 10px;
    z-index: 1001;
}

.header__toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--cream);
    border-radius: 2px;
    transition: var(--transition);
}

.header__toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.header__toggle.active span:nth-child(2) {
    opacity: 0;
}

.header__toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile nav open */
.header__nav.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    background: rgba(3, 41, 31, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    animation: fadeIn 0.3s ease;
}

.header__nav.open .header__menu {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.header__nav.open .header__link {
    font-size: 1.25rem;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* ============================================
   HERO
   ============================================ */
.hero {
    position: relative;
    min-height: 115vh;
    min-height: 115dvh;
    display: flex;
    align-items: center;
    padding-top: var(--header-height);
    background: linear-gradient(165deg, var(--green-dark) 0%, var(--green) 40%, #0a4a35 100%);
    color: var(--cream);
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero__glow {
    position: absolute;
    top: -20%;
    right: -10%;
    width: 60%;
    height: 80%;
    background: radial-gradient(ellipse, rgba(217, 164, 65, 0.12) 0%, transparent 70%);
}

.hero__route {
    display: none;
}

.hero-flight {
    position: fixed;
    inset: 0;
    z-index: 8;
    pointer-events: none;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.hero-flight.is-active {
    opacity: 1;
    visibility: visible;
}

.hero-flight__svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    color: var(--gold);
}

.hero-flight__route {
    opacity: 0.45;
    vector-effect: non-scaling-stroke;
}

.hero-flight__trail {
    opacity: 0.9;
    vector-effect: non-scaling-stroke;
    filter: drop-shadow(0 0 6px rgba(217, 164, 65, 0.6));
}

.hero-plane {
    position: absolute;
    top: 0;
    left: 0;
    width: 130px;
    height: auto;
    margin: -45px 0 0 -65px;
    will-change: transform;
}

.hero-plane__body {
    width: 100%;
    height: auto;
    transform: perspective(800px) rotateX(-8deg);
}

.hero-plane__sprite {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.45));
    user-select: none;
    -webkit-user-drag: none;
}

@media (max-width: 767px) {
    .hero-plane {
        width: 100px;
        margin: -35px 0 0 -50px;
    }

    .hero-flight__route {
        opacity: 0.35;
    }
}

@media (min-width: 1024px) {
    .hero-plane {
        width: 155px;
        margin: -54px 0 0 -77px;
    }
}

.hero__decor {
    position: absolute;
    color: var(--gold);
    opacity: 0.25;
}

.hero__decor--compass {
    top: 18%;
    right: 8%;
    width: 60px;
    animation: compassSway 8s ease-in-out infinite;
}

.hero__decor--plane {
    top: 25%;
    left: 15%;
    width: 28px;
    animation: planeFloat 6s ease-in-out infinite;
}

@keyframes compassSway {
    0%, 100% { transform: rotate(-5deg); }
    50% { transform: rotate(5deg); }
}

@keyframes planeFloat {
    0%, 100% { transform: translate(0, 0) rotate(-10deg); }
    50% { transform: translate(10px, -8px) rotate(5deg); }
}

.hero__stars span {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--gold);
    border-radius: 50%;
    opacity: 0.5;
}

.hero__stars span:nth-child(1) { top: 15%; left: 20%; }
.hero__stars span:nth-child(2) { top: 30%; left: 45%; width: 3px; height: 3px; }
.hero__stars span:nth-child(3) { top: 12%; right: 30%; }
.hero__stars span:nth-child(4) { top: 45%; right: 15%; width: 5px; height: 5px; opacity: 0.3; }
.hero__stars span:nth-child(5) { bottom: 35%; left: 10%; width: 3px; height: 3px; }

.hero__inner {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    padding: 3rem 0 5rem;
    position: relative;
    z-index: 3;
}

.hero__eyebrow {
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.hero__title {
    font-size: clamp(2rem, 6vw, 3.5rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 1rem;
}

.hero__subtitle {
    font-family: var(--font-script);
    font-size: clamp(1.5rem, 4vw, 2rem);
    color: var(--gold-light);
    margin-bottom: 1.25rem;
    line-height: 1.3;
}

.hero__text {
    font-size: 1.0625rem;
    color: rgba(247, 245, 237, 0.8);
    max-width: 480px;
    margin-bottom: 2rem;
}

.hero__cta {
    margin-bottom: 2rem;
}

.hero__cta-note {
    font-size: 0.875rem;
    color: rgba(247, 245, 237, 0.6);
    margin-top: 0.75rem;
}

.hero__scroll {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(247, 245, 237, 0.7);
    transition: var(--transition);
}

.hero__scroll svg {
    width: 18px;
    height: 18px;
    animation: bounceDown 2s ease infinite;
}

.hero__scroll:hover {
    color: var(--gold);
}

@keyframes bounceDown {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(4px); }
}

.hero__visual {
    display: flex;
    justify-content: center;
    position: relative;
}

.hero__image-wrap {
    position: relative;
    max-width: 520px;
}

.hero__mascote {
    width: 100%;
    max-width: 500px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 16px 28px rgba(0, 0, 0, 0.35));
    transition: transform 0.1s linear;
    animation: mascote-float 5s ease-in-out infinite;
}

@keyframes mascote-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.hero__image-glow {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 30%;
    background: radial-gradient(ellipse, rgba(217, 164, 65, 0.2) 0%, transparent 70%);
    pointer-events: none;
}

/* ============================================
   STORYTELLING
   ============================================ */
.storytelling__inner {
    max-width: 720px;
    margin-inline: auto;
    text-align: center;
}

.storytelling__text {
    margin: 2rem 0;
}

.storytelling__text p {
    font-size: 1.0625rem;
    color: var(--text-muted);
    margin-bottom: 0.25rem;
}

.storytelling__bridge {
    font-size: 1.125rem;
    color: var(--text-dark);
    margin: 2.5rem 0 1rem;
}

.storytelling__highlight {
    font-family: var(--font-script);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    color: var(--green);
    line-height: 1.3;
    margin-bottom: 1.5rem;
}

.storytelling__closing {
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

.storytelling__closing strong {
    color: var(--green-dark);
}

/* ============================================
   PROBLEMA
   ============================================ */
.problema__header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.problema__grid {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.problema__card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(217, 164, 65, 0.12);
    border-radius: var(--radius-md);
    padding: 2rem;
    transition: var(--transition);
}

.problema__card:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(217, 164, 65, 0.25);
    transform: translateY(-4px);
}

.problema__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    margin-bottom: 1rem;
    color: var(--gold);
    background: rgba(217, 164, 65, 0.1);
    border: 1px solid rgba(217, 164, 65, 0.2);
    border-radius: var(--radius-sm);
}

.problema__icon svg {
    width: 1.375rem;
    height: 1.375rem;
}

.problema__card-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--cream);
}

.problema__card p {
    font-size: 0.9375rem;
    color: rgba(247, 245, 237, 0.7);
    line-height: 1.6;
}

.problema__footer {
    text-align: center;
}

.problema__closing {
    font-family: var(--font-script);
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--gold-light);
    margin-bottom: 1.5rem;
}

/* ============================================
   PROPOSTA
   ============================================ */
.proposta__header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.proposta__grid {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.proposta__card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(217, 164, 65, 0.15);
    border-radius: var(--radius-md);
    padding: 2rem;
    transition: var(--transition);
}

.proposta__card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-4px);
}

.proposta__number {
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.1em;
    display: block;
    margin-bottom: 0.75rem;
}

.proposta__card-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--cream);
    margin-bottom: 0.5rem;
}

.proposta__card p {
    font-size: 0.9375rem;
    color: rgba(247, 245, 237, 0.7);
    line-height: 1.6;
}

.proposta__cta {
    text-align: center;
}

/* ============================================
   EXPERIÊNCIAS
   ============================================ */
.experiencias__header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.experiencias__grid {
    display: grid;
    gap: 1.25rem;
}

.experiencias__more {
    text-align: center;
    margin-top: 2.5rem;
    font-family: var(--font-script);
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--gold);
}

.exp-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 16 / 10;
    cursor: default;
    transition: var(--transition);
}

.exp-card:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-lg);
}

.exp-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.exp-card:hover .exp-card__img {
    transform: scale(1.05);
}

.exp-card__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(to top, rgba(3, 41, 31, 0.92) 0%, rgba(3, 41, 31, 0.35) 45%, rgba(3, 41, 31, 0.05) 100%);
}

.exp-card__content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    padding: 1.75rem;
    color: var(--cream);
}

.exp-card__title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.exp-card__desc {
    font-size: 0.9375rem;
    opacity: 0.85;
}

/* ============================================
   COMO FUNCIONA
   ============================================ */
.como-funciona__header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.timeline {
    position: relative;
    max-width: 640px;
    margin: 0 auto 3rem;
}

.timeline__line {
    position: absolute;
    left: 23px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--gold), var(--green-light));
    opacity: 0.3;
}

.timeline__item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    position: relative;
}

.timeline__item:last-child {
    margin-bottom: 0;
}

.timeline__marker {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--green-dark);
    border: 2px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.timeline__marker span {
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--gold);
}

.timeline__title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.375rem;
}

.timeline__content p {
    font-size: 0.9375rem;
    color: var(--text-muted);
}

.como-funciona__cta {
    text-align: center;
}

/* ============================================
   DIFERENCIAL
   ============================================ */
.diferencial {
    position: relative;
    overflow: hidden;
}

.diferencial__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.diferencial__route {
    position: absolute;
    top: 15%;
    left: 0;
    width: 100%;
    height: 120px;
    opacity: 0.3;
}

.diferencial__plane {
    position: absolute;
    top: 12%;
    left: 0;
    width: 24px;
    color: var(--gold);
    animation: planeRoute 12s linear infinite;
}

@keyframes planeRoute {
    0% { left: 0; transform: rotate(-5deg); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { left: calc(100% - 24px); transform: rotate(5deg); opacity: 0; }
}

.diferencial__inner {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.diferencial__text {
    font-size: 1.0625rem;
    color: rgba(247, 245, 237, 0.8);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.diferencial__quote {
    border: none;
    margin-bottom: 2rem;
}

.diferencial__quote span {
    display: block;
    font-size: 1.125rem;
    color: rgba(247, 245, 237, 0.85);
    margin-bottom: 0.5rem;
}

.diferencial__quote-accent {
    font-family: var(--font-script);
    font-size: clamp(1.5rem, 3vw, 2rem) !important;
    color: var(--gold-light) !important;
    line-height: 1.3;
}

.diferencial__mascote {
    max-width: 280px;
    width: 100%;
    height: auto;
    aspect-ratio: 1;
    object-fit: contain;
    filter: drop-shadow(0 16px 32px rgba(0, 0, 0, 0.25));
}

/* ============================================
   MASCOTE SECTION
   ============================================ */
.mascote-section__inner {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    align-items: center;
}

.mascote-section__img {
    max-width: 320px;
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 12px 24px rgba(3, 41, 31, 0.15));
}

.mascote-section__text {
    font-size: 1.0625rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.mascote-section__detail {
    font-size: 0.9375rem;
    color: var(--green);
    font-weight: 500;
}

/* ============================================
   DEPOIMENTOS
   ============================================ */
.depoimentos__header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.depoimentos__grid {
    display: grid;
    gap: 1.5rem;
}

.depoimento-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(3, 41, 31, 0.06);
    transition: var(--transition);
}

.depoimento-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.depoimento-card__quote-mark {
    font-family: var(--font-script);
    font-size: 3rem;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.depoimento-card__stars {
    display: flex;
    gap: 0.2rem;
    margin-bottom: 1rem;
    color: var(--gold);
}

.depoimento-card__stars svg {
    width: 1rem;
    height: 1rem;
    fill: currentColor;
}

.depoimento-card__text {
    flex: 1;
    font-size: 1rem;
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 1.25rem;
    line-height: 1.7;
}

.depoimento-card__author {
    margin-top: auto;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-dark);
}

/* ============================================
   FAQ
   ============================================ */
.faq__header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.faq__list {
    max-width: 720px;
    margin: 0 auto;
}

.faq__item {
    background: var(--white);
    border-radius: var(--radius-sm);
    margin-bottom: 0.75rem;
    border: 1px solid rgba(3, 41, 31, 0.08);
    overflow: hidden;
    transition: var(--transition);
}

.faq__item[open] {
    box-shadow: var(--shadow-sm);
}

.faq__question {
    padding: 1.25rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    transition: var(--transition);
}

.faq__question::-webkit-details-marker {
    display: none;
}

.faq__question::after {
    content: '+';
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--gold);
    flex-shrink: 0;
    transition: var(--transition);
}

.faq__item[open] .faq__question::after {
    content: '−';
}

.faq__question:hover {
    color: var(--green);
}

.faq__answer {
    padding: 0 1.5rem 1.25rem;
}

.faq__answer p {
    font-size: 0.9375rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ============================================
   CTA FINAL
   ============================================ */
.cta-final {
    position: relative;
    overflow: hidden;
    text-align: center;
}

.cta-final__decor {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.cta-final__compass {
    position: absolute;
    top: 10%;
    left: 5%;
    width: 50px;
    color: var(--gold);
    opacity: 0.2;
    animation: compassSway 10s ease-in-out infinite;
}

.cta-final__route {
    position: absolute;
    bottom: 20%;
    left: 0;
    width: 100%;
    height: 100px;
    opacity: 0.25;
}

.cta-final__inner {
    position: relative;
    z-index: 1;
    max-width: 640px;
    margin-inline: auto;
}

.cta-final__title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--cream);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.cta-final__text {
    font-size: 1.0625rem;
    color: rgba(247, 245, 237, 0.8);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.cta-final__note {
    font-size: 0.875rem;
    color: rgba(247, 245, 237, 0.5);
    margin-top: 1rem;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--green-dark);
    color: var(--cream);
    padding-top: 4rem;
}

.footer__inner {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    padding-bottom: 2rem;
}

.footer__logo {
    height: 44px;
    width: 44px;
    object-fit: contain;
    margin-bottom: 0.75rem;
}

.footer__tagline {
    font-family: var(--font-script);
    font-size: 1.25rem;
    color: var(--gold-light);
}

.footer__nav ul {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 1.5rem;
}

.footer__nav a {
    font-size: 0.875rem;
    opacity: 0.75;
    transition: var(--transition);
}

.footer__nav a:hover {
    opacity: 1;
    color: var(--gold);
}

.footer__social {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.footer__social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(217, 164, 65, 0.3);
    color: var(--gold);
    transition: var(--transition);
}

.footer__social-link svg {
    width: 20px;
    height: 20px;
}

.footer__social-link:hover {
    background: var(--gold);
    color: var(--green-dark);
    border-color: var(--gold);
}

.footer__whatsapp {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gold);
    transition: var(--transition);
}

.footer__whatsapp:hover {
    color: var(--gold-light);
}

.footer__bottom {
    border-top: 1px solid rgba(247, 245, 237, 0.08);
    padding: 1.5rem 0;
}

.footer__bottom p {
    font-size: 0.8125rem;
    opacity: 0.5;
    text-align: center;
}

/* ============================================
   WHATSAPP FLOAT & BAR
   ============================================ */
.whatsapp-float {
    display: none;
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--green-dark);
    box-shadow: 0 4px 24px rgba(217, 164, 65, 0.45);
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.whatsapp-float svg {
    width: 28px;
    height: 28px;
}

.whatsapp-float:hover {
    transform: scale(1.08);
    box-shadow: 0 8px 32px rgba(217, 164, 65, 0.55);
}

.whatsapp-float__tooltip {
    position: absolute;
    right: calc(100% + 12px);
    background: var(--green-dark);
    color: var(--cream);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    font-size: 0.8125rem;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transform: translateX(8px);
    transition: var(--transition);
}

.whatsapp-float:hover .whatsapp-float__tooltip {
    opacity: 1;
    transform: translateX(0);
}

.whatsapp-bar {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    padding: 0.75rem 1rem;
    background: var(--green-dark);
    border-top: 1px solid rgba(217, 164, 65, 0.2);
    box-shadow: 0 -4px 20px rgba(3, 41, 31, 0.3);
}

.whatsapp-bar__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.875rem;
    background: var(--gold);
    color: var(--green-dark);
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: 100px;
    transition: var(--transition);
}

.whatsapp-bar__btn svg {
    width: 20px;
    height: 20px;
}

.whatsapp-bar__btn:hover {
    background: var(--gold-light);
}

/* Mobile body padding for bar */
@media (max-width: 767px) {
    body {
        padding-bottom: 72px;
    }

    .footer {
        padding-bottom: 1rem;
    }
}

/* ============================================
   TABLET (768px+)
   ============================================ */
@media (min-width: 768px) {
    .section {
        padding: 6rem 0;
    }

    .problema__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .proposta__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .experiencias__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .depoimentos__grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .mascote-section__inner {
        flex-direction: row;
        text-align: left;
    }

    .mascote-section__visual {
        flex: 0 0 40%;
    }

    .diferencial__inner {
        flex-direction: row;
        text-align: left;
    }

    .diferencial__content {
        flex: 1;
    }

    .diferencial__visual {
        flex: 0 0 40%;
        display: flex;
        justify-content: center;
    }
}

/* ============================================
   DESKTOP (1024px+)
   ============================================ */
@media (min-width: 1024px) {
    .header__nav {
        display: flex;
    }

    .header__whatsapp-mobile {
        display: none;
    }

    .header__toggle {
        display: none;
    }

    .hero__inner {
        flex-direction: row;
        align-items: center;
        gap: 4rem;
        min-height: calc(100vh - var(--header-height));
        min-height: calc(100dvh - var(--header-height));
    }

    .hero__content {
        flex: 1;
        max-width: 560px;
    }

    .hero__visual {
        flex: 1;
        justify-content: flex-end;
    }

    .hero__image-wrap {
        max-width: 480px;
    }

    .proposta__grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .experiencias__grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .exp-card {
        aspect-ratio: 3 / 4;
        min-height: 280px;
    }

    .whatsapp-float {
        display: flex;
    }

    .whatsapp-bar {
        display: none;
    }

    body {
        padding-bottom: 0;
    }

    .footer__inner {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
    }
}

/* ============================================
   WIDESCREEN (1280px+)
   ============================================ */
@media (min-width: 1280px) {
    :root {
        --container: min(1200px, 100% - 4rem);
    }

    .hero__title {
        font-size: 3.75rem;
    }

    .experiencias__grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }

    .hero-flight {
        display: none;
    }
}
