/* =========================== */
/* LUMORA - CSS PRINCIPAL */
/* =========================== */

/* FUENTES PERSONALIZADAS */
@font-face {
    font-family: 'FM Bolyar Sans Pro';
    src: url('../fonts/FMBolyarSansPro-600.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

/* FUENTE DELGADA CON NOMBRE ESPECÍFICO */
@font-face {
    font-family: 'FM Bolyar Sans Pro Light';
    src: url('../fonts/FMBolyarSansPro-400.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* VARIABLES CSS */
:root {
    --lumora-yellow: #FFD700;
    --lumora-orange: #FF6B35;
    --lumora-dark: #0A0A0A;
    --lumora-light: #FFFFFF;
    --lumora-gray: #F8F9FA;
    --lumora-text: #333333;
    
    /* Fuentes */
    --font-primary: 'FM Bolyar Sans Pro', sans-serif;
    --font-secondary: 'Montserrat', sans-serif;
    
    /* Tamaños de fuente EXACTOS según especificaciones */
    --font-hero: 82px;
    --font-title: 46px;
    --font-body: 20px;
}

/* RESET Y BASE */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-secondary);
    color: var(--lumora-text);
    background-color: var(--lumora-light);
    overflow-x: hidden;
    line-height: 1.6;
    font-size: var(--font-body);
    font-weight: 400;
}

/* TIPOGRAFÍA GLOBAL */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 600;
}

/* TEXTO DEL SLIDE - USANDO FUENTE DELGADA ESPECÍFICA */
.hero-title {
    font-family: 'FM Bolyar Sans Pro Light', 'FM Bolyar Sans Pro', sans-serif;
    font-weight: normal;
    font-size: 72px;
    line-height: 1.1;
    margin-bottom: 2rem;
    text-shadow: 2px 4px 8px rgba(0,0,0,0.4);
    letter-spacing: -0.02em;
    color: var(--lumora-light);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* TÍTULOS DE BLOQUES - FM Bolyar Sans Pro 600 - 46px */
.section-title {
    font-family: var(--font-primary);
    font-size: 46px;
    font-weight: 600;
    color: var(--lumora-dark);
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
    letter-spacing: -0.02em;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 0;
    width: 100px;
    height: 6px;
    background: linear-gradient(135deg, var(--lumora-orange), var(--lumora-yellow));
    border-radius: 3px;
    box-shadow: 0 2px 10px rgba(255, 107, 53, 0.3);
}

/* TEXTOS - Montserrat - 20px */
.section-description {
    font-family: var(--font-secondary);
    font-size: 20px;
    line-height: 1.8;
    color: var(--lumora-text);
    margin-bottom: 4rem;
    font-weight: 400;
    opacity: 0.9;
}

/* Textos del Hero */
.hero-subtitle {
    font-family: var(--font-secondary);
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 1rem;
    opacity: 0.95;
    line-height: 1.7;
    text-shadow: 1px 2px 4px rgba(0,0,0,0.3);
    color: var(--lumora-light);
}

.hero-sub-subtitle {
    font-family: var(--font-secondary);
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    line-height: 1.6;
    text-shadow: 1px 2px 4px rgba(0,0,0,0.3);
    color: var(--lumora-light);
}

/* Títulos de Cards - FM Bolyar Sans Pro */
.card-title {
    font-family: var(--font-primary);
    font-size: 24px;
    font-weight: 600;
    color: var(--lumora-dark);
    margin-bottom: 1.5rem;
}

.product-title {
    font-family: var(--font-primary);
    font-size: 22px;
    font-weight: 600;
    color: var(--lumora-dark);
    margin-bottom: 1rem;
}

.feature-title {
    font-family: var(--font-primary);
    font-size: 18px;
    font-weight: 600;
    color: var(--lumora-dark);
    margin: 0;
}

/* Textos descriptivos - Montserrat */
.card-text {
    font-family: var(--font-secondary);
    font-size: 18px;
    line-height: 1.6;
    color: var(--lumora-text);
    opacity: 0.8;
}

.product-description {
    font-family: var(--font-secondary);
    font-size: 18px;
    line-height: 1.6;
    color: var(--lumora-text);
    opacity: 0.8;
    margin: 0;
}

/* Footer text */
.footer-text {
    font-family: var(--font-secondary);
    font-size: 18px;
    margin: 0;
    opacity: 0.9;
}

/* BOTONES PRINCIPALES */
.btn-cta {
    background: linear-gradient(135deg, var(--lumora-orange), var(--lumora-yellow));
    border: none;
    color: var(--lumora-dark);
    font-weight: 700;
    font-size: 18px;
    padding: 1.5rem 3.5rem;
    border-radius: 60px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.5);
    position: relative;
    overflow: hidden;
    font-family: var(--font-secondary);
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
}

.btn-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.6s;
}

