:root {
    --bg-dark: #0f1014;
    --bg-card: #15181e;
    --gold: #dfbc82;
    --gold-hover: #efcc92;
    --text-white: #ffffff;
    --text-gray: #a0a5b1;
    --green: #2e8b57;
    --blue: #2980b9;
    --purple: #8e44ad;
    --red: #e74c3c;
    --border: #2c303a;
}

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

html {
    overflow-x: hidden;
    max-width: 100vw;
}

body {
    overflow-x: hidden;
    max-width: 100vw;
}

body {
    font-family: "Montserrat", sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-gray);
    line-height: 1.6;
    font-size: 0.95rem;
}

h1, h2, h3, h4 { color: var(--text-white); font-weight: 700; }

.gold-text { color: var(--gold); }
.text-green { color: var(--green); }
.text-blue { color: var(--blue); }
.text-purple { color: var(--purple); }
.text-red { color: var(--red); }
.gold-icon { color: var(--gold); }
.icon-green { color: var(--green); }
.icon-blue { color: var(--blue); }
.icon-purple { color: var(--purple); }
.text-xs { font-size: 0.7rem; }

.container { width: 90%; max-width: 1200px; margin: 0 auto; padding: 60px 0; }
.text-center { text-align: center; }
.left { text-align: left; }

.section-subtitle {
    color: var(--gold);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.section-title {
    font-size: 1.8rem;
    margin-bottom: 40px;
    text-transform: uppercase;
    color: var(--text-white);
}

/* ====== HEADER ====== */
header {
    background: transparent;
    position: absolute;
    width: 100%;
    max-width: 100vw;
    top: 0;
    z-index: 100;
    left: 0;
    right: 0;
}

.nav-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
}

/* ====== LOGO ====== */
.main-logo {
    height: 70px;
    width: auto;
    object-fit: contain;
    transform: translateY(10px); /* Baja el logo visualmente para alinearlo */
}

/* ====== NAV ====== */
nav ul { list-style: none; display: flex; gap: 28px; } /* Reduje un poco el espacio para compensar el tamaño menor */

nav a {
    color: var(--text-white);
    text-decoration: none;
    font-size: 0.72rem; /* Menú más pequeño (antes 0.82rem) */
    font-weight: 600;
    letter-spacing: 1px;
    transition: color 0.3s;
    text-transform: uppercase;
}

nav a:hover, nav a.active { color: var(--gold); }

nav a.active {
    border-bottom: 2px solid var(--gold);
    padding-bottom: 4px;
}

/* Submenú */
.dropdown {
    position: relative;
}

.submenu {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    top: 150%; /* Comienza un poco más abajo para la animación */
    left: 50%;
    transform: translateX(-50%);
    background-color: #1a1c23; /* Fondo ligeramente más claro que el header */
    border: 1px solid rgba(223, 188, 130, 0.2);
    border-radius: 8px;
    min-width: 180px;
    flex-direction: column;
    padding: 8px 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.8);
    z-index: 1000;
    transition: all 0.3s ease;
    display: flex;
}

/* Flechita apuntando arriba */
.submenu::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 10px;
    height: 10px;
    background-color: #1a1c23;
    border-top: 1px solid rgba(223, 188, 130, 0.2);
    border-left: 1px solid rgba(223, 188, 130, 0.2);
}

.dropdown:hover .submenu {
    visibility: visible;
    opacity: 1;
    top: 100%; /* Efecto de deslizar hacia arriba */
}

.submenu li {
    width: 100%;
}

.submenu a {
    display: block;
    padding: 12px 20px;
    font-size: 0.75rem;
    color: #ddd;
    text-align: center;
    transition: background-color 0.2s, color 0.2s, padding-left 0.2s;
}

.submenu a:hover {
    background-color: rgba(223, 188, 130, 0.1);
    color: var(--gold);
    padding-left: 25px; /* Efecto de deslizar a la derecha al hacer hover */
}

