/* ==================== ROOT VARIABLES ==================== */
:root {
    --primary-green: #2d7a3e;
    --primary-green-dark: #1f5a2c;
    --primary-green-light: #3d9a52;
    --secondary-green: #4a9e5e;
    --accent-green: #5cb574;
    --white: #ffffff;
    --off-white: #f8f9fa;
    --light-gray: #e9ecef;
    --medium-gray: #6c757d;
    --dark-gray: #343a40;
    --text-dark: #212529;
    --shadow: rgba(0, 0, 0, 0.1);
    --shadow-hover: rgba(0, 0, 0, 0.15);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==================== RESET & BASE ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--white);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* ==================== CONTAINER ==================== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ==================== HEADER ==================== */
.header {
    position: sticky;
    top: 0;
    background: var(--white);
    box-shadow: 0 2px 10px var(--shadow);
    z-index: 1000;
    transition: var(--transition);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
    gap: 30px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo img {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    object-fit: cover;
}

.logo-text {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-green);
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-subtitle {
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 2px;
}

.nav-list {
    display: flex;
    gap: 30px;
}

.nav-list a {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 14px;
    position: relative;
    padding: 5px 0;
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-green);
    transition: width 0.3s ease;
}

.nav-list a:hover::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.language img {
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
}

.language img:hover {
    transform: scale(1.1);
}

.btn-reservas {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--white);
    border: 1px solid var(--light-gray);
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
}

.btn-reservas:hover {
    border-color: var(--primary-green);
    color: var(--primary-green);
}

.cart-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid var(--light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--text-dark);
}

.cart-btn:hover {
    background: var(--primary-green);
    color: var(--white);
    border-color: var(--primary-green);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 30px;
    height: 30px;
    justify-content: center;
}

.mobile-menu-toggle span {
    width: 100%;
    height: 3px;
    background: var(--primary-green);
    border-radius: 3px;
    transition: var(--transition);
}

/* ==================== HERO SECTION (CORRIGIDA) ==================== */

/**
 * ESTRATÉGIA DE IMAGEM RESPONSIVA:
 * 
 * 1. A imagem usa width: 100% e height: auto
 * 2. Isso mantém a proporção original (aspect ratio)
 * 3. O container .hero se adapta à altura da imagem
 * 4. Em mobile, exibe a imagem completa
 * 5. Em desktop, pode-se adicionar banners específicos depois
 * 
 * Nada de 'background-size: cover' ou 'object-fit: cover'
 * que cortariam a imagem
 */

.hero {
    position: relative;
    width: 100%;
    background: var(--light-gray);
    overflow: hidden;
}

.hero-slider {
    position: relative;
    width: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    /* Transição suave entre slides */
    transition: opacity 0.8s ease-in-out;
    pointer-events: none;
    z-index: 0;
}

.hero-slide.active {
    opacity: 1;
    pointer-events: auto;
    z-index: 1;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    /* Transição suave entre slides */
    transition: opacity 0.8s ease-in-out;
    pointer-events: none;
    z-index: 0;
}

.hero-slide.active {
    opacity: 1;
    pointer-events: auto;
    z-index: 1;
}

/**
 * IMAGEM: Mantém proporção original
 * - width: 100%: expande até a largura do container
 * - height: auto: altura calcula-se automaticamente
 * - display: block: remove espaços em branco (inline)
 */
.hero-image {
    width: 100%;
    height: auto;
    display: block;
    /* Garante que não ultrapassará o container */
    max-width: 100%;
}

/**
 * OVERLAY: Escurece a imagem levemente
 * Melhora a legibilidade do texto sobreposto
 */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg, 
        rgba(45, 122, 62, 0.5) 0%, 
        rgba(29, 90, 44, 0.3) 100%
    );
    /* Sobreposto à imagem */
    z-index: 2;
}

/**
 * CONTEÚDO: Texto e botão centrados sobre a imagem
 */
.hero-content {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    z-index: 3;
    /* Centraliza na imagem */
}

