:root {
    --primary-color: #7f54b3; /* Morado WooCommerce */
    --secondary-color: #1a1a1a;
    --text-color: #4a4a4a;
    --bg-light: #f8f9fa;
    --white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

body { 
    color: var(--text-color); 
    background-color: var(--bg-light);
    background-image: radial-gradient(#cfd4da 1px, transparent 1px);
    background-size: 24px 24px;
    line-height: 1.6; 
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

.navbar { 
    background-color: var(--white); 
    box-shadow: 0 2px 10px rgba(0,0,0,0.05); 
    position: sticky; 
    top: 0; 
    z-index: 100; 
}
.nav-container { display: flex; justify-content: space-between; align-items: center; height: 80px; }
.logo { font-size: 1.5rem; font-weight: 700; color: var(--secondary-color); text-decoration: none; }
.nav-links { display: flex; list-style: none; gap: 30px; align-items: center; }
.nav-links a { text-decoration: none; color: var(--secondary-color); font-weight: 500; transition: color 0.3s; }
.nav-links a:hover { color: var(--primary-color); }
.btn-contacto { background-color: var(--secondary-color); color: var(--white) !important; padding: 10px 20px; border-radius: 5px; }

/* --- SECCIÓN HERO (UNIFICADA Y OSCURA) --- */
.hero { 
    background: linear-gradient(135deg, #1a1a24 0%, #2d2d3f 100%); 
    padding: 120px 0; 
    text-align: center; 
    border-bottom: 1px solid rgba(0,0,0,0.2); 
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.hero-content h1 { 
    font-size: 3.5rem; 
    color: var(--white); 
    margin-bottom: 20px; 
    line-height: 1.2; 
    text-shadow: 0 2px 4px rgba(0,0,0,0.5); 
}

.hero-content p { 
    font-size: 1.3rem; 
    max-width: 800px; 
    margin: 0 auto 40px auto; 
    color: #cbd5e0; /* Gris azulado claro para lectura suave */
}

.hero-buttons { display: flex; gap: 20px; justify-content: center; }

/* Botones */
.btn { padding: 14px 32px; border-radius: 6px; font-weight: bold; text-decoration: none; transition: all 0.3s ease; border: none; cursor: pointer; }
.btn:hover { transform: translateY(-3px); box-shadow: 0 10px 15px rgba(0,0,0,0.2); }
.btn-primary { background-color: var(--primary-color); color: var(--white); }
.btn-secondary { background-color: transparent; color: var(--white); border: 2px solid var(--white); }
.btn-secondary:hover { background-color: var(--white); color: var(--secondary-color); }

/* Features Section */
.features { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; padding: 100px 20px; }
.feature-box { 
    background: var(--white); 
    padding: 40px; 
    border-radius: 12px; 
    box-shadow: 0 10px 30px rgba(0,0,0,0.05); 
    text-align: center;
    border: 1px solid #edf2f7;
}
.feature-box h3 { color: var(--secondary-color); margin-bottom: 15px; font-size: 1.5rem; }

/* Footer */
footer { background-color: #0f172a; color: #94a3b8; text-align: center; padding: 40px 0; font-size: 0.9rem; border-top: 1px solid rgba(255,255,255,0.1); }