/**
 * Estilos Principais - Sistema de Reservas de Hostel
 * Design moderno e responsivo
 */

/* Reset e ConfiguraÃ§Ãµes Globais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --header-color:#2C473B;
    --primary-color: #5C776B;
    --secondary-color: #3498db;
    --accent-color: #e74c3c;
    --success-color: #27ae60;
    --error-color: #e74c3c;
    --text-color: #333;
    --text-light: #666;
    --bg-color: #f8f9fa;
    --white: #ffffff;
    --header:#5C776B
    --border-color: #ddd;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 5px 25px rgba(0, 0, 0, 0.15);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
}

.pacote-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  padding: 1.5rem;
  margin-bottom: 2rem;
  text-align: center;
  font-family: "Poppins", sans-serif;
  transition: transform 0.3s ease;
}

.pacote-card:hover {
  transform: translateY(-5px);
}

.pacote-nome {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: .5rem;
  color: #2c473b;
}

.pacote-preco {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 1rem;
}

.btn-reservar {
  background-color: #2c473b;
  color: #e1e9b8;
  border: none;
  padding: .8rem 1.5rem;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
  transition: background-color .3s ease;
}

.btn-reservar:hover {
  background-color: #e1e9b8;
  color: #dde6b7;
}

.pacote-beneficios {
  margin-top: 1.2rem;
  display: flex;
  flex-direction: column; /* ðŸ‘ˆ todos embaixo um do outro */
  align-items: flex-start;
  gap: .6rem;
  text-align: left;
  padding-left: .5rem;
}

.beneficio {
  font-size: .95rem;
  color: #444;
  display: flex;
  align-items: center;
  gap: .6rem;
}

.beneficio i {
  color: #2c473b;
  width: 20px;
  text-align: center;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* CabeÃ§alho */
.site-header {
    background-color: var(--header-color);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
    position:relative;
    
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo  {
    display: flex;
  align-items: center;
  justify-content: center;
}
.imageLogo{
     max-width: 100px;   /* tamanho mÃ¡ximo */
  height: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}
.language-selector{
     display: flex;
    align-items: center;
    gap: 0.5rem;
    position:relative;
    left:10rem;
}

@media (max-width: 1660px) {
  .imageLogo{
    max-width: 130px;
  }

.logo h1 {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 700;
}
.language-selector {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position:relative;
    left:10rem;
}}
@media (max-width:1550px){
    .language-selector{
        align-items: center;
         display:flex;
  gap:0.5rem;
  position:relative;
    left:5rem;
    
    }
}
@media (max-width: 768px) {
.language-selector {
  display:flex;
  gap:0.5rem;
  position:relative;
    left:0;
    bottom:3rem;
  } }

.lang-label {
    font-weight: 600;
    color: var(--white);
}

.lang-options {
    display: flex;
    gap: 0.5rem;
}

.lang-link {
    padding: 0.4rem 0.8rem;
    text-decoration: none;
    color: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 5px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    font-weight: 600;
}

.lang-link:hover {
    background-color: var(--secondary-color);
    color: var(--white);
    border-color: var(--secondary-color);
}

.lang-link.active {
    background-color: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}
/*Menu*/
.nav-menu {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center;
  position:relative;
  left:10rem;
}

.nav-menu a {
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.nav-menu a:hover {
  color: #E1E9B8;
}
/* ===== MENU MOBILE (NÃƒO ALTERA O DESKTOP) ===== */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 2rem;
  cursor: pointer;
  margin-left: auto;
}

/* Oculta o menu no mobile e mostra o botÃ£o */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
    bottom:6rem;
    position:relative;
  }
.nav-menu a:hover {
  color: #2c473b;
}
.nav-menu a {
  color: #2c473b ;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}
  .nav-menu {
    display: none;
    flex-direction: column;
    background: #DDE6B7;
    width: 100%;
    text-align: center;
    border-radius: 8px;
    margin-top: 1rem;
    padding: 1rem 0;
    left:0;
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-menu li {
    margin: 0.5rem 0;
  }
}
/* SeÃ§Ã£o Hero */
.hero-section {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), 
                url('assets/imageprincipal.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    position: relative;
}

.hero-content {
    max-width: 800px;
    padding: 2rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.scroll-button {
    background-color: rgba(255, 255, 255, 0.2);
    border: 3px solid var(--white);
    border-radius: 50%;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 0 auto;
    animation: bounce 2s infinite;
}

.scroll-button:hover {
    background-color: var(--white);
    color: var(--primary-color);
    transform: scale(1.1);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-20px);
    }
    60% {
        transform: translateY(-10px);
    }
}

/* SeÃ§Ã£o de Reserva */
.booking-section {
    padding: 4rem 0;
    background-color: var(--white);
}

.booking-header {
    text-align: center;
    margin-bottom: 3rem;
}

.booking-header h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.booking-header p {
    font-size: 1.1rem;
    color: var(--text-light);
}
/*Pacote*/
.pacotes-section {
 
  padding: 4rem 2rem;
  text-align: center;
   background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), 
                url('assets/amazonia.jpg') center/cover no-repeat;
}

