/* ========================================
   VIE PRIME TURISMO — LANDING PAGE
   Design System & Styles
   ======================================== */

/* ----------------------------------------
   CSS CUSTOM PROPERTIES
   ---------------------------------------- */
:root {
    /* Brand Colors */
    --color-primary: #1a365d;
    --color-primary-light: #2a4a7f;
    --color-primary-dark: #0f2341;
    --color-secondary: #c8842a;
    --color-secondary-light: #daa04a;
    --color-secondary-dark: #a66a1a;
    --color-accent: #4da6c9;

    /* Neutral Colors */
    --color-white: #ffffff;
    --color-gray-50: #f8fafc;
    --color-gray-100: #f1f5f9;
    --color-gray-200: #e2e8f0;
    --color-gray-300: #cbd5e1;
    --color-gray-400: #94a3b8;
    --color-gray-500: #64748b;
    --color-gray-600: #475569;
    --color-gray-700: #334155;
    --color-gray-800: #1e293b;
    --color-gray-900: #0f172a;

    /* Functional */
    --color-bg: #fafbfd;
    --color-surface: #ffffff;
    --color-text: #334155;
    --color-text-light: #64748b;
    --color-text-heading: #1a365d;
    --color-border: #e2e8f0;

    /* Typography */
    --font-main: 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
    --font-heading: Georgia, 'Times New Roman', serif;

    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;
    --space-5xl: 8rem;

    /* Layout */
    --container-max: 1200px;
    --container-wide: 1400px;
    --header-height: 72px;

    /* Borders */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.04), 0 2px 4px rgba(0, 0, 0, 0.03);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.06), 0 4px 10px rgba(0, 0, 0, 0.04);
    --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.08), 0 8px 16px rgba(0, 0, 0, 0.04);
    --shadow-glow: 0 0 30px rgba(200, 132, 42, 0.15);

    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-spring: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

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

body {
    font-family: var(--font-main);
    color: var(--color-text);
    background-color: var(--color-white);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-fast);
}

ul, ol {
    list-style: none;
}

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

input, textarea, select {
    font: inherit;
}

/* Focus styles for accessibility */
:focus-visible {
    outline: 3px solid var(--color-secondary);
    outline-offset: 3px;
    border-radius: var(--radius-sm);
}

::selection {
    background-color: var(--color-secondary);
    color: var(--color-white);
}

/* ----------------------------------------
   LAYOUT
   ---------------------------------------- */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.section {
    padding: var(--space-4xl) 0;
}

