
/* 
   ==========================================================================
   FINCA ESTELA - THE GOURMET EXPERIENCE (ULTRA-PREMIUM CSS SYSTEM)
   Concepto: "Rústico de Lujo & Ingeniería de Sabor"
   Sinergia: Respaldado por LAMEV S.A.C.
   ==========================================================================
*/
 
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');
 
:root {
    /* Paleta de Colores de Alta Costura Cafetera */
    --primary-green: #0d2818;          /* Verde Selva Profundo (Plantaciones bajo sombra) */
    --primary-green-rgb: 13, 40, 24;
    --primary-green-light: #164024;
    --primary-green-dark: #07150c;
    
    --accent-gold: #c5a044;            /* Oro Gourmet (Grano Tostado Seleccionado) */
    --accent-gold-rgb: 197, 160, 68;
    --accent-gold-light: #dfc27d;
    --accent-gold-dark: #967425;
    
    --coffee-brown: #3e220f;           /* Café Tostado Oscuro / Espresso */
    --coffee-brown-rgb: 62, 34, 15;
    
    --bg-cream: #faf6ee;               /* Crema de Seda Orgánico */
    --bg-cream-dark: #f2e9d7;          /* Crema de Contraste Sutil */
    --white: #ffffff;
    
    --text-main: #2b3530;              /* Gris Orgánico muy oscuro */
    --text-muted: #627267;             /* Verde Sutil Muted */
    --text-light: #f5fcf8;
    
    /* Gradientes de Lujo */
    --gold-metallic-gradient: linear-gradient(135deg, #f7e8c3 0%, #c5a044 50%, #967425 100%);
    --forest-luxury-gradient: linear-gradient(135deg, #0d2818 0%, #07150c 100%);
    --cream-soft-gradient: linear-gradient(180deg, #faf6ee 0%, #f4ede0 100%);
    --glow-gold-gradient: radial-gradient(circle, rgba(197, 160, 68, 0.15) 0%, transparent 70%);
 
    /* Bordes y Sombras Gourmet */
    --border-color: rgba(197, 160, 68, 0.18);
    --border-glow: 1px solid rgba(197, 160, 68, 0.35);
    
    --shadow-premium: 0 20px 45px rgba(13, 40, 24, 0.05), 0 8px 20px rgba(0, 0, 0, 0.02);
    --shadow-premium-hover: 0 30px 60px rgba(13, 40, 24, 0.1), 0 12px 25px rgba(197, 160, 68, 0.08);
    --shadow-gold-glow: 0 0 40px rgba(197, 160, 68, 0.25);
    --shadow-green-glow: 0 0 40px rgba(13, 40, 24, 0.3);
 
    /* Tipografías y Animación */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    
    /* Curva de velocidad de lujo para transiciones extremadamente premium */
    --transition-luxury: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
 
/* ==========================================================================
   1. RESET Y PERSONALIZACIÓN DE INTERFAZ
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
 
html {
    scroll-behavior: smooth;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
 
/* Scrollbar Personalizado (Estilo Galería de Arte) */
::-webkit-scrollbar {
    width: 10px;
    background-color: var(--bg-cream);
}
 
::-webkit-scrollbar-track {
    background-color: var(--bg-cream-dark);
}
 
::-webkit-scrollbar-thumb {
    background: var(--primary-green);
    border: 2px solid var(--bg-cream-dark);
    border-radius: 5px;
}
 
::-webkit-scrollbar-thumb:hover {
    background: var(--accent-gold);
}
 
/* Selección Personalizada con Brillo Dorado */
::selection {
    background-color: var(--primary-green);
    color: var(--accent-gold);
}
 
body {
    font-family: var(--font-body);
    background-color: var(--bg-cream);
    color: var(--text-main);
    line-height: 1.7;
    overflow-x: hidden;
}
 
/* Estilos de Tipografías con Gradientes Metálicos */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--primary-green);
    font-weight: 700;
}
 
p {
    color: var(--text-muted);
    font-size: 1.05rem;
}
 
a {
    text-decoration: none;
    transition: var(--transition-luxury);
    color: inherit;
}
 
/* ==========================================================================
   2. PARTÍCULAS Y ANIMACIONES ORGÁNICAS FLOTANTES
   ========================================================================== */
@keyframes floatBean {
    0% { transform: translateY(0px) rotate(0deg); opacity: 0.2; }
    50% { transform: translateY(-15px) rotate(10deg); opacity: 0.4; }
    100% { transform: translateY(0px) rotate(0deg); opacity: 0.2; }
}
 
@keyframes pulseGold {
    0% { box-shadow: 0 0 0 0 rgba(197, 160, 68, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(197, 160, 68, 0); }
    100% { box-shadow: 0 0 0 0 rgba(197, 160, 68, 0); }
}
 
@keyframes steamCoffee {
    0% { transform: translateY(0) scaleX(1); opacity: 0; }
    50% { transform: translateY(-10px) scaleX(1.2); opacity: 0.4; }
    100% { transform: translateY(-20px) scaleX(0.8); opacity: 0; }
}
 
@keyframes marqueeInfinite {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
 
/* ==========================================================================
   3. ESTRUCTURAS Y COMPONENTES GLOBALES
   ========================================================================== */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}
 
.max-width-700 {
    max-width: 700px;
    margin: 0 auto;
}
 
.flex-between {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
 
.text-center {
    text-align: center;
}
 
.align-center {
    align-items: center;
}
 
.section-padding {
    padding: 7rem 0;
    position: relative;
}
 
/* Grids Dinámicos de Alta Estabilidad */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
}
 
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}
 
@media (max-width: 992px) {
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}
 
@media (max-width: 768px) {
    .grid-2, .grid-3 {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .section-padding {
        padding: 5rem 0;
    }
}
 
/* ==========================================================================
   4. CINTILLO DE ALIANZA CORPORATIVA (LAMEV S.A.C.)
   ========================================================================== */
.alliance-bar {
    background-color: var(--primary-green-dark);
    color: var(--text-light);
    font-size: 0.82rem;
    padding: 0.6rem 0;
    border-bottom: 2px solid var(--accent-gold);
    font-weight: 500;
    letter-spacing: 0.8px;
    position: relative;
    z-index: 101;
}
 
.alliance-bar .lamev-alliance a {
    color: var(--accent-gold);
    font-weight: 700;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    background: rgba(197, 160, 68, 0.08);
}
 
.alliance-bar .lamev-alliance a:hover {
    color: var(--white);
    background-color: var(--accent-gold);
    box-shadow: 0 4px 10px rgba(197, 160, 68, 0.2);
}
 
@media (max-width: 480px) {
    .alliance-bar .flex-between {
        flex-direction: column;
        gap: 0.4rem;
        text-align: center;
    }
}
 
/* ==========================================================================
   5. HEADER Y NAVEGACIÓN SUSPENDIDA (GLASSMORPHISM)
   ========================================================================== */
header {
    background: rgba(250, 246, 238, 0.9);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--border-color);
    padding: 1.4rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 5px 30px rgba(13, 40, 24, 0.02);
}
 
header .logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--primary-green);
    display: flex;
    align-items: center;
    gap: 8px;
}
 
