/*
   OceanTravel - Premium Travel Agency
   Colors: Navy #0E2A47 | Turquoise #00B3A4 | Coral #FF7B54 | White #FFFFFF
   UX/UI Design inspired by Modelo template
*/

:root {
    --primary-color: #0E2A47;
    --secondary-color: #1a3a5c;
    --accent-color: #00B3A4;
    --accent-dark: #009688;
    --accent-light: #4ECDC4;
    --coral: #FF7B54;
    --coral-dark: #e8663d;
    --white: #ffffff;
    --light-bg: #f8fafc;
    --text-color: #333333;
    --text-muted: #666666;
    --transition: all 0.3s ease;
    --transition-smooth: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    --primary-gradient: linear-gradient(135deg, #0E2A47 0%, #1a3a5c 100%);
    --accent-gradient: linear-gradient(135deg, #00B3A4 0%, #00d2c1 100%);
    --coral-gradient: linear-gradient(135deg, #FF7B54 0%, #ff9a76 100%);
    --font-main: 'Inter', sans-serif;
    --container-width: 1200px;
}

/* === RESET & BASE === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: clip;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--text-color);
    background: radial-gradient(circle at top right, rgba(0, 179, 164, 0.06), transparent 30%),
        radial-gradient(circle at bottom left, rgba(14, 42, 71, 0.04), transparent 40%),
        #fcfdfd;
    background-attachment: fixed;
    overflow-x: clip;
    width: 100%;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

body.menu-open {
    overflow: hidden !important;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    -webkit-user-drag: none;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* === TYPOGRAPHY === */
h1,
h2,
h3,
h4 {
    color: var(--primary-color);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
    color: #555;
}

.text-gradient {
    background: linear-gradient(135deg, var(--coral) 0%, var(--accent-color) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

/* === BUTTONS === */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    background: var(--accent-gradient);
    color: var(--white);
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    border: none;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
    text-align: center;
}

.btn:hover {
    background: var(--accent-dark);
    color: var(--white);
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(0, 179, 164, 0.3);
}

/* Shimmer effect */
.btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.25), transparent);
    transform: skewX(-25deg);
    transition: none;
    pointer-events: none;
}

.btn:hover::after {
    left: 150%;
    transition: left 0.7s ease;
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-color);
    border-color: var(--white);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.2);
}

.btn-primary-custom {
    background: var(--accent-gradient);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    padding: 14px 30px;
    border-radius: 50px;
    color: white;
}

.btn-primary-custom:hover {
    background: var(--primary-gradient);
    transform: translateY(-3px);
    color: white;
}

/* CTA WhatsApp Button */
.btn-cta-whatsapp {
    background: #25d366;
    color: white;
    padding: 20px 40px;
    border-radius: 50px;
    font-size: 1.15rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    width: fit-content;
    transition: var(--transition-smooth);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
}

.btn-cta-whatsapp:hover {
    background: #128c7e;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.4);
    color: white;
}

/* === TOP BAR === */
.top-bar {
    background-color: var(--primary-color);
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.82rem;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar span i {
    color: var(--accent-color);
    margin-right: 6px;
}

/* === HEADER === */
header {
    background-color: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

header.scrolled {
    padding: 5px 0;
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.1);
    animation: slideDown 0.4s ease;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

.navbar {
    padding: 12px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.03);
}

.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
    display: block;
    background-color: transparent;
}

.logo-img-footer {
    height: 50px;
    width: auto;
    object-fit: contain;
    display: block;
    background-color: var(--white);
    padding: 8px 12px;
    border-radius: 6px;
}

.nav-links {
    display: flex;
    gap: 22px;
    align-items: center;
}

.nav-item {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 0.92rem;
    position: relative;
    padding: 5px 0;
}

/* Animated underline */
/* === ICON GLOBAL ACCENT RULES === */
/* Garante turquesa em ícones funcionais/interativos */
.hero-badge i {
    color: var(--accent-color);
}

.faq-question i {
    color: var(--accent-color);
    transition: transform 0.3s ease, color 0.3s ease;
}

.faq-question:hover i {
    color: var(--accent-color);
}

