body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: #111;
}

header {
    background: #000;
    padding: 20px;
    text-align: center;
}

header h1 {
    color: #1e90ff;
    margin: 0;
}

nav a {
    color: #fff;
    margin: 0 12px;
    text-decoration: none;
    font-weight: bold;
}

.hero {
    background: linear-gradient(to right, #000, #1e90ff);
    color: white;
    padding: 70px 20px;
    text-align: center;
}

.section {
    max-width: 1200px;
    margin: auto;
    padding: 60px 20px;
}

.section h2 {
    text-align: center;
    color: #1e90ff;
    margin-bottom: 40px;
}

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

.box {
    border: 1px solid #ddd;
    padding: 25px;
    border-radius: 10px;
}

.gallery img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
}

footer {
    background: #000;
    color: #fff;
    text-align: center;
    padding: 25px;
}

footer a {
    color: #1e90ff;
    text-decoration: none;
}

/* BOTÓN WHATSAPP */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.whatsapp-float img {
    width: 32px;
    height: 32px;
    max-width: 100%;
    max-height: 100%;
}


/* FORMULARIO */
form {
    max-width: 500px;
    margin: auto;
}

input, textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border-radius: 6px;
    border: 1px solid #ccc;
}

button {
    background: #1e90ff;
    color: white;
    padding: 12px;
    border: none;
    width: 100%;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
}
