:root {
    --bg: #0f0a05;
    --card: #1a120b;
    --text: #f6f1e7;
    --muted: #cbbfaf;
    --accent: #cf8b1a;
    --accent-2: #8a5a1b;
    --danger: #ff7a59;
    --success: #7bd88f;
    --max-width: 1080px;
    --radius: 16px;
    --shadow: 0 15px 45px rgba(0, 0, 0, 0.35);
    font-family: "Inter", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

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

body {
    background: radial-gradient(circle at 20% 20%, rgba(70, 64, 58, 0.08), transparent 35%),
        radial-gradient(circle at 80% 10%, rgba(80, 75, 70, 0.12), transparent 40%),
        linear-gradient(135deg, #141110, #1f1a16 55%, #1a1510);
    color: var(--text);
    line-height: 1.6;
}

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

.green {
    color: var(--success);
}

.mt-10 {
    margin-top: 10px;
}

.tienes-dudas {
    margin-top: 40px;
    margin-bottom: 12px;
}

.banner {
    border: none;
    overflow: hidden;
    border-radius: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #e38402 0%, #3d2713 70%);
}

.banner-img {
    max-height: 200px;
    width: 100%;
    display: block;
    border-radius: 0%;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius);
}

video {
    margin: auto;
    border-radius: var(--radius);
    max-height: 600px;

}

.video-container {
    max-width: 100%;
    overflow: hidden;
    border-radius: var(--radius);
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
}

.hero {
    padding: 2.5rem 0 1rem;
}

.title {
    font-size: 2.2rem;
    margin-bottom: 40px;
}

.hero-copy h1 {
    font-size: clamp(2.3rem, 4vw, 3.4rem);
    margin: 0.4rem 0;
}

.badge {
    display: inline-block;
    background: rgba(207, 139, 26, 0.14);
    color: var(--accent);
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    font-weight: 700;
    letter-spacing: 0.02em;
    font-size: 0.9rem;
}




.btn {
    margin-top: 15px;
    display: inline-block;
    padding: 0.9rem 1.4rem;
    border-radius: 999px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
    box-shadow: 0 10px 25px rgba(207, 139, 26, 0.35);
    height: 60px;
    font-size: 1.25rem;

}

.whatsapp.btn {
    box-shadow: 0 10px 25px #25d36536;

    background: #25D366;
    color: white;
    display: inline-flex;
    align-items: center;
}

.btn.primary {
    background: linear-gradient(120deg, var(--accent), var(--accent-2));
    color: var(--text);
}


.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 36px rgba(207, 139, 26, 0.45);
}

.whatsapp.btn:hover {
    box-shadow: 0 16px 36px #25d36545;
}

.cta-note {
    color: var(--muted);
    font-size: 0.9rem;
    margin-top: 0.4rem;
}

.section {
    padding: 3rem 0;
}

.section-header {
    margin-bottom: 1.5rem;
}

.section-header h2 {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 600;
}

.about-desc>p {
    margin-bottom: 0.75rem;
}

.welcome-img {
    max-width: 400px;
    width: 60%;
    margin: 0 auto 1.5rem;
    display: block;
}

.eyebrow {
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700;
    margin-bottom: 0.35rem;
    font-size: 0.85rem;
}

.list {
    list-style: none;
    display: grid;
    gap: 0.65rem;
    margin: 0 0 1.5rem;
}

.list-cross li::before {
    content: "❌";
    margin-right: 0.5rem;
    color: var(--danger);
}

.list-check li::before {
    content: "✅";
    margin-right: 0.5rem;
    color: var(--success);
}

.list li {
    color: var(--muted);
}

.visual {
    margin: 1.25rem 0;
    display: grid;
    gap: 0.6rem;
}

.visual h3 {
    font-size: 1.1rem;
}

.feature-grid,
.bonus-grid,
.value-grid,
.faq-grid {
    display: grid;
    gap: 1.2rem;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}


.result-container {
    padding: 2rem;
    border-radius: var(--radius);
    margin-bottom: 1.5rem;

    transition: all 0.3s ease;
    position: relative;
}


.result-container h3 {
    color: var(--accent);
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
}

.result-container p {
    color: var(--muted);
    line-height: 1.7;
}

.card {
    background: var(--card);
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 1.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.card:hover {
    border-color: rgba(207, 139, 26, 0.3);
    transform: translateY(-2px);
}


.card h3,
.card h4 {
    margin-bottom: 0.5rem;
}

.card p {
    color: var(--muted);
}

.highlight {
    border-color: rgba(207, 139, 26, 0.4);
}

.accent {
    border-color: rgba(138, 90, 27, 0.4);
}

.feature {
    padding: 0.75rem;
    border-radius: 12px;
    background: rgba(207, 139, 26, 0.06);
}

.centered-img {
    margin: 0 auto 1rem;
    max-width: 220px;
}

.center {
    text-align: center;
}

.split {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    align-items: center;
}

.portrait {
    text-align: center;
}

.portrait img {
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
}

.value {
    font-weight: 700;
    /**   text-decoration: line-through; **/
    margin-top: 0.4rem;
}

.strike {
    text-decoration: line-through;
    margin-top: 1rem;
}

.pricing {
    padding-top: 1rem;
}

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

.timer {
    color: var(--danger);
    font-weight: 700;
}

.note {
    color: var(--muted);
    font-size: 0.95rem;
    margin-top: 0.6rem;
}

details {
    background: var(--card);
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 0.9rem 1rem;
    border-radius: 12px;
}

details+details {
    margin-top: 0.6rem;
}

summary {
    cursor: pointer;
    font-weight: 700;
}

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

.final-cta h2 {
    margin-bottom: 0.9rem;
}

@media (max-width: 640px) {

    .welcome-img {
        width: 90%;

    }

    .result-container {
        padding: 1.5rem;
    }

    .btn {
        width: 100%;
        text-align: center;
    }
}

@media (min-width: 900px) {
    .result-container {
        display: flex;
        flex-direction: row;
        justify-content: baseline;
    }

    .result-text {
        max-width: 400px;
        margin-right: 20px;
    }
}

@media (max-width: 1200px) {
    .container {
        max-width: 90%;
    }
}