/*
Theme Name: El Método Prohibido
Theme URI: https://digisalesmaster.com
Author: Antigravity AI
Description: Un tema de WordPress diseño "Estoico" para landing pages de infoproductos masculinos.
Version: 1.1
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: dark, landing-page, stoic, responsive
*/

:root {
    /* Bases - Warm/Deep Grays */
    --color-bg: #141414;
    /* Profundo, casi negro pero cálido */
    --color-section: #1F1F1F;
    /* Diferenciación sutil y elegante */
    --color-section-dark: #111111;

    /* Textos - Legibilidad Máxima */
    --color-text-main: #FFFFFF;
    /* Blanco roto, menos agresivo */
    --color-text-muted: #D1D5DB;
    /* Gris medio-claro para lectura cómoda */

    /* Acentos - Bronce Sobrio */
    --color-accent: #C0A062;
    /* Bronce metálico mate, elegante */
    --color-primary: #C0A062;
    --color-border: rgba(192, 160, 98, 0.3);
    /* Sutil */

    /* Tipografía */
    --font-heading: 'Cinzel', serif;
    --font-body: 'Inter', sans-serif;

    /* Layout */
    --radius-sm: 8px;
    /* Más cuadrado, más estoico */
    --radius-md: 12px;
    --container-width: 1200px;
    /* Un poco más ancho para dar aire */
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
    /* Evita que el header tape el título */
}

body {
    background-color: var(--color-bg);
    color: var(--color-text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    /* Ritmo pausado */
    font-weight: 400;
    /* Asegurar que no sea light */
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--color-text-main);
    text-transform: uppercase;
    letter-spacing: 0.02em;
    /* Aire en los títulos */
    line-height: 1.2;
    margin-bottom: 1rem;
}

p {
    font-family: var(--font-body);
    color: var(--color-text-muted);
    font-size: 1.05rem;
    /* 18px para lectura fácil */
    margin-bottom: 1rem;
    line-height: 1.6;
    max-width: none;
    /* Limitar ancho de línea para legibilidad */
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Utilities */
.text-center {
    text-align: center;
}

.section-padding {
    padding: 50px 0;
    /* Tighter spacing for mobile */
}

@media (min-width: 768px) {
    .section-padding {
        padding: 90px 0;
    }
}

.section-title {
    font-size: 2.2rem;
    margin-bottom: 3rem;
    border-bottom: none;
    display: block;
    padding-bottom: 0;
}

/* Gradient overrides (removing them for stoic look) */
.text-gradient {
    color: var(--color-primary);
    font-style: normal;
    /* Removing italics per instructions */
}

/* Buttons */
.btn-primary {
    background: linear-gradient(to right, #C0A062, #9A7D46);
    /* Gradiente sutil */
    color: #000;
    border: none;
    padding: 16px 32px;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.1rem;
    cursor: pointer;
    border-radius: 50px;
    /* Redondo original */
    transition: all 0.3s ease;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(192, 160, 98, 0.3);
    /* Glow original */
    display: inline-block;
    /* Essential for anchors */
    text-decoration: none;
    /* Essential for anchors */
}

.btn-primary:hover {
    background-color: #D4B475;
    /* Ligeramente más claro al hover */
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(192, 160, 98, 0.2);
}

/* Cards & Containers */
.card,
.step-card,
.preview-card,
.bonus-card,
.testimonial-card {
    background-color: var(--color-section);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm) !important;
    box-shadow: none;
    padding: 40px;
    /* Más espacio interno */
}

/* Removing Modern Effects */
.hero-glow,
.badge-gold {
    opacity: 0.5;
    /* Tone down */
}

/* Badge update */
/* Badge update - Pulsing Lightbulb Effect */
@keyframes pulse-glow {

    0%,
    100% {
        box-shadow: 0 0 10px rgba(212, 175, 55, 0.2), inset 0 0 5px rgba(212, 175, 55, 0.1);
        text-shadow: 0 0 5px rgba(212, 175, 55, 0.5);
        border-color: rgba(212, 175, 55, 0.6);
    }

    50% {
        box-shadow: 0 0 25px rgba(212, 175, 55, 0.8), inset 0 0 10px rgba(212, 175, 55, 0.3);
        text-shadow: 0 0 15px rgba(212, 175, 55, 1);
        border-color: rgba(212, 175, 55, 1);
    }
}

.badge {
    background: rgba(212, 175, 55, 0.05) !important;
    border: 1px solid var(--color-primary) !important;
    color: var(--color-primary) !important;
    font-family: var(--font-heading);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-size: 0.8rem;
    animation: pulse-glow 2s infinite ease-in-out;
}

/* Lists */
ul {
    list-style: none;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--color-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--color-section);
}

