/* ===================================
   PASSEIOS COM KADMO - LANDING PAGE
   Design System & Styles
   =================================== */

/* CSS Variables - Design Tokens */
:root {
    /* Cores principais */
    --azul-turquesa: #00B4D8;
    --azul-escuro: #0096C7;
    --amarelo-sol: #FFD60A;
    --amarelo-hover: #FFC107;
    --areia-clara: #F5EFE7;
    --verde-coqueiro: #2D6A4F;
    --verde-escuro: #1B4332;
    --grafite: #1E1E1E;
    --branco: #FFFFFF;
    --cinza-claro: #F8F9FA;

    /* Gradientes */
    --gradient-hero: linear-gradient(135deg, rgba(0, 180, 216, 0.7) 0%, rgba(45, 106, 79, 0.4) 100%);
    --gradient-cta: linear-gradient(135deg, #00B4D8 0%, #2D6A4F 100%);
    --gradient-card: linear-gradient(145deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.7) 100%);

    /* Tipografia */
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Poppins', sans-serif;

    /* Espaçamentos */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 3rem;
    --space-xl: 5rem;

    /* Bordas e sombras */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 50px;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.15);
    --shadow-glow: 0 0 30px rgba(0, 180, 216, 0.3);

    /* Transições */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--grafite);
    background-color: var(--branco);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

/* ===================================
   BOTÃO WHATSAPP FLUTUANTE
   =================================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
    color: white;
}

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

@keyframes pulse-whatsapp {

    0%,
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }

    50% {
        box-shadow: 0 4px 40px rgba(37, 211, 102, 0.6);
    }
}

/* ===================================
   HERO SECTION
   =================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('images/buggyamarelo7.jpg') center center / cover no-repeat;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(0, 180, 216, 0.6) 0%,
            rgba(45, 106, 79, 0.4) 50%,
            rgba(30, 30, 30, 0.7) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: var(--space-md);
    max-width: 900px;
    animation: fadeInUp 1s ease-out;
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--branco);
    text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.4);
    margin-bottom: var(--space-sm);
    line-height: 1.2;
}

.hero-title .emoji {
    display: inline-block;
    animation: wave 1.5s ease-in-out infinite;
}

@keyframes wave {

    0%,
    100% {
        transform: rotate(0deg);
    }

    25% {
        transform: rotate(15deg);
    }

    75% {
        transform: rotate(-15deg);
    }
}

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.4rem);
    color: var(--areia-clara);
    margin-bottom: var(--space-lg);
    font-weight: 300;
    text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.3);
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    justify-content: center;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    cursor: pointer;
    border: none;
    transition: all var(--transition-normal);
}

.btn-icon {
    font-size: 1.2rem;
}

.btn-primary {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: var(--branco);
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: var(--branco);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

.pulse {
    animation: pulse-btn 2s infinite;
}

@keyframes pulse-btn {

    0%,
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }

    50% {
        box-shadow: 0 4px 40px rgba(37, 211, 102, 0.7);
    }
}

/* Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--branco);
    opacity: 0.8;
    animation: bounce 2s infinite;
}

.hero-scroll-indicator span {
    font-size: 0.85rem;
    display: block;
    margin-bottom: 8px;
}

.scroll-arrow {
    width: 24px;
    height: 24px;
    border-right: 2px solid var(--branco);
    border-bottom: 2px solid var(--branco);
    transform: rotate(45deg);
    margin: 0 auto;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(10px);
    }
}

/* ===================================
   SECTION STYLES
   =================================== */
section {
    padding: var(--space-xl) 0;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: var(--space-sm);
    color: var(--grafite);
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: var(--space-lg);
}

/* ===================================
   POR QUE É ÚNICO - FEATURES
   =================================== */
.why-unique {
    background: url('images/sand_background.png') center/cover no-repeat;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: var(--space-md);
}

.feature-card {
    background: var(--branco);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.feature-yellow::before {
    background: var(--amarelo-sol);
}

.feature-green::before {
    background: var(--verde-coqueiro);
}

.feature-blue::before {
    background: var(--azul-turquesa);
}

.feature-orange::before {
    background: #FF6B35;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    font-size: 3.5rem;
    margin-bottom: var(--space-sm);
    display: flex;
    justify-content: center;
    align-items: center;
}

.feature-img-icon {
    width: 65px;
    height: 65px;
    object-fit: contain;
}

.feature-card h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: var(--space-xs);
    color: var(--grafite);
}

.feature-card p {
    color: #666;
    font-size: 0.95rem;
}

/* ===================================
   QUEM É KADMO DONATO
   =================================== */
