/* =================================
   ESTILOS PARA A PÁGINA PÚBLICA (INDEX.PHP)
   ================================= */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    margin: 0;
    background-color: #f8f9fa;
    color: #333;
}
.container { padding: 20px; max-width: 1200px; margin: 0 auto; }
h1, h2, h3, h4, h5 { color: #343a40; }

.public-header { background-color: #fff; box-shadow: 0 2px 4px rgba(0,0,0,0.1); padding: 10px 0; position: sticky; top: 0; z-index: 100; }
.public-nav { display: flex; justify-content: space-between; align-items: center; }
.public-nav .logo img { height: 50px; width: auto; }
.btn-login { padding: 8px 16px; background-color: #007bff; color: white; text-decoration: none; border-radius: 5px; font-weight: bold; }
.hero-section { background-color: #f8f9fa; padding: 40px 0; }
.booking-header { text-align: center; margin-bottom: 30px; }
.booking-header h1 { margin-bottom: 10px; }
.booking-header p { font-size: 1.1em; color: #666; max-width: 600px; margin-left: auto; margin-right: auto; }
.booking-form { background: #fff; padding: 25px; border-radius: 8px; box-shadow: 0 4px 10px rgba(0,0,0,0.1); }
#resultados-disponibilidade { margin-top: 30px; }
.booking-feedback { text-align: center; padding: 20px; background-color: #f0f2f5; border-radius: 5px; color: #666; }
.booking-feedback.error { color: #dc3545; font-weight: bold; }
.quarto-disponivel-card { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; background: #fff; padding: 20px; border-radius: 8px; box-shadow: 0 2px 5px rgba(0,0,0,0.08); margin-bottom: 15px; border-left: 5px solid #28a745; }
.quarto-info h4 { margin: 0 0 5px 0; font-size: 1.2em; color: #333; }
.quarto-info p, .quarto-info small { margin: 0; color: #555; }
.btn-reservar { padding: 12px 20px; background-color: #28a745; color: white; text-decoration: none; border-radius: 5px; font-weight: bold; white-space: nowrap; }
.btn-reservar:hover { background-color: #218838; }
.attractions-section, .gallery-section { padding: 50px 0; }
.attractions-section { background-color: #fff; }
.gallery-section { background-color: #f8f9fa; }
.attractions-section h2, .gallery-section h2 { text-align: center; font-size: 2em; margin-bottom: 10px; }
.section-subtitle { text-align: center; color: #666; margin-bottom: 40px; max-width: 600px; margin-left: auto; margin-right: auto; }
.attractions-grid, .gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; }
.attraction-card, .gallery-card { border-radius: 8px; overflow: hidden; box-shadow: 0 4px 15px rgba(0,0,0,0.1); background-color: #fff; transition: transform 0.3s; }
.attraction-card:hover, .gallery-card:hover { transform: translateY(-10px); }
.attraction-card img, .gallery-card img { width: 100%; height: 220px; object-fit: cover; }
.card-content { padding: 20px; }
.card-content h3 { margin-top: 0; margin-bottom: 10px; }
.card-content p { font-size: 0.95em; line-height: 1.6; color: #555; }
.site-footer { background-color: #343a40; color: white; text-align: center; padding: 30px 0 10px 0; margin-top: 40px; }
.site-footer p { margin: 5px 0; opacity: 0.8; }
.developer-credit { background-color: #212529; color: #aaa; text-align: center; padding: 10px 0; font-size: 0.8em; }
.developer-credit a { color: #fff; text-decoration: none; }
.form-group { margin-bottom: 15px; }
.form-group label { display: block; margin-bottom: 5px; font-weight: bold; }
.form-group input { width: 100%; padding: 10px; border: 1px solid #ccc; border-radius: 4px; box-sizing: border-box; font-size: 1rem; }
.form-row { display: flex; flex-wrap: wrap; gap: 20px; }
.form-row .form-group { flex: 1; min-width: 200px; }