header .logo::before {
    content: '☕';
    font-size: 1.5rem;
    color: var(--accent-gold);
    animation: floatBean 3s ease-in-out infinite;
}
 
.nav-menu {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}
 
.nav-menu a {
    color: var(--primary-green);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
    position: relative;
}
 
.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-gold);
    transition: var(--transition-luxury);
}
 
.nav-menu a:hover {
    color: var(--accent-gold);
}
 
.nav-menu a:hover::after {
    width: 100%;
}
 
/* Botón Nav Píldora Premium */
.btn-nav {
    background: var(--forest-luxury-gradient);
    color: var(--white) !important;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    border: 1px solid var(--accent-gold);
    font-weight: 700 !important;
    box-shadow: 0 4px 15px rgba(13, 40, 24, 0.2);
}
 
.btn-nav:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(197, 160, 68, 0.3);
    border-color: var(--white);
}
 
.menu-toggle {
    display: none;
    cursor: pointer;
    color: var(--primary-green);
    font-size: 1.5rem;
}
 
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--bg-cream);
        border-bottom: 2px solid var(--border-color);
        padding: 2.5rem;
        gap: 1.8rem;
        box-shadow: 0 15px 35px rgba(13, 40, 24, 0.08);
        z-index: 999;
    }
    .nav-menu.active {
        display: flex;
    }
    .menu-toggle {
        display: block;
    }
}
    .nav-menu.active {
        display: flex;
    }
    .menu-toggle {
        display: block;
    }
}
 
/* ==========================================================================
   6. HERO SECTION - EL APOTEOSIS DEL CAFÉ DE ESPECIALIDAD
   ========================================================================== */
.hero {
    position: relative;
    background: var(--forest-luxury-gradient);
    color: var(--white);
    padding: 10rem 0;
    overflow: hidden;
}
 
.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
    background: linear-gradient(to top, var(--bg-cream), transparent);
    z-index: 3;
}
 
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(13, 40, 24, 0.88);
    z-index: 2;
}
 
.hero-content {
    position: relative;
    z-index: 4;
    max-width: 850px;
    margin: 0 auto;
}
 
.subtitle-badge {
    display: inline-block;
    background: rgba(197, 160, 68, 0.12);
    border: 1.5px solid var(--accent-gold);
    color: var(--accent-gold);
    padding: 0.6rem 1.6rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 2.5rem;
    animation: pulseGold 2.5s infinite;
}
 
.hero h1 {
    font-family: var(--font-heading);
    font-size: 4.8rem;
    color: var(--white);
    margin-bottom: 1.8rem;
    line-height: 1.1;
    font-weight: 700;
    letter-spacing: -1px;
}
 
.hero p {
    font-size: 1.25rem;
    color: rgba(245, 252, 248, 0.88);
    margin-bottom: 3.5rem;
    line-height: 1.8;
}
 
.hero-actions {
    display: flex;
    justify-content: center;
    gap: 2rem;
}
 
/* Botones Premium con Efectos de Iluminación Dorada */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 1.1rem 2.2rem;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    transition: var(--transition-luxury);
    border: 1px solid transparent;
}
 
