/* --- Configurações Globais e Paleta de Cores --- */
:root {
    --primary-dark: #000000;
    --secondary-dark: #1a1a1a;
    --gold: #c5a05f;
    --white: #ffffff;
    --text-light: #f0f0f0;
    --text-dark-secondary: #aaaaaa;
    --border-light: rgba(255, 255, 255, 0.1);
    --error-red: #e74c3c;

    /* NOVAS VARIÁVEIS ADICIONADAS PARA O CARRINHO E FORMULÁRIOS */
    --accent-color: var(--gold);
    --danger-color: var(--error-red);
    --input-bg: var(--primary-dark);

    --card-bg: var(--secondary-dark); /* Usado no lugar de secondary-dark em alguns cards */
    --text-muted: var(--text-dark-secondary); /* Usado no lugar de text-dark-secondary */
    --primary-color: #2c3e50; /* Cor para tags ou elementos primários (ajuste se quiser) */
    --gold-dark: #dfb66d; /* Dourado para hover */
    --secondary-color: #34495e; /* Usado em hover de diferenciais */
    --bg-dark: var(--primary-dark); /* Para fundos gerais (sinônimo de primary-dark) */
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', Arial, Helvetica, sans-serif;
    background-color: var(--primary-dark);
    color: var(--white);
    line-height: 1.6;
}

/* A BARRA DE PROGRESSO DOURADA */
#scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%; /* O JS vai mudar isso */
    height: 4px;
    background-color: var(--gold);
    z-index: 1001;
    transition: width 0.1s ease-out;
}

.container { max-width: 1300px; margin: 0 auto; padding: 0 30px; }

/* --- Navbar --- */
.navbar {
    background-color: var(--primary-dark); height: 70px;
    position: fixed; top: 4px; left: 0; width: 100%; z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}
.navbar.scrolled {
    background-color: rgba(0, 0, 0, 0.9);
    border-bottom-color: transparent;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}
.navbar .container {
    height: 100%; position: relative; display: flex;
    justify-content: space-between; align-items: center;
}
.logo { position: absolute; left: 5px; top: 50%; transform: translateY(-50%); z-index: 10; }
.logo img { height: 130px; display: block; }

/* --- Menu --- */
.navbar nav { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); }
.navbar nav ul { list-style: none; display: flex; gap: 35px; }
.navbar nav a {
    text-decoration: none; color: var(--white); font-size: 16px;
    font-weight: 500; transition: color 0.3s ease; position: relative;
}
/* ESTILO DO LINK ATIVO (DOURADO) */
.navbar nav a.active, .navbar nav a:hover { color: var(--gold); }
.navbar nav a.active::after {
    content: ''; position: absolute; bottom: -5px; left: 0;
    width: 100%; height: 2px; background-color: var(--gold);
}

/* --- Ações do Header --- */
.header-actions {
    position: absolute; right: 5px; top: 50%; transform: translateY(-50%);
    display: flex; align-items: center; gap: 25px;
}
.header-actions a {
    color: var(--white); text-decoration: none; font-size: 16px;
    font-weight: 500; transition: color 0.3s ease;
}
.header-actions a:hover { color: var(--gold); }
.header-actions .lang-selector { display: flex; align-items: center; gap: 6px; }
.header-actions .lang-selector .fa-caret-down { font-size: 12px; }
.header-actions .contact-icon { font-size: 18px; }

/* --- Hero --- */
.hero {
    display: flex; flex-direction: column; justify-content: center; align-items: center;
    text-align: center; min-height: 100vh; padding: 0 20px; position: relative; overflow: hidden;
}
.background-video {
    position: absolute; top: 50%; left: 50%; min-width: 100%; min-height: 100%;
    width: auto; height: auto; z-index: 1; transform: translate(-50%, -50%);
    object-fit: cover; filter: blur(5px);
}
.video-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background-color: rgba(0, 0, 0, 0.5); z-index: 2;
}
.hero-content { position: relative; z-index: 3; margin-top: 70px; }
.hero h1 { font-size: 3.2rem; font-weight: 700; color: var(--white); margin-bottom: 15px; line-height: 1.3; }
.hero .highlight { color: var(--gold); font-size: 3.5rem; }
.hero .subheadline {
    font-size: 1.15rem; font-weight: 400; color: var(--text-light);
    margin-bottom: 35px; max-width: 550px; margin-left: auto; margin-right: auto;
}

