/* Estilos Generales */
body {
    font-family: 'Montserrat', sans-serif;
    color: #333;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    margin-bottom: 50px;
}

/* Navbar */
.navbar {
    transition: all 0.3s;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('../images/hero-background.webp');
    /* REEMPLAZA LA IMAGEN: Sube tu mejor foto a la carpeta /images y renómbrala a 'hero-background.jpg' */
    background-size: cover;
    background-position: center;
    min-height: 100vh;
}

.hero-section h1 {
    font-family: 'Playfair Display', serif;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

/* Testimonials */
.testimonial-card {
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    font-style: italic;
}

.testimonial-card cite {
    display: block;
    margin-top: 20px;
    font-weight: bold;
    font-style: normal;
}


/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Estilos para corregir el solapamiento de la barra de navegación fija */
body {
    padding-top: 70px; /* Ajuste para la barra de navegación fija. */
}

/* Footer Social Icons */
.social-icon {
    display: inline-block;
    margin: 0 10px;
    transition: transform 0.3s;
}

.social-icon:hover {
    transform: scale(1.2);
}

.social-icon img {
    width: 40px;
    height: 40px;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
    text-decoration: none; /* Ensure no underline */
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: #FFF; /* Keep text white on hover */
}

.whatsapp-float img {
    width: 35px;
    height: 35px;
}

/* Card Hover Effects */
.card {
    transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

