/* styles.css */
body {
    font-family: 'Roboto Condensed', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    text-align: justify;
    font-size: 14pt;
}
header {
    background-color: #333;
    color: white;
    padding: 10px 0;
    font-size: 24px;
    background-image: url(./images/marca.png);
    background-repeat: no-repeat;
    
    
}

ul{
    display: inline;
    align: right;
    list-style-type: none;
    padding: 10px
  }

  li {
    display: inline-block;
    padding: 10px
  }

  h1 {
   text-align: center; 
  }

.services, .contact, .gallery {
    margin: 20px;
    padding-top: 20px;
    padding: 20px;
    background: white;
    border-radius: 5px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}
.gallery-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    justify-content: center;
}
.gallery-container img {
    width: 90%;
    height: auto;
    border-radius: 5px;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.1);
}

.gallery-description {
    text-align: center;
}
.gallery-description h2 {
    font-size: 24px;
    color: #333;
}
.gallery-description p {
    font-size: 18px;
    color: #666;
    line-height: 1.5;
}

form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
input, textarea, button {
    width: 97%;
    padding: 10px;
    margin-top: 5px;
}
button {
    background: #333;
    color: white;
    border: none;
    cursor: pointer;
}
button:hover {
    background: #555;
}

.map {
    width: 100%;
    height: auto;
    float: center;
}

.whatsapp {
    display: block;
    text-align: center;
    background-color: #25D366;
    color: white;
    padding: 10px;
    position: fixed;
    bottom: 20px;
    right: 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
}

.whatsapp:hover {
    background-color: #1da851;
}

footer {
    background-color: #2e2e32;
    color: white;
    padding: 20px;
    margin-top: 20px;
    text-align: center;
}

@media (max-width: 768px) {
    .gallery-container {
        grid-template-columns: repeat(2, 1fr); /* 2 imágenes por fila */
    }
}

/* Ajuste para móviles (máximo 480px) */
@media (max-width: 480px) {
    .gallery-container {
        grid-template-columns: repeat(1, 1fr); /* 1 imagen por fila */
    }
}