/* ============================================
   ESTILOS GLOBALES - Mentalidad y Negocio
   ============================================ */

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

:root {
    --primary-color: #1F66FF;
    --secondary-color: #32CD32;
    --accent-color: #FF6600;
    --danger-color: #FF2D2D;
    --light-bg: #F5F9FF;
    --white: #FFFFFF;
    --text-dark: #1A1A1A;
    --text-gray: #4A4A4A;
    --text-light: #7D7D7D;
    --border-color: #E0E0E0;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.15);
}

html {
    scroll-behavior: smooth;
}

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

/* ============================================
   TIPOGRAFÍA
   ============================================ */

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: clamp(2rem, 8vw, 4rem);
    font-weight: 800;
}

h2 {
    font-size: clamp(1.75rem, 6vw, 3rem);
}

h3 {
    font-size: clamp(1.25rem, 4vw, 1.75rem);
}

p {
    font-size: 1rem;
    color: var(--text-gray);
}

/* ============================================
   CONTENEDOR Y LAYOUT
   ============================================ */

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

.max-width-700 {
    max-width: 700px;
    margin: 0 auto;
}

.max-width-800 {
    max-width: 800px;
    margin: 0 auto;
}

.text-center {
    text-align: center;
}

.mb-16 {
    margin-bottom: 4rem;
}

.mb-12 {
    margin-bottom: 3rem;
}

.mb-8 {
    margin-bottom: 2rem;
}