/* --- Botões --- */
.btn, .cta-button {
    display: inline-block; padding: 0.8rem 1.8rem; border-radius: 5px;
    text-decoration: none !important; font-weight: 600; transition: all 0.3s ease;
    cursor: pointer; border: none;
}
.btn-primary, .cta-button { background-color: var(--gold); color: var(--primary-dark); }
.btn-primary:hover, .cta-button:hover {
    background-color: #dfb66d; transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3); color: var(--primary-dark);
}
.btn-secondary {
    background-color: var(--secondary-dark); color: var(--gold); border: 1px solid var(--gold);
}
.btn-secondary:hover {
    background-color: var(--gold); color: var(--primary-dark);
    transform: translateY(-2px); box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* --- Seções --- */
.section-padding { padding: 6rem 0; }
.section-title {
    text-align: center; color: var(--gold); font-size: 2.5rem;
    margin-bottom: 1rem; position: relative; padding-bottom: 15px;
}
.section-title::after {
    content: ''; position: absolute; left: 50%; bottom: 0;
    transform: translateX(-50%); width: 80px; height: 3px;
    background-color: var(--gold); border-radius: 2px;
}
.section-subtitle {
    text-align: center; color: var(--text-dark-secondary);
    font-size: 1.1rem; margin-bottom: 4rem;
}
.center-content { text-align: center; margin-top: 3rem; }

/* --- Cards --- */
.destaques-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem; justify-content: center;
}
.passeio-card {
    background-color: var(--secondary-dark); border-radius: 12px;
    overflow: hidden; box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease; display: flex; flex-direction: column;
    border: 1px solid rgba(255, 255, 255, 0.05);
}
.passeio-card:hover {
    transform: translateY(-8px); box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
    border-color: var(--gold);
}
.passeio-card-image {
    width: 100%; height: 220px; background-size: cover; background-position: center;
    position: relative; display: flex; align-items: flex-start;
    justify-content: flex-end; padding: 15px;
}
.passeio-tag {
    background-color: var(--gold); color: var(--primary-dark);
    padding: 0.4rem 1rem; border-radius: 20px; font-size: 0.8rem;
    font-weight: 700; text-transform: uppercase; box-shadow: 0 2px 8px rgba(0,0,0,0.3);
    letter-spacing: 0.5px;
}
.passeio-card-content {
    padding: 1.8rem; display: flex; flex-direction: column; flex-grow: 1;
}
.passeio-title {
    color: var(--white); font-size: 1.4rem; margin-bottom: 0.8rem; line-height: 1.3;
}
.passeio-description {
    color: var(--text-dark-secondary); font-size: 0.95rem;
    line-height: 1.6; margin-bottom: 1.5rem; flex-grow: 1;
}
.passeio-details {
    display: flex; justify-content: space-between; align-items: flex-end;
    margin-bottom: 1.5rem; padding-top: 1rem; border-top: 1px solid var(--border-light);
}
.passeio-price-label {
    font-size: 0.85rem; color: var(--text-dark-secondary); display: block; margin-bottom: 0.2rem;
}
.passeio-price {
    color: var(--gold); font-size: 1.8rem; font-weight: 700; line-height: 1;
}
.passeio-categories {
    color: var(--text-light); font-size: 0.85rem; font-weight: 500; text-align: right;
}
.passeio-categories i { color: var(--gold); margin-right: 5px; }
.passeio-card-content .btn {
    width: 100%; text-align: center; display: flex;
    align-items: center; justify-content: center; gap: 8px;
}
.no-results, .error-message {
    text-align: center; font-size: 1.2rem; color: var(--text-light);
    grid-column: 1 / -1; padding: 3rem; background: var(--secondary-dark);
    border-radius: 12px;
}
.error-message { color: var(--error-red); border: 1px solid var(--error-red); }