/* ----------------------------------------
   TYPOGRAPHY
   ---------------------------------------- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--color-text-heading);
    line-height: 1.25;
    font-weight: 400;
}

em {
    font-style: normal;
    color: var(--color-secondary);
}

.section__label {
    display: inline-block;
    font-family: var(--font-main);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-secondary);
    margin-bottom: var(--space-md);
    position: relative;
    padding-left: 2.5rem;
}

.section__label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 2rem;
    height: 2px;
    background: var(--color-secondary);
}

.section__title {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    margin-bottom: var(--space-lg);
    max-width: 600px;
}

.section__subtitle {
    font-size: 1.05rem;
    color: var(--color-text-light);
    max-width: 560px;
    line-height: 1.8;
}

.section__header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.section__header .section__label::before {
    display: none;
}

.section__header .section__label {
    padding-left: 0;
}

.section__header .section__title {
    margin-left: auto;
    margin-right: auto;
}

.section__header .section__subtitle {
    margin-left: auto;
    margin-right: auto;
}

/* ----------------------------------------
   BUTTONS
   ---------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: 0.875rem 2rem;
    font-family: var(--font-main);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all var(--transition-base);
    text-decoration: none;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0) 60%);
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.btn:hover::after {
    opacity: 1;
}

.btn--primary {
    background: linear-gradient(135deg, var(--color-secondary), var(--color-secondary-dark));
    color: var(--color-white);
    box-shadow: 0 4px 15px rgba(200, 132, 42, 0.3);
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(200, 132, 42, 0.4);
}

.btn--primary:active {
    transform: translateY(0);
}

.btn--outline {
    border-color: var(--color-white);
    color: var(--color-white);
    backdrop-filter: blur(4px);
    background: rgba(255, 255, 255, 0.08);
}

.btn--outline:hover {
    background: var(--color-white);
    color: var(--color-primary);
    transform: translateY(-2px);
}

.btn--large {
    padding: 1.1rem 2.8rem;
    font-size: 1.05rem;
}

.btn--full {
    width: 100%;
}

/* ----------------------------------------
   HEADER / NAVIGATION
   ---------------------------------------- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all var(--transition-base);
    height: var(--header-height);
}

.header--scrolled {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 20px rgba(0, 0, 0, 0.06);
}

.header--scrolled .nav__link {
    color: var(--color-text);
}

.header--scrolled .nav__link:hover,
.header--scrolled .nav__link--active {
    color: var(--color-secondary);
}

.header--scrolled .logo__name {
    color: var(--color-primary);
}

.header--scrolled .logo__tagline {
    color: var(--color-text-light);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height);
    max-width: var(--container-wide);
}

.nav__logo {
    display: flex;
    align-items: center;
    z-index: 1001;
}

.nav__logo img {
    height: 180px;
    width: auto;
    transition: transform var(--transition-base);
}

.nav__logo:hover img {
    transform: scale(1.3);
    transition: transform var(--transition-base);
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.logo__name {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--color-white);
    letter-spacing: 0.02em;
    transition: color var(--transition-base);
}

.logo__tagline {
    font-family: var(--font-main);
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--color-secondary-light);
    display: block;
    margin-top: -2px;
    transition: color var(--transition-base);
}

.logo--light .logo__name {
    color: var(--color-white);
}

.logo--light .logo__tagline {
    color: var(--color-gray-400);
}

.nav__list {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
}

.nav__link {
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    transition: color var(--transition-fast);
    position: relative;
    padding: var(--space-xs) 0;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-secondary);
    transition: width var(--transition-base);
}

.nav__link:hover::after,
.nav__link--active::after {
    width: 100%;
}

.nav__link:hover,
.nav__link--active {
    color: var(--color-white);
}

.nav__cta {
    display: inline-flex;
    align-items: center;
    padding: 0.6rem 1.5rem;
    background: linear-gradient(135deg, var(--color-secondary), var(--color-secondary-dark));
    color: var(--color-white);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    transition: all var(--transition-base);
    box-shadow: 0 4px 12px rgba(200, 132, 42, 0.25);
}

.nav__cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(200, 132, 42, 0.35);
}

/* Mobile Toggle */
.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 6px;
    z-index: 1001;
    cursor: pointer;
}

.nav__toggle-bar {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-white);
    border-radius: 2px;
    transition: all var(--transition-base);
}

.header--scrolled .nav__toggle-bar {
    background: var(--color-primary);
}

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

.nav__toggle--active .nav__toggle-bar:nth-child(2) {
    opacity: 0;
}

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

/* ----------------------------------------
   HERO SECTION
   ---------------------------------------- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--color-primary-dark);
}

.hero__video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0;
    transition: opacity 1.2s ease;
}

.hero__video--active {
    opacity: 1;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(15, 35, 65, 0.55) 0%,
        rgba(15, 35, 65, 0.35) 50%,
        rgba(15, 35, 65, 0.6) 100%
    );
    z-index: 1;
}

.hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: var(--space-5xl) var(--space-lg) var(--space-3xl);
    max-width: 850px;
}

.hero__title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    color: var(--color-white);
    margin-bottom: var(--space-2xl);
    line-height: 1.15;
    font-weight: 400;
    letter-spacing: -0.01em;
}

.hero__title em {
    color: var(--color-secondary-light);
    font-style: normal;
}

.hero__actions {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
}

.hero__scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.hero__scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
    50% { opacity: 1; transform: scaleY(1); }
}

/* ----------------------------------------
   SOBRE (ABOUT)
   ---------------------------------------- */