.hero-content .container {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-title {
    font-size: 64px;
    font-weight: 300;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 15px;
    animation: fadeInUp 1s ease 0.2s backwards;
}

.hero-title .highlight {
    font-weight: 700;
    font-size: 88px;
    display: block;
    color: #a4c639; /* Verde claro para destacar */
}

.hero-subtitle {
    font-size: 28px;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 30px;
    line-height: 1.4;
    animation: fadeInUp 1s ease 0.4s backwards;
}

/* ==================== INDICADORES (DOTS) ==================== */

.hero-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 5;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    padding: 0;
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.7);
}

.indicator.active {
    background: var(--white);
    width: 30px;
    border-radius: 6px;
}

/* ==================== BOTÕES DE NAVEGAÇÃO ==================== */

.hero-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: var(--transition);
    z-index: 4;
    border: none;
    cursor: pointer;
    font-weight: bold;
}

.hero-nav-btn:hover {
    background: var(--white);
    color: var(--primary-green);
    transform: translateY(-50%) scale(1.1);
}

.hero-nav-btn.prev {
    left: 20px;
}

.hero-nav-btn.next {
    right: 20px;
}

/* ==================== BOTÃO PRIMÁRIO ==================== */

.btn {
    padding: 15px 40px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: var(--transition);
    display: inline-block;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--primary-green);
    color: var(--white);
    animation: fadeInUp 1s ease 0.6s backwards;
}

.btn-primary:hover {
    background: var(--primary-green-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(45, 122, 62, 0.3);
}

/* ==================== ANIMAÇÕES ==================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==================== BENEFITS SECTION ==================== */
.benefits {
    background: var(--off-white);
    padding: 50px 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.benefit-card {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    box-shadow: 0 4px 15px var(--shadow);
    transition: var(--transition);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px var(--shadow-hover);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-green) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 28px;
    flex-shrink: 0;
}

.benefit-content h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.benefit-content p {
    font-size: 14px;
    color: var(--medium-gray);
    line-height: 1.5;
}

/* ================= TRANSFER CAROUSEL - CORRIGIDO ================= */

.carousel-wrapper {
    position: relative;
    width: 100%;
    display: block;
}

.cards-carousel {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    overflow-y: visible;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 0 0 10px 0;
    scroll-behavior: smooth;
    /* Previne shift ao scrollar */
    scrollbar-width: none;
}

/* Remove scrollbar */
.cards-carousel::-webkit-scrollbar {
    display: none;
}

/* Cada card vira um item do carrossel */
.cards-carousel .service-card {
    flex: 0 0 85%;
    max-width: 85%;
    scroll-snap-align: start;
    min-width: 0;
    flex-shrink: 0;
}

/* Botões - Desktop only */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 74, 173, 0.6);
    color: #fff;
    border: none;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.carousel-btn:hover {
    background: rgba(0, 74, 173, 0.8);
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn.prev {
    left: -15px;
}

.carousel-btn.next {
    right: -15px;
}

/* ================= RESPONSIVO - TABLET ================= */
@media (min-width: 768px) {
    .cards-carousel .service-card {
        flex: 0 0 45%;
        max-width: 45%;
    }
}

/* ================= RESPONSIVO - DESKTOP ================= */
@media (min-width: 1024px) {
    .cards-carousel .service-card {
        flex: 0 0 30%;
        max-width: 30%;
    }
}

/* ================= RESPONSIVO - MOBILE ================= */
@media (max-width: 768px) {
    .carousel-btn {
        display: none;
    }

    .carousel-wrapper {
        position: relative;
        width: 100%;
    }

    .cards-carousel {
        overflow-x: auto;
        overflow-y: visible;
        -webkit-overflow-scrolling: touch;
        padding: 0;
        margin: 0;
        scroll-snap-type: x mandatory;
    }

    .cards-carousel .service-card {
        flex: 0 0 85%;
        max-width: 85%;
        scroll-snap-align: start;
        margin: 0;
        padding: 0;
    }
}

/* ==================== SERVICE & TOUR CARDS ==================== */
.service-card,
.tour-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px var(--shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.service-card:hover,
.tour-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px var(--shadow-hover);
}

.card-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .card-image img,
.tour-card:hover .card-image img {
    transform: scale(1.1);
}

.card-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary-green);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.card-tag.offers {
    background: #ff6b35;
}

.card-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-green);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}

.card-badge::before {
    content: '👥';
}

