/* ==========================================================================
   ARQUIVO CSS COMPLETO E FINAL
   ========================================================================== */

/* 1. VARIÁVEIS E RESET GERAL */
:root {
    --verde-principal: #004F33;
    --dourado-nobre: #D1AA67;
    --fundo: #f4f4f4; /* Cinza claro para o fundo do rodapé */
}
html { box-sizing: border-box; }
*, *:before, *:after { box-sizing: inherit; }

/* 2. ESTILOS BASE (MOBILE-FIRST) */
body {
    font-family: 'Montserrat', sans-serif;
    background-color: white; /* FUNDO BRANCO, COMO SOLICITADO */
    color: #333;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

.main-content {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: 100vh;
    padding: 20px;
}

.container {
    width: 100%;
    max-width: 550px;
    text-align: center;
}

.logo, .header-logo { max-width: 250px; width: 70%; height: auto; margin-bottom: 20px; }
h2 { color: var(--verde-principal); font-size: 1.5em; }
h3 { color: var(--verde-principal); }
p { margin-bottom: 20px; line-height: 1.5; font-size: 1em; }
input[type="text"], input[type="email"], input[type="tel"], button { width: 100%; padding: 15px; margin-bottom: 20px; border: 1px solid #ccc; border-radius: 4px; font-size: 1em; font-family: 'Montserrat', sans-serif; }
input:focus { outline: none; border-color: var(--dourado-nobre); }
button, a.btn-download { background-color: var(--verde-principal); width: 100%;
    padding: 15px; color: white; font-weight: bold; cursor: pointer; border: none; }
#mensagem-erro { color: #c0392b; font-weight: bold; min-height: 20px; margin-top: -10px; }
.alert { background-color: #fffbe6; border: 1px solid #ffe58f; border-radius: 4px; padding: 1px 15px; margin-bottom: 25px; }
.acompanhante-box { border: 1px solid #eee; border-radius: 8px; padding: 10px 20px; margin: 20px 0; }
.radio-group { display: flex; flex-direction: column; text-align: left; gap: 10px; margin-bottom: 15px; }
.aviso-sustentavel { background-color: #f0fff4; border: 1px solid #b7ebc9; border-radius: 4px; padding: 1px 15px; margin-top: 20px; }

/* 3. NOVO RODAPÉ DE PONTA A PONTA */
.footer-bar {
    background-color: var(--fundo);
    color: #555;
    padding: 30px 20px;
    width: 100%;
    text-align: center;
}
.footer-content { max-width: 800px; margin: 0 auto; }
.footer-bar h4 { color: var(--verde-principal); margin-top: 20px; margin-bottom: 10px; }
.footer-bar p { font-size: 0.9em; margin-bottom: 5px; }
.sustentabilidade a { color: var(--verde-principal); font-weight: bold; text-decoration: none; }
.map-container { border-radius: 8px; overflow: hidden; margin-top: 15px; }

/* 4. MODAL E WHATSAPP (sem alterações significativas) */
.modal-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.7); display: flex; justify-content: center; align-items: center; z-index: 1000; padding: 20px; }
.modal-content { background: white; padding: 25px; border-radius: 8px; max-width: 500px; width: 100%; text-align: center; }
.aviso-modal { background-color: #f4f4f4; padding: 1px 15px; margin: 20px 0; border-radius: 4px; font-size: 0.9em; }
.modal-actions { display: flex; gap: 15px; justify-content: center; margin-top: 20px; }
.modal-actions button { width: auto; padding: 10px 25px; }
#btn-cancelar { background-color: #aaa; }

.whatsapp-container { position: fixed; bottom: 20px; right: 20px; z-index: 100; display: flex; align-items: center; }
.whatsapp-button { background-color: #25d366; border-radius: 50%; box-shadow: 2px 2px 6px rgba(0,0,0,0.3); width: 55px; height: 55px; display: flex; justify-content: center; align-items: center; }
.whatsapp-icon { width: 30px; height: 30px; fill: #FFF; }
.whatsapp-tooltip { background-color: #f8f9fa; border: 1px solid #e0e0e0; border-radius: 8px; padding: 8px; font-size: 12px; margin-right: 10px; max-width: 150px; }


/* DENTRO DO SEU style.css (antes do @media) */

/* Estilos para a nova caixa de detalhes na tela de sucesso */
.confirmation-details {
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 10px 20px;
    margin: 25px 0;
    text-align: left;
}
.confirmation-details p {
    margin: 10px 0;
    font-size: 1em;
}

/* Estilo para o novo botão de download */
.btn-download {
    background-color: var(--dourado-nobre);
    color: var(--verde-principal);
    margin-top: 20px;
}

/* DENTRO DO SEU style.css */


/* 5. ESTILOS PARA TELAS MAIORES */
@media (min-width: 768px) {
    .main-content { min-height: auto; padding-bottom: 0; }
    .container { background-color: white; border-radius: 8px; box-shadow: 0 4px 15px rgba(0,0,0,0.1); padding: 40px; }
    .whatsapp-tooltip { max-width: 180px; font-size: 14px; }
    .whatsapp-button { width: 60px; height: 60px; }
}