/* --- Modal (Pop-up de Detalhes da Experiência) --- */
.modal-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background-color: rgba(0, 0, 0, 0.85); display: flex;
    justify-content: center; align-items: center; z-index: 2000;
    opacity: 0; visibility: hidden; transition: all 0.3s ease;
}
.modal-overlay.active { opacity: 1; visibility: visible; }
.modal-content {
    background-color: var(--secondary-dark); width: 90%; max-width: 900px;
    border-radius: 12px; overflow: hidden; position: relative;
    transform: translateY(50px); transition: all 0.3s ease;
    max-height: 90vh; overflow-y: auto;
}
.modal-overlay.active .modal-content { transform: translateY(0); }
.modal-close-btn {
    position: absolute; top: 15px; right: 20px; font-size: 2rem;
    color: var(--white); cursor: pointer; z-index: 10;
}
.modal-body { display: flex; flex-direction: column; }
@media (min-width: 768px) { .modal-body { flex-direction: row; } }
.modal-image-container {
    flex: 1.2; position: relative; min-height: 400px; background-color: #000;
    display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.modal-carousel-img {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    object-fit: cover; opacity: 0; transition: opacity 0.3s ease-in-out;
}
.modal-carousel-img.active { opacity: 1; z-index: 1; }
.carousel-btn {
    position: absolute; top: 50%; transform: translateY(-50%);
    background-color: rgba(0,0,0,0.5); color: var(--white); border: none;
    padding: 10px 15px; font-size: 1.5rem; cursor: pointer; z-index: 2;
}
.carousel-btn:hover { background-color: var(--gold); color: var(--primary-dark); }
.prev-btn { left: 10px; }
.next-btn { right: 10px; }
.modal-info { flex: 1; padding: 2rem; display: flex; flex-direction: column; }
.modal-title { font-size: 2rem; color: var(--gold); margin-bottom: 1rem; line-height: 1.2; }
.modal-meta {
    display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 1.5rem;
    color: var(--text-dark-secondary); font-size: 0.9rem;
}
.modal-meta i { color: var(--gold); margin-right: 5px; }
.modal-description {
    font-size: 1rem; line-height: 1.7; margin-bottom: 2rem;
    color: var(--text-light); white-space: pre-line;
}
/* Sobrescreve o estilo do modal-price-box no modal de detalhes para o layout de carrinho */
.modal-price-box {
    margin-top: auto; padding-top: 1.5rem; border-top: 1px solid var(--border-light);
    display: flex; justify-content: space-between; align-items: center;
}
.modal-price { font-size: 2.2rem; font-weight: 700; color: var(--gold); }
.modal-price small { font-size: 1rem; font-weight: 400; color: var(--text-dark-secondary); display: block; }

/* --- Estilos para a Seção "Sobre" --- */
.sobre-bloco {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 80px;
}
.sobre-bloco:last-of-type { margin-bottom: 0; }
.sobre-bloco.reverse-mobile { flex-direction: row-reverse; }
.sobre-conteudo { flex: 1; color: var(--text-light); }
.sobre-conteudo h3 { font-size: 2.2rem; color: var(--gold); margin-bottom: 20px; }
.sobre-conteudo p { font-size: 1.1rem; line-height: 1.8; margin-bottom: 20px; }
.sobre-conteudo ul { list-style: none; padding: 0; margin-top: 20px; }
.sobre-conteudo ul li { font-size: 1rem; margin-bottom: 10px; display: flex; align-items: center; }
.sobre-conteudo ul li i { margin-right: 10px; font-size: 1.2rem; }
.gold-icon { color: var(--gold); }
.sobre-imagem {
    flex: 1; min-width: 400px; border-radius: 8px; overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}
.sobre-imagem img {
    width: 100%; height: auto; display: block; border-radius: 8px;
    object-fit: cover; aspect-ratio: 4/3;
}

/* Diferenciais (3 colunas) */
.sobre-diferenciais { margin: 80px 0; text-align: center; }
.sobre-diferenciais h3 { font-size: 2.5rem; color: var(--gold); margin-bottom: 40px; }
.diferenciais-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}
.diferencial-item {
    background-color: var(--card-bg); padding: 30px; border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, background-color 0.3s ease;
}
.diferencial-item:hover { transform: translateY(-5px); background-color: var(--secondary-color); }
.diferencial-item i { font-size: 3rem; margin-bottom: 20px; }
.diferencial-item h4 { font-size: 1.5rem; color: var(--text-light); margin-bottom: 15px; }
.diferencial-item p { font-size: 0.95rem; color: var(--text-muted); }