.sobre {
    position: relative;
    background: transparent;
    overflow: hidden;
}

.sobre__parallax {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.sobre__parallax-img {
    position: absolute;
    inset: -20% 0;
    background-image: url('images/sobre-parallax.jpg');
    background-size: cover;
    background-position: center;
    will-change: transform;
    animation: sobreKenBurns 25s ease-in-out infinite alternate;
}

@keyframes sobreKenBurns {
    0% {
        transform: scale(1) translateX(0);
    }
    100% {
        transform: scale(1.08) translateX(-2%);
    }
}

.sobre__parallax-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 0) 25%,
        rgba(15, 35, 65, 0.35) 50%,
        rgba(15, 35, 65, 0.55) 100%
    );
}

.sobre .container {
    position: relative;
    z-index: 1;
}

.sobre__content {
    max-width: 600px;
    margin: 0 0 0 auto;
    text-align: center;
    padding: var(--space-3xl) 0;
}

.sobre .section__label {
    color: var(--color-secondary-light);
    padding-left: 0;
    padding-right: 2.5rem;
}

.sobre .section__label::before {
    background: var(--color-secondary-light);
    left: auto;
    right: 0;
}

.sobre .section__title {
    color: var(--color-white);
    max-width: 100%;
}

.sobre .section__title em {
    color: var(--color-secondary-light);
}

.sobre__text {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: var(--space-lg);
    line-height: 1.85;
}

.sobre__text strong {
    color: var(--color-white);
    font-weight: 600;
}



/* ----------------------------------------
   SERVIÇOS (SERVICES)
   ---------------------------------------- */
.servicos {
}

.servicos__top {
    margin-bottom: var(--space-3xl);
}

.servicos__heading {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 400;
    color: var(--color-text-heading);
    line-height: 1.2;
}

.servicos__heading em {
    font-style: normal;
    color: var(--color-secondary);
}

.servicos__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
}

.svc {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    column-gap: var(--space-xl);
    row-gap: var(--space-xs);
    padding: var(--space-xl) 0;
    border-bottom: 1px solid var(--color-border);
    transition: all var(--transition-base);
    cursor: default;
}

.svc:first-child {
    border-top: 1px solid var(--color-border);
}

.svc:hover {
    opacity: 1;
}

.svc__num {
    grid-row: span 2;
    align-self: center;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--color-border);
    line-height: 1;
    transition: color var(--transition-base);
    min-width: 3rem;
}

.svc:hover .svc__num {
    color: var(--color-secondary);
}

.svc__title {
    font-family: var(--font-main);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--color-text-heading);
    align-self: end;
}

.svc__text {
    font-size: 0.9rem;
    color: var(--color-text-light);
    line-height: 1.7;
    max-width: 500px;
    align-self: start;
}

/* ----------------------------------------
   DESTINOS — MOSAICO FULLBLEED
   ---------------------------------------- */
.destinos {
    width: 100%;
    overflow: hidden;
}

.destinos__header {
    text-align: center;
    padding: var(--space-3xl) var(--space-lg) var(--space-2xl);
}

.destinos__label {
    display: inline-block;
    font-family: var(--font-main);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-secondary);
    margin-bottom: var(--space-md);
}

.destinos__title {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-family: var(--font-heading);
    color: var(--color-text-heading);
}

.destinos__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3px;
    width: 100%;
    height: auto;
}

.destinos__tile {
    position: relative;
    overflow: hidden;
    min-height: 260px;
}

.destinos__tile--hero {
    min-height: 380px;
}

.destinos__img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

.destinos__tile:hover .destinos__img {
    transform: scale(1.06);
}

