/* Importar fuente Quicksand desde Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;500;600;700&display=swap');

body {
    margin: 0;
    font-family: 'Quicksand', sans-serif;
    background-color: #f4f4f4;
}

header {
    background-color: #111;
    padding: 20px;
    text-align: center;
}

.logo-container img {
    max-width: 200px;
    height: auto;
}

.hero {
    text-align: center;
    padding: 80px 20px;
    background: linear-gradient(to right, #007bff, #00c6ff);
    color: white;
}

.hero h1 {
    font-size: 40px;
    margin-bottom: 20px;
    font-weight: 600;
}

.hero p {
    font-size: 20px;
    margin-bottom: 30px;
    font-weight: 400;
}

.btn {
    background-color: #fff;
    color: #007bff;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
}

.btn:hover {
    background-color: #ddd;
}

footer {
    background-color: #111;
    color: white;
    text-align: center;
    padding: 15px;
    font-weight: 400;
}
/* BOTON FLOTANTE WHATSAPP */

.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    z-index: 100;
}

.whatsapp-float img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    transition: transform 0.2s;
}

.whatsapp-float img:hover {
    transform: scale(1.0);
}