/* Frota de Veículos */
.frota-veiculos .sobre-conteudo h3 { margin-bottom: 20px; }
.frota-galeria {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px; flex: 1;
}
.frota-galeria img {
    width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2); transition: transform 0.3s ease;
}
.frota-galeria img:hover { transform: scale(1.05); }

/* RESPONSIVIDADE PARA SEÇÕES "SOBRE" E "FROTA" */
@media (max-width: 992px) {
    .sobre-bloco { flex-direction: column; text-align: center; }
    .sobre-bloco.reverse-mobile { flex-direction: column; }
    .sobre-imagem { min-width: unset; width: 100%; margin-bottom: 30px; }
    .sobre-conteudo ul { text-align: left; }
    .diferenciais-grid { grid-template-columns: 1fr; }
    .frota-galeria { grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); }
}

/* --- Seção "Contato" --- */
.contato-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
    margin-top: 50px;
}
.contato-info-bloco, .contato-form-bloco {
    background-color: var(--secondary-dark); padding: 40px; border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3); display: flex;
    flex-direction: column; justify-content: space-between;
}
.contato-info-bloco h3, .contato-form-bloco h3, .map-container h3 {
    font-size: 2rem; color: var(--gold); margin-bottom: 25px;
}
.contato-info-bloco p {
    font-size: 1.1rem; color: var(--text-light); line-height: 1.7; margin-bottom: 30px;
}
.contato-info-bloco ul { list-style: none; padding: 0; margin-bottom: 30px; }
.contato-info-bloco ul li {
    display: flex; align-items: center; font-size: 1.1rem;
    color: var(--text-light); margin-bottom: 15px;
}
.contato-info-bloco ul li a {
    color: var(--text-light); text-decoration: none; transition: color 0.3s ease;
}
.contato-info-bloco ul li a:hover { color: var(--gold); }
.contato-info-bloco ul li .gold-icon {
    margin-right: 15px; font-size: 1.4rem; min-width: 25px;
}
.social-links {
    display: flex; gap: 20px; margin-top: 30px; padding-top: 20px;
    border-top: 1px solid var(--border-light);
}
.social-links a {
    color: var(--gold); font-size: 1.8rem;
    transition: transform 0.3s ease, color 0.3s ease;
}
.social-links a:hover { color: var(--white); transform: translateY(-5px); }

/* Estilos do Formulário */
.contact-form .form-group { margin-bottom: 20px; }
.contact-form label {
    display: block; font-size: 1rem; color: var(--text-light);
    margin-bottom: 8px; font-weight: 500;
}
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
    width: 100%; padding: 12px 15px; background-color: var(--primary-dark);
    border: 1px solid var(--border-light); border-radius: 8px;
    color: var(--white); font-size: 1rem; outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.contact-form input[type="text"]:focus,