.btn-gold {
    background: var(--gold-metallic-gradient);
    color: var(--primary-green-dark);
    box-shadow: 0 8px 25px rgba(197, 160, 68, 0.35);
}
 
.btn-gold:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(197, 160, 68, 0.55);
}
 
.btn-outline {
    border: 1.5px solid rgba(245, 252, 248, 0.3);
    color: var(--white);
}
 
.btn-outline:hover {
    border-color: var(--accent-gold);
    background-color: rgba(197, 160, 68, 0.15);
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(197, 160, 68, 0.2);
}
 
@media (max-width: 768px) {
    .hero h1 {
        font-size: 3.2rem;
    }
    .hero-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }
}
 
/* ==========================================================================
   7. SECCIÓN DE BENEFICIOS / TARJETAS FLOTANTES
   ========================================================================== */
.features {
    background-color: var(--white);
    border-bottom: 1px solid var(--border-color);
    position: relative;
    z-index: 10;
}
 
.feature-card {
    padding: 3rem 2.5rem;
    border-radius: 20px;
    background-color: var(--bg-cream);
    border: 1px solid rgba(197, 160, 68, 0.12);
    transition: var(--transition-luxury);
    box-shadow: var(--shadow-premium);
}
 
.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-gold);
    box-shadow: var(--shadow-premium-hover);
    background-color: var(--white);
}
 
.feature-card .icon-wrap {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: rgba(197, 160, 68, 0.08);
    color: var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    border: 1px solid rgba(197, 160, 68, 0.2);
    transition: var(--transition-luxury);
}
 
.feature-card:hover .icon-wrap {
    background-color: var(--primary-green);
    color: var(--accent-gold);
    transform: scale(1.1) rotate(5deg);
    box-shadow: var(--shadow-gold-glow);
}
 
.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.2rem;
}
 
/* ==========================================================================
   8. NUESTRO ORIGEN / HISTORIA CON PARALLAX Y EFECTOS
   ========================================================================== */
.origen {
    background-color: var(--bg-cream);
}
 
.section-subtitle {
    display: block;
    color: var(--accent-gold);
    font-size: 0.95rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1.2rem;
}
 
.origen h2 {
    font-size: 3.2rem;
    line-height: 1.15;
    margin-bottom: 2rem;
    letter-spacing: -0.5px;
}
 
.origen p {
    margin-bottom: 1.8rem;
    font-size: 1.1rem;
    line-height: 1.8;
}
 
.origen-image-box {
    position: relative;
    height: 480px;
    background: linear-gradient(rgba(13,40,24,0.25), rgba(13,40,24,0.25)), url('https://images.unsplash.com/photo-1509042239860-f550ce710b93?q=80&w=1000') no-repeat center/cover;
    border-radius: 24px;
    border: 2px solid var(--accent-gold);
    box-shadow: 0 25px 60px rgba(13,40,24,0.15);
    transition: var(--transition-luxury);
}
 
.origen-image-box:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-gold-glow);
}
 
.image-deco {
    position: absolute;
    top: -25px;
    right: -25px;
    width: 120px;
    height: 120px;
    border: 4px solid var(--accent-gold);
    border-radius: 24px;
    z-index: -1;
    transition: var(--transition-luxury);
}
 
.origen-image-box:hover .image-deco {
    transform: rotate(15deg) translate(8px, -8px);
}
 
.origen-stats {
    position: absolute;
    bottom: -40px;
    left: 5%;
    width: 90%;
    background-color: var(--white);
    border-radius: 16px;
    padding: 2rem;
    display: flex;
    justify-content: space-around;
    box-shadow: 0 15px 40px rgba(13,40,24,0.08);
    border: 1px solid var(--border-color);
}
 
.origen-stats .stat h4 {
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 0.3rem;
    font-weight: 800;
}
 
.origen-stats .stat p {
    font-size: 0.9rem;
    margin-bottom: 0;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
 
@media (max-width: 768px) {
    .origen h2 {
        font-size: 2.5rem;
    }
    .origen-image-box {
        height: 350px;
        margin-top: 3rem;
    }
    .origen-stats {
        bottom: -30px;
        padding: 1.2rem;
    }
}
 
/* ==========================================================================
   9. TABLA COMPARATIVA PREMIUM (THE GOLD STANDARD)
   ========================================================================== */
.comparativa {
    background-color: var(--white);
}
 
.table-responsive {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin-top: 4rem;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(13, 40, 24, 0.04);
    border: 1px solid var(--border-color);
}
 
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background-color: var(--white);
    text-align: left;
    min-width: 750px;
}
 
.comparison-table th, .comparison-table td {
    padding: 1.5rem 2rem;
    border-bottom: 1.5px solid rgba(197, 160, 68, 0.08);
}
 
.comparison-table th {
    background-color: var(--primary-green-dark);
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.15rem;
    letter-spacing: 0.5px;
}
 
.comparison-table th.highlight {
    background: var(--gold-metallic-gradient);
    color: var(--primary-green-dark);
    font-weight: 800;
    box-shadow: inset 0 -3px 0 rgba(0,0,0,0.1);
}
 
.comparison-table td.feature-name {
    font-weight: 800;
    color: var(--primary-green);
    font-size: 1rem;
    width: 25%;
}
 
