* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Poppins', sans-serif; background: linear-gradient(to bottom, #e8f0fc, #f9fcff); color: #2c3e50; line-height: 1.4; }

.site-header { background: #2C3E90; color: white; position: sticky; top: 0; z-index: 1000; padding: 6px 15px; box-shadow: 0 2px 5px rgba(0,0,0,0.1); }
.header-top { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; }
.logo img.logo-site { max-width: 90px; }
.header-title { width: 100%; text-align: center; margin: 5px 0; }
.header-title h1 { font-size: 1.6em; }
.top-menu ul { display: flex; list-style: none; gap: 20px; margin: 0; padding: 0; }
.top-menu a { color: white; text-decoration: none; font-weight: 400; }
.top-menu a:hover { color: #25D366; }
.menu-toggle { display: none; background: none; border: none; color: white; font-size: 1.6rem; cursor: pointer; }

main { max-width: 1200px; margin: 40px auto; padding: 0 20px; }
h2 { font-size: 1.4em; color: #2C3E90; margin-bottom: 15px; }
h3 { font-size: 1.2em; margin-top: 20px; color: #2C3E90; }
.info { margin-bottom: 40px; background: #fff; padding: 30px; border-radius: 8px; box-shadow: 0 2px 10px rgba(0,0,0,0.05); }
ul { padding-left: 20px; }
li { margin-bottom: 8px; }

.gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.gallery-grid img, .video-wrapper iframe { width: 100%; border-radius: 8px; box-shadow: 0 2px 10px rgba(0,0,0,0.05); object-fit: cover; }
.video-wrapper { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; border-radius: 8px; }
.video-wrapper iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: none; }

.map-location { display: flex; flex-wrap: wrap; gap: 30px; }
.map-location .location-text { flex: 1 1 40%; min-width: 280px; }
.map-location .map { flex: 1 1 60%; min-width: 280px; }
.map-location iframe { width: 100%; height: 400px; border-radius: 8px; display: block; }

footer { background: #fff; padding: 40px 0; box-shadow: 0 -2px 15px rgba(0,0,0,0.05); margin-top: 60px; }
footer h2 { text-align: center; margin-bottom: 30px; font-size: 1.6em; }
.contact-columns { display: flex; flex-wrap: wrap; gap: 20px; justify-content: center; max-width: 1200px; margin: auto; padding: 0 20px; }
.contact-whatsapp, .contact-form { flex: 1 1 48%; background-color: #f4f8ff; border: 1px solid #dde6f0; border-radius: 10px; padding: 20px 25px; box-shadow: 0 2px 5px rgba(0,0,0,0.03); }
.contact-whatsapp { display: flex; flex-direction: column; align-items: center; text-align: center; }
.contact-whatsapp h3 { font-size: 1.2em; margin-bottom: 16px; color: #2C3E90; }
.whatsapp-btn { background-color: #25D366; color: #fff; padding: 10px 18px; border-radius: 5px; font-weight: bold; font-size: 1em; text-decoration: none; transition: background 0.3s ease; }
.whatsapp-btn:hover { background-color: #1eb85c; }

@media (max-width: 768px) {
  .header-top { padding: 6px 10px; }
  .logo img.logo-site { max-width: 70px; }
  .menu-toggle { display: flex; justify-content: flex-end; flex: 1; }
  .top-menu { display: none; position: absolute; top: 55px; right: 10px; background: #2C3E90; border-radius: 8px; flex-direction: column; gap: 10px; padding: 12px 16px; max-height: 70vh; overflow-y: auto; z-index: 9999; }
  .top-menu.open { display: flex; }
  .top-menu ul { flex-direction: column; gap: 12px; }
  .top-menu a { font-size: 1rem; padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,0.2); }
  .top-menu a:last-child { border-bottom: none; }
}