.contact-form input[type="email"]:focus,
.contact-form textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(197, 160, 95, 0.3);
}
.contact-form textarea { resize: vertical; min-height: 120px; }
.contact-form .btn-primary {
    width: auto; display: inline-flex; align-items: center;
    gap: 10px; padding: 12px 25px; font-size: 1.1rem;
}
.form-message {
    margin-top: 20px; padding: 15px; border-radius: 8px;
    font-size: 1rem; text-align: center; display: none;
}
.form-message.success { background-color: #28a745; color: var(--white); }
.form-message.error { background-color: var(--error-red); color: var(--white); }

/* Mapa */
.map-container {
    margin-top: 80px; background-color: var(--secondary-dark);
    padding: 40px; border-radius: 12px; box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    text-align: center;
}
.map-container iframe {
    border-radius: 8px; margin-top: 20px; width: 100%;
}

/* RESPONSIVIDADE PARA A SEÇÃO DE CONTATO */
@media (max-width: 768px) {
    .contato-grid { grid-template-columns: 1fr; }
    .contato-info-bloco, .contato-form-bloco { padding: 30px; }
    .contato-info-bloco h3, .contato-form-bloco h3, .map-container h3 {
        font-size: 1.8rem; margin-bottom: 20px;
    }
    .contato-info-bloco p, .contato-info-bloco ul li { font-size: 1rem; }
    .social-links { justify-content: center; }
    .map-container { padding: 30px; }
}

/* --- Estilos para o Rodapé --- */
.footer {
    background-color: var(--secondary-dark); color: var(--text-light);
    padding: 4rem 0 2rem; border-top: 1px solid var(--border-light);
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px; margin-bottom: 3rem;
}
.footer-title { font-size: 1.5rem; color: var(--gold); margin-bottom: 1.5rem; font-weight: 600; }
.footer-about p { font-size: 0.95rem; line-height: 1.7; margin-bottom: 1.5rem; }
.social-links-footer { display: flex; gap: 15px; }
.social-links-footer a {
    color: var(--text-light); font-size: 1.3rem; transition: color 0.3s ease;
}
.social-links-footer a:hover { color: var(--gold); }
.footer-links ul, .footer-contact ul { list-style: none; padding: 0; }
.footer-links ul li, .footer-contact ul li { margin-bottom: 10px; }
.footer-links a, .footer-contact a {
    color: var(--text-light); text-decoration: none; font-size: 0.95rem;
    transition: color 0.3s ease;
}
.footer-links a:hover, .footer-contact a:hover { color: var(--gold); }
.footer-contact ul li { display: flex; align-items: flex-start; }
.footer-contact ul li .gold-icon {
    margin-right: 10px; font-size: 1.1rem; color: var(--gold); min-width: 20px;
}

/* Parte inferior do rodapé (copyright e Cadastur) */
.footer-bottom {
    border-top: 1px solid var(--border-light); padding-top: 1.5rem;
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 20px;
}
.footer-bottom p {
    font-size: 0.9rem; color: var(--text-dark-secondary); margin: 0;
}
.dev-link {
    color: var(--gold); text-decoration: none; font-weight: 500;
    transition: color 0.3s ease;
}
.dev-link:hover { color: var(--white); text-decoration: underline; }
.admin-login-trigger {
    cursor: pointer; color: var(--text-dark-secondary);
    transition: color 0.3s ease; font-weight: 500; margin-left: 10px;
    position: relative;
}
.admin-login-trigger:hover { color: #c5a05f; }
.cadastur-seal img { max-height: 60px; width: auto; display: block; }

/* RESPONSIVIDADE DO RODAPÉ */
@media (max-width: 768px) {
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .footer-about, .footer-links, .footer-contact { text-align: center; }
    .social-links-footer { justify-content: center; margin-left: auto; margin-right: auto; }
    .footer-links ul, .footer-contact ul {
        display: flex; flex-direction: column; align-items: center;
    }
    .footer-contact ul li { justify-content: center; text-align: left; }
    .footer-contact ul li .gold-icon { margin-right: 5px; }
    .footer-bottom { flex-direction: column-reverse; text-align: center; }
    .footer-bottom p { margin-top: 15px; }
    .cadastur-seal { margin-bottom: 10px; }
}

/* --- NOVOS ESTILOS PARA CARRINHO E POP-UPS (Consolidado e Corrigido) --- */

/* Estilo do Ícone do Carrinho na Navbar */
.cart-icon-link {
    position: relative;
    font-size: 1.2rem;
    color: var(--white) !important;
    text-decoration: none;
    transition: color 0.3s ease;
}
.cart-icon-link:hover {
    color: var(--gold) !important;
}
.cart-count {
    position: absolute;
    top: -8px;
    right: -12px;
    background-color: var(--error-red);
    color: var(--white);
    border-radius: 50%;
    padding: 2px 6px;
    font-size: 0.7rem;
    font-weight: 700;
    line-height: 1;
    min-width: 20px;
    text-align: center;
    pointer-events: none;
}

/* ---------------------------------------------------------------------------------- */
/* 1. CORREÇÃO DO TAMANHO E LAYOUT DOS BOTÕES NO MODAL DE DETALHES (.modal-buttons-group) */
/* ---------------------------------------------------------------------------------- */

/* Redefine os estilos de largura para que os botões se ajustem melhor */
.modal-buttons-group .btn-secondary,
.modal-buttons-group .btn-primary {
    /* Remove a largura fixa de 150px que estava causando problemas */
    width: auto;

    /* Faz os botões ficarem com o mesmo tamanho e distribuídos */
    flex-grow: 1;
    max-width: 180px;
    min-width: 120px;

    /* Ajusta o padding e fonte para ficarem mais compactos */
    padding: 10px 15px;
    font-size: 0.9em;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.modal-buttons-group {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    gap: 10px;
    margin-top: 20px;
    margin-bottom: 0; /* Remove margem inferior desnecessária */
}

/* ---------------------------------------------------------------------------------- */
/* 2. CORREÇÃO DO LAYOUT E PROPORÇÃO DO CARRINHO (CART MODAL) */
/* ---------------------------------------------------------------------------------- */

#cart-modal-overlay .cart-content {
    max-width: 600px;
    width: 90%;
    padding: 25px;
    /* Usa a variável de fundo, se estiver definida no seu código base */
    background-color: var(--secondary-dark);
}

#cart-items-container {
    max-height: 300px;
    overflow-y: auto;
    margin-bottom: 20px;
    padding-right: 10px;
}

/* Estilo individual do item no carrinho */
.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-light);
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item-info {
    flex-grow: 1;
    margin-right: 15px;
}