/* Component Styles Aggregated */

/* --- HERO SECTION --- */
/* --- HERO SECTION --- */
.hero {
    position: relative;
    padding-top: 60px;
    /* Reduced for mobile */
    padding-bottom: 60px;
    /* Also reduced bottom slightly */
    text-align: center;
    overflow: hidden;
}

@media (min-width: 768px) {
    .hero {
        padding-top: 120px;
        padding-bottom: 80px;
    }
}

.hero-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Centering fix */
}

.badge-container {
    margin-bottom: 24px;
}

.hero-title {
    font-size: 2.5rem;
    margin-bottom: 24px;
    line-height: 1.2;
}

.hero-title span {
    display: inline;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--color-text-muted);
    max-width: 700px;
    margin: 0 auto 30px;
    font-family: var(--font-body);
}

.hero-image-container {
    margin: 0 auto 40px;
    max-width: 300px;
    perspective: 1000px;
}

.hero-book-img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    /* Maximum Intensity Holy Glow */
    box-shadow: 0 0 100px rgba(212, 175, 55, 0.8), 0 0 50px rgba(212, 175, 55, 1), 0 20px 60px rgba(0, 0, 0, 0.9);
    border: 1px solid rgba(255, 223, 100, 0.8);
    /* Brighter border */
    transform: rotateY(-5deg);
    transition: transform 0.5s ease;
}

.hero-book-img:hover {
    transform: rotateY(0deg) scale(1.02);
}

.hero-btn {
    margin-bottom: 15px;
}

.guarantee-text {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    opacity: 0.8;
    margin-top: 10px;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3.5rem;
    }

    .hero-image-container {
        max-width: 340px;
    }
}

/* --- BENEFITS SECTION --- */
.grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 900px;
    margin: 50px auto 0;
}

@media (min-width: 768px) {
    .grid {
        grid-template-columns: 1fr 1fr;
    }
}