.feature-box>i {
    color: var(--accent-color) !important;
}

/* Linha de destaque lateral da feature-box */
.feature-box {
    border-left-color: var(--accent-color);
}

/* Stars mantidas em amarelo universal (ratings) */
.stars {
    color: #FFD700;
}

/* Ícone do nav-toggle */
.nav-toggle i {
    color: var(--primary-color);
    transition: color 0.3s ease;
}

.nav-toggle:hover i {
    color: var(--accent-color);
}

/* ========================================= */
.nav-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
}

.nav-item:hover::after {
    width: 100%;
}

.nav-item:hover {
    color: var(--accent-color);
}

.nav-links .btn {
    padding: 10px 22px;
    font-size: 0.88rem;
    border-radius: 50px;
}

.nav-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--primary-color);
    cursor: pointer;
}

/* === HERO SECTION === */
.hero {
    background: linear-gradient(135deg, rgba(14, 42, 71, 0.88) 0%, rgba(14, 42, 71, 0.65) 100%),
        url('../imagens/hero-bg.png') center / cover no-repeat;
    background-attachment: fixed;
    min-height: 90vh;
    display: flex;
    align-items: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
    padding: 60px 0;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
    background: linear-gradient(to top, var(--white), transparent);
    z-index: 1;
}

.hero-content {
    max-width: 780px;
    position: relative;
    z-index: 2;
}

.hero-badge {
    background: rgba(200, 169, 91, 0.18);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(200, 169, 91, 0.35);
    padding: 9px 22px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border-radius: 50px;
    margin-bottom: 30px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--accent-color);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero h1 {
    color: var(--white);
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 25px;
    font-weight: 800;
}

.hero h1 span.rotating-text {
    color: var(--accent-light);
    display: inline-block;
    min-width: 250px;
    font-weight: 800;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.hero p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 40px;
    line-height: 1.7;
    max-width: 600px;
}

.hero-btns {
    display: flex;
    gap: 20px;
    align-items: center;
}

.hero .btn {
    padding: 16px 40px;
    font-size: 1rem;
    box-shadow: 0 10px 30px rgba(0, 179, 164, 0.35);
}

.hero .btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 179, 164, 0.45);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* === STATS SECTION === */
.stats {
    padding: 60px 0;
    background: var(--primary-gradient);
    color: var(--white);
    margin-top: -50px;
    position: relative;
    z-index: 10;
    border-radius: 20px;
    margin-left: 20px;
    margin-right: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    text-align: center;
    gap: 30px;
}

.stat-item h3 {
    font-size: 2.8rem;
    color: var(--accent-light);
    margin-bottom: 8px;
    font-weight: 800;
}

.stat-item p {
    font-size: 0.88rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 0;
}

/* === SECTION LABELS === */
.section-label {
    font-size: 0.82rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent-light);
    margin-bottom: 12px;
    font-weight: 700;
    display: block;
}

.section-label-center {
    font-size: 0.85rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--accent-color);
    margin-bottom: 12px;
    font-weight: 700;
    display: block;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* === DESTINATIONS SECTION === */
.services {
    padding: 100px 0;
    /* bg herdado do gradiente geral */
}

.dest-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.dest-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    transition: var(--transition-smooth);
    border-bottom: 3px solid transparent;
}

.dest-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
    border-bottom: 3px solid var(--accent-color);
}

.dest-img-container {
    height: 240px;
    overflow: hidden;
}

.dest-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.dest-card:hover .dest-img-container img {
    transform: scale(1.08);
}

.dest-content {
    padding: 30px;
}

.dest-content h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.dest-content p {
    color: var(--text-muted);
    font-size: 0.93rem;
    margin-bottom: 15px;
}

/* === BENEFITS / DIFERENCIAIS === */
.diferenciais {
    padding: 100px 0;
    background-color: var(--white);
}

.diferenciais-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.diferencial-item {
    display: flex;
    gap: 22px;
    background: var(--white);
    padding: 32px 28px;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.04);
    border: 1px solid #f0f4f8;
    transition: all 0.4s ease;
}

.diferencial-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 179, 164, 0.1);
    border-color: rgba(0, 179, 164, 0.2);
}