.btn-cta:hover::before {
    left: 100%;
}

.btn-cta:hover {
    color: var(--lumora-dark) !important;
    transform: translateY(-5px) scale(1.08);
    box-shadow: 0 20px 50px rgba(255, 107, 53, 0.6);
    text-decoration: none;
}

/* SECCIONES GENERALES */
section {
    padding: 7rem 0;
    position: relative;
}

.bg-gray {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

/* =========================== */
/* BLOQUE 1: NAVBAR */
/* =========================== */
.navbar {
    background-color: var(--lumora-light) !important;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 4px 30px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    padding: 1.2rem 0;
    border-bottom: 1px solid rgba(255,107,53,0.1);
}

.navbar.scrolled {
    background-color: rgba(255,255,255,0.98) !important;
    padding: 0.8rem 0;
    box-shadow: 0 8px 40px rgba(0,0,0,0.15);
}

.navbar-brand img {
    height: 95px;
    transition: all 0.4s ease;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.navbar.scrolled .navbar-brand img {
    height: 90px;
}

.nav-link {
    color: var(--lumora-dark) !important;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin: 0 1.2rem;
    position: relative;
    transition: all 0.4s ease;
    padding: 0.8rem 0 !important;
    font-family: var(--font-primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: 0;
    left: 50%;
    background: linear-gradient(135deg, var(--lumora-orange), var(--lumora-yellow));
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-50%);
    border-radius: 2px;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--lumora-orange) !important;
    transform: translateY(-2px);
}

/* =========================== */
/* BLOQUE 2: HERO/SLIDE */
/* =========================== */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-carousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.carousel-item {
    height: 100vh;
    min-height: 600px;
    position: relative;
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 8s ease-in-out;
}

.carousel-item.active img {
    transform: scale(1.05);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--lumora-light);
    max-width: 900px;
    padding: 0 2rem;
    padding-top: 30px; /* AGREGADO: Baja todo el contenido 20px */
    animation: fadeInUp 1.2s ease-out;
}

/* CONTROLES DEL CARRUSEL */
.carousel-control-prev,
.carousel-control-next {
    width: 6%;
    opacity: 0;
    transition: all 0.4s ease;
    background: rgba(0,0,0,0.1);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-size: 24px 24px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.hero-section:hover .carousel-control-prev,
.hero-section:hover .carousel-control-next {
    opacity: 0.8;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
    background: rgba(255,107,53,0.2);
}

/* =========================== */
/* BLOQUE 3: QUIÉNES SOMOS */
/* =========================== */
.about-section {
    padding: 7rem 0;
}

.mission-card {
    background: var(--lumora-light);
    border-radius: 25px;
    padding: 3rem 2rem;
    height: 100%;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(255,107,53,0.08);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.mission-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(135deg, var(--lumora-orange), var(--lumora-yellow));
}

.mission-card:hover {
    transform: translateY(-20px) scale(1.02);
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
    border-color: rgba(255,107,53,0.2);
}

.mission-card .card-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--lumora-orange), var(--lumora-yellow));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2.5rem;
    color: var(--lumora-light);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
    transition: all 0.4s ease;
}

.mission-card:hover .card-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.4);
}