.card-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
    line-height: 1.4;
}

.card-description {
    font-size: 14px;
    color: var(--medium-gray);
    line-height: 1.6;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.card-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-dark);
}

.card-features i {
    color: var(--primary-green);
    font-size: 16px;
}

.card-footer {
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid var(--light-gray);
}

.card-price {
    display: flex;
    flex-direction: column;
}

.price-label {
    font-size: 12px;
    color: var(--medium-gray);
    margin-bottom: 5px;
}

.price-value {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-green);
}

.card-observation {
    font-size: 14px;
    color: var(--medium-gray);
}

.link-info {
    color: var(--primary-green);
    font-weight: 600;
    text-decoration: underline;
}

.link-info:hover {
    color: var(--primary-green-dark);
}

/* ==================== WHATSAPP FLOAT BUTTON ==================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25d366;
    color: var(--white);
    padding: 15px 25px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition);
}

.whatsapp-float:hover {
    background: #20ba5a;
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-float i {
    font-size: 24px;
}

/* ==================== FOOTER ==================== */
.footer {
    background: var(--primary-green);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    margin-bottom: 40px;
}

.footer-column h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    line-height: 1.6;
}

.footer-list i {
    margin-top: 3px;
    color: var(--accent-green);
}

.company-info {
    margin-bottom: 20px;
}

.company-info p {
    font-size: 14px;
    line-height: 1.6;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    font-size: 14px;
    color: var(--white);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent-green);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: var(--transition);
}