.diferencial-icon {
    font-size: 2rem;
    color: var(--accent-color);
    min-width: 50px;
    display: flex;
    align-items: flex-start;
    padding-top: 4px;
}

.diferencial-text h4 {
    font-size: 1.15rem;
    margin-bottom: 8px;
    color: var(--primary-color);
}

.diferencial-text p {
    color: var(--text-muted);
    font-size: 0.92rem;
    margin-bottom: 0;
}

/* === PROCESS SECTION === */
.processo {
    padding: 100px 0;
    /* bg herdado do gradiente geral */
}

.process-steps-custom {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: center;
}

.step-custom {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px;
}

.step-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 25px;
}

.step-bubble {
    width: 65px;
    height: 65px;
    background: var(--primary-gradient);
    color: var(--white);
    border: 3px solid var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 20px;
    box-shadow: 0 10px 25px rgba(14, 42, 71, 0.25);
    transition: transform 0.3s ease;
}

.step-custom:hover .step-bubble {
    transform: scale(1.1);
}

.step-icon-bottom {
    font-size: 2.4rem;
    color: var(--accent-color);
}

.step-title {
    color: var(--primary-color);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.step-desc {
    color: var(--text-muted);
    font-size: 0.97rem;
    line-height: 1.6;
}

/* === TESTIMONIALS === */
.testimonials {
    padding: 100px 0;
    background-color: var(--white);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 10px;
}

.testimonial-card-new {
    background: white;
    padding: 32px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: left;
    transition: all 0.35s ease;
    border: 1px solid #f0f0f0;
}

.testimonial-card-new:hover {
    transform: translateY(-7px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.1);
    border-color: rgba(0, 179, 164, 0.2);
}

.client-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.client-img-new {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--accent-color);
}

.client-meta strong {
    display: block;
    color: var(--primary-color);
    font-size: 1rem;
    font-weight: 700;
}

.client-meta span {
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 500;
}

.card-divider {
    border: 0;
    border-top: 1px solid rgba(200, 169, 91, 0.3);
    width: 100%;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.7;
    font-style: italic;
}

/* === FEATURE SECTION (About) === */
.feature-section {
    padding: 100px 0;
    /* bg herdado do gradiente geral */
}

.feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.feature-image img {
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    transition: transform 0.5s ease;
}

.feature-image:hover img {
    transform: scale(1.02);
}

.feature-text h2 {
    margin-bottom: 20px;
}

.feature-box {
    background: var(--white);
    padding: 35px 40px;
    border-left: 6px solid var(--accent-color);
    border-radius: 12px;
    margin-top: 30px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
}

.feature-box h4 {
    color: var(--primary-color);
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.feature-box ul li {
    padding-bottom: 12px;
    font-size: 0.95rem;
    color: #555;
}

/* Trust seals */
.trust-seals {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin: 25px 0 35px;
}

.seal {
    background: var(--white);
    padding: 12px 20px;
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 0.88rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.seal:hover {
    box-shadow: 0 8px 25px rgba(0, 179, 164, 0.15);
    transform: translateY(-3px);
}

.seal i {
    color: var(--accent-color);
    font-size: 1.1rem;
}

/* === FAQ === */
.faq {
    padding: 100px 0;
    /* bg herdado do gradiente geral */
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #eee;
    padding: 22px 0;
    transition: var(--transition);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    color: var(--primary-color);
    cursor: pointer;
    font-size: 1.05rem;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--accent-color);
}

.faq-question i {
    transition: transform 0.3s ease;
}

.faq-answer {
    padding-top: 15px;
    color: var(--text-muted);
    display: none;
    line-height: 1.7;
}

/* === CTA CONVERSION === */
.cta-conversion {
    padding: 100px 0;
    background-color: var(--white);
}

.cta-banner {
    background: var(--primary-gradient);
    border-radius: 30px;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(14, 42, 71, 0.3);
}

.cta-banner-content {
    padding: 80px;
    color: white;
}

.cta-banner-content .section-label {
    color: var(--accent-light);
}

.cta-banner-content h2 {
    color: white;
    font-size: 2.8rem;
    margin-bottom: 25px;
    line-height: 1.15;
}

.cta-banner-content p {
    color: #cbd5e0;
    font-size: 1.15rem;
    margin-bottom: 40px;
}

.cta-actions {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.cta-info-footer {
    display: flex;
    gap: 25px;
    color: #a0aec0;
    font-size: 0.92rem;
    flex-wrap: wrap;
}

.cta-info-footer span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.cta-info-footer i {
    color: var(--accent-color);
}

.cta-banner-image {
    position: relative;
    min-height: 350px;
}

.cta-banner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.65);
}

