/* ============================================
   HOPE LANDING PAGE - POKER THEME
   Colors: Red (#DC143C), Black (#000), White (#FFF)
   ============================================ */

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --poker-red: #DC143C;
    --poker-black: #000000;
    --poker-white: #FFFFFF;
    --poker-gray: #1a1a1a;
    --poker-light-gray: #f5f5f5;
    --gold: #FFD700;
    --shadow: rgba(0, 0, 0, 0.2);
}

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

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

/* Typography */
h1, h2, h3 {
    font-weight: 800;
    line-height: 1.2;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--poker-black);
}

.section-title .red-text {
    color: var(--poker-red);
}

/* Buttons */
.btn-primary,
.btn-precio,
.btn-cta-large,
.btn-whatsapp {
    display: inline-block;
    padding: 18px 40px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-align: center;
}

.btn-primary,
.btn-cta-large.primary {
    background: var(--poker-red);
    color: var(--poker-white);
    box-shadow: 0 4px 15px rgba(220, 20, 60, 0.4);
}

.btn-primary:hover,
.btn-cta-large.primary:hover {
    background: #B71C1C;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 20, 60, 0.6);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    background: linear-gradient(135deg, var(--poker-black) 0%, var(--poker-gray) 100%);
    color: var(--poker-white);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '♠ ♥ ♣ ♦';
    position: absolute;
    font-size: 15rem;
    opacity: 0.05;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    letter-spacing: 80px;
}