/* ====== BUTTONS ====== */
.btn-gold {
    background: linear-gradient(135deg, #dfbc82 0%, #b38541 100%);
    box-shadow: 0 0 15px rgba(223, 188, 130, 0.4);
    color: #000;
    padding: 12px 28px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.85rem;
    border-radius: 4px;
    transition: 0.3s;
    border: none;
    cursor: pointer;
    display: inline-block;
    letter-spacing: 1px;
}

.btn-gold:hover {
    background: linear-gradient(135deg, #efcc92 0%, #c39551 100%);
    box-shadow: 0 0 25px rgba(223, 188, 130, 0.7);
}

.btn-outline {
    background-color: transparent;
    color: var(--text-white);
    padding: 11px 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    border-radius: 4px;
    border: 1.5px solid var(--text-white);
    transition: 0.3s;
    display: inline-block;
    letter-spacing: 1px;
}

.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

/* ====== HERO ====== */
.hero {
    background-color: var(--bg-dark);
    min-height: 100vh;
    width: 100%;
    padding: 170px 5% 0 5%;
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.hero-img {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: right center;
    z-index: 0;
}

/* Degradado izquierdo sobre la imagen */
.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 55%;
    height: 100%;
    background: linear-gradient(to right,
        rgba(15,16,20,1) 0%,
        rgba(15,16,20,0.85) 60%,
        rgba(15,16,20,0) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    flex: 1;
}

.hero-features {
    position: relative;
    z-index: 2;
}

.hero-content { flex: 1; }
.hero-text { max-width: 600px; }

.hero-text .subtitle {
    color: var(--gold);
    font-weight: 600;
    letter-spacing: 3px;
    margin-bottom: 15px;
    font-size: 0.82rem;
    text-transform: uppercase;
}

.hero-text h1 {
    font-family: "Oswald", sans-serif;
    font-weight: 700;
    font-size: 3rem;
    line-height: 1.0;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.hero-text .desc {
    font-size: 1rem;
    margin-bottom: 35px;
    max-width: 480px;
    color: #d0d0d0;
    line-height: 1.7;
}

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

/* ====== HERO FEATURES BAR ====== */
.hero-features {
    display: flex;
    justify-content: center;
    margin-top: 60px;
    padding: 30px 5%;
    border-top: 1px solid rgba(255,255,255,0.12);
    background: rgba(10, 11, 15, 0.55);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 18px;
    flex: 1;
    padding: 0 40px;
    position: relative;
    max-width: 380px;
}

.feature-item:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 10%;
    height: 80%;
    width: 1px;
    background-color: rgba(255,255,255,0.15);
}

.feature-icon { font-size: 2.2rem; color: var(--gold); flex-shrink: 0; }

.feature-text h4 {
    font-size: 0.95rem;
    margin-bottom: 4px;
    text-transform: uppercase;
    color: var(--text-white);
    font-weight: 700;
}

.feature-text p { font-size: 0.82rem; color: var(--text-gray); }

/* ====== QUE APRENDERAS ====== */
.que-aprenderas { background-color: var(--bg-dark); }

.grid-6 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; text-align: left; }

.learn-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 25px;
    display: flex;
    gap: 18px;
    align-items: flex-start;
    transition: border-color 0.3s;
}

.learn-card:hover { border-color: var(--gold); }
.learn-card i { font-size: 1.8rem; margin-top: 4px; flex-shrink: 0; }
.learn-card h3 { font-size: 0.9rem; margin-bottom: 8px; }
.learn-card p { font-size: 0.8rem; }

/* ====== PROGRAMAS ====== */
.programas { background-color: var(--bg-card); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; text-align: left; }

.pricing-card {
    background-color: var(--bg-dark);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 30px;
    position: relative;
    transition: transform 0.3s;
}

.pricing-card:hover { transform: translateY(-5px); }
.pricing-card.highlight { border: 1px solid var(--purple); }

.badge {
    position: absolute;
    top: -12px;
    left: 25px;
    padding: 4px 14px;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 4px;
    color: #fff;
    letter-spacing: 1px;
}

.badge.green { background-color: var(--green); }
.badge.blue { background-color: var(--blue); }
.badge.purple { background-color: var(--purple); }

.card-header { display: flex; gap: 15px; align-items: center; margin-bottom: 20px; margin-top: 12px; }
.card-header i { font-size: 2.2rem; }
.card-header h3 { font-size: 1.05rem; margin-bottom: 4px; }
.card-header p { font-size: 0.82rem; }

.features-list { list-style: none; margin-bottom: 25px; }
.features-list li { font-size: 0.88rem; margin-bottom: 10px; display: flex; align-items: center; gap: 10px; }

.btn-full {
    display: block;
    width: 100%;
    text-align: center;
    padding: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.85rem;
    border-radius: 4px;
    color: #fff;
    transition: 0.3s;
    letter-spacing: 1px;
}

.btn-green { background-color: var(--green); }
.btn-green:hover { background-color: #246d44; }
.btn-blue { background-color: var(--blue); }
.btn-blue:hover { background-color: #1f6390; }
.btn-purple { background-color: var(--purple); }
.btn-purple:hover { background-color: #73378c; }

/* ====== PRINCIPIOS ====== */
.principios { background-color: var(--bg-dark); }

.rule-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 30px;
    transition: border-color 0.3s;
}

.rule-card:hover { border-color: var(--red); }

.rule-header { display: flex; gap: 15px; align-items: flex-start; margin-bottom: 15px; }
.rule-header i { font-size: 2.2rem; }
.rule-header .num { font-weight: 800; font-size: 1.1rem; display: block; color: var(--gold); }
.rule-header h3 { font-size: 0.95rem; }
.rule-card h4 { font-size: 0.95rem; margin-bottom: 12px; color: var(--text-white); }
.rule-card p { font-size: 0.82rem; }

/* ====== BANNER STRIP ====== */
.banner-strip {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 22px 0;
    background-color: var(--bg-card);
}

.flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 35px;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.flex-center span {
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--text-white);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
}

.dot { color: var(--gold); font-size: 1.2rem; }

.mini-logo {
    height: 40px;
    width: auto;
    object-fit: contain;
}

/* ====== MENTOR ====== */
.mentor-section { background-color: var(--bg-card); }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.mentor-img img { width: 100%; height: auto; border-radius: 8px; display: block; }

.stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 25px 0 30px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 20px 0;
}

.stat h3 { color: var(--gold); font-size: 2rem; font-family: "Oswald", sans-serif; }
.stat p { font-size: 0.75rem; font-weight: 700; letter-spacing: 1px; color: var(--text-gray); }

/* ====== TESTIMONIOS ====== */
.testimonios { background-color: var(--bg-dark); }

.grid-testimonio {
    display: grid;
    grid-template-columns: repeat(3, 1fr) 280px;
    gap: 20px;
    text-align: left;
}

.review-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.stars { color: var(--gold); margin-bottom: 15px; font-size: 0.9rem; }

.review-card > p {
    font-style: italic;
    font-size: 0.88rem;
    margin-bottom: 20px;
    flex-grow: 1;
    color: #ccc;
    line-height: 1.6;
}

.user { display: flex; align-items: center; gap: 12px; border-top: 1px solid var(--border); padding-top: 15px; }
.avatar { width: 38px; height: 38px; border-radius: 50%; background: linear-gradient(135deg, #333, #555); flex-shrink: 0; }
.user h4 { font-size: 0.88rem; color: var(--text-white); }
.user span { font-size: 0.75rem; color: var(--text-gray); }

.cta-box {
    border: 1px solid var(--gold);
    border-radius: 8px;
    padding: 30px 25px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: radial-gradient(ellipse at top, rgba(223,188,130,0.12) 0%, rgba(21,24,30,1) 70%);
}

.lg-icon { font-size: 2.2rem; margin-bottom: 12px; }
.cta-box h2 { font-size: 1.6rem; margin-bottom: 12px; }
.cta-box > p { font-size: 0.82rem; margin-bottom: 20px; line-height: 1.6; }
.full-width { display: block; width: 100%; text-align: center; }
.small-text { font-size: 0.7rem; font-weight: 700; margin-top: 12px; letter-spacing: 1px; color: var(--gold); }

/* ====== FOOTER ====== */
footer { padding: 30px; text-align: center; border-top: 1px solid var(--border); font-size: 0.85rem; color: var(--text-gray); }

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-icon {
    color: var(--text-gray);
    font-size: 1.5rem;
    transition: color 0.3s, transform 0.3s;
    text-decoration: none;
}

.social-icon:hover {
    color: var(--gold);
    transform: translateY(-3px);
}

/* ====== RESPONSIVE ====== */
@media (max-width: 900px) {
    .hero-text h1 { font-size: 3rem; }
    .grid-6 { grid-template-columns: repeat(2, 1fr); }
    .grid-3 { grid-template-columns: 1fr; }
    .grid-2 { grid-template-columns: 1fr; }
    .grid-testimonio { grid-template-columns: 1fr; }
    .hero-features { flex-direction: column; gap: 20px; }
    nav ul { gap: 15px; }
}

@media (max-width: 600px) {
    .grid-6 { grid-template-columns: 1fr; }
    .hero-text h1 { font-size: 2rem; }
    .hero-buttons { flex-direction: column; }
    .nav-container { flex-direction: column; gap: 15px; }
}

/* ====== WHATSAPP FLOAT ====== */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 35px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.4);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s, background-color 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #20b858;
    color: #fff;
}