.destinos__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.55) 0%, transparent 60%);
    pointer-events: none;
}

.destinos__name {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: #fff;
    font-family: var(--font-main);
    font-size: 22px;
    font-weight: 500;
    line-height: 1.2;
    z-index: 1;
    pointer-events: none;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.destinos__name--hero {
    font-size: 22px;
}

/* Destination backgrounds */
.destino__bg--praias {
    background-color: #0b6e7d;
    background-image: url('images/destino-praias.jpg');
}

.destino__bg--europa {
    background-color: #3a2f5a;
    background-image: url('images/destino-europa.jpg');
}

.destino__bg--eua {
    background-color: #1d3b5c;
    background-image: url('images/destino-eua.jpg');
}

.destino__bg--cruzeiros {
    background-color: #0e5a86;
    background-image: url('images/destino-cruzeiros.jpg');
}

.destino__bg--resorts {
    background-color: #0d6b5e;
    background-image: url('images/destino-resorts.jpg');
}

/* ----------------------------------------
   PARCEIROS — INTERSTITIAL DIVIDER
   ---------------------------------------- */
.parceiros {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.4em;
    padding: var(--space-xl) var(--space-lg);
    background: var(--color-white);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    position: relative;
    overflow: hidden;
}

.parceiro__n {
    font-family: var(--font-main);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: transparent;
    background: linear-gradient(
        90deg,
        var(--color-gray-400) 0%,
        var(--color-gray-400) 40%,
        var(--color-secondary) 50%,
        var(--color-gray-400) 60%,
        var(--color-gray-400) 100%
    );
    background-size: 300% 100%;
    background-clip: text;
    -webkit-background-clip: text;
    animation: shimmer 8s ease-in-out infinite;
}

.parceiro__n:nth-child(2n) {
    font-size: 0.6rem;
    letter-spacing: 0;
    opacity: 0.3;
    animation: none;
    color: var(--color-gray-400);
    background: none;
    -webkit-background-clip: unset;
    background-clip: unset;
}

.parceiro__n:nth-child(1)  { animation-delay: 0s; }
.parceiro__n:nth-child(3)  { animation-delay: 0.8s; }
.parceiro__n:nth-child(5)  { animation-delay: 1.6s; }
.parceiro__n:nth-child(7)  { animation-delay: 2.4s; }
.parceiro__n:nth-child(9)  { animation-delay: 3.2s; }
.parceiro__n:nth-child(11) { animation-delay: 4s; }
.parceiro__n:nth-child(13) { animation-delay: 4.8s; }
.parceiro__n:nth-child(15) { animation-delay: 5.6s; }
.parceiro__n:nth-child(17) { animation-delay: 6.4s; }

@keyframes shimmer {
    0%, 100% { background-position: 100% 0; }
    50% { background-position: 0% 0; }
}

/* ----------------------------------------
   DEPOIMENTOS (TESTIMONIALS)
   ---------------------------------------- */
.depoimentos {
}

.depoimentos__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
}

.depoimento {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    border: 1px solid var(--color-border);
    transition: all var(--transition-base);
    position: relative;
}

.depoimento::before {
    content: '"';
    position: absolute;
    top: var(--space-lg);
    right: var(--space-xl);
    font-family: var(--font-heading);
    font-size: 4rem;
    color: var(--color-secondary);
    opacity: 0.12;
    line-height: 1;
}

.depoimento:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
}

.depoimento__stars {
    display: flex;
    gap: 2px;
    margin-bottom: var(--space-lg);
    color: var(--color-secondary);
}

.depoimento__text {
    font-size: 1rem;
    color: var(--color-text);
    line-height: 1.8;
    margin-bottom: var(--space-xl);
    font-style: italic;
    min-height: 3.6rem;
}

.depoimento__author {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.depoimento__avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-gray-200), var(--color-gray-300));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--color-text-light);
    flex-shrink: 0;
}

.depoimento__name {
    display: block;
    font-style: normal;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--color-text-heading);
}