.comparison-table td {
    color: var(--text-muted);
    font-size: 1rem;
}
 
.comparison-table td.highlight-cell {
    color: var(--primary-green);
    font-weight: 700;
    background-color: rgba(197, 160, 68, 0.03);
    border-left: 2px solid rgba(197, 160, 68, 0.15);
    border-right: 2px solid rgba(197, 160, 68, 0.15);
}
 
.comparison-table td.highlight-cell i {
    color: var(--accent-gold);
    margin-left: 6px;
}
 
.comparison-table tr:hover td {
    background-color: rgba(13, 40, 24, 0.01);
}
 
.comparison-table tr:hover td.highlight-cell {
    background-color: rgba(197, 160, 68, 0.06);
}
 
/* ==========================================================================
   10. CATÁLOGO DE PRODUCTOS GOURMET
   ========================================================================== */
.productos {
    background-color: var(--white);
}
 
.section-header h2 {
    font-size: 3.2rem;
}
 
.product-card {
    background-color: var(--bg-cream);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(197, 160, 68, 0.12);
    position: relative;
    transition: var(--transition-luxury);
    box-shadow: var(--shadow-premium);
}
 
.product-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-gold);
    box-shadow: var(--shadow-premium-hover);
    background-color: var(--white);
}
 
.product-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--forest-luxury-gradient);
    color: var(--white);
    padding: 0.4rem 1.1rem;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1.5px solid var(--accent-gold);
    z-index: 10;
}
 
/* Imagen Mockup del Producto */
.product-img-placeholder {
    height: 260px;
    background: var(--forest-luxury-gradient);
    color: rgba(197, 160, 68, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 6rem;
    position: relative;
    overflow: hidden;
}
 
.product-img-placeholder::after {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: linear-gradient(135deg, transparent 40%, rgba(255,255,255,0.06) 50%, transparent 60%);
    top: -50%;
    left: -50%;
    transition: all 1.2s;
}
 
.product-card:hover .product-img-placeholder::after {
    transform: translate(25%, 25%);
}
 
.product-info {
    padding: 2.5rem;
}
 
.product-info h3 {
    font-size: 1.6rem;
    margin-bottom: 0.6rem;
    color: var(--primary-green-dark);
}
 
.product-price {
    display: block;
    font-family: var(--font-body);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--accent-gold-dark);
    margin-bottom: 1.2rem;
}
 
.product-price small {
    color: var(--text-muted);
    font-weight: 500;
    font-size: 0.9rem;
}
 
.product-info p {
    font-size: 0.98rem;
    margin-bottom: 2rem;
    height: 75px;
    overflow: hidden;
}
 
.btn-product {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-green);
    font-weight: 700;
    font-size: 0.92rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
 
.btn-product i {
    transition: var(--transition-luxury);
}
 
.product-card:hover .btn-product {
    color: var(--accent-gold-dark);
}
 
.product-card:hover .btn-product i {
    transform: translateX(6px);
}
 
/* ==========================================================================
   11. SIMULADOR INTERACTIVO DE TUESTE (THE TASTING EXPERIENCE)
   ========================================================================== */
.simulador {
    background-color: var(--white);
}
 
.simulador-controls {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}
 
.roast-tab {
    display: flex;
    align-items: center;
    gap: 1.8rem;
    padding: 1.8rem;
    border-radius: 16px;
    background-color: var(--bg-cream);
    border: 1px solid rgba(197, 160, 68, 0.12);
    cursor: pointer;
    transition: var(--transition-luxury);
    box-shadow: var(--shadow-premium);
}
 
.roast-tab:hover {
    border-color: var(--accent-gold);
    transform: translateX(8px);
}
 
.roast-tab.active {
    background: var(--forest-luxury-gradient);
    border-color: var(--accent-gold);
    box-shadow: 0 15px 35px rgba(13, 40, 24, 0.2);
}
 
.roast-tab.active h3 {
    color: var(--white);
}
 
.roast-tab.active p {
    color: rgba(245, 252, 248, 0.7);
}
 
.roast-tab.active i {
    background-color: rgba(197, 160, 68, 0.2);
    color: var(--accent-gold);
    box-shadow: var(--shadow-gold-glow);
}
 
.roast-tab i {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background-color: rgba(13, 40, 24, 0.04);
    color: var(--primary-green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    transition: var(--transition-luxury);
}
 
.roast-tab h3 {
    font-size: 1.3rem;
    margin-bottom: 0.3rem;
}
 
.roast-tab p {
    font-size: 0.88rem;
    margin: 0;
}
 
.simulador-display {
    padding-left: 3rem;
}
 
/* Tarjeta Mockup de Muestra Fina */
.display-card {
    background-color: var(--bg-cream);
    border: 2px solid var(--accent-gold);
    border-radius: 24px;
    padding: 3.5rem;
    box-shadow: 0 25px 50px rgba(197, 160, 68, 0.08);
    position: relative;
    overflow: hidden;
    transition: var(--transition-luxury);
}
 
.display-card::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(197,160,68,0.12) 0%, transparent 70%);
}
 
.display-header {
    margin-bottom: 2.5rem;
    border-bottom: 1px solid rgba(197, 160, 68, 0.25);
    padding-bottom: 2rem;
}
 
