/* --- CONFIGURACIÓN DE COLORES Y VARIABLES PREMIUM --- */
:root {
    --primary-lux: #0f5132;      
    --accent-lux: #d4af37;       
    --accent-hover: #b8962e;
    --text-dark: #212529;
    --text-muted: #495057;
    --bg-light: #f4f6f5;         
    --shadow-lux: 0 15px 35px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 25px 50px rgba(15, 81, 50, 0.15);
    --border-radius-premium: 20px;
}

/* --- ESTILOS COMPORTAMIENTO GENERAL --- */
html {
    scroll-behavior: smooth; 
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

body {
    background-color: var(--bg-light);
    color: var(--text-dark);
    overflow-x: hidden;
}

/* --- ANIMACIONES GLOBALES --- */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes titleGlow {
    0% { text-shadow: 0 0 10px rgba(255,255,255,0.2); }
    50% { text-shadow: 0 0 20px rgba(255,255,255,0.6); }
    100% { text-shadow: 0 0 10px rgba(255,255,255,0.2); }
}

/* --- HERO BANNER --- */
.hero-section {
    position: relative;
    background-color: var(--primary-lux);
    height: 50vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    color: white;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at center, rgba(37, 211, 102, 0.4) 0%, rgba(15, 81, 50, 0.95) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    animation: fadeInUp 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.hero-badge {
    background-color: var(--accent-lux);
    color: #000;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 11px;
    padding: 8px 18px;
    border-radius: 30px;
    letter-spacing: 1.5px;
    display: inline-block;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.hero-section h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 15px;
    animation: titleGlow 3s infinite alternate;
}

.hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.95;
    font-weight: 300;
    margin-bottom: 30px;
    letter-spacing: 0.5px;
}

.btn-primary-hero {
    background-color: white;
    color: var(--primary-lux);
    border: 2px solid transparent;
    padding: 15px 32px;
    font-size: 1.05rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    position: relative;
    overflow: hidden;
    text-decoration: none; /* Asegura que el enlace no tenga subrayado */
}

.btn-primary-hero:hover {
    transform: translateY(-4px) scale(1.02);
    background-color: var(--accent-lux);
    color: #000;
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.5);
}

/* --- CONTENEDOR Y DIÁLOGOS (CARDS) --- */
.main-container {
    max-width: 1050px;
    margin: -50px auto 60px auto;
    padding: 0 20px;
    position: relative;
    z-index: 3;
}

.info-card {
    background: #ffffff;
    border-radius: var(--border-radius-premium);
    padding: 40px;
    box-shadow: var(--shadow-lux);
    margin-bottom: 40px;
    border: 1px solid rgba(0,0,0,0.03);
    transition: all 0.4s ease;
    animation: fadeInUp 0.8s ease-out both;
}

.section-about { animation-delay: 0.1s; }
.target-card:nth-child(1) { animation-delay: 0.2s; }
.target-card:nth-child(2) { animation-delay: 0.3s; }
.section-brand { animation-delay: 0.4s; }

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(212, 175, 55, 0.2);
}

/* DISEÑO DIVIDIDO (SPLIT LAYOUT) */
.split-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
}

.text-side { flex: 1; width: 100%; }
.image-side { 
    flex: 1; 
    width: 100%; 
    display: flex; 
    justify-content: center; 
    align-items: center; 
    position: relative;
}

.responsive-img {
    max-width: 100%;
    height: auto;
    max-height: 320px;
    object-fit: contain;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), filter 0.5s ease;
}

.image-side:hover .responsive-img {
    transform: scale(1.05);
    filter: drop-shadow(0 15px 25px rgba(15, 81, 50, 0.2));
}

.border-radius-sm {
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.pulse-slow {
    animation: floating 5s ease-in-out infinite;
}

@keyframes floating {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-12px); }
    100% { transform: translateY(0px); }
}

.card-header-icon {
    width: 65px; height: 65px;
    background: linear-gradient(135deg, rgba(15, 81, 50, 0.1), rgba(15, 81, 50, 0.05));
    color: var(--primary-lux);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 26px; margin-bottom: 25px;
    transition: transform 0.3s ease, background 0.3s ease;
}

.info-card:hover .card-header-icon {
    transform: rotate(10deg) scale(1.1);
    background: rgba(212, 175, 55, 0.15);
    color: var(--accent-hover);
}

.section-about .card-header-icon { margin-left: 0; }
.sm-icon { width: 55px; height: 55px; font-size: 22px; margin-bottom: 20px;}

.decor-line {
    width: 60px; height: 4px;
    background: linear-gradient(90deg, var(--accent-lux), transparent);
    margin: 15px 0 30px 0;
    border-radius: 20px;
}

.info-card h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: var(--primary-lux);
}

.info-card p {
    color: var(--text-muted);
    font-size: 1.08rem;
    line-height: 1.8;
    margin-bottom: 18px;
    text-align: justify;
}

.info-card p:last-of-type { margin-bottom: 0; }

/* DUAL GRID FOR MISSION / VISION */
.dual-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.target-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: var(--primary-lux);
}

