body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

header {
    background: #ff9ff3;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header nav a {
    margin: 0 10px;
    color: white;
    text-decoration: none;
    font-weight: bold;
}

#banner {
    background: url('https://via.placeholder.com/1200x500') center/cover no-repeat;
    height: 400px;
    color: white;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.btn-cta {
    background: #ff6b81;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 15px;
}

section {
    padding: 40px 20px;
    text-align: center;
}

.servicio-cards {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.card {
    width: 300px;
}

.card img {
    width: 100%;
    border-radius: 10px;
}

.galeria-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 15px;
}

footer {
    background: #333;
    color: white;
    padding: 15px;
    text-align: center;
}

#redes {
    background: #f8f8f8;
    padding: 50px 20px;
}

.redes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.red-card {
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.social-embed {
    width: 100%;
    height: 400px;
}

.btn-red {
    display: inline-block;
    margin-top: 15px;
    background: #ff6b81;
    color: white;
    padding: 10px 18px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
}

.social-float {
    position: fixed;
    top: 40%;
    right: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.social-float a {
    background: #ff6b81;
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    text-decoration: none;
}

.galeria-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.galeria-grid img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.galeria-grid img:hover {
    transform: scale(1.05);
}