.mb-6 {
    margin-bottom: 1.5rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

/* ============================================
   SECCIONES
   ============================================ */

section {
    width: 100%;
    padding: 60px 20px;
}

.section-white {
    background-color: var(--white);
    padding: 60px 20px;
}

.section-light {
    background-color: var(--light-bg);
    padding: 60px 20px;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero-section {
    background: linear-gradient(135deg, var(--light-bg) 0%, #E8F4FF 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

@media (max-width: 768px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

.hero-content {
    animation: fadeIn 0.8s ease-in;
}

.hero-title {
    font-size: clamp(2rem, 8vw, 3.5rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 30px;
    line-height: 1.6;
}

.hero-image {
    animation: slideInRight 0.8s ease-out;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

.highlight-red {
    color: var(--danger-color);
}

/* ============================================
   GRID LAYOUTS
   ============================================ */

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

@media (max-width: 768px) {
    .grid-2 {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.modules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.bonuses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

/* ============================================
   CARDS
   ============================================ */

.benefit-card,
.module-card,
.bonus-card {
    background: var(--white);
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    animation: slideUp 0.6s ease-out;
}

.benefit-card:hover,
.module-card:hover,
.bonus-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.benefit-card {
    background-color: var(--light-bg);
}

.benefit-title,
.module-title,
.bonus-title {
    color: var(--white);
    font-size: 1.5rem;
    margin: 12px 0;
}

.benefit-text,
.module-text,
.bonus-desc {
    color: var(--text-gray);
    font-size: 0.95rem;
}

.module-subtitle {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin: 8px 0;
}

.bonus-value {
    color: var(--text-gray);
    font-size: 1.5rem;
    font-weight: 700;
    margin: 8px 0;
}

/* ============================================
   ICONOS
   ============================================ */

.icon-green {
    color: var(--secondary-color);
    font-size: 2.5rem;
    margin-bottom: 12px;
}

.icon-orange {
    color: var(--accent-color);
    font-size: 2.5rem;
    margin-bottom: 12px;
}

.icon-primary {
    color: var(--primary-color);
    font-size: 3rem;
    margin-bottom: 16px;
}

.icon-bonus {
    color: var(--secondary-color);
    font-size: 3rem;
    margin-bottom: 16px;
}

/* ============================================
   BOTONES
   ============================================ */

.btn {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 12px 24px;
}

.btn-primary:hover {
    background-color: #28b82e;
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(50, 205, 50, 0.3);
}

.btn-success {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 14px 28px;
}

.btn-success:hover {
    background-color: #28b82e;
    transform: scale(1.05);
}

.btn-white {
    background-color: var(--white);
    color: var(--text-dark);
    padding: 16px 32px;
    border: 2px solid var(--white);
}

.btn-white:hover {
    background-color: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .btn-lg {
        width: 100%;
        padding: 14px 24px;
    }
}

.btn:active {
    transform: scale(0.98);
}

/* ============================================
   SECCIÓN OFERTA
   ============================================ */

.offer-card {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    padding: 40px;
    border-radius: 16px;
    text-align: center;
    margin-top: 40px;
    box-shadow: var(--shadow-lg);
}

.offer-price {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.price-red {
    color: var(--danger-color);
    font-weight: 800;
}

.price-divider {
    width: 60px;
    height: 3px;
    background-color: var(--white);
    margin: 16px auto;
}

.offer-title {
    font-size: clamp(2rem, 6vw, 3.5rem);
    font-weight: 800;
    margin: 20px 0;
}

.offer-savings {
    font-size: 1.25rem;
    margin-bottom: 24px;
}

.offer-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
    font-size: 0.95rem;
}

/* ============================================
   TESTIMONIOS Y CARRUSEL
   ============================================ */

.testimonials-carousel {
    max-width: 900px;
    margin: 0 auto;
}

.carousel-container {
    overflow: hidden;
    border-radius: 12px;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.testimonial-slide {
    min-width: 100%;
    padding: 0 20px;
}

.testimonial-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

@media (max-width: 768px) {
    .testimonial-card {
        grid-template-columns: 1fr;
    }
}

.testimonial-image {
    height: 300px;
    overflow: hidden;
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-content {
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 16px;
    color: var(--text-gray);
}

.testimonial-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
}

.carousel-controls {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 24px;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ccc;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    background-color: var(--primary-color);
    width: 32px;
    border-radius: 6px;
}

/* ============================================
   ACORDEÓN (FAQ)
   ============================================ */

.accordion {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.accordion-item {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
}

.accordion-header {
    width: 100%;
    padding: 16px 20px;
    background-color: var(--light-bg);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    color: var(--text-dark);
}

.accordion-header:hover {
    background-color: #E0E8FF;
}

.accordion-header i {
    transition: transform 0.3s ease;
}

.accordion-header.active i {
    transform: rotate(180deg);
}

.accordion-content {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-content.active {
    padding: 16px 20px;
    max-height: 500px;
}

.accordion-content p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* ============================================
   SECCIÓN CTA FINAL
   ============================================ */

.section-cta {
    background: linear-gradient(135deg, #1a1a2e 0%, var(--primary-color) 100%);
    color: var(--white);
    padding: 80px 20px;
    text-align: center;
}

.cta-title {
    color: var(--white);
    font-size: clamp(2rem, 6vw, 3rem);
    margin-bottom: 20px;
}

.cta-text {
    font-size: 1.1rem;
    color: #E0E0E0;
    margin-bottom: 32px;
    line-height: 1.6;
}

.cta-footer {
    margin-top: 20px;
    font-size: 0.95rem;
    color: #B0B0B0;
}

.cta-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.95rem;
    color: #B0B0B0;
}

/* ============================================
   VIDEO CONTAINER
   ============================================ */

.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    margin-bottom: 32px;
}

.video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;
}

.transformation-quote {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 24px 0;
}

.transformation-text {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.8;
}

/* ============================================
   SECCIÓN COMPATIBILIDAD
   ============================================ */

.platforms-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
    margin: 30px 0;
}

.logo {
    max-height: 60px;
    object-fit: contain;
}

@media (max-width: 768px) {
    .logo {
        max-height: 50px;
    }
    
    .platforms-logos {
        gap: 30px;
    }
}

/* ============================================
   DIVIDER
   ============================================ */

.divider {
    width: 128px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--accent-color));
    border-radius: 2px;
    margin: 24px 0;
}

/* ============================================
   SECCIÓN MENTOR
   ============================================ */

.mentor-image {
    animation: slideInLeft 0.8s ease-out;
}

.mentor-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

.mentor-content {
    animation: slideInRight 0.8s ease-out;
}

.section-title {
    color: var(--text-dark);
    margin-bottom: 24px;
}

.section-text {
    color: var(--text-gray);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 16px;
}

/* ============================================
   ANIMACIONES
   ============================================ */

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 768px) {
    section {
        padding: 40px 20px;
    }

    .hero-section {
        min-height: auto;
        padding: 40px 20px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .offer-card {
        padding: 30px 20px;
    }

    .cta-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .benefits-grid,
    .modules-grid,
    .bonuses-grid {
        grid-template-columns: 1fr;
    }

    .mentor-content {
        order: -1;
    }

    .grid-2 {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.5rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .offer-title {
        font-size: 2rem;
    }

    .btn-lg {
        padding: 12px 20px;
        font-size: 1rem;
    }

    .cta-stats {
        gap: 15px;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .stat-label {
        font-size: 0.85rem;
    }
}

/* ============================================
   ACCESIBILIDAD
   ============================================ */

button:focus,
a:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
    }
}