.about-kadmo {
    background: var(--branco);
    position: relative;
    overflow: hidden;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: center;
}

.about-text h2 {
    text-align: left;
    margin-bottom: var(--space-md);
}

.about-text p {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-stats {
    display: flex;
    gap: var(--space-md);
    margin-top: var(--space-lg);
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--azul-turquesa);
    font-family: var(--font-heading);
}

.stat-label {
    font-size: 0.85rem;
    color: #666;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-video-container {
    position: relative;
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-video-wrapper {
    position: relative;
    padding-bottom: 177.78%;
    /* Aspect Ratio 9:16 */
    height: 0;
}

.about-video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
        text-align: center;
    }

    .about-text h2 {
        text-align: center;
    }

    .about-stats {
        justify-content: center;
    }
}

/* ===================================
   ROTEIROS
   =================================== */
.routes {
    background: #f0fdf4;
}

.routes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-md);
}

.route-card {
    background: var(--branco);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
}

.route-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.route-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.route-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.route-card:hover .route-image img {
    transform: scale(1.1);
}

.route-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--amarelo-sol);
    color: var(--grafite);
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
}

.route-content {
    padding: var(--space-md);
}

.route-content h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: var(--space-xs);
    color: var(--grafite);
}

.route-content p {
    color: #666;
    margin-bottom: var(--space-sm);
    font-size: 0.95rem;
}

.route-info {
    display: flex;
    gap: var(--space-md);
    margin-bottom: var(--space-sm);
    font-size: 0.9rem;
    color: #555;
}

.btn-route {
    width: 100%;
    justify-content: center;
    background: linear-gradient(135deg, var(--azul-turquesa) 0%, var(--azul-escuro) 100%);
    color: var(--branco);
    padding: 14px 24px;
}

.btn-route:hover {
    background: linear-gradient(135deg, var(--azul-escuro) 0%, var(--verde-coqueiro) 100%);
    transform: translateY(-2px);
}

/* ===================================
   GALERIA
   =================================== */
/* ===================================
   GALERIA EM CARROSSEL
   =================================== */
.gallery {
    background: var(--grafite);
    color: var(--branco);
    overflow: hidden;
}

.gallery .section-title {
    color: var(--branco);
}

.gallery .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

.gallery-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 50px;
}

.gallery-track {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    gap: var(--space-md);
    padding: var(--space-md) 0;
    scrollbar-width: none;
    /* Firefox */
    cursor: grab;
}

.gallery-track:active {
    cursor: grabbing;
}

/* Indicador Web para Carousel */
.gallery-indicator-web {
    display: none;
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    align-items: center;
    gap: 8px;
    background: rgba(0, 180, 216, 0.1);
    padding: 6px 15px;
    border-radius: var(--radius-full);
    color: var(--azul-turquesa);
    font-size: 0.9rem;
    font-weight: 500;
    animation: fadeInOut 3s infinite;
    pointer-events: none;
    z-index: 5;
}

@keyframes fadeInOut {

    0%,
    100% {
        opacity: 0.4;
        transform: translateX(-50%) scale(0.95);
    }

    50% {
        opacity: 1;
        transform: translateX(-50%) scale(1);
    }
}

@media (min-width: 1025px) {
    .gallery-wrapper:hover .gallery-indicator-web {
        display: flex;
    }
}

.gallery-track::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari */
}

.gallery-item {
    flex: 0 0 calc(33.333% - var(--space-md));
    min-width: 300px;
    height: 350px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    scroll-snap-align: center;
    cursor: pointer;
    position: relative;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-glow);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Navegação */
.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: var(--branco);
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-normal);
}

.gallery-nav:hover {
    background: var(--azul-turquesa);
    border-color: var(--azul-turquesa);
}

.gallery-nav.prev {
    left: 0;
}

.gallery-nav.next {
    right: 0;
}

.gallery-pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: var(--space-md);
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all var(--transition-normal);
}

.dot.active {
    background: var(--azul-turquesa);
    width: 25px;
    border-radius: var(--radius-full);
}

/* ===================================
   LIGHTBOX
   =================================== */