.social-btn:hover {
    background: var(--white);
    color: var(--primary-green);
    transform: translateY(-3px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-bottom h4 {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 10px;
}

.payment-methods img {
    opacity: 0.9;
}

.security-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.footer-credits {
    text-align: center;
    padding-top: 30px;
    font-size: 13px;
    opacity: 0.8;
}

/* ==================== CAROUSEL ==================== */

.carousel-wrapper {
    position: relative;
}

.cards-carousel {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 10px;
}

.cards-carousel::-webkit-scrollbar {
    display: none;
}
.cards-carousel {
    scrollbar-width: none;
}

.cards-carousel .service-card {
    flex: 0 0 85%;
    max-width: 85%;
    scroll-snap-align: start;
}

@media (min-width: 768px) {
    .cards-carousel .service-card {
        flex: 0 0 45%;
        max-width: 45%;
    }
}

@media (min-width: 1024px) {
    .cards-carousel .service-card {
        flex: 0 0 30%;
        max-width: 30%;
    }
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.6);
    color: #fff;
    border: none;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
}

.carousel-btn.prev {
    left: -15px;
}

.carousel-btn.next {
    right: -15px;
}

@media (max-width: 768px) {
    .carousel-btn {
        display: none;
    }
}

/* ==================== RESPONSIVE - TABLET ==================== */
@media (max-width: 992px) {
    .nav {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--white);
        padding: 30px;
        transition: left 0.3s ease;
        box-shadow: 0 4px 20px var(--shadow);
    }

    .nav.active {
        left: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: 20px;
    }

    .nav-list a {
        font-size: 18px;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(7px, 7px);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .hero-title {
        font-size: 48px;
    }

    .hero-title .highlight {
        font-size: 64px;
    }

    .hero-nav-btn {
        width: 42px;
        height: 42px;
        font-size: 18px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .cards-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ==================== RESPONSIVE - MOBILE ==================== */
@media (max-width: 768px) {
    .header-content {
        gap: 15px;
    }

    .btn-reservas {
        display: none;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-title .highlight {
        font-size: 48px;
    }

    .hero-subtitle {
        font-size: 20px;
    }

    .btn {
        padding: 12px 30px;
        font-size: 14px;
    }

    .hero-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .hero-indicators {
        bottom: 20px;
    }

    .indicator {
        width: 10px;
        height: 10px;
    }

    .indicator.active {
        width: 24px;
    }

    .section-title {
        font-size: 28px;
    }

    .cards-grid {
        grid-template-columns: 1fr;
    }

    .whatsapp-float {
        padding: 12px 20px;
        font-size: 14px;
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-float span {
        display: none;
    }

    .whatsapp-float {
        width: 56px;
        height: 56px;
        border-radius: 50%;
        justify-content: center;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }

    .hero-title .highlight {
        font-size: 38px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-nav-btn {
        width: 36px;
        height: 36px;
        font-size: 14px;
        left: 10px !important;
        right: auto !important;
    }

    .hero-nav-btn.next {
        left: auto !important;
        right: 10px !important;
    }

    .hero-indicators {
        bottom: 15px;
        gap: 8px;
    }

    .indicator {
        width: 8px;
        height: 8px;
    }

    .indicator.active {
        width: 20px;
    }

    .card-image {
        height: 200px;
    }

    .section-transfer,
    .section-tours {
        padding: 50px 0;
    }
}

/* --------- FIM --------- */

/* ==================== ATUALIZAÇÕES DE CORES PARA AZUL #004aad ==================== */

/* 1. ATUALIZAR AS VARIÁVEIS NO :root */
:root {
    /* Cores azuis novas */
    --primary-blue: #004aad;
    --primary-blue-dark: #003580;
    --primary-blue-light: #0056b3;
    
    /* Manter as outras variáveis iguais */
    --secondary-green: #4a9e5e;
    --accent-green: #5cb574;
    --white: #ffffff;
    --off-white: #f8f9fa;
    --light-gray: #e9ecef;
    --medium-gray: #6c757d;
    --dark-gray: #343a40;
    --text-dark: #212529;
    --shadow: rgba(0, 0, 0, 0.1);
    --shadow-hover: rgba(0, 0, 0, 0.15);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==================== HEADER ==================== */
.header {
    position: sticky;
    top: 0;
    background: var(--white);
    box-shadow: 0 2px 10px var(--shadow);
    z-index: 1000;
    transition: var(--transition);
    border-bottom: 3px solid var(--primary-blue);
}

.logo-text {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-blue); /* Mudado de --primary-green */
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-blue); /* Mudado de --primary-green */
    transition: width 0.3s ease;
}

.btn-reservas:hover {
    border-color: var(--primary-blue); /* Mudado */
    color: var(--primary-blue); /* Mudado */
}

.cart-btn:hover {
    background: var(--primary-blue); /* Mudado */
    color: var(--white);
    border-color: var(--primary-blue); /* Mudado */
}

/* ==================== HERO SECTION ==================== */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg, 
        rgba(0, 74, 173, 0.5) 0%, 
        rgba(0, 53, 128, 0.3) 100%
    ); /* Mudado para azul */
    z-index: 2;
}

.hero-title .highlight {
    font-weight: 700;
    font-size: 88px;
    display: block;
    color: #ffffff; /* Branco puro para contraste */
}

.btn-primary {
    background: var(--primary-blue); /* Mudado */
    color: var(--white);
    animation: fadeInUp 1s ease 0.6s backwards;
}

.btn-primary:hover {
    background: var(--primary-blue-dark); /* Mudado */
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 74, 173, 0.3); /* Ajustado */
}

/* ==================== BENEFIT CARDS ==================== */
.benefit-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-light) 100%); /* Mudado */
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 28px;
    flex-shrink: 0;
}

/* ==================== CARD TAGS ==================== */
.card-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary-blue); /* Mudado */
    color: var(--white);
    padding: 6px 16px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.card-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-blue); /* Mudado */
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}

.price-value {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-blue); /* Mudado */
}

.link-info {
    color: var(--primary-blue); /* Mudado */
    font-weight: 600;
    text-decoration: underline;
}

.link-info:hover {
    color: var(--primary-blue-dark); /* Mudado */
}

.card-features i {
    color: var(--primary-blue); /* Mudado */
    font-size: 16px;
}

/* ==================== FOOTER ==================== */
.footer {
    background: var(--primary-blue); /* Mudado de --primary-green */
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-list i {
    margin-top: 3px;
    color: #ffffff; /* Branco */
}

.social-btn:hover {
    background: var(--white);
    color: var(--primary-blue); /* Mudado */
    transform: translateY(-3px);
}

/* ==================== CAROUSEL ==================== */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 74, 173, 0.6); /* Mudado */
    color: #fff;
    border: none;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
}

/* ==================== HERO NAV BUTTONS ==================== */
.hero-nav-btn:hover {
    background: var(--white);
    color: var(--primary-blue); /* Mudado */
    transform: translateY(-50%) scale(1.1);
}

