/* Estilos básicos */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Header */
header {
    background-color: #68afb3;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
}

header .logo h1 {
    margin: 0;
}

header .whatsapp-btn {
    background-color: #25D366;
    color: white;
    display: flex;
    align-items: center;
    padding: 10px 15px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 16px;
}

header .whatsapp-btn img {
    width: 20px;
    height: 20px;
    margin-right: 10px;
}

/* Galería */
#gallery {
    padding: 50px 20px;
    background-color: #f4f4f4;
    text-align: center;
}

#gallery h2 {
    font-size: 2em;
    margin-bottom: 20px;
}

.gallery-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    justify-items: center;
}

.gallery-item img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Marcas */
#brands {
    padding: 50px 20px;
    text-align: center;
}

#brands h2 {
    font-size: 2em;
    margin-bottom: 20px;
}

.brands-container {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.brands-container img {
    width: 100px;
    height: auto;
}

/* Footer */
footer {
    text-align: center;
    background-color: #68afb3;
    color: white;
    padding: 7px;
    position: fixed;
    width: 100%;
    bottom: 0;
}