.lightbox {
    display: none;
    position: fixed;
    z-index: 3000;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox.show {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    max-width: 90%;
    max-height: 80vh;
    border-radius: var(--radius-md);
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.lightbox.show .lightbox-content {
    transform: scale(1);
}

.close-lightbox {
    position: absolute;
    top: 30px;
    right: 40px;
    color: var(--branco);
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: transform var(--transition-fast);
}

.close-lightbox:hover {
    transform: scale(1.2);
    color: var(--amarelo-sol);
}

#lightbox-caption {
    position: absolute;
    bottom: 50px;
    color: var(--branco);
    font-size: 1.2rem;
    font-family: var(--font-heading);
}

/* Responsividade Galeria */
@media (max-width: 1024px) {
    .gallery-item {
        flex: 0 0 calc(50% - var(--space-md));
    }
}

@media (max-width: 768px) {
    .gallery-wrapper {
        padding: 0;
    }

    .gallery-nav {
        display: none;
        /* Melhor usar touch scroll no mobile */
    }

    .gallery-item {
        flex: 0 0 85%;
        height: 300px;
    }
}


/* ===================================
   DEPOIMENTOS
   =================================== */
.testimonials {
    background: linear-gradient(135deg, var(--areia-clara) 0%, #fff 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-md);
}

.testimonial-card {
    background: var(--branco);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 5rem;
    font-family: Georgia, serif;
    color: var(--azul-turquesa);
    opacity: 0.15;
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.stars {
    font-size: 1.3rem;
    margin-bottom: var(--space-sm);
    letter-spacing: 2px;
}

.testimonial-text {
    font-size: 1.05rem;
    color: #444;
    font-style: italic;
    margin-bottom: var(--space-md);
    line-height: 1.7;
}

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

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--azul-turquesa) 0%, var(--verde-coqueiro) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.author-info strong {
    display: block;
    color: var(--grafite);
    font-weight: 600;
}

.author-info span {
    font-size: 0.85rem;
    color: #888;
}

/* ===================================
   REVIEW LINKS (Google & TripAdvisor)
   =================================== */
.review-links {
    margin-top: var(--space-xl);
    text-align: center;
}

.review-links p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: var(--space-md);
}

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

.review-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    background: var(--branco);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    font-weight: 600;
    color: var(--grafite);
    transition: all var(--transition-normal);
    border: 1px solid #eee;
}

.review-btn img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.review-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--azul-turquesa);
}

.review-btn.google:hover {
    background-color: #f8f9fa;
}

.review-btn.tripadvisor:hover {
    background-color: #f0faf4;
}

@media (max-width: 480px) {
    .review-buttons {
        flex-direction: column;
        align-items: center;
    }

    .review-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

/* ===================================
   CTA FINAL
   =================================== */
.cta-final {
    position: relative;
    background: url('images/buggyamarelo6.jpg') center center / cover no-repeat fixed;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 180, 216, 0.9) 0%, rgba(45, 106, 79, 0.9) 100%);
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: var(--space-lg);
    max-width: 700px;
}

.cta-content h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--branco);
    margin-bottom: var(--space-sm);
}

.cta-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--space-lg);
}

.btn-cta {
    background: var(--branco);
    color: var(--verde-coqueiro);
    padding: 20px 40px;
    font-size: 1.1rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.btn-cta svg {
    color: #25D366;
}

.btn-cta:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

/* ===================================
   RODAPÉ
   =================================== */
.footer {
    background: var(--grafite);
    color: var(--branco);
    padding: var(--space-xl) 0 var(--space-md);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: var(--space-lg);
    margin-bottom: var(--space-lg);
}

/* ===================================
   PERGUNTAS E RESPOSTAS (FAQ)
   =================================== */
.faq {
    background: var(--branco);
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.faq-item {
    background: var(--cinza-claro);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all var(--transition-normal);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.faq-item:hover {
    border-color: var(--azul-turquesa);
}

.faq-item.active {
    background: var(--branco);
    box-shadow: var(--shadow-md);
    border-color: var(--azul-turquesa);
}

.faq-question {
    padding: var(--space-md);
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    user-select: none;
}

.faq-question h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--grafite);
    margin: 0;
    padding-right: var(--space-md);
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--azul-turquesa);
    transition: transform var(--transition-normal);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    color: #ff4757;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal), padding var(--transition-normal);
    padding: 0 var(--space-md);
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 var(--space-md) var(--space-md);
}

.faq-answer p {
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: var(--space-sm);
}

@media (max-width: 768px) {
    .faq-question h3 {
        font-size: 1rem;
    }
}


.footer-logo {
    max-width: 180px;
    margin-bottom: var(--space-sm);
}

.footer-tagline {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
}

.footer-links h4,
.footer-contact h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin-bottom: var(--space-sm);
    color: var(--amarelo-sol);
}

.footer-links a,
.footer-contact a,
.footer-contact p {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 8px;
    transition: var(--transition-fast);
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--azul-turquesa);
    padding-left: 5px;
}

.instagram-link {
    display: flex !important;
    align-items: center;
    gap: 8px;
}

.instagram-icon {
    width: 20px;
    height: 20px;
    transition: transform var(--transition-fast);
}