/* =========================== */
/* BLOQUE 4: PRODUCTOS - NUEVO LAYOUT CON IMÁGENES */
/* =========================== */
.products-section {
    padding: 7rem 0;
}

.product-card {
    background: var(--lumora-light);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(255,107,53,0.05);
    height: 100%;
    position: relative;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,107,53,0.05), rgba(255,215,0,0.05));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.product-card:hover::before {
    opacity: 1;
}

.product-card:hover {
    transform: translateY(-20px) scale(1.02);
    box-shadow: 0 40px 80px rgba(0,0,0,0.2);
    border-color: rgba(255,107,53,0.15);
}

.product-image {
    height: 280px;
    overflow: hidden;
    position: relative;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-content {
    padding: 2.5rem;
    position: relative;
    z-index: 2;
    text-align: center;
}

.product-content .product-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--lumora-orange), var(--lumora-yellow));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
    color: var(--lumora-light);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
    transition: all 0.4s ease;
    position: relative;
    z-index: 3;
}

.product-card:hover .product-content .product-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.4);
}

/* =========================== */
/* BLOQUE 5: ¿POR QUÉ LUMORA? */
/* =========================== */
.why-lumora-section {
    padding: 7rem 0;
}

.feature-card {
    background: var(--lumora-light);
    border-radius: 25px;
    padding: 2.5rem 2rem;
    height: 100%;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(255,107,53,0.08);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(135deg, var(--lumora-orange), var(--lumora-yellow));
}

.feature-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
    border-color: rgba(255,107,53,0.2);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--lumora-orange), var(--lumora-yellow));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--lumora-light);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
    transition: all 0.4s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.4);
}

/* =========================== */
/* BLOQUE 6: CONTACTO */
/* =========================== */
.contact-section {
    padding: 7rem 0;
}

.contact-form {
    background: var(--lumora-light);
    padding: 4rem;
    border-radius: 30px;
    box-shadow: 0 30px 70px rgba(0,0,0,0.1);
    border: 2px solid rgba(255,107,53,0.08);
    position: relative;
    overflow: hidden;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(135deg, var(--lumora-orange), var(--lumora-yellow));
}

.form-control {
    border: 2px solid #E9ECEF;
    border-radius: 20px;
    padding: 1.3rem 2rem;
    font-size: 18px;
    transition: all 0.4s ease;
    background: #fafafa;
    font-weight: 500;
    font-family: var(--font-secondary);
}

.form-control:focus {
    border-color: var(--lumora-orange);
    box-shadow: 0 0 0 0.3rem rgba(255, 107, 53, 0.15);
    background: var(--lumora-light);
    transform: translateY(-2px);
}

.form-control::placeholder {
    color: #999;
    font-weight: 400;
}

/* =========================== */
/* BLOQUE 7: FOOTER */
/* =========================== */
.footer-section {
    background: linear-gradient(135deg, var(--lumora-dark) 0%, #1a1a1a 100%);
    color: var(--lumora-light);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.footer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--lumora-orange), var(--lumora-yellow));
}

.footer-logo {
    margin-bottom: 2rem;
}