.cart-item-info strong {
    font-size: 1.1em;
    color: var(--text-light); /* Cor clara para o título do passeio */
    display: block;
    margin-bottom: 2px;
}

.cart-item-info p {
    font-size: 0.85em;
    color: var(--text-muted);
    line-height: 1.4;
}

.cart-item-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 5px;
}

.cart-item-price {
    font-weight: bold;
    color: var(--accent-color);
    font-size: 1.05em;
    white-space: nowrap;
}

.remove-cart-item {
    background: none;
    border: none;
    color: var(--danger-color);
    cursor: pointer;
    font-size: 0.8em;
    padding: 3px 5px;
    border-radius: 3px;
    transition: background-color 0.3s ease;
}

.remove-cart-item:hover {
    background-color: rgba(255, 0, 0, 0.1);
    text-decoration: underline;
}

/* Estilo para o total estimado */
/* Sobrescreve o estilo inline do seu HTML para garantir consistência e layout */
#cart-summary > div:first-child {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    margin-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    font-size: 1.2em;
    font-weight: bold;
}

#cart-summary > div:first-child span {
    color: var(--gold);
}


/* Botão de Finalizar Orçamento via WhatsApp */
#checkout-whatsapp-btn {
    width: 100%;
    padding: 15px 20px;
    margin-top: 20px;
    background-color: #25D366;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

#checkout-whatsapp-btn:hover {
    background-color: #1DA851;
}

/* Ícone do WhatsApp no botão */
#checkout-whatsapp-btn i {
    font-size: 1.3em;
}

/* ---------------------------------------------------------------------------------- */
/* 3. RESPONSIVIDADE CORRIGIDA (Remove width: 48% em mobile para se ajustar ao flex-grow) */
/* ---------------------------------------------------------------------------------- */

/* ... (Restante do index.css antes das media queries) ... */

/* ========================================================== */
/* MEDIA QUERIES PARA MOBILE (AJUSTADO PARA MENOS SQUASHING)  */
/* ========================================================== */