.badge-roast {
    display: inline-block;
    background-color: rgba(197, 160, 68, 0.15);
    color: var(--accent-gold-dark);
    padding: 0.4rem 1rem;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1rem;
}
 
.display-header h3 {
    font-size: 2rem;
    color: var(--primary-green-dark);
}
 
.tasting-attributes {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}
 
.attribute {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}
 
.attr-name {
    width: 90px;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--primary-green-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
 
.attr-bar-container {
    flex-grow: 1;
    height: 12px;
    background-color: rgba(13, 40, 24, 0.06);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(197, 160, 68, 0.1);
}
 
.attr-bar {
    height: 100%;
    border-radius: 12px;
    background: var(--gold-metallic-gradient);
    transition: width 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
}
 
.attr-val {
    width: 45px;
    text-align: right;
    font-weight: 800;
    font-size: 1rem;
    color: var(--accent-gold-dark);
}
 
.brew-recommendation {
    background-color: var(--white);
    border: 1px solid rgba(197, 160, 68, 0.25);
    border-radius: 12px;
    padding: 1.2rem 1.8rem;
    font-size: 0.95rem;
    color: var(--text-muted);
    box-shadow: var(--shadow-premium);
}
 
.brew-recommendation strong {
    color: var(--primary-green-dark);
}
 
@media (max-width: 768px) {
    .simulador-display {
        padding-left: 0;
        margin-top: 3rem;
    }
    .display-card {
        padding: 2rem;
    }
}
 
/* ==========================================================================
   12. ALIANZA ESTRATÉGICA LAMEV S.A.C.
   ========================================================================== */
.alliance-section {
    background-color: var(--bg-cream-dark);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}
 
/* Floating leaf and gear icons */
.alliance-section::before {
    content: '⚙️';
    position: absolute;
    top: 10%;
    left: 5%;
    font-size: 8rem;
    color: rgba(197, 160, 68, 0.03);
    animation: floatBean 8s ease-in-out infinite;
}
 
.alliance-section::after {
    content: '🍃';
    position: absolute;
    bottom: 10%;
    right: 5%;
    font-size: 8rem;
    color: rgba(13, 40, 24, 0.03);
    animation: floatBean 6s ease-in-out infinite;
}
 
.alliance-graphic {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    position: relative;
    padding: 4rem;
    z-index: 5;
}
 
.graphic-node {
    background-color: var(--white);
    border: 2px solid var(--accent-gold);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: 0 15px 35px rgba(13, 40, 24, 0.06);
    width: 230px;
    transition: var(--transition-luxury);
}
 
.graphic-node:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-gold-glow);
}
 
.graphic-node span {
    display: block;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.35rem;
    color: var(--primary-green-dark);
    margin-bottom: 0.3rem;
}
 
.graphic-node small {
    color: var(--accent-gold-dark);
    font-weight: 700;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
 
.graphic-bridge {
    color: var(--accent-gold);
    font-size: 2rem;
    background-color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--accent-gold);
    box-shadow: var(--shadow-premium);
}
 
.animate-bridge {
    animation: pulseGold 2s ease-in-out infinite;
}
 
.alliance-text h2 {
    font-size: 2.8rem;
    margin-bottom: 1.8rem;
    letter-spacing: -0.5px;
}
 
.alliance-text p {
    font-size: 1.1rem;
    margin-bottom: 2.2rem;
    line-height: 1.8;
}
 
.synergy-points {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
    margin-bottom: 3rem;
}
 
.point {
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
}
 
.point i {
    color: var(--accent-gold);
    font-size: 1.5rem;
    margin-top: 0.2rem;
}
 
.point strong {
    color: var(--primary-green-dark);
    display: block;
    margin-bottom: 0.4rem;
    font-size: 1.1rem;
}
 
.btn-gold-reverse {
    background-color: var(--white);
    color: var(--primary-green);
    border: 2px solid var(--accent-gold);
    box-shadow: var(--shadow-premium);
}
 
.btn-gold-reverse:hover {
    background: var(--gold-metallic-gradient);
    color: var(--primary-green-dark);
    border-color: transparent;
    transform: translateY(-4px);
    box-shadow: var(--shadow-gold-glow);
}
 
@media (max-width: 768px) {
    .alliance-graphic {
        flex-direction: column;
        gap: 1.5rem;
        padding: 2rem 0;
    }
}
 
/* ==========================================================================
   13. SECCIÓN TESTIMONIOS PREMIUM (SOCIAL PROOF CON GLOW)
   ========================================================================== */
.testimonios {
    background-color: var(--bg-cream);
}
 
.testimonial-card {
    background: var(--white);
    border: 1px solid rgba(197, 160, 68, 0.15);
    border-radius: 20px;
    padding: 3rem 2.5rem;
    transition: var(--transition-luxury);
    box-shadow: var(--shadow-premium);
}
 
.testimonial-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-gold);
    box-shadow: var(--shadow-premium-hover);
}
 
.stars {
    color: var(--accent-gold);
    font-size: 0.95rem;
    margin-bottom: 1.8rem;
    display: flex;
    gap: 4px;
}
 
.quote {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1.2rem;
    color: var(--primary-green-dark);
    line-height: 1.7;
    margin-bottom: 2.5rem;
}
 