.footer-logo img {
    height: 60px;
    filter: brightness(0) invert(1);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

.social-links a {
    color: var(--lumora-light);
    font-size: 1.8rem;
    padding: 1rem;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    transition: all 0.4s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
}

.social-links a:hover {
    color: var(--lumora-orange);
    transform: translateY(-5px) scale(1.1);
    background: rgba(255,107,53,0.2);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

/* =========================== */
/* ANIMACIONES */
/* =========================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-right {
    opacity: 0;
    transform: translateX(40px);
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* =========================== */
/* RESPONSIVE DESIGN MEJORADO */
/* =========================== */
@media (max-width: 768px) {
    /* Ajustar fuentes para móvil manteniendo proporciones */
    .hero-title {
        font-size: 48px; /* Reducido de 82px */
        margin-bottom: 1.5rem;
    }

    .section-title {
        font-size: 32px; /* Reducido de 46px */
    }

    .section-description {
        font-size: 18px; /* Reducido de 20px */
    }

    .hero-subtitle,
    .hero-sub-subtitle {
        font-size: 18px; /* Reducido de 20px */
        margin-bottom: 1rem;
    }

    .card-text {
        font-size: 16px; /* Reducido de 18px */
    }

    .product-description {
        font-size: 16px; /* Reducido de 18px */
    }

    .footer-text {
        font-size: 16px; /* Reducido de 18px */
    }

    .nav-link {
        margin: 0.5rem 0;
        padding: 1rem 0 !important;
    }
    
    .hero-content {
        padding: 20px 1rem 0; /* Mantiene los 20px arriba en móviles */
    }
    
    section {
        padding: 4rem 0;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-form {
        padding: 2.5rem;
    }

    .mission-card {
        padding: 2rem 1.5rem;
    }

    .feature-card {
        padding: 2rem 1.5rem;
    }

    .card-title {
        font-size: 20px;
    }

    .product-title {
        font-size: 18px;
    }

    .btn-cta {
        font-size: 16px;
        padding: 1.2rem 2.5rem;
    }

    .social-links {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .social-links a {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .navbar-brand img {
        height: 70px;
    }
    
    .navbar.scrolled .navbar-brand img {
        height: 60px;
    }
    
    .product-image {
        height: 250px;
    }
    
    .product-content {
        padding: 2rem;
    }
    
    .footer-logo img {
        height: 50px;
    }
}

/* Pantallas muy pequeñas (menos de 480px) */
@media (max-width: 480px) {
    .hero-title {
        font-size: 36px; /* Más pequeño para pantallas muy pequeñas */
        margin-bottom: 1rem;
        letter-spacing: -0.01em;
    }
    
    .hero-subtitle,
    .hero-sub-subtitle {
        font-size: 16px;
        line-height: 1.5;
    }
    
    .hero-content {
        padding: 20px 1rem 0; /* Mantiene los 20px arriba */
        max-width: 100%;
    }
    
    .btn-cta {
        font-size: 14px;
        padding: 1rem 2rem;
        letter-spacing: 0.5px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .section-description {
        font-size: 16px;
        margin-bottom: 2rem;
    }
    
    .product-image {
        height: 220px;
    }
    
    .product-content {
        padding: 1.5rem;
    }
    
    .product-content .product-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

/* Pantallas extremadamente pequeñas (menos de 360px) */
@media (max-width: 360px) {
    .hero-title {
        font-size: 32px;
        line-height: 1.2;
    }
    
    .hero-subtitle,
    .hero-sub-subtitle {
        font-size: 14px;
    }
    
    .btn-cta {
        font-size: 13px;
        padding: 0.8rem 1.5rem;
    }
}

/* =========================== */
/* UTILIDADES */
/* =========================== */
.text-center {
    text-align: center;
}

.mb-5 {
    margin-bottom: 3rem;
}

.mt-4 {
    margin-top: 1.5rem;
}

/* AGREGAR AL FINAL DE styles.css */

/* Ajuste para productos en 3 columnas */
@media (min-width: 992px) {
    .products-section .col-lg-4 .product-card {
        height: 100%;
    }
    
    .products-section .col-lg-4 .product-image {
        height: 240px; /* Altura ligeramente menor para 3 columnas */
    }
    
    .products-section .col-lg-4 .product-content {
        padding: 2rem 1.5rem; /* Padding ajustado para 3 columnas */
    }
    
    .products-section .col-lg-4 .product-title {
        font-size: 20px; /* Título ligeramente más pequeño */
    }
    
    .products-section .col-lg-4 .product-description {
        font-size: 16px; /* Descripción más compacta */
    }
}

/* Centrar la segunda fila de 2 elementos */
.products-section .justify-content-center {
    margin-top: 2rem;
}

/* Responsive para tablets */
@media (min-width: 768px) and (max-width: 991px) {
    .products-section .col-md-12 {
        max-width: 50%;
        flex: 0 0 50%;
    }
}

/* AGREGAR AL FINAL DE styles.css */

/* =========================== */
/* SECCIÓN CONTACTO REDISEÑADA */
/* =========================== */

/* Ajuste del título para la sección de contacto */
.contact-section .section-title {
    font-size: 52px;
    margin-bottom: 2rem;
}

.contact-section .section-title::after {
    display: none; /* Quitamos la línea decorativa */
}

.contact-section .section-description {
    max-width: 700px;
    margin: 0 auto 3rem;
    font-size: 18px;
    line-height: 1.8;
}

/* Formulario rediseñado */
.contact-form {
    background: transparent;
    padding: 0;
    box-shadow: none;
    border: none;
    max-width: 600px;
    margin: 0 auto;
}

.contact-form::before {
    display: none;
}

.contact-form .form-control {
    border: 1px solid #ddd;
    border-radius: 30px;
    padding: 1.2rem 1.8rem;
    font-size: 16px;
    background: white;
    transition: all 0.3s ease;
    font-family: var(--font-secondary);
    margin-bottom: 0;
}

.contact-form .form-control:focus {
    border-color: var(--lumora-orange);
    box-shadow: 0 0 0 0.2rem rgba(255, 107, 53, 0.1);
    transform: none;
}

.contact-form textarea.form-control {
    border-radius: 20px;
    resize: none;
    padding: 1.2rem 1.8rem;
}

.contact-form .btn-cta {
    background: var(--lumora-yellow);
    color: var(--lumora-dark);
    padding: 1.2rem 3rem;
    font-size: 16px;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
    border-radius: 50px;
    width: 100%;
    max-width: 400px;
}

.contact-form .btn-cta:hover {
    background: linear-gradient(135deg, var(--lumora-yellow), var(--lumora-orange));
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 215, 0, 0.4);
}

/* Contacto Directo */
.direct-contact {
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid #e0e0e0;
}

.contact-subtitle {
    font-family: var(--font-primary);
    font-size: 28px;
    font-weight: 600;
    color: var(--lumora-dark);
    margin-bottom: 1.5rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.contact-link {
    color: var(--lumora-text);
    text-decoration: none;
    font-size: 20px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-link i {
    font-size: 24px;
    color: var(--lumora-orange);
}

.contact-link:hover {
    color: var(--lumora-orange);
    transform: translateX(5px);
}

/* =========================== */
/* BOTÓN WHATSAPP FLOTANTE */
/* =========================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    animation: whatsappPulse 2s infinite;
}

.whatsapp-float:hover {
    background: #1ebe5a;
    transform: scale(1.1);
    color: white;
    text-decoration: none;
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.4);
}

.whatsapp-float i {
    margin: 0;
    line-height: 1;
}

/* Animación de pulso para WhatsApp */
@keyframes whatsappPulse {
    0% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
    }
    50% {
        box-shadow: 0 4px 30px rgba(37, 211, 102, 0.8);
    }
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
    }
}

/* =========================== */
/* RESPONSIVE PARA CONTACTO Y WHATSAPP */
/* =========================== */
@media (max-width: 768px) {
    .contact-section .section-title {
        font-size: 36px;
    }
    
    .contact-section .section-description {
        font-size: 16px;
    }
    
    .contact-subtitle {
        font-size: 24px;
    }
    
    .contact-link {
        font-size: 18px;
    }
    
    .contact-link i {
        font-size: 20px;
    }
    
    .contact-form .form-control {
        font-size: 15px;
        padding: 1rem 1.5rem;
    }
    
    .contact-form .btn-cta {
        font-size: 15px;
        padding: 1rem 2rem;
    }
    
    .whatsapp-float {
        width: 55px;
        height: 55px;
        font-size: 28px;
        bottom: 20px;
        right: 20px;
    }
}

@media (max-width: 480px) {
    .contact-section .section-title {
        font-size: 32px;
        line-height: 1.2;
    }
    
    .contact-section .section-description {
        font-size: 15px;
        margin-bottom: 2rem;
    }
    
    .contact-link {
        font-size: 16px;
    }
    
    .direct-contact {
        margin-top: 2rem;
        padding-top: 2rem;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 25px;
    }
}