/* SECTION BRAND PARFUMS */
.section-brand { position: relative; overflow: hidden; }
.brand-badge {
    position: absolute; top: 25px; right: 25px;
    background: linear-gradient(135deg, var(--accent-lux), var(--accent-hover));
    color: #000;
    font-size: 12px; font-weight: 700; padding: 6px 14px; border-radius: 6px;
    z-index: 5;
    box-shadow: 0 4px 10px rgba(212, 175, 55, 0.3);
}
.brand-lead { color: var(--text-dark); font-weight: 600; font-size: 1.15rem; margin-top: 8px; }
.brand-desc { margin-top: 20px; }

.features-grid {
    display: grid; grid-template-columns: 1fr; gap: 25px; margin-top: 40px;
    width: 100%;
}

.feature-item {
    background-color: #ffffff; 
    padding: 25px; 
    border-radius: 16px;
    border: 1px solid rgba(0,0,0,0.04);
    border-left: 5px solid var(--accent-lux);
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 25px rgba(15, 81, 50, 0.08);
    border-left-color: var(--primary-lux);
}

.feat-icon { 
    color: var(--accent-lux); 
    font-size: 24px; 
    margin-bottom: 12px; 
    transition: color 0.3s ease;
}

.feature-item:hover .feat-icon { color: var(--primary-lux); }

.feature-item h4 { font-size: 1.1rem; margin-bottom: 8px; color: var(--primary-lux); font-weight: 700; }
.feature-item p { font-size: 0.95rem; line-height: 1.6; margin: 0; text-align: left; }

/* CALL TO ACTION */
.section-cta {
    background: linear-gradient(135deg, #0f5132 0%, #082d1c 100%);
    color: white;
    border: none;
}
.section-cta h2 { font-family: 'Playfair Display', serif; font-size: 2rem; margin-bottom: 15px; color: var(--accent-lux); }
.section-cta p { color: rgba(255,255,255,0.9); }
.section-cta .decor-line { background: linear-gradient(90deg, white, transparent); }

/* --- RESPONSIVIDAD MEDIANA Y GRANDE (DESKTOP) --- */
@media (min-width: 768px) {
    .hero-section { height: 45vh; }
    .hero-section h1 { font-size: 4rem; }
    .split-content { flex-direction: row; }
    .reverse-desktop { flex-direction: row-reverse; }
    .dual-grid { grid-template-columns: 1fr 1fr; }
    .features-grid { grid-template-columns: 1fr 1fr 1fr; }
    .info-card h2 { font-size: 2.6rem; }
    .responsive-img { max-height: 400px; }
    .info-card { padding: 50px; }
}



/* --- VENTANILLA MODAL (WHATSAPP) --- */
.modal-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.modal-content {
    background-color: white;
    width: 90%;
    max-width: 420px;
    padding: 35px 30px;
    border-radius: var(--border-radius-premium);
    position: relative;
    transform: translateY(20px) scale(0.95);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 25px 50px rgba(0,0,0,0.25);
    text-align: center;
}

.modal-overlay.active .modal-content {
    transform: translateY(0) scale(1);
}

.close-modal {
    position: absolute;
    top: 15px; right: 15px;
    background: none; border: none;
    font-size: 20px; color: var(--text-muted);
    cursor: pointer;
    width: 35px; height: 35px;
    border-radius: 50%;
    transition: background 0.2s, color 0.2s;
}

.close-modal:hover {
    background: #f1f3f5;
    color: #e03131;
}

.modal-header {
    margin-bottom: 15px;
}

.modal-icon {
    width: 60px; height: 60px;
    background-color: #e8f9f0;
    color: var(--whatsapp-color);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 30px; margin: 0 auto 15px auto;
}

.modal-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: var(--primary-lux);
}

.modal-content p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

#modalForm textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #dee2e6;
    border-radius: 12px;
    font-size: 1rem;
    outline: none;
    resize: none;
    margin-bottom: 20px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    transition: border-color 0.3s;
}

#modalForm textarea:focus {
    border-color: var(--whatsapp-color);
    box-shadow: 0 0 0 3px rgba(37, 211, 102, 0.1);
}

.btn-modal-send {
    width: 100%;
    background-color: var(--whatsapp-color);
    color: white;
    border: none;
    padding: 14px;
    font-size: 1.05rem;
    font-weight: 700;
    border-radius: 30px;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center; gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-modal-send:hover {
    background-color: #20ba5a;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}
/* --- CONFIGURACIÓN DE COLORES Y VARIABLES PREMIUM --- */
:root {
    --primary-lux: #0f5132;      
    --accent-lux: #d4af37;       
    --accent-hover: #b8962e;
    --whatsapp-color: #25D366; /* <-- ¡Esta es la línea que faltaba! */
    --text-dark: #212529;
    --text-muted: #495057;
    --bg-light: #f4f6f5;         
    --shadow-lux: 0 15px 35px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 25px 50px rgba(15, 81, 50, 0.15);
    --border-radius-premium: 20px;
}