/* Estilos para Telas de Tablets (retrato) e Celulares (largura máxima de 767px) */
@media (max-width: 767px) {
    .container {
        padding: 0 20px; /* Padding mais generoso */
    }

    /* --- Navbar (um pouco mais de altura) --- */
    .navbar {
        height: 65px;
    }
    .logo img {
        height: 110px;
    }
    .navbar nav {
        display: none;
    }
    .header-actions {
        right: 0;
        gap: 15px;
    }
    .header-actions a {
        font-size: 15px;
    }
    .header-actions .lang-selector {
        display: none;
    }
    .cart-icon-link {
        font-size: 1.2rem;
    }
    .cart-count {
        top: -7px;
        right: -10px;
        padding: 2px 6px;
        font-size: 0.7rem;
    }

    /* --- Hero Section (Mais Espaçamento Vertical) --- */
    .hero {
        min-height: 90vh; /* Aumenta a altura mínima */
        padding: 0 20px;
    }
    .hero-content {
        margin-top: 80px; /* Mais espaço abaixo da navbar */
    }
    .hero h1 {
        font-size: 2.3rem;
        margin-bottom: 15px;
    }
    .hero .highlight {
        font-size: 2.6rem;
    }
    .hero .subheadline {
        font-size: 1.05rem;
        margin-bottom: 30px;
        max-width: 90%;
    }

    /* --- Botões --- */
    .btn, .cta-button {
        padding: 0.8rem 1.6rem;
        font-size: 1rem;
    }

    /* --- Seções Gerais --- */
    .section-padding {
        padding: 5rem 0; /* Mais padding entre as seções */
    }
    .section-title {
        font-size: 2.2rem;
        margin-bottom: 1rem;
    }
    .section-subtitle {
        font-size: 1.05rem;
        margin-bottom: 3.5rem;
    }

    /* --- Cards (Ajustes de tamanho para 767px) --- */
    .destaques-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .passeio-card {
        margin: 0 auto;
        max-width: 380px;
    }
    .passeio-card-image {
        height: 200px;
    }
    .passeio-title {
        font-size: 1.3rem;
    }
    .passeio-description {
        font-size: 0.95rem;
    }
    .passeio-price {
        font-size: 1.6rem;
    }
    .passeio-categories {
        font-size: 0.85rem;
    }

    /* --- Modal de Detalhes da Experiência --- */
    .modal-content {
        width: 90%;
        max-width: 100%;
    }
    .modal-close-btn {
        font-size: 2rem;
        top: 15px;
        right: 20px;
    }
    .modal-body {
        flex-direction: column;
    }
    .modal-image-container {
        min-height: 300px;
    }
    .carousel-btn {
        padding: 10px 15px;
        font-size: 1.5rem;
    }
    .modal-info {
        padding: 2rem;
    }
    .modal-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    .modal-meta {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    .modal-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    .modal-price-box {
        padding-top: 1.5rem;
        margin-top: 1.5rem;
    }
    .modal-price {
        font-size: 2rem;
    }
    .modal-price small {
        font-size: 1rem;
    }
    .modal-buttons-group {
        flex-direction: column;
        gap: 15px;
        margin-top: 20px;
    }
    .modal-buttons-group .btn-secondary,
    .modal-buttons-group .btn-primary {
        width: 100%;
        max-width: none;
        min-width: unset;
        font-size: 1rem;
        padding: 10px 15px;
    }

    /* --- Seção Sobre e Contato (Ajustes de padding) --- */
    .sobre-bloco {
        gap: 30px;
        margin-bottom: 60px;
    }
    .sobre-conteudo h3 {
        font-size: 2rem;
        margin-bottom: 20px;
    }
    .sobre-conteudo p {
        font-size: 1.05rem;
        line-height: 1.7;
    }
    .sobre-imagem {
        width: 95%;
        margin: 0 auto 30px auto;
    }
    .diferenciais-grid {
        gap: 25px;
    }
    .diferencial-item {
        padding: 30px;
    }
    .frota-galeria {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 12px;
    }
    .contato-grid {
        gap: 40px;
        margin-top: 40px;
    }
    .contato-info-bloco, .contato-form-bloco, .map-container {
        padding: 30px;
    }
    .map-container iframe {
        height: 350px;
    }

    /* --- Rodapé --- */
    .footer {
        padding: 3.5rem 0 1.8rem;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
        margin-bottom: 2.5rem;
    }
    .footer-title {
        font-size: 1.4rem;
        margin-bottom: 1.2rem;
    }
    .footer-bottom {
        padding-top: 1.2rem;
        gap: 18px;
    }

    /* --- Modal do Carrinho --- */
    #cart-modal-overlay .cart-content {
        width: 90%;
        padding: 25px;
    }
    #cart-items-container {
        max-height: 300px;
    }
    #cart-summary > div:first-child {
        font-size: 1.15em;
        padding-top: 18px;
        margin-top: 18px;
    }
    #checkout-whatsapp-btn {
        padding: 14px 18px;
        font-size: 1.05em;
        margin-top: 18px;
    }
}