.author-info {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    border-top: 1px solid rgba(197, 160, 68, 0.15);
    padding-top: 1.8rem;
}
 
.author-info .avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(197, 160, 68, 0.1);
    color: var(--accent-gold-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    border: 1px solid rgba(197, 160, 68, 0.2);
}
 
.author-info h4 {
    font-size: 1.05rem;
    color: var(--primary-green-dark);
    margin-bottom: 0.15rem;
    font-weight: 700;
}
 
.author-info small {
    color: var(--text-muted);
    font-size: 0.78rem;
    display: block;
    font-weight: 600;
    text-transform: uppercase;
}
 
/* ==========================================================================
   14. FORMULARIO DE PEDIDOS CORPORATIVOS
   ========================================================================== */
.contacto {
    background-color: var(--white);
}
 
.order-form {
    background-color: var(--bg-cream);
    padding: 4rem;
    border-radius: 24px;
    border: 2px solid var(--accent-gold);
    box-shadow: 0 20px 50px rgba(13, 40, 24, 0.04);
}
 
.form-group {
    margin-bottom: 2rem;
}
 
.form-group label {
    display: block;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--primary-green-dark);
    margin-bottom: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
 
.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 1rem 1.4rem;
    border-radius: 10px;
    border: 1.5px solid rgba(197, 160, 68, 0.3);
    background-color: var(--white);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition-luxury);
    color: var(--text-main);
}
 
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 15px rgba(13, 40, 24, 0.08);
}
 
.full-width {
    width: 100%;
    justify-content: center;
    border: none;
    cursor: pointer;
}
 
@media (max-width: 480px) {
    .order-form {
        padding: 2rem 1.5rem;
    }
}
 
/* ==========================================================================
   15. PIE DE PÁGINA (LUXURY FINCA FOOTER)
   ========================================================================== */
footer {
    background: var(--forest-luxury-gradient);
    color: var(--white);
    padding: 6rem 0 3rem;
    border-top: 3px solid var(--accent-gold);
}
 
footer h2 {
    font-size: 2.6rem;
    margin-bottom: 1.2rem;
    letter-spacing: 1px;
}
 
footer p {
    color: rgba(245, 252, 248, 0.7);
    font-size: 1.05rem;
}
 
.corporate-link {
    margin-top: 2rem;
}
 
.corporate-link a {
    color: var(--accent-gold);
    font-weight: 700;
    padding-bottom: 2px;
    border-bottom: 1px solid transparent;
}
 
.corporate-link a:hover {
    color: var(--white);
    border-bottom-color: var(--white);
}
 
/* Redes Sociales del Footer */
.footer-social-links {
    margin-top: 2.5rem;
    display: flex;
    justify-content: center;
    gap: 1.8rem;
}
 
.footer-social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--white);
    transition: var(--transition-luxury);
    border: 1px solid rgba(197, 160, 68, 0.25);
    font-size: 1.2rem;
}
 
.footer-social-links a:hover {
    background: var(--gold-metallic-gradient);
    color: var(--primary-green-dark);
    transform: translateY(-5px);
    box-shadow: var(--shadow-gold-glow);
    border-color: transparent;
}
 
.footer-bottom {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}
 
.footer-bottom p {
    font-size: 0.85rem;
    color: rgba(245, 252, 248, 0.5);
}
 
/* ==========================================================================
   16. WHATSAPP FLOATING BUTTON (LUXURY GLOW)
   ========================================================================== */
.whatsapp-float {
    position: fixed;
    bottom: 35px;
    right: 35px;
    width: 65px;
    height: 65px;
    background-color: #25d366;
    color: var(--white) !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.35);
    z-index: 999;
    transition: var(--transition-luxury);
}
 
.whatsapp-float:hover {
    transform: scale(1.15) rotate(10deg);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.55);
}
 
/* ==========================================================================
   17. VENTANA FLOTANTE TOAST (EXQUISITE DESIGN)
   ========================================================================== */
.toast-notification {
    position: fixed;
    bottom: -200px;
    left: 35px;
    background: rgba(255, 255, 255, 0.95);
    border-left: 6px solid var(--accent-gold);
    box-shadow: 0 20px 50px rgba(13, 40, 24, 0.15);
    padding: 2rem;
    border-radius: 16px;
    z-index: 10000;
    max-width: 430px;
    transition: all 0.7s cubic-bezier(0.19, 1, 0.22, 1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(197, 160, 68, 0.25);
    border-left: 6px solid var(--accent-gold);
}
 
.toast-notification.show {
    bottom: 35px;
}
 
.toast-content {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}
 
.toast-icon {
    font-size: 2.2rem;
    color: var(--accent-gold-dark);
    margin-top: 0.1rem;
    background: rgba(197, 160, 68, 0.08);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
    border: 1px solid rgba(197, 160, 68, 0.2);
}
 
.toast-content h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--primary-green-dark);
    font-weight: 700;
}
 
.toast-content p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}
 
.toast-close {
    background: none;
    border: none;
    font-size: 1.2rem;
    color: var(--text-muted);
    cursor: pointer;
    padding: 0;
    margin-left: 1rem;
    transition: var(--transition-luxury);
}
 