/* ==================== CHECKOUT PAGE ==================== */

.checkout-page {
    min-height: 100vh;
    padding: 40px 0 120px 0;
    background: var(--off-white);
}

.checkout-content {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 10px var(--shadow);
    margin-bottom: 30px;
}

.section-title {
    font-size: 28px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 30px;
}

/* ==================== TERMS BOX ==================== */

.terms-box {
    background: var(--off-white);
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 40px;
    border-left: 4px solid var(--primary-blue);
}

.terms-box h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.terms-content {
    font-size: 14px;
    line-height: 1.8;
    color: var(--medium-gray);
}

.terms-content p {
    margin-bottom: 10px;
}

.terms-content strong {
    color: var(--text-dark);
}

.highlight-text {
    color: #e74c3c;
    font-weight: 600;
    padding: 10px;
    background: rgba(231, 76, 60, 0.1);
    border-radius: 6px;
}

/* ==================== PASSENGER FORMS ==================== */

.passenger-forms {
    margin-top: 40px;
}

.passenger-form {
    background: var(--off-white);
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 20px;
    border-left: 4px solid var(--primary-blue);
}

.passenger-form h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 15px;
}

.form-row.full {
    grid-template-columns: 1fr;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
    text-transform: uppercase;
}

.form-group input,
.form-group select {
    padding: 12px;
    border: 1px solid var(--light-gray);
    border-radius: 6px;
    font-family: inherit;
    font-size: 14px;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(0, 74, 173, 0.1);
}

/* ==================== CHECKOUT SIDEBAR (MOBILE) ==================== */

.checkout-sidebar-mobile {
    width: 100%;
}

.order-summary {
    background: var(--white);
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 2px 10px var(--shadow);
    border-top: 4px solid var(--primary-blue);
    margin-bottom: 20px;
}

.order-summary h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.order-item {
    border-bottom: 1px solid var(--light-gray);
    padding-bottom: 20px;
}

.order-item h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 15px;
    line-height: 1.5;
}

.order-details {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--light-gray);
}

.detail-row {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: var(--medium-gray);
    margin-bottom: 10px;
}

.price {
    font-weight: 600;
    color: var(--text-dark);
}

.order-info {
    margin-bottom: 20px;
    padding: 15px;
    background: var(--off-white);
    border-radius: 8px;
}

.info-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
    font-size: 12px;
}

.info-row:first-child {
    color: var(--medium-gray);
    margin-bottom: 10px;
    font-weight: 600;
}

.info-row:last-child {
    color: var(--text-dark);
    font-weight: 500;
}

.order-total {
    margin-top: 20px;
}

.total-row {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    padding: 12px 0;
}

.subtotal-row {
    color: var(--medium-gray);
    border-bottom: 2px solid var(--light-gray);
}

.final-row {
    margin-top: 15px;
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-blue);
}

.final-price {
    color: var(--primary-blue) !important;
    font-size: 20px !important;
}

/* ==================== BOTTOM BAR (FIXED) ==================== */

.bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #4caf50;
    padding: 15px 0;
    box-shadow: 0 -2px 10px var(--shadow);
    z-index: 100;
}

.bottom-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn-fill-forms {
    flex: 1;
    padding: 12px 20px;
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-fill-forms:hover {
    background: rgba(255, 255, 255, 0.1);
}

.bottom-bar-right {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
}

.bottom-total {
    display: flex;
    flex-direction: column;
    gap: 5px;
    flex: 0 0 auto;
}

.bottom-total span {
    color: var(--white);
    font-size: 12px;
    font-weight: 500;
}

.bottom-total strong {
    color: var(--white);
    font-size: 16px;
    font-weight: 700;
}

.btn-add-cart {
    flex: 1;
    padding: 12px 25px;
    background: var(--white);
    color: #4caf50;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-add-cart:hover:not(:disabled) {
    background: var(--off-white);
    transform: translateY(-2px);
}

.btn-add-cart:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* ==================== PROGRESS BAR ==================== */

.progress-bar {
    background: var(--white);
    padding: 30px 0;
    border-bottom: 1px solid var(--light-gray);
    margin-bottom: 40px;
}

.progress-steps {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
}

.step-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--light-gray);
    color: var(--medium-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 18px;
    border: 2px solid var(--light-gray);
}

