:root {
    --primary: #4A148C; /* Violeta Intenso */
    --primary-light: #7c43bd;
    --primary-dark: #12005e;
    --accent: #FFD700; /* Dorado sutil */
    --bg-color: #fdfbf7; /* Crema/Arena suave */
    --text-color: #333333;
    --text-light: #666666;
    --white: #ffffff;
    --shadow: 0 10px 30px rgba(74, 20, 140, 0.1);
    --transition: all 0.3s ease;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 1px; /* Bebas queda mejor con un poquito de aire entre letras */
    font-weight: 400;    /* Bebas ya es negrita por defecto */
    text-transform: uppercase; /* Opcional: Bebas es mayúscula por defecto, esto asegura que todo se vea igual */
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }

/* Preloader */
#preloader {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: var(--bg-color); z-index: 9999;
    display: flex; justify-content: center; align-items: center;
    transition: opacity 0.5s ease;
}
.loader-content { text-align: center; }
.loader-text { color: var(--primary); margin-bottom: 10px; }
.spinner {
    width: 40px; height: 40px;
    border: 4px solid rgba(74, 20, 140, 0.1);
    border-left-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}
@keyframes spin { 100% { transform: rotate(360deg); } }

/* Navbar */
.navbar {
    position: fixed; top: 0; width: 100%;
    background: rgba(253, 251, 247, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    padding: 1rem 0;
}
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.nav-container { display: flex; justify-content: space-between; align-items: center; }
.logo { font-size: 1.5rem; font-weight: 700; color: var(--primary-dark); }
.logo span { color: var(--primary); }

.nav-links { display: flex; gap: 2rem; align-items: center; }
.nav-links a { font-weight: 500; font-size: 0.9rem; }
.nav-links a:hover { color: var(--primary); }

.btn-nav {
    background: var(--primary); color: var(--white) !important;
    padding: 0.5rem 1.5rem; border-radius: 50px;
}
.btn-nav:hover { background: var(--primary-dark); transform: translateY(-2px); }

/* Hero Section */
.hero {
    height: 100vh;
    background: url('https://images.unsplash.com/photo-1517048676732-d65bc937f952?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
    position: relative;
    display: flex; align-items: center; justify-content: center;
    text-align: center;
}
.hero-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(74,20,140,0.8), rgba(253,251,247,0.7));
}
.hero-content { position: relative; z-index: 2; color: var(--primary-dark); }
.hero h1 { font-size: 3.5rem; margin-bottom: 1rem; line-height: 1.2; }
.hero .highlight { color: var(--white); text-shadow: 0 2px 10px rgba(0,0,0,0.2); }
.hero p { font-size: 1.2rem; margin-bottom: 2rem; max-width: 700px; margin-left: auto; margin-right: auto; }

.btn { padding: 0.8rem 2rem; border-radius: 50px; font-weight: 600; display: inline-block; margin: 0 10px; }
.btn-primary { background: var(--primary); color: var(--white); box-shadow: 0 5px 15px rgba(74,20,140,0.4); }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-3px); }
.btn-outline { border: 2px solid var(--primary); color: var(--primary); }
.btn-outline:hover { background: var(--primary); color: var(--white); }

/* Services - Glassmorphism */
.section { padding: 5rem 0; }
.section-header { margin-bottom: 4rem; }
.section-header h2 { font-size: 2.5rem; margin-bottom: 1rem; }
.separator { width: 60px; height: 4px; background: var(--primary); margin: 0 auto 1rem; border-radius: 2px; }

.cards-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}
.card {
    background: rgba(255, 255, 255, 0.7);
    padding: 2.5rem; border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: var(--shadow);
    transition: var(--transition);
}
.card:hover { transform: translateY(-10px); background: #fff; }
.icon-box {
    font-size: 2rem; color: var(--primary); margin-bottom: 1.5rem;
    width: 60px; height: 60px; background: rgba(74, 20, 140, 0.1);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
}
.card h3 { margin-bottom: 1rem; font-size: 1.25rem; }

/* About */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-img-wrapper { position: relative; }
.about-img { width: 100%; border-radius: 20px; box-shadow: var(--shadow); }
.experience-badge {
    position: absolute; bottom: -20px; right: -20px;
    background: var(--primary); color: var(--white);
    padding: 1.5rem; border-radius: 15px; text-align: center;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}
.experience-badge .number { font-size: 2rem; font-weight: 700; display: block; line-height: 1; }
.check-list li { margin-bottom: 0.5rem; display: flex; align-items: center; gap: 10px; }
.check-list i { color: var(--primary); }
.price-tag { margin-top: 2rem; padding: 1rem; background: rgba(74, 20, 140, 0.05); border-left: 4px solid var(--primary); border-radius: 0 10px 10px 0; }

/* Testimonials */
.testimonials-bg {
    background: url('images/coach-ontologico-profesional-marcelo-lally.webp') center/cover fixed;
    position: relative; color: var(--white);
}
.overlay-violet {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(18, 0, 94, 0.85);
}
.separator-white { background: var(--white); }
.white-text h2 { color: var(--white); }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.testimonial-card {
    background: rgba(255,255,255,0.1); backdrop-filter: blur(5px);
    padding: 2rem; border-radius: 15px; border: 1px solid rgba(255,255,255,0.2);
}
.quote-icon { font-size: 2rem; opacity: 0.5; margin-bottom: 1rem; }
.testimonial-card h4 { color: var(--accent); margin-top: 1rem; font-family: 'Montserrat', sans-serif; font-size: 1.1rem; }
.role { font-size: 0.9rem; opacity: 0.8; }

/* WhatsApp Float */
.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: var(--transition);
}
.whatsapp-float:hover { background-color: #20ba5a; transform: scale(1.1); }

/* Footer */
footer { background: var(--primary-dark); color: var(--white); padding-top: 4rem; }
.footer-content { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 3rem; padding-bottom: 3rem; }
.footer-col h3 { color: var(--white); margin-bottom: 1.5rem; }
.footer-col a { color: #ccc; display: block; margin-bottom: 0.5rem; }
.footer-col a:hover { color: var(--accent); padding-left: 5px; }
.social-links { display: flex; gap: 1rem; margin-top: 1rem; }
.social-links a { width: 40px; height: 40px; background: rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; border-radius: 50%; }
.social-links a:hover { background: var(--primary); color: white; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 1.5rem 0; text-align: center; font-size: 0.9rem; }

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero h1 { font-size: 2.2rem; }
    .nav-links {
        position: fixed; right: -100%; top: 70px; height: calc(100vh - 70px);
        background: var(--bg-color); flex-direction: column; width: 100%;
        justify-content: center; transition: 0.4s;
    }
    .nav-links.active { right: 0; }
    .hamburger { display: block; cursor: pointer; }
    .hamburger .bar { display: block; width: 25px; height: 3px; background: var(--primary); margin: 5px auto; transition: 0.3s; }
    .about-grid { grid-template-columns: 1fr; }
}