/* Estilos para Celulares Pequenos EXTREMOS (largura máxima de 420px) */
@media (max-width: 420px) {
    .container {
        padding: 0 15px; /* Mantém o padding de 15px para não espremer */
    }
    .navbar {
        height: 55px;
    }
    .logo img {
        height: 90px;
    }
    .header-actions {
        gap: 10px;
    }
    .header-actions a {
        font-size: 13px;
    }
    .cart-icon-link {
        font-size: 1.2rem;
    }
    .cart-count {
        top: -7px;
        right: -10px;
        font-size: 0.65rem;
    }

    .hero {
        min-height: 85vh;
        padding: 0 15px;
    }
    .hero-content {
        margin-top: 70px;
    }
    .hero h1 {
        font-size: 2.1rem;
        margin-bottom: 10px;
    }
    .hero .highlight {
        font-size: 2.3rem;
    }
    .hero .subheadline {
        font-size: 0.95rem;
        margin-bottom: 25px;
    }

    .btn, .cta-button {
        padding: 0.7rem 1.4rem;
        font-size: 0.95rem;
    }

    .section-padding {
        padding: 4.5rem 0;
    }
    .section-title {
        font-size: 2rem;
    }
    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 3.2rem;
    }

    .passeio-card {
        max-width: 100%;
        border-radius: 8px;
    }
    .passeio-card-image {
        height: 180px;
    }
    .passeio-card-content {
        padding: 1.5rem;
    }
    .passeio-title {
        font-size: 1.2rem;
    }
    .passeio-description {
        font-size: 0.9rem;
    }
    .passeio-price {
        font-size: 1.6rem;
    }
    .passeio-categories {
        font-size: 0.85rem;
    }

    .modal-content {
        width: 95%;
    }
    .modal-close-btn {
        font-size: 1.8rem;
        top: 12px;
        right: 18px;
    }
    .modal-image-container {
        min-height: 280px;
    }
    .modal-info {
        padding: 1.5rem;
    }
    .modal-title {
        font-size: 1.8rem;
    }
    .modal-price {
        font-size: 1.8rem;
    }
    .modal-buttons-group {
        gap: 12px;
        margin-top: 18px;
    }
    .modal-buttons-group .btn-secondary,
    .modal-buttons-group .btn-primary {
        font-size: 0.95rem;
        padding: 10px 15px;
    }

    .sobre-conteudo h3 {
        font-size: 1.8rem;
    }
    .sobre-conteudo p {
        font-size: 1rem;
    }
    .diferencial-item h4 {
        font-size: 1.3rem;
    }
    .frota-galeria {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    }

    .contato-info-bloco h3, .contato-form-bloco h3, .map-container h3 {
        font-size: 1.6rem;
    }
    .contact-form input, .contact-form textarea {
        font-size: 0.9rem;
    }
    .contact-form .btn-primary {
        font-size: 1rem;
    }
    .map-container iframe {
        height: 300px;
    }

    .footer {
        padding: 3rem 0 1.5rem;
    }
    .footer-title {
        font-size: 1.3rem;
    }
    .footer-bottom p {
        font-size: 0.8rem;
    }

    #cart-modal-overlay .cart-content {
        padding: 20px;
    }
    #cart-items-container {
        max-height: 250px;
    }
    .cart-item-info strong {
        font-size: 1em;
    }
    .cart-item-info p {
        font-size: 0.8em;
    }
    .cart-item-price {
        font-size: 1em;
    }
    #checkout-whatsapp-btn {
        font-size: 1.05em;
    }
}

/* Oculta o ícone de contato em telas menores que 768px (ou outro breakpoint que você prefira) */
@media (max-width: 768px) {
    .header-actions .contact-icon {
        visibility: hidden;
    }
}