.progress-step.active .step-circle {
    background: var(--primary-blue);
    color: var(--white);
    border-color: var(--primary-blue);
}

.progress-step.completed .step-circle {
    background: #4caf50;
    color: var(--white);
    border-color: #4caf50;
}

.step-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-dark);
    white-space: nowrap;
}

.progress-line {
    width: 100px;
    height: 2px;
    background: var(--light-gray);
}

.progress-line.completed {
    background: #4caf50;
}

/* ==================== RESPONSIVE - MOBILE ==================== */

@media (max-width: 768px) {
    .checkout-page {
        padding: 20px 0 140px 0;
    }

    .checkout-content {
        padding: 20px;
    }

    .section-title {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .terms-box {
        padding: 20px;
        margin-bottom: 30px;
    }

    .terms-box h3 {
        font-size: 14px;
        margin-bottom: 12px;
    }

    .terms-content {
        font-size: 13px;
        line-height: 1.6;
    }

    .passenger-form {
        padding: 20px;
        margin-bottom: 15px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .order-summary {
        padding: 20px;
    }

    .order-summary h3 {
        font-size: 16px;
        margin-bottom: 15px;
    }

    .order-item h4 {
        font-size: 13px;
    }

    .detail-row {
        font-size: 13px;
    }

    .bottom-bar-content {
        flex-wrap: wrap;
        gap: 10px;
        padding: 10px;
    }

    .btn-fill-forms {
        order: 3;
        flex: 1 1 100%;
        padding: 12px 15px;
        font-size: 13px;
    }

    .bottom-bar-right {
        flex: 1 1 100%;
        gap: 10px;
    }

    .bottom-total {
        flex: 0 1 auto;
        min-width: 80px;
    }

    .bottom-total span {
        font-size: 11px;
    }

    .bottom-total strong {
        font-size: 14px;
    }

    .btn-add-cart {
        flex: 1;
        padding: 12px 15px;
        font-size: 12px;
    }

    .progress-steps {
        flex-wrap: wrap;
        gap: 10px;
    }

    .progress-step {
        gap: 8px;
    }

    .step-circle {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }

    .step-label {
        font-size: 11px;
    }

    .progress-line {
        width: 50px;
    }

    .final-row {
        font-size: 16px;
    }

    .final-price {
        font-size: 18px !important;
    }
}

@media (max-width: 480px) {
    .checkout-page {
        padding: 15px 0 140px 0;
    }

    .checkout-content {
        padding: 15px;
    }

    .section-title {
        font-size: 18px;
    }

    .bottom-bar {
        padding: 8px 0;
    }

    .bottom-bar-content {
        padding: 0 15px;
    }

    .btn-fill-forms {
        padding: 10px 12px;
        font-size: 12px;
    }

    .btn-add-cart {
        padding: 10px 12px;
        font-size: 11px;
    }

    .form-group input,
    .form-group select {
        padding: 10px;
        font-size: 13px;
    }

    .step-circle {
        width: 35px;
        height: 35px;
        font-size: 12px;
    }

    .progress-line {
        width: 30px;
    }
}

/* ============================= */
/* MOBILE (padrão) — usa <img> */
/* ============================= */

.hero {
    width: 100%;
    overflow: hidden;
}

.hero-slider {
    width: 100%;
}

.hero-slide {
    width: 100%;
    position: relative;
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}


/* ============================= */
/* DESKTOP — usa banner desktop */
/* ============================= */

@media (min-width: 1024px) {

    /* Esconde a imagem mobile */
    .hero-image {
        display: none;
    }

    /* Altura controlada do banner desktop */
    .hero-slide {
        height: 480px; /* ajuste se quiser: 450–550px */
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }

    /* Slide 1 */
    .hero-slide:nth-child(1) {
        background-image: url("https://rotadomarreceptivo.com.br/images/desktop.webp");
    }

    /* Slide 2 */
    .hero-slide:nth-child(2) {
        background-image: url("https://rotadomarreceptivo.com.br/images/desktop.webp");
    }
}
