
body {
    margin: 0;
    font-family: 'Helvetica Neue', sans-serif;
    background: #e3f6ff;
    color: #111;
}
.hero {
    text-align: center;
    padding: 4rem 2rem;
}
.logo {
    height: 50px;
    margin-bottom: 1rem;
}
h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}
.cta {
    background: #25D366;
    color: #fff;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
}
.video {
    text-align: center;
}
video {
    max-width: 100%;
    height: auto;
}
.features, .galeria, .contacto {
    padding: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}
ul {
    list-style: none;
    padding: 0;
}
ul li {
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
}
.imagenes {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}
.imagenes img {
    width: 100%;
    max-width: 200px;
    border-radius: 10px;
    transition: transform 0.3s ease;
}
.imagenes img:hover {
    transform: scale(1.05);
}
form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
form input, form textarea {
    padding: 1rem;
    border-radius: 6px;
    border: 1px solid #ccc;
}
form button {
    padding: 1rem;
    background: #000;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    color: white;
    padding: 0.7rem 1rem;
    border-radius: 50%;
    font-size: 1.5rem;
    text-decoration: none;
}