/* === FOOTER === */
footer {
    background-color: var(--primary-color);
    color: rgba(255, 255, 255, 0.75);
    padding: 80px 0 0;
    margin-top: 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr 1fr;
    gap: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-col h4 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.65);
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.65);
}

.footer-col ul li a:hover {
    color: var(--accent-color);
    padding-left: 4px;
}

.footer-bottom {
    text-align: center;
    padding: 22px 0;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.88rem;
}

/* Social icons */
.social-links {
    display: flex;
    gap: 14px;
    margin-top: 10px;
    font-size: 1.5rem;
}

.social-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: var(--accent-color);
    transform: translateY(-3px);
}

/* === WHATSAPP FLOAT === */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #fff;
    width: 62px;
    height: 62px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.45);
    z-index: 999;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.12) rotate(8deg);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.5);
    color: #fff;
}

/* === ANIMATIONS === */
.pulse {
    animation: pulse-animation 2s infinite;
}

@keyframes pulse-animation {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* === MODAL === */
.modal.active {
    display: flex !important;
}

/* === RESPONSIVE === */
@media (max-width: 1200px) {
    .container {
        max-width: 95%;
    }
}

@media (max-width: 992px) {
    h1 {
        font-size: 2.8rem;
    }

    h2 {
        font-size: 2rem;
    }

    .dest-grid,
    .testimonial-grid,
    .process-steps-custom {
        grid-template-columns: repeat(2, 1fr);
    }

    .diferenciais-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .feature-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .cta-banner {
        grid-template-columns: 1fr;
    }

    .cta-banner-content {
        padding: 50px 35px;
    }

    .cta-banner-image {
        min-height: 250px;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 768px) {
    header {
        position: fixed !important;
        top: 0;
        width: 100%;
        z-index: 9999;
    }

    .nav-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        font-size: 1.5rem;
        color: var(--primary-color);
        position: relative;
        z-index: 10000;
        margin-right: 18px;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.12);
        transition: 0.4s ease;
        z-index: 2000;
        gap: 28px;
    }

    .nav-links.active {
        right: 0;
    }

    .top-bar {
        display: none;
    }

    .hero {
        background-attachment: scroll;
        min-height: 100vh;
        padding: 100px 0 80px;
        text-align: center;
    }

    .hero-content {
        margin: 0 auto;
    }

    .hero h1 {
        font-size: 2.4rem;
    }

    .hero h1 span.rotating-text {
        min-width: auto;
        display: block;
    }

    .hero-btns {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .hero .btn {
        width: 100%;
        max-width: 300px;
    }

    .stats {
        margin-left: 10px;
        margin-right: 10px;
        border-radius: 12px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .dest-grid,
    .testimonial-grid,
    .process-steps-custom,
    .diferenciais-grid,
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .cta-banner-content {
        padding: 40px 25px;
    }

    .cta-banner-content h2 {
        font-size: 1.9rem;
    }

    .cta-info-footer {
        flex-direction: column;
        gap: 12px;
    }

    .services,
    .diferenciais,
    .processo,
    .testimonials,
    .feature-section,
    .faq,
    .cta-conversion {
        padding: 70px 0;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    .btn {
        width: auto;
        min-width: 220px;
        text-align: center;
        margin: 0 auto;
    }

    .btn-cta-whatsapp {
        width: auto;
        align-self: center;
        padding: 12px 24px;
        font-size: 0.95rem;
        gap: 10px;
        justify-content: center;
    }

    .btn-cta-whatsapp i {
        font-size: 1.25rem !important;
    }

    html,
    body {
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    ::-webkit-scrollbar {
        display: none;
    }
}