.hero-badge {
    display: inline-block;
    background: var(--poker-red);
    color: var(--poker-white);
    padding: 10px 30px;
    border-radius: 25px;
    font-weight: 600;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.hero-title {
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-title .highlight {
    color: var(--poker-white);
    font-family: 'Playfair Display', serif;
}

.hero-title .red-text {
    color: var(--poker-red);
    text-transform: uppercase;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.hero-promise {
    background: var(--poker-white);
    color: var(--poker-black);
    padding: 40px;
    border-radius: 15px;
    margin: 40px auto;
    max-width: 800px;
    box-shadow: 0 8px 30px var(--shadow);
}

.heart-icon {
    font-size: 3rem;
    margin-bottom: 10px;
}

.hero-promise h2 {
    font-size: 2rem;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.feature {
    background: rgba(255, 255, 255, 0.1);
    padding: 15px 25px;
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.transformation-proof {
    margin: 50px 0;
}

.proof-text {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.proof-comparison {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    font-size: 1.3rem;
    font-weight: 700;
}

.before {
    color: #ff6b6b;
}

.after {
    color: #51cf66;
}

.arrow {
    font-size: 2rem;
    color: var(--poker-red);
}

.cta-primary-section {
    margin-top: 50px;
}

.cta-subtitle {
    margin-top: 15px;
    font-size: 1.1rem;
}

/* ============================================
   PARA TI SECTION
   ============================================ */
.para-ti {
    padding: 80px 0;
    background: var(--poker-light-gray);
}

.checklist {
    display: grid;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto 50px;
}

.check-item {
    background: var(--poker-white);
    padding: 20px;
    border-radius: 8px;
    border-left: 5px solid var(--poker-red);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    font-size: 1.1rem;
}

.testimonial-preview {
    text-align: center;
    margin-top: 60px;
}

.testimonial-preview h3 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.testimonial-highlight {
    color: var(--poker-red);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 30px;
}

.video-placeholder {
    background: var(--poker-black);
    color: var(--poker-white);
    padding: 80px 40px;
    border-radius: 15px;
    font-size: 1.5rem;
    text-align: center;
}

/* ============================================
   NOCHES PROGRAMA
   ============================================ */
.noches-programa {
    padding: 80px 0;
    background: var(--poker-white);
}

.unique-proposition {
    background: var(--poker-red);
    color: var(--poker-white);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 60px;
    box-shadow: 0 4px 20px rgba(220, 20, 60, 0.3);
}

.noche-card {
    background: var(--poker-light-gray);
    border: 3px solid var(--poker-black);
    border-radius: 15px;
    margin-bottom: 40px;
    overflow: hidden;
    box-shadow: 0 5px 20px var(--shadow);
}

.noche-header {
    background: var(--poker-black);
    color: var(--poker-white);
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.noche-number {
    background: var(--poker-red);
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
}

.noche-title {
    font-size: 1.8rem;
    margin: 0;
}

.noche-content {
    padding: 40px;
}

.noche-content h4 {
    color: var(--poker-red);
    font-size: 1.4rem;
    margin-bottom: 25px;
}

.noche-bullets {
    list-style: none;
    margin-bottom: 30px;
}

.noche-bullets li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    font-size: 1.05rem;
}

.noche-challenge,
.noche-quote,
.noche-exercise,
.pdf-bonus,
.enjoy-promise {
    background: var(--poker-white);
    padding: 25px;
    border-radius: 10px;
    margin-top: 25px;
    border-left: 4px solid var(--poker-red);
}

.bonus-text {
    color: var(--poker-red);
    font-weight: 600;
    margin-top: 15px;
}

.blank-line {
    border-bottom: 2px solid var(--poker-red);
    display: inline-block;
    min-width: 200px;
}

.quote-explanation {
    font-style: italic;
    color: #666;
    margin-top: 10px;
}

.non-negotiables {
    display: flex;
    justify-content: space-around;
    margin-top: 20px;
    font-weight: 700;
}

.highlight-box {
    background: var(--poker-red);
    color: var(--poker-white);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 15px;
}

/* ============================================
   APUÉSTALE AL CORAZÓN
   ============================================ */
.apuestale-corazon {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--poker-black) 0%, var(--poker-gray) 100%);
    color: var(--poker-white);
}

.special-presentation {
    text-align: center;
    margin-bottom: 50px;
}

.presentation-badge {
    display: inline-block;
    background: var(--poker-red);
    color: var(--poker-white);
    padding: 10px 30px;
    border-radius: 25px;
    font-weight: 600;
    margin-bottom: 20px;
}

.subtitle {
    font-size: 1.5rem;
    opacity: 0.9;
}

.corazon-features {
    display: grid;
    gap: 15px;
    margin-bottom: 40px;
}

.feature-item {
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.corazon-programa {
    background: var(--poker-white);
    color: var(--poker-black);
    padding: 40px;
    border-radius: 15px;
}

.corazon-programa h3 {
    color: var(--poker-red);
    margin-bottom: 20px;
}

.corazon-programa ul {
    margin: 20px 0;
    padding-left: 25px;
}

.corazon-programa li {
    margin: 10px 0;
}

.corazon-limit {
    background: var(--poker-red);
    color: var(--poker-white);
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    font-weight: 700;
    margin-top: 20px;
}

/* ============================================
   FRACASO SECTION
   ============================================ */
.fracaso-section {
    padding: 80px 0;
    background: var(--poker-light-gray);
}

.section-intro {
    text-align: center;
    font-size: 1.3rem;
    margin-bottom: 40px;
    color: #666;
}

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

.fracaso-item {
    background: var(--poker-white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px var(--shadow);
    border-top: 4px solid var(--poker-red);
}

.x-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 15px;
}

/* ============================================
   NO NECESITAS
   ============================================ */
.no-necesitas {
    padding: 80px 0;
    background: var(--poker-white);
}

.necesitas-grid {
    display: grid;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.necesitas-item {
    background: var(--poker-light-gray);
    padding: 30px;
    border-radius: 10px;
    border-left: 5px solid var(--poker-red);
}

.necesitas-no {
    color: var(--poker-red);
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.necesitas-si {
    color: #27ae60;
    font-weight: 600;
    font-size: 1.1rem;
}

/* ============================================
   ANTES Y DESPUÉS
   ============================================ */
.antes-despues {
    padding: 80px 0;
    background: var(--poker-black);
    color: var(--poker-white);
}

.comparison-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.antes-box,
.despues-box {
    padding: 40px;
    border-radius: 15px;
}

.antes-box {
    background: rgba(255, 107, 107, 0.2);
    border: 3px solid #ff6b6b;
}

.despues-box {
    background: rgba(81, 207, 102, 0.2);
    border: 3px solid #51cf66;
}

.antes-box h3 {
    font-size: 2rem;
    margin-bottom: 25px;
}

.despues-box h3 {
    font-size: 2rem;
    margin-bottom: 25px;
}

.antes-box ul,
.despues-box ul {
    list-style: none;
    padding: 0;
}

.antes-box li,
.despues-box li {
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

/* ============================================
   RESULTADOS
   ============================================ */
.resultados {
    padding: 80px 0;
    background: var(--poker-light-gray);
}

.subsection-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
    color: var(--poker-red);
}

.resultados-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.resultado-item {
    background: var(--poker-white);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 3px 15px var(--shadow);
    border-left: 4px solid var(--poker-red);
    font-size: 1.05rem;
}

/* ============================================
   BONOS
   ============================================ */
.bonos {
    padding: 80px 0;
    background: var(--poker-white);
}

.bonos-header {
    text-align: center;
    margin-bottom: 50px;
}

.valor-total {
    margin-top: 20px;
}

.valor-antes {
    font-size: 1.5rem;
    color: #666;
}

.precio-tachado {
    text-decoration: line-through;
    color: #999;
}

.valor-hoy {
    font-size: 2rem;
    font-weight: 700;
    color: var(--poker-red);
    margin-top: 10px;
}

.precio-actual {
    font-size: 2.5rem;
}

.bonos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.bono-card {
    background: var(--poker-light-gray);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 2px solid var(--poker-black);
    transition: transform 0.3s ease;
}

.bono-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px var(--shadow);
}

.bono-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.bono-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--poker-black);
}

.bono-valor {
    color: var(--poker-red);
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

/* ============================================
   PRECIOS
   ============================================ */
.precios {
    padding: 80px 0;
    background: var(--poker-black);
    color: var(--poker-white);
}

.precio-intro {
    text-align: center;
    margin-bottom: 50px;
}

.precio-intro h3 {
    font-size: 2rem;
    color: var(--poker-red);
}

.precios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto 60px;
}

.precio-card {
    background: var(--poker-white);
    color: var(--poker-black);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px var(--shadow);
    position: relative;
}

.precio-card.vip {
    border: 4px solid var(--gold);
}

.vip-badge {
    position: absolute;
    top: 20px;
    right: -35px;
    background: var(--gold);
    color: var(--poker-black);
    padding: 8px 40px;
    transform: rotate(45deg);
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.precio-header {
    padding: 40px;
    text-align: center;
    background: var(--poker-light-gray);
}

.precio-card.vip .precio-header {
    background: linear-gradient(135deg, var(--gold) 0%, #FFA500 100%);
    color: var(--poker-black);
}

.precio-header h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.precio-amount {
    font-size: 3rem;
    font-weight: 800;
    color: var(--poker-red);
}

.precio-card.vip .precio-amount {
    color: var(--poker-black);
}

.currency {
    font-size: 1.5rem;
}

.amount {
    font-size: 4rem;
}

.precio-features {
    padding: 40px;
}

.precio-features .feature {
    background: transparent;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    text-align: left;
}

.btn-precio {
    display: block;
    margin: 0 40px 40px;
    background: var(--poker-red);
    color: var(--poker-white);
    padding: 18px;
    border-radius: 10px;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-precio:hover {
    background: #B71C1C;
    transform: translateY(-2px);
}

.btn-precio.vip {
    background: var(--gold);
    color: var(--poker-black);
}

.btn-precio.vip:hover {
    background: #FFA500;
}

/* Countdown */
.countdown-section {
    text-align: center;
    margin-top: 60px;
}

.countdown-section h3 {
    font-size: 2rem;
    margin-bottom: 30px;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
}

.countdown-item {
    background: var(--poker-white);
    color: var(--poker-black);
    padding: 25px;
    border-radius: 15px;
    min-width: 120px;
}

.countdown-number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: var(--poker-red);
}

.countdown-label {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    margin-top: 10px;
}

.countdown-info {
    font-size: 1.2rem;
    margin: 10px 0;
}

/* ============================================
   GARANTÍA
   ============================================ */
.garantia {
    padding: 80px 0;
    background: var(--poker-light-gray);
}

.garantia-box {
    max-width: 800px;
    margin: 0 auto;
    background: var(--poker-white);
    padding: 50px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 30px var(--shadow);
    border: 3px solid var(--poker-red);
}

.garantia-seal {
    font-size: 4rem;
    margin-bottom: 20px;
}

.garantia-box h2 {
    color: var(--poker-red);
    margin-bottom: 25px;
}

.garantia-box p {
    font-size: 1.1rem;
    margin: 15px 0;
}

/* ============================================
   TESTIMONIOS
   ============================================ */
.testimonios {
    padding: 80px 0;
    background: var(--poker-white);
}

.testimonios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.testimonio-card {
    background: var(--poker-light-gray);
    padding: 35px;
    border-radius: 15px;
    border-left: 5px solid var(--poker-red);
    box-shadow: 0 4px 20px var(--shadow);
}

.testimonio-text {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.8;
}

.testimonio-author {
    font-weight: 700;
    color: var(--poker-red);
    text-align: right;
}

/* ============================================
   HISTORIA PERSONAL
   ============================================ */
.historia-personal {
    padding: 80px 0;
    background: var(--poker-black);
    color: var(--poker-white);
}

.historia-content {
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.2rem;
    line-height: 1.8;
}

.historia-content p {
    margin: 25px 0;
}

.highlight-quote {
    background: var(--poker-red);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    font-size: 1.5rem;
    margin: 40px 0;
}

.historia-promise {
    background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 15px;
    margin-top: 40px;
}

.historia-promise ul {
    margin: 20px 0;
    padding-left: 30px;
}

.historia-promise li {
    margin: 15px 0;
    font-size: 1.2rem;
}

.final-promise {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--poker-red);
    margin-top: 30px;
}

/* ============================================
   FAQ
   ============================================ */
.faq {
    padding: 80px 0;
    background: var(--poker-light-gray);
}

.faq-grid {
    display: grid;
    gap: 25px;
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--poker-white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 3px 15px var(--shadow);
}

.faq-question {
    color: var(--poker-red);
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.faq-answer {
    font-size: 1.1rem;
    line-height: 1.7;
}

/* ============================================
   EXCUSAS
   ============================================ */
.excusas {
    padding: 80px 0;
    background: var(--poker-white);
}

.excusas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.excusa-item {
    background: var(--poker-light-gray);
    padding: 30px;
    border-radius: 10px;
    border-top: 4px solid var(--poker-red);
}

.excusa-item h3 {
    color: var(--poker-red);
    margin-bottom: 15px;
}

/* ============================================
   CTA FINAL
   ============================================ */
.cta-final {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--poker-red) 0%, #B71C1C 100%);
    color: var(--poker-white);
    text-align: center;
}

.cta-final-title {
    font-size: 3rem;
    margin-bottom: 20px;
}

.cta-final-subtitle {
    font-size: 1.5rem;
    margin-bottom: 50px;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 600px;
    margin: 0 auto 50px;
}

.btn-cta-large {
    padding: 25px 50px;
    font-size: 1.2rem;
    border-radius: 12px;
}

.btn-cta-large.vip {
    background: var(--gold);
    color: var(--poker-black);
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.4);
}

.btn-cta-large.vip:hover {
    background: #FFA500;
    transform: translateY(-2px);
}

.cta-info {
    font-size: 1.2rem;
    margin-top: 40px;
}

.cta-info p {
    margin: 10px 0;
}

.countdown-inline {
    color: var(--gold);
    font-weight: 700;
}

.cta-final-message {
    font-size: 1.8rem;
    font-weight: 700;
    margin-top: 40px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    padding: 60px 0 30px;
    background: var(--poker-black);
    color: var(--poker-white);
}

.footer-contact {
    text-align: center;
    margin-bottom: 40px;
}

.footer-contact h3 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.btn-whatsapp {
    background: #25D366;
    color: var(--poker-white);
    margin-top: 20px;
}

.btn-whatsapp:hover {
    background: #128C7E;
}

.footer-philosophy {
    text-align: center;
    font-style: italic;
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    margin: 40px 0;
}

.footer-legal {
    text-align: center;
    opacity: 0.7;
}

.footer-links {
    margin-top: 15px;
}

.footer-links a {
    color: var(--poker-white);
    text-decoration: none;
    margin: 0 10px;
}

.footer-links a:hover {
    color: var(--poker-red);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 15px;
    }
    
    .proof-comparison {
        flex-direction: column;
        gap: 10px;
    }
    
    .noche-header {
        flex-direction: column;
        text-align: center;
    }
    
    .comparison-container {
        grid-template-columns: 1fr;
    }
    
    .countdown {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .countdown-item {
        min-width: 100px;
    }
    
    .precios-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-final-title {
        font-size: 2rem;
    }
}