/* Configuración General */
* {
    box-sizing: border-box;
}

body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    font-family: 'Lato', sans-serif;
    scroll-behavior: smooth;
    color: #333;
}

/* Sección Hero */
.hero {
    background-image: url('hero.jpg'); /* Asegúrate que el archivo se llame exactamente así */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 100vh;
    background-color: #001a33;
}

/* Sección de Introducción */
.intro {
    padding: 80px 20px;
    text-align: center;
    background-color: #f9f9f9;
}

.intro h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #001a33;
    margin-bottom: 20px;
}

.intro p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
    color: #555;
}

/* Pie de Página */
.site-footer {
    background-color: #001a33; /* Azul marino de la marca */
    color: white;
    padding: 60px 20px 30px;
    text-align: center;
}

.footer-brand h2 {
    font-family: 'Playfair Display', serif;
    color: #d4af37; /* Color Dorado */
    margin-bottom: 10px;
}

.footer-brand p {
    margin-bottom: 30px;
    opacity: 0.8;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.social-btn {
    text-decoration: none;
    color: white;
    padding: 12px 25px;
    border: 1px solid #d4af37;
    border-radius: 4px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.social-btn:hover {
    background-color: #d4af37;
    color: #001a33;
    font-weight: bold;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    font-size: 13px;
    opacity: 0.6;
}

/* Botón de WhatsApp Flotante */
.whatsapp-float {
    position: fixed;
    width: 65px;
    height: 65px;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    z-index: 1000;
    transition: transform 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

.whatsapp-float img {
    width: 38px;
}

/* Adaptabilidad para Móviles */
@media (max-width: 600px) {
    .intro h1 { font-size: 1.8rem; }
    .hero { height: 60vh; } /* Reducimos altura en móvil para ver el texto rápido */
    .whatsapp-float { width: 55px; height: 55px; bottom: 20px; right: 20px; }
}