.toast-close:hover {
    color: var(--accent-gold-dark);
    transform: scale(1.1);
}
 
@media (max-width: 768px) {
    .toast-notification {
        left: 20px;
        right: 20px;
        max-width: none;
        padding: 1.5rem;
    }
    .toast-icon {
        width: 50px;
        height: 50px;
        font-size: 1.8rem;
    }
}
 
/* ==========================================================================
   18. AJUSTES FINOS DE RESPONSIVIDAD Y ALINEACIÓN GLOBAL
   ========================================================================== */
@media (max-width: 992px) {
    .origen h2, .productos .section-header h2, .simulador .section-header h2, .alliance-text h2 {
        font-size: 2.6rem;
    }
    .simulador-display {
        padding-left: 0;
        margin-top: 3rem;
    }
}
 
@media (max-width: 768px) {
    /* Ajustes del Hero */
    .hero {
        padding: 7rem 0 5rem;
        text-align: center;
    }
    .hero h1 {
        font-size: 2.8rem;
        letter-spacing: -0.5px;
    }
    .subtitle-badge {
        padding: 0.5rem 1.2rem;
        font-size: 0.78rem;
    }
    .hero-actions {
        flex-direction: column;
        gap: 1rem;
        padding: 0 1rem;
    }
    .btn {
        width: 100%;
        justify-content: center;
    }
 
    /* Ajustes de Secciones */
    .section-padding {
        padding: 4.5rem 0;
    }
    .origen h2, .productos .section-header h2, .simulador .section-header h2, .alliance-text h2 {
        font-size: 2.2rem;
        line-height: 1.2;
    }
    .origen p, .alliance-text p {
        font-size: 1rem;
    }
 
    /* Gráficos de Alianza (Dirección de Nodos) */
    .alliance-graphic {
        flex-direction: column;
        gap: 1.5rem;
        padding: 2rem 0;
        align-items: center;
    }
    .graphic-node {
        width: 100%;
        max-width: 280px;
    }
    .graphic-bridge {
        transform: rotate(90deg); /* La flecha apunta hacia abajo en móviles */
        margin: 0.5rem 0;
    }
 
    /* Simulador de Cata */
    .roast-tab {
        padding: 1.2rem;
        gap: 1.2rem;
    }
    .roast-tab i {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
    .roast-tab h3 {
        font-size: 1.15rem;
    }
    .display-card {
        padding: 2rem 1.5rem;
    }
    .display-header h3 {
        font-size: 1.6rem;
    }
    .attribute {
        gap: 0.8rem;
    }
    .attr-name {
        width: 70px;
        font-size: 0.85rem;
    }
 
    /* Testimonios */
    .testimonial-card {
        padding: 2rem 1.5rem;
    }
    .quote {
        font-size: 1.1rem;
        margin-bottom: 1.8rem;
    }
 
    /* Formulario */
    .order-form {
        padding: 2.5rem 1.5rem;
    }
    .form-group {
        margin-bottom: 1.5rem;
    }
}
 
@media (max-width: 480px) {
    .hero h1 {
        font-size: 2.3rem;
    }
    .origen-stats {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
        bottom: -60px;
        position: relative;
        left: 0;
        width: 100%;
        margin-top: 1rem;
    }
    .origen-image-box {
        margin-bottom: 4rem;
    }
    .origen-stats .stat h4 {
        font-size: 2rem;
    }
    .display-card {
        padding: 1.5rem 1rem;
    }
    .attribute {
        flex-wrap: wrap;
    }
    .attr-bar-container {
        width: 100%;
        order: 3;
        margin-top: 0.5rem;
    }
    .attr-val {
        margin-left: auto;
    }
}
 
 
/* ==========================================================================
   AÑADIDOS DE PRODUCCIÓN — fincaestela.lamev.com
   ========================================================================== */
 
/* Header scrolled state */
header.scrolled {
    box-shadow: 0 5px 30px rgba(13, 40, 24, 0.10);
}
 
/* Logo como enlace */
.logo a {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--primary-green);
    text-decoration: none;
}
 
.logo a span {
    color: var(--accent-gold);
}
 
/* Nota de privacidad del formulario */
.form-note {
    margin-top: 1.2rem;
    font-size: 0.82rem;
    color: var(--text-muted);
    text-align: center;
}
 
.form-note i {
    color: var(--accent-gold-dark);
    margin-right: 4px;
}
 
/* ==========================================================================
   CARRUSEL DE ÍCONOS DE CONFIANZA (TRUST BAR)
   ========================================================================== */
.trust-carousel-wrap {
    width: 100%;
    overflow: hidden;
    margin: 3rem 0 2rem;
    position: relative;
    /* Degradados de desvanecimiento en los bordes */
    mask-image: linear-gradient(
        to right,
        transparent 0%,
        black 8%,
        black 92%,
        transparent 100%
    );
    -webkit-mask-image: linear-gradient(
        to right,
        transparent 0%,
        black 8%,
        black 92%,
        transparent 100%
    );
}
 
.trust-carousel-track {
    display: flex;
    gap: 2rem;
    width: max-content;
    animation: trustScroll 28s linear infinite;
}
 
@keyframes trustScroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
 