.depoimento__role {
    font-size: 0.82rem;
    color: var(--color-text-light);
}

/* ----------------------------------------
   CTA SECTION
   ---------------------------------------- */
.cta {
    position: relative;
    padding: var(--space-5xl) 0;
    overflow: hidden;
}

.cta__bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--color-primary-dark), var(--color-primary), var(--color-primary-light));
}

.cta__bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 50%, rgba(200, 132, 42, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 30%, rgba(77, 166, 201, 0.1) 0%, transparent 40%);
}

.cta__overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(200, 132, 42, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 80% 20%, rgba(77, 166, 201, 0.06) 0%, transparent 40%);
}

.cta__content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.cta__title {
    font-size: clamp(1.8rem, 4.5vw, 3rem);
    color: var(--color-white);
    margin-bottom: var(--space-lg);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta__title em {
    color: var(--color-secondary-light);
}

.cta__subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: var(--space-2xl);
}

/* ----------------------------------------
   FOOTER
   ---------------------------------------- */
.footer {
    background: var(--color-gray-900);
    color: var(--color-gray-400);
    padding: var(--space-4xl) 0 0;
}

.footer__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
    padding-bottom: var(--space-3xl);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__brand {
    max-width: 300px;
}

.footer__brand img {
    height: 250px;
    width: auto;
}

.footer__desc {
    margin-top: var(--space-lg);
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--color-gray-500);
}

.footer__heading {
    font-family: var(--font-main);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-white);
    margin-bottom: var(--space-lg);
}

.footer__list li {
    margin-bottom: var(--space-sm);
}

.footer__list a {
    font-size: 0.9rem;
    color: var(--color-gray-400);
    transition: color var(--transition-fast);
}

.footer__list a:hover {
    color: var(--color-secondary-light);
}

.footer__list li:not(:has(a)) {
    font-size: 0.9rem;
}

.footer__socials {
    display: flex;
    gap: var(--space-sm);
    margin-top: var(--space-lg);
}

.footer__socials a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    color: var(--color-gray-400);
    transition: all var(--transition-base);
}

.footer__socials a:hover {
    background: var(--color-secondary);
    color: var(--color-white);
}

.footer__bottom {
    padding: var(--space-xl) 0;
    text-align: center;
    font-size: 0.82rem;
    color: var(--color-gray-500);
}

/* ----------------------------------------
   WHATSAPP FLOAT
   ---------------------------------------- */
.whatsapp-float {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
    z-index: 999;
    transition: all var(--transition-base);
    opacity: 0;
    transform: scale(0.8) translateY(20px);
}

.whatsapp-float--visible {
    opacity: 1;
    transform: scale(1) translateY(0);
}

.whatsapp-float:hover {
    transform: scale(1.08) translateY(-2px);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.45);
}

.whatsapp-float::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid rgba(37, 211, 102, 0.3);
    animation: whatsappPulse 2s ease-in-out infinite;
}

@keyframes whatsappPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.15); opacity: 0; }
}

.whatsapp-float__tooltip {
    position: absolute;
    right: calc(100% + 12px);
    top: 50%;
    transform: translateY(-50%);
    background: var(--color-gray-800);
    color: var(--color-white);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    font-size: 0.82rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all var(--transition-fast);
}

.whatsapp-float__tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border-left: 6px solid var(--color-gray-800);
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
}

.whatsapp-float:hover .whatsapp-float__tooltip {
    opacity: 1;
}

/* ----------------------------------------
   ANIMATIONS
   ---------------------------------------- */