.benefit-row {
    padding: 30px;
    /* Stronger Blue Gradient */
    background: linear-gradient(135deg, #202b3c 0%, #0d1117 100%);
    border: 1px solid #2D3748;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    text-align: left;
}

.benefit-row:hover {
    border-color: var(--color-primary);
    /* Gold hover to link back */
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.benefit-row h3 {
    font-size: 1.25rem;
    margin-bottom: 15px;
    color: var(--color-primary);
    /* Simple Solid Gold */
    letter-spacing: 0.05em;
}

.benefit-row p {
    margin-bottom: 0;
    color: #CBD5E0;
    /* Lighter Grey for better contrast on blue */
    font-size: 1rem;
}

/* --- PRICING SECTION --- */
.pricing-section {
    display: flex;
    justify-content: center;
}

.pricing-card {
    background: var(--color-bg);
    border: 1px solid var(--color-accent);
    padding: 0;
    max-width: 450px;
    width: 100%;
    text-align: center;
    position: relative;
    margin: 0 auto;
    /* Centering fix */
}

.pricing-header {
    padding: 30px;
    background: var(--color-section);
    border-bottom: 1px solid var(--color-border);
}

.offer-title {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.subtitle {
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 0;
}

.stack-list {
    padding: 30px;
    text-align: left;
}

.stack-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 0.95rem;
    color: var(--color-text-muted);
    font-family: var(--font-body);
}

.divider {
    height: 1px;
    background: var(--color-border);
    margin: 20px 0;
}

.total {
    font-family: var(--font-heading);
    color: var(--color-text-main);
    font-weight: 700;
}

.strike {
    text-decoration: line-through;
    opacity: 0.5;
}

.final-price-box {
    margin-bottom: 30px;
}

.only-today {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin-bottom: 5px;
}

.price-display {
    color: var(--color-accent);
    font-family: var(--font-heading);
    font-weight: 700;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    line-height: 1;
}

.amount {
    font-size: 4rem;
}

.currency {
    font-size: 1.5rem;
    margin-top: 5px;
}

.coin {
    font-size: 1rem;
    margin-top: 25px;
    margin-left: 5px;
}

.full-width {
    width: 80%;
    margin: 0 auto 20px;
    display: block;
}

.payment-icons {
    margin-bottom: 30px;
    color: var(--color-text-muted);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* --- IDENTIFICATION SECTION --- */
.list-container {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.list-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255, 255, 255, 0.03);
    padding: 20px;
    border: 1px solid var(--color-primary);
    /* Borde dorado visible */
    border-radius: 8px;
    margin-bottom: 15px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.list-item:hover {
    transform: translateX(5px);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.1);
    background: rgba(212, 175, 55, 0.05);
}

.list-item p {
    margin: 0;
    font-weight: 400;
    color: var(--color-text-muted);
    text-align: left;
}

.icon {
    color: var(--color-primary);
    font-size: 1.2rem;
    font-weight: bold;
}

/* --- METHODOLOGY SECTION --- */
.methodology-title {
    background: linear-gradient(180deg, #FFFFFF 20%, #A0AEC0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 10px rgba(160, 174, 192, 0.2);
    display: inline-block;
    /* Ensure gradient works */
}

.steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 40px;
}

@media (min-width: 768px) {
    .steps-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Cleaned up 3D Step Card Styles */
.step-card {
    background: #FFFFFF;
    /* White background */
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #E2E8F0;
    text-align: center;
    position: relative;
    overflow: hidden;
    /* 3D Card Effect */
    border-bottom: 8px solid #A0AEC0;
    /* Physical thickness */
    transform: perspective(1000px) rotateX(2deg) translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1), 0 25px 50px rgba(160, 174, 192, 0.4);
    /* Depth shadows */
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.step-card:hover {
    border-color: #CBD5E0;
    border-bottom-color: #718096;
    /* Darker bottom on hover */
    transform: perspective(1000px) rotateX(2deg) translateY(-12px);
    box-shadow: 0 30px 60px rgba(160, 174, 192, 0.6);
}

.step-number {
    font-size: 8rem;
    font-weight: 900;
    color: rgba(0, 0, 0, 0.03);
    /* Lighter, subtle watermark */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /* Centered */
    line-height: 1;
    z-index: 0;
    pointer-events: none;
}

.step-card h3 {
    margin-top: 10px;
    margin-bottom: 20px;
    font-size: 1.4rem;
    color: var(--color-primary);
    /* Gold Title */
    font-weight: 800;
    /* Extra bold */
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
}

.step-card p {
    font-size: 1.05rem;
    color: #2D3748;
    /* Darker readable text */
    font-weight: 600;
    /* Semi-bold for legibility */
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.icon-wrapper {
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
}

.step-icon {
    width: 60px;
    height: 60px;
    /* Stroke color will be handled by SVG inline style or fill */
    stroke: var(--color-primary);
    stroke-width: 1.5;
    fill: none;
    filter: drop-shadow(0 2px 4px rgba(192, 160, 98, 0.3));
}

/* --- TESTIMONIALS --- */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background: var(--color-section);
    padding: 40px;
    border: 1px solid var(--color-border);
    display: flex;
    flex-direction: column;
    text-align: left;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 25px;
    flex-grow: 1;
}

.bio {
    border-top: 1px solid var(--color-border);
    padding-top: 15px;
    font-size: 0.8rem;
    color: var(--color-text-main);
    font-family: var(--font-heading);
    letter-spacing: 0.1em;
}

/* --- BONUSES --- */
.bonus-list-container {
    max-width: 700px;
    margin: 0 auto;
    border: 1px solid var(--color-border);
    padding: 40px;
    background: var(--color-bg);
}

.bonus-list li {
    font-family: var(--font-heading);
    padding: 10px 0;
    border-bottom: 1px solid var(--color-section);
    color: var(--color-text-main);
    display: flex;
    align-items: center;
}

.plus {
    color: var(--color-accent);
    margin-right: 15px;
    font-weight: 700;
}

/* --- HEADER --- */
.site-header {
    background: rgba(20, 20, 20, 0.95);
    /* Frosted glass effect */
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 15px;
    /* Extra padding for safety */
}

.logo {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.1rem;
    /* Slightly smaller for mobile */
    letter-spacing: 0.05em;
    color: #FFFFFF;
    text-decoration: none;
    white-space: nowrap;
    /* Prevent wrapping */
}

/* Base Nav: Hidden on mobile, Flex on Desktop */
.main-nav {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Hide TEXT links on mobile - The Fix */
.main-nav .nav-link {
    display: none;
}

/* Tablet/Desktop: Show text links */
@media (min-width: 768px) {
    .logo {
        font-size: 1.5rem;
    }

    .main-nav {
        gap: 30px;
    }

    .main-nav .nav-link {
        display: block;
        color: var(--color-text-muted);
        font-size: 0.9rem;
        font-weight: 500;
        letter-spacing: 0.05em;
        transition: color 0.3s;
        text-decoration: none;
    }

    .main-nav .nav-link:hover {
        color: var(--color-primary);
    }
}

/* Button overrides for Header */
.nav-btn {
    padding: 8px 18px;
    font-size: 0.85rem;
    white-space: nowrap;
    background: var(--color-primary);
    color: #000;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
}

@media (min-width: 768px) {
    .nav-btn {
        padding: 10px 24px;
        font-size: 0.9rem;
    }
}

/* --- FOOTER --- */
.footer {
    background: var(--color-section-dark);
    padding: 60px 0;
    text-align: center;
}