.instagram-link:hover .instagram-icon {
    transform: scale(1.2);
    color: #E1306C;
    /* Cor oficial Instagram */
}

.footer-bottom {
    text-align: center;
    padding-top: var(--space-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* ===================================
   ANIMAÇÕES SCROLL REVEAL
   =================================== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

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

/* ===================================
   RESPONSIVIDADE
   =================================== */
@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(4, 180px);
    }

    .gallery-large {
        grid-column: span 2;
        grid-row: span 1;
    }
}

@media (max-width: 768px) {
    :root {
        --space-xl: 3rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-logo {
        margin: 0 auto var(--space-sm);
    }

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

    .gallery-large,
    .gallery-wide {
        grid-column: span 1;
    }

    .routes-grid {
        grid-template-columns: 1fr;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
    }

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

@media (max-width: 480px) {
    .feature-card {
        padding: var(--space-md);
    }

    .route-image {
        height: 180px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: var(--space-xs);
    }

    .gallery-item {
        height: 200px;
    }

    .testimonial-card {
        padding: var(--space-md);
    }

    .btn-cta {
        padding: 16px 28px;
        font-size: 0.95rem;
    }
}

/* ===================================
   MODAL STYLES
   =================================== */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.show {
    display: block;
    opacity: 1;
}

.modal-content {
    background-color: var(--branco);
    margin: 5% auto;
    padding: 0;
    border-radius: var(--radius-lg);
    width: 90%;
    max-width: 800px;
    box-shadow: var(--shadow-lg);
    position: relative;
    transform: translateY(-50px);
    transition: transform 0.3s ease;
}

.modal.show .modal-content {
    transform: translateY(0);
}

.close-modal {
    position: absolute;
    right: 20px;
    top: 15px;
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition-fast);
    z-index: 10;
}

.close-modal:hover {
    color: var(--grafite);
}

.modal-header {
    padding: var(--space-md) var(--space-lg);
    background: var(--gradient-cta);
    color: var(--branco);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.modal-header h2 {
    font-family: var(--font-heading);
    margin: 0;
}

.modal-body {
    padding: var(--space-lg);
    max-height: 60vh;
    overflow-y: auto;
}

.modal-body p {
    margin-bottom: var(--space-sm);
    color: #444;
}

.modal-footer {
    padding: var(--space-md) var(--space-lg);
    border-top: 1px solid #eee;
    display: flex;
    justify-content: center;
}

@media (max-width: 768px) {
    .modal-content {
        margin: 10% auto;
    }

    .modal-header {
        padding: var(--space-sm) var(--space-md);
    }

    .modal-body {
        padding: var(--space-md);
    }
}

/* Estilo para caixa de detalhes nos modais */
.route-details-box {
    background: #fdf6e3;
    border-left: 4px solid var(--amarelo-sol);
    padding: var(--space-md);
    margin-top: var(--space-md);
    border-radius: var(--radius-sm);
}

.route-details-box p {
    margin-bottom: 5px !important;
    font-weight: 600;
    color: var(--grafite);
}

.route-details-box ul {
    list-style: none;
    padding-left: 0;
}

.route-details-box li {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 5px;
    position: relative;
    padding-left: 15px;
}

.route-details-box li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--azul-turquesa);
}

/* ===================================
   VÍDEOS
   =================================== */
.videos {
    background: var(--cinza-clara);
}

.videos-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-lg);
}

.video-card {
    flex: 1 1 450px;
    max-width: 100%;
    background: var(--branco);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
}

.video-card.vertical {
    flex: 0 1 320px;
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

/* Video wrapper padrão 16:9 */
.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.video-wrapper iframe,
.video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Video wrapper vertical 9:16 - SHORTS */
.video-wrapper.vertical {
    padding-bottom: 177.78% !important;
    /* 9:16 aspect ratio */
}

.video-info {
    padding: var(--space-md);
    text-align: center;
}

.video-info h3 {
    font-family: var(--font-heading);
    margin-bottom: 10px;
    color: var(--grafite);
    font-weight: 700;
}

.video-info p {
    color: #666;
    font-size: 0.95rem;
}

/* Mobile - Vídeos Verticais */
@media (max-width: 768px) {
    .videos-grid {
        flex-direction: column;
        align-items: center;
        gap: var(--space-md);
    }

    .video-card.vertical {
        width: 280px !important;
        max-width: 280px !important;
        flex: none !important;
    }

    .video-card.vertical .video-wrapper.vertical {
        padding-bottom: 177.78% !important;
        height: 0 !important;
    }

    .video-card.vertical .video-wrapper.vertical iframe {
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100% !important;
    }
}