.pacotes-section .container {
  max-width: 1200px;
  margin: 0 auto;
}

.pacotes-title {
  font-size: 2rem;
  color: #FFF;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.pacotes-subtitle {
  font-size: 1rem;
  color: #fff;
  margin-bottom: 3rem;
}

.pacotes-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  justify-items: center;
  align-items: start;
  max-width: 1300px;
  margin: 0 auto;
}

.pacote-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  width: 300px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.5rem;
}

.pacote-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.pacote-nome {
  font-size: 1.3rem;
  color: #0d442b;
  margin-bottom: 0.5rem;
  font-weight: bold;
}

.pacote-descricao {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 1.5rem;
  height: 50px;
}

.pacote-preco {
  font-size: 1.3rem;
  font-weight: bold;
  color: #5c776b;
  margin-bottom: 1rem;
}

.btn-reservar {
  background-color:#5c776b ;
  color: white;
  border: none;
  border-radius: 8px;
  padding: 0.7rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

.btn-reservar:hover {
  background-color:#0d442b;
  transform: scale(1.05);
}

/* Responsivo */
@media (max-width: 768px) {
  .pacotes-container {
    flex-direction: column;
    align-items: center;
    justify-content:center;
  }
.pacote-descricao {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 3.5rem;
  height: 50px;
}
  .pacote-card {
    width: 90%;
  }
}
/* FormulÃ¡rio */
.booking-form {
    max-width: 900px;
    margin: 0 auto;
    background-color: var(--bg-color);
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group-full {
    grid-column: 1 / -1;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.form-group input,
.form-group select {
    padding: 0.8rem;
    border: 2px solid var(--border-color);
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background-color: var(--white);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--secondary-color);
}

.form-group input.error,
.form-group select.error {
    border-color: var(--error-color);
}

.error-message {
    color: var(--error-color);
    font-size: 0.85rem;
    margin-top: 0.3rem;
    min-height: 1.2rem;
}

/* BotÃµes */
.form-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.btn {
    padding: 0.9rem 2rem;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background-color: var(--secondary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-secondary {
    background-color: var(--text-light);
    color: var(--white);
}

.btn-secondary:hover {
    background-color: #555;
}

.btn-block {
    width: 100%;
}

/* Alertas */
.alert {
    padding: 1.5rem;
    border-radius: 5px;
    margin-bottom: 2rem;
    border-left: 5px solid;
}

.alert strong {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.alert ul {
    margin-left: 1.5rem;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
    border-color: var(--success-color);
}

.alert-error {
    background-color: #f8d7da;
    color: #721c24;
    border-color: var(--error-color);
}

.alert-info {
    background-color: #d1ecf1;
    color: #0c5460;
    border-color: #17a2b8;
}
/*Mapa*/
.map-section {
 
  padding: 4rem 2rem;
  text-align: center;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), 
                url('assets/belem.png') center/cover no-repeat;
}

.map-section h2 {
  color: #FFF;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.map-section p {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 2rem;
}

.map-container {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
  width: 100%;
  height: 450px;
  border: 0;
}

/* Responsivo */
@media (max-width: 768px) {
  .map-section {
    padding: 3rem 1rem;
  }
  .insta-section {
    padding: 3rem 1rem;
  }

  .map-container iframe {
    height: 350px;
  }
}
/* ===== INSTAGRAM ===== */
.insta-section {
 
  padding: 4rem 2rem;
  text-align: center;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), 
                url('assets/f-insta.png') center/cover no-repeat;
}
.insta-section h2 {
  color: #FFF;
  font-size: 2rem;
  margin-bottom: 1rem;
}

/* ===== GALERIA ===== */
.galeria-section {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), 
                url('assets/selva1.png') center/cover no-repeat;
  padding: 4rem 2rem;
  text-align: center;
}

.galeria-section h2 {
  color: #fff;
  font-size: 2rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.galeria-section p {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 2.5rem;
}

.galeria-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.foto {
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.foto img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.foto:hover img {
  transform: scale(1.1);
}

.foto:hover {
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* ===== RESPONSIVO ===== */
@media (max-width: 768px) {
  .galeria-section {
    padding: 3rem 1rem;
  }

  .galeria-grid {
    gap: 1rem;
  }

  .foto {
    border-radius: 8px;
  }
}
/* RodapÃ© */
.site-footer {
    background-color: #2c473b;
    color: var(--white);
    padding: 2rem 0;
   
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 0.8;
}

/* PÃ¡gina de Login */
.login-page {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.login-container {
    width: 100%;
    max-width: 450px;
    padding: 2rem;
}

.login-box {
    background-color: var(--white);
    padding: 3rem;
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
}

.login-box h1 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.login-form .form-group {
    margin-bottom: 1.5rem;
}

.login-footer {
    text-align: center;
    margin-top: 1.5rem;
}

.back-link {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
}

.back-link:hover {
    text-decoration: underline;
}

/* PÃ¡gina Admin */
.admin-page {
    background-color: var(--bg-color);
}

.admin-header {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 1.5rem 0;
    box-shadow: var(--shadow);
}

.admin-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.admin-nav h1 {
    font-size: 1.8rem;
}

.admin-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.admin-user {
    font-weight: 600;
}

.admin-main {
    padding: 3rem 0;
    min-height: calc(100vh - 200px);
}

.admin-content h2 {
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.table-responsive {
    overflow-x: auto;
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.admin-table thead {
    background-color: var(--primary-color);
    color: var(--white);
}

.admin-table th,
.admin-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.admin-table tbody tr:hover {
    background-color: var(--bg-color);
}

.admin-table tbody tr:last-child td {
    border-bottom: none;
}

.admin-footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 1.5rem 0;
    text-align: center;
    margin-top: auto;
}
/*dicas*/
.dicas-section {
  background: #f9f9f9;
  padding: 4rem 1.5rem;
  font-family: "Poppins", sans-serif;
  color: #333;
  text-align: center;
}

.dicas-section h2 {
  font-size: 2rem;
  color: #2c473b;
  margin-bottom: 0.5rem;
}

.dicas-subtitle {
  font-size: 1rem;
  color: #555;
  margin-bottom: 2rem;
}

.subtitulo {
  font-size: 1.5rem;
  color: #2c473b;
  margin: 2rem 0 1rem;
  text-align: left;
}

/* ======== CARROSSEL ======== */
.carousel-container {
  position: relative;
  overflow: hidden;
}

.carousel {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: 1rem;
}

.carousel::-webkit-scrollbar {
  height: 8px;
}

.carousel::-webkit-scrollbar-thumb {
  background: #2c473b;
  border-radius: 4px;
}

/* ======== BOTÕES ======== */
.carousel-btn {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  background-color: rgba(44,71,59,0.8);
  color: #e1e9b8;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  z-index: 2;
  padding: 0.2rem 0.6rem;
  border-radius: 8px;
  transition: background-color 0.3s;
}

.carousel-btn:hover {
  background-color: #e1e9b8;
  color: #2c473b;
}

.carousel-btn.prev { left: 0; }
.carousel-btn.next { right: 0; }

/* ======== CARDS ======== */
.dica-card {
  flex: 0 0 300px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  scroll-snap-align: start;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dica-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.dica-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.dica-content {
  padding: 1.2rem;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-grow: 1;
}

.dica-content h4 {
  color: #2c473b;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.dica-content p {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 1rem;
}

.dica-content a {
  background: #2c473b;
  color: #e1e9b8;
  text-decoration: none;
  padding: 0.6rem 1rem;
  border-radius: 6px;
  font-weight: bold;
  text-align: center;
  align-self: flex-start;
  transition: 0.3s;
}

.dica-content a:hover {
  background: #e1e9b8;
  color: #2c473b;
}

/* ======== RESPONSIVO ======== */
@media (max-width: 768px) {
  .dica-card { flex: 0 0 260px; }
  .carousel-btn { font-size: 1.5rem; top: 45%; }
}

@media (max-width: 480px) {
  .dica-card { flex: 0 0 220px; }
  .carousel-btn { display: none; } /* Esconde setas no mobile */
}

/* Responsividade */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .booking-header h2 {
        font-size: 2rem;
    }
    
    .booking-form {
        padding: 1.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
    }
    
    .navbar .container {
        flex-direction: column;
        gap: 1rem;
    }
    .navbar{
        height:12rem;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .admin-nav {
        flex-direction: column;
        text-align: center;
    }
    
    .admin-table {
        font-size: 0.8rem;
    }
    
    .admin-table th,
    .admin-table td {
        padding: 0.7rem 0.5rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .lang-link {
        padding: 0.3rem 0.6rem;
        font-size: 0.8rem;
    }
}

/* Estilo para o aviso de reserva exclusiva */
.disclaimer {
    margin-top: 1rem;
    color: var(--accent-color);
    font-size: 1.05rem;
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    padding: 0.75rem 1.25rem;
    border-radius: 5px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* --- Estilos do Calculador de PreÃ§o --- */
#price-calculator {
    background-color: #f8f9fa;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 1.5rem 2rem;
    margin-top: 2rem;
}

#price-calculator h3 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

#price-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    font-size: 1.1rem;
}

#price-details div {
    padding: 0.5rem;
}

#price-details strong {
    color: #333;
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
}

#price-details .price-value {
    font-weight: 700;
    font-size: 1.5rem;
}

#price-total-usd .price-value {
    color: var(--primary-color);
}

#price-total-brl .price-value {
    color: #27ae60;
}

#price-info-small {
    text-align: center;
    font-size: 0.9rem;
    color: #777;
    margin-top: 1rem;
}

/* --- Ajuste na Calculadora de Preço --- */
#price-calculator #price-details {
    /* Mudar para 1 coluna em telas pequenas */
    grid-template-columns: 1fr;
    gap: 0.8rem;
}


#price-details-error {
    color: var(--error-color);
    font-weight: 600;
    text-align: center;
    margin-top: 10px;
    display: none; /* Começa escondido */
}

/* Em telas maiores, volta para 2 colunas */
@media (min-width: 768px) {
    #price-calculator #price-details {
        grid-template-columns: 1fr 1fr;
    }
    #price-details #price-formula {
        /* Ainda ocupa a largura total */
        grid-column: 1 / -1; 
    }
}

/* --- Estilos da Página de Política de Privacidade --- */
.privacy-page-container {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    padding: 2rem 3rem;
}

.privacy-page-container h1 {
    color: #2c473b;
    border-bottom: 2px solid #f0f2f5;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
}

.privacy-page-container h2 {
    color: var(--primary-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.privacy-page-container p, 
.privacy-page-container li {
    line-height: 1.7;
    color: #333;
    margin-bottom: 0.8rem;
}

.privacy-page-container ul {
    margin-left: 20px;
    padding-left: 10px;
}

.privacy-page-container .contact-email {
    font-weight: bold;
    color: var(--secondary-color);
    text-decoration: none;
}