.anim-fade-up,
.anim-fade-left,
.anim-fade-right {
    opacity: 0;
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.anim-fade-up {
    transform: translateY(30px);
}

.anim-fade-left {
    transform: translateX(30px);
}

.anim-fade-right {
    transform: translateX(-30px);
}

.anim-fade-up.is-visible,
.anim-fade-left.is-visible,
.anim-fade-right.is-visible {
    opacity: 1;
    transform: translate(0, 0);
}

.anim-delay-1 { transition-delay: 0.15s; }
.anim-delay-2 { transition-delay: 0.3s; }
.anim-delay-3 { transition-delay: 0.45s; }

/* ----------------------------------------
   RESPONSIVE — TABLET (768px+)
   ---------------------------------------- */
@media (min-width: 768px) {
    .section {
        padding: var(--space-5xl) 0;
    }

    .servicos__grid {
        grid-template-columns: repeat(2, 1fr);
        column-gap: var(--space-3xl);
    }

    .svc {
        grid-template-columns: auto 1fr;
    }

    .destinos__grid {
        grid-template-columns: 2fr 1fr 1fr;
        grid-template-rows: 1fr 1fr;
        height: 680px;
    }

    .destinos__tile {
        min-height: unset;
    }

    .destinos__tile--hero {
        grid-row: span 2;
        min-height: unset;
    }

    .destinos__name--hero {
        font-size: 32px;
    }

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

    .footer__grid {
        grid-template-columns: 1.5fr 1fr 1fr 1fr;
    }
}

/* ----------------------------------------
   RESPONSIVE — DESKTOP (1024px+)
   ---------------------------------------- */
@media (min-width: 1024px) {
    .nav__toggle {
        display: none;
    }

    .servicos__grid {
        grid-template-columns: repeat(3, 1fr);
        column-gap: var(--space-3xl);
    }

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

/* ----------------------------------------
   RESPONSIVE — WIDE (1440px+)
   ---------------------------------------- */
@media (min-width: 1440px) {
    :root {
        font-size: 17px;
    }

    .container {
        padding: 0 var(--space-2xl);
    }

    .servicos__grid {
        gap: var(--space-2xl);
    }
}

/* ----------------------------------------
   RESPONSIVE — MOBILE (<768px)
   ---------------------------------------- */
@media (max-width: 767px) {
    .nav__toggle {
        display: flex;
    }

    .nav__list {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 360px;
        height: 100vh;
        height: 100dvh;
        background: var(--color-white);
        flex-direction: column;
        align-items: flex-start;
        padding: calc(var(--header-height) + var(--space-xl)) var(--space-xl) var(--space-xl);
        gap: var(--space-md);
        transition: right var(--transition-base);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
        overflow-y: auto;
    }

    .nav__list--open {
        right: 0;
    }

    .nav__link {
        color: var(--color-text);
        font-size: 1.05rem;
        padding: var(--space-sm) 0;
        width: 100%;
    }

    .nav__link:hover {
        color: var(--color-secondary);
    }

    .nav__cta {
        margin-top: var(--space-md);
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .hero__content {
        padding: calc(var(--header-height) + var(--space-3xl)) var(--space-md) var(--space-2xl);
    }

    .hero__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero__actions .btn {
        justify-content: center;
    }

    .hero__scroll {
        display: none;
    }

    .destinos__tile {
        min-height: 200px;
    }

    .destinos__tile--hero {
        min-height: 280px;
    }

    .destinos__name--hero {
        font-size: 22px;
    }
}

/* Mobile overlay for menu */
.nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 998;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-base);
}

.nav-overlay--visible {
    opacity: 1;
    pointer-events: auto;
}

/* ----------------------------------------
   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;
    }

    .anim-fade-up,
    .anim-fade-left,
    .anim-fade-right {
        opacity: 1;
        transform: none;
    }
}

/* ----------------------------------------
   PRINT
   ---------------------------------------- */
@media print {
    .header,
    .whatsapp-float,
    .hero__scroll,
    .nav__toggle {
        display: none;
    }

    .hero {
        min-height: auto;
        padding: var(--space-2xl);
    }

    .section {
        padding: var(--space-xl) 0;
    }

    body {
        color: #000;
        background: #fff;
    }
}
