
body {
    margin: 0;
    font-family: 'Arial', sans-serif;
    background-color: #fff;
    color: #333;
}

.main-header {
    background-color: #ec3718;
    color: white;
    text-align: center;
    padding: 1rem;
}

.logo {
    max-width: 150px;
}

.tagline {
    font-size: 1.2rem;
}

.intro, .services, .gallery, .contact, .ubicacion {
    padding: 2rem;
    text-align: center;
}

.services ul {
    list-style: none;
    padding: 0;
}

.services li {
    margin: 0.5rem 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px , 1fr));
    gap: 1rem;
    margin-top: 1rem;
    place-items: center; 
}

.gallery-grid img {
    width: 80%;
    max-width: 100%;
    height: auto;
    border-radius: 40px;
    border: 1px solid #ccc;
    align-items: center;
    text-align: center;
}

.navlink {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.75rem 1.5rem;
    background-color: white;
    color: #ec3718;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
}

.map-container {
  position: relative;
  width: 100%;
  max-width: 600px;
  height: 450px;           /* Alto fijo en pantallas grandes */
  overflow: hidden;
  border-radius: 10px;
  margin: 1rem auto;
}

.map-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Responsive para pantallas pequeñas */
@media (max-width: 640px) {
  .map-container {
    height: auto;
    padding-bottom: 56.25%; /* 16:9 */
  }
}

.whatsapp-btn {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.75rem 1.5rem;
    background-color: #25D366;
    color: white;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
}

.facebook-btn {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.75rem 1.5rem;
    background-color: #0866ff;
    color: white;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
}

.footer {
    background-color: #ec3718;
    color: white;
    text-align: center;
    padding: 1rem;
    margin-top: 2rem;
}