.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    min-width: 110px;
    padding: 1.2rem 1rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(197, 160, 68, 0.25);
    border-radius: 14px;
    transition: var(--transition-luxury);
    cursor: default;
    flex-shrink: 0;
}
 
.trust-item:hover {
    background: rgba(197, 160, 68, 0.12);
    border-color: var(--accent-gold);
    transform: translateY(-4px);
}
 
.trust-item i {
    font-size: 1.8rem;
    color: var(--accent-gold);
}
 
.trust-item span {
    font-size: 0.75rem;
    font-weight: 700;
    color: rgba(245, 252, 248, 0.85);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
    line-height: 1.3;
}
 
/* Responsivo carrusel */
@media (max-width: 768px) {
    .trust-item {
        min-width: 90px;
        padding: 1rem 0.7rem;
    }
    .trust-item i {
        font-size: 1.5rem;
    }
    .trust-item span {
        font-size: 0.68rem;
    }
    .trust-carousel-track {
        gap: 1.2rem;
        animation-duration: 20s;
    }
}
 
/* ==========================================================================
   FOOTER — ajustes finales
   ========================================================================== */
.footer-logo {
    font-family: var(--font-heading);
    font-size: 2.6rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--white);
    margin-bottom: 1.2rem;
}
 
.footer-logo span {
    color: var(--accent-gold);
}
 
.footer-tagline {
    color: rgba(245, 252, 248, 0.75);
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
}
 
.footer-bottom a {
    color: var(--accent-gold-light);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: var(--transition-luxury);
}
 
.footer-bottom a:hover {
    color: var(--white);
    border-bottom-color: var(--accent-gold);
}
 
/* WhatsApp en redes sociales del footer */
.footer-social-links a[aria-label*="WhatsApp"]:hover {
    background-color: #25d366;
    border-color: #25d366;
}
 
/* ==========================================================================
   PRODUCCIÓN — fincaestela.lamevsac.com
   ========================================================================== */
 
/* Header con sombra al hacer scroll */
header.scrolled {
    box-shadow: 0 5px 30px rgba(13, 40, 24, 0.10);
}
 
/* Logo como enlace */
.logo a {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--primary-green);
    text-decoration: none;
}
.logo a span { color: var(--accent-gold); }
 
/* ── Opciones de precio por tamaño ── */
.price-options {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.2rem;
}
 
.price-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(197, 160, 68, 0.08);
    border: 1px solid rgba(197, 160, 68, 0.25);
    border-radius: 8px;
    padding: 0.45rem 1rem;
    font-size: 0.95rem;
    color: var(--text-muted);
    font-weight: 500;
}
 
.price-tag i {
    color: var(--accent-gold-dark);
    font-size: 0.85rem;
}
 
.price-tag strong {
    color: var(--accent-gold-dark);
    font-size: 1.05rem;
    font-weight: 800;
}
 
/* ── Nota de privacidad del formulario ── */
.form-note {
    margin-top: 1.2rem;
    font-size: 0.82rem;
    color: var(--text-muted);
    text-align: center;
}
.form-note i {
    color: var(--accent-gold-dark);
    margin-right: 4px;
}
 
/* ── Footer logo ── */
.footer-logo {
    font-family: var(--font-heading);
    font-size: 2.6rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--white);
    margin-bottom: 1.2rem;
}
.footer-logo span { color: var(--accent-gold); }
 
.footer-tagline {
    color: rgba(245, 252, 248, 0.75);
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
}
 
.footer-bottom a {
    color: var(--accent-gold-light);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: var(--transition-luxury);
}
.footer-bottom a:hover {
    color: var(--white);
    border-bottom-color: var(--accent-gold);
}
 
/* ── Carrusel de íconos de confianza ── */
.trust-carousel-wrap {
    width: 100%;
    overflow: hidden;
    margin: 3rem 0 2rem;
    mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}
 
.trust-carousel-track {
    display: flex;
    gap: 2rem;
    width: max-content;
    animation: trustScroll 28s linear infinite;
}
 
@keyframes trustScroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
 
.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    min-width: 110px;
    padding: 1.2rem 1rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(197, 160, 68, 0.25);
    border-radius: 14px;
    transition: var(--transition-luxury);
    cursor: default;
    flex-shrink: 0;
}
.trust-item:hover {
    background: rgba(197, 160, 68, 0.12);
    border-color: var(--accent-gold);
    transform: translateY(-4px);
}
.trust-item i {
    font-size: 1.8rem;
    color: var(--accent-gold);
}
.trust-item span {
    font-size: 0.75rem;
    font-weight: 700;
    color: rgba(245, 252, 248, 0.85);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
}
 
/* WhatsApp en footer */
.footer-social-links a[aria-label*="WhatsApp"]:hover {
    background-color: #25d366;
    border-color: #25d366;
}
 
/* Responsivo */
@media (max-width: 768px) {
    .trust-item { min-width: 90px; padding: 1rem 0.7rem; }
    .trust-item i { font-size: 1.5rem; }
    .trust-item span { font-size: 0.68rem; }
    .trust-carousel-track { gap: 1.2rem; animation-duration: 20s; }
    .price-options { gap: 0.4rem; }
    .price-tag { font-size: 0.88rem; }
}