/* Colores / Fuentes */
:root {
    --paper: #F7F0D9;
    --paper2: #FFFCF2;
    --ink: #2E2A1F;
    --moss: #4B5D34;
    --mossdark: #38471F;
    --clay: #C1652F;
    --gold: #E3A857;
    --line: #D8CBA0;

    --font-display: 'Fredoka', sans-serif;
    --font-body: 'Work Sans', sans-serif;

    --bulma-body-font-size: 1.125em;
}

/* Mini reset para Bulma */
html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--paper);
    color: var(--ink);
    font-family: var(--font-body);
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
}

h1,
h2,
h3,
.brand,
.tagline,
.faq-title {
    font-family: var(--font-display);
}

a {
    color: var(--mossdark);
}

a:hover {
    color: var(--clay);
}

a:focus-visible,
button:focus-visible,
summary:focus-visible {
    outline: 3px solid var(--moss);
    outline-offset: 2px;
}

.section-tight {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
}

@media (min-width: 769px) {
    .section-tight {
        padding-top: 5rem;
        padding-bottom: 5rem;
    }
}

/* Container width helpers (achicando un poco las columnas) */
.container-narrow {
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.container-medium {
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
}

.container-wide {
    max-width: 1120px;
    margin-left: auto;
    margin-right: auto;
}

/* Nav */
.site-nav {
    position: sticky;
    top: 0;
    z-index: 40;
    background: rgba(247, 240, 217, .92);
    backdrop-filter: blur(6px);
    border-bottom: 1px solid rgba(216, 203, 160, .7);
}

.site-nav .inner {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 1.25rem;
    height: 4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand-mark {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.15rem;
    letter-spacing: -0.02em;
    color: var(--mossdark);
}

/* Botones */
.btn {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-weight: 600;
    border-radius: 999px;
    padding: .8rem 1.6rem;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: background-color .15s ease, transform .1s ease;
    line-height: 1;
}

.btn-primary {
    background: var(--moss);
    color: var(--paper2);
}

.btn-primary:hover {
    background: var(--mossdark);
    color: var(--paper2);
}

.btn-gold {
    background: var(--gold);
    color: var(--ink);
}

.btn-gold:hover {
    background: #d99a45;
    color: var(--ink);
}

.btn-sm {
    padding: .55rem 1.1rem;
    font-size: .9rem;
}

.btn svg {
    display: block;
}

/* Hero */
.hero-section {
    position: relative;
    overflow: hidden;
}

.hero-figures {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: .10;
}

.hero-figures svg {
    width: 100%;
    height: 100%;
}

.hero-inner {
    position: relative;
    max-width: 720px;
    margin: 0 auto;
    padding: 3.5rem 1.25rem 2.5rem;
    text-align: center;
}

@media (min-width: 769px) {
    .hero-inner {
        padding-top: 4rem;
    }
}

.brand {
    position: relative;
    display: inline-block;
    font-weight: 700;
    font-size: 2.4rem;
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: var(--mossdark);
}

@media (min-width: 600px) {
    .brand {
        font-size: 3.75rem;
    }
}

@media (min-width: 992px) {
    .brand {
        font-size: 4.5rem;
    }
}

.brand svg {
    position: absolute;
    left: 0;
    bottom: -14px;
    width: 100%;
    height: 10px;
}

.tagline {
    margin-top: 1.4rem;
    color: rgba(46, 42, 31, .6);
    font-size: .85rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    font-weight: 600;
}

@media (min-width: 600px) {
    .tagline {
        font-size: 1rem;
        margin-top: 1.5rem;
    }
}

.badge-tape {
    display: inline-block;
    transform: rotate(-2deg);
    background: rgba(227, 168, 87, .9);
    color: var(--ink);
    font-size: .8rem;
    font-weight: 600;
    padding: .4rem 1rem;
    border-radius: 3px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, .08);
    margin-top: 2rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 600px) {
    .badge-tape {
        font-size: .875rem;
    }
}

.hero-question {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 1.4rem;
    line-height: 1.3;
    color: var(--ink);
}

@media (min-width: 600px) {
    .hero-question {
        font-size: 2rem;
    }
}

.hero-question .accent {
    color: var(--clay);
}

.hero-subhead {
    margin-top: 1.5rem;
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--mossdark);
}

@media (min-width: 600px) {
    .hero-subhead {
        font-size: 1.25rem;
    }
}

.hero-meta {
    margin-top: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: .75rem;
    font-size: .875rem;
    font-weight: 500;
    color: rgba(46, 42, 31, .8);
}

.hero-meta span {
    background: var(--paper2);
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: .5rem 1rem;
}

.hero-ctas {
    margin-top: 2.25rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

@media (min-width: 600px) {
    .hero-ctas {
        flex-direction: row;
        justify-content: center;
    }
}

.link-underline {
    color: var(--mossdark);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.link-underline:hover {
    color: var(--clay);
}

/* video */
.video-wrap {
    max-width: 640px;
    margin: 0 auto;
    padding: 1.5rem 1.25rem 1rem;
}

.video-frame {
    position: relative;
    aspect-ratio: 16 / 9;
    border-radius: 1rem;
    border: 2px dashed #B7A468;
    background: rgba(255, 252, 242, .6);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .75rem;
    text-align: center;
    padding: 1.5rem;
}

.video-frame .play {
    width: 4rem;
    height: 4rem;
    border-radius: 999px;
    background: rgba(75, 93, 52, .9);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, .15);
}

.video-frame p {
    color: rgba(46, 42, 31, .7);
    font-size: .95rem;
    font-weight: 500;
    max-width: 22rem;
}

.video-frame .hint {
    font-size: .75rem;
    color: rgba(46, 42, 31, .5);
    display: block;
    margin-top: .25rem;
}

/* Linea ondulada */
.squiggle {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

.squiggle svg {
    display: block;
    width: 100%;
    height: 28px;
}

/* "Cards" y secciones */
.card-plain {
    background: var(--paper2);
    border: 1px solid var(--line);
    border-radius: 1rem;
    padding: 1.25rem 1.5rem;
}

.problem-list {
    list-style: none;
    margin: 0 0 2.5rem;
    padding: 0;
}

.problem-list li {
    display: flex;
    align-items: flex-start;
    gap: .75rem;
    margin-bottom: 1rem;
}

.problem-list li:last-child {
    margin-bottom: 0;
}

.problem-list .dash {
    color: var(--clay);
    font-size: 1.25rem;
    line-height: 1;
}

.closing-line {
    text-align: center;
    font-family: var(--font-display);
    font-size: 1.15rem;
    color: var(--mossdark);
}

@media (min-width: 600px) {
    .closing-line {
        font-size: 1.3rem;
    }
}

.path-underline {
    position: relative;
    display: inline-block;
}

.path-underline svg {
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 10px;
}

/* Dark band */
.band-dark {
    background: var(--mossdark);
    color: var(--paper2);
}

.band-dark .muted {
    color: rgba(255, 252, 242, .7);
}

.icon-frame {
    aspect-ratio: 4/3;
    border-radius: 1rem;
    border: 2px dashed rgba(255, 252, 242, .3);
    background: rgba(255, 252, 242, .05);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 220px;
}

.icon-frame img {
    border-radius: 1rem;
}

@media (max-width: 768px) {
    .icon-frame {
        width: 100%;
    }
}

/* Tarjetas "qué vas a vivir" */
.num-badge {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 999px;
    background: rgba(75, 93, 52, .15);
    color: var(--moss);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Testimonios */
.quote-card {
    position: relative;
    background: var(--paper2);
    border: 1px solid var(--line);
    border-radius: 1rem;
    padding: 2.1rem 1.5rem 1.5rem;
    height: 100%;
}

.quote-card::before {
    content: '\201C';
    font-family: var(--font-display);
    position: absolute;
    top: -6px;
    left: 14px;
    font-size: 3rem;
    color: var(--gold);
    line-height: 1;
    opacity: .8;
}

.quote-card p {
    font-style: italic;
    color: rgba(46, 42, 31, .85);
}

.quote-card footer {
    margin-top: 1rem;
    font-size: .875rem;
    font-weight: 600;
    color: var(--mossdark);
}

/* Para quién es y para quién no */
.band-gold {
    background: rgba(227, 168, 87, .15);
}

.fit-card {
    background: var(--paper2);
    border-radius: 1rem;
    padding: 1.75rem;
    border: 2px solid rgba(75, 93, 52, .4);
    height: 100%;
}

.fit-card.not-fit {
    border-color: rgba(193, 101, 47, .4);
}

.fit-card h3 {
    font-weight: 600;
    font-size: 1.15rem;
    margin-bottom: .75rem;
}

.fit-card.not-fit h3 {
    color: var(--clay);
}

.fit-card:not(.not-fit) h3 {
    color: var(--mossdark);
}

.fit-card p {
    color: rgba(46, 42, 31, .8);
    line-height: 1.6;
}

.fit-card .fine {
    margin-top: .75rem;
    font-size: .875rem;
    color: rgba(46, 42, 31, .7);
}

/* Sobre Omar */
.avatar-frame {
    width: 8rem;
    height: 14rem;
    border: 2px dashed rgba(75, 93, 52, .4);
    background: rgba(75, 93, 52, .15);
    border-radius: 999px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.avatar-frame img {
    width: 100%;
    border-radius: 999px;
}

/* Detalles / horarios */
.timeline {
    list-style: none;
    margin: 0;
    padding: 0;
}

.timeline li {
    display: flex;
    gap: 1rem;
}

.timeline .rail {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.timeline .dot {
    width: .75rem;
    height: .75rem;
    border-radius: 999px;
    background: var(--moss);
    margin-top: .4rem;
    flex-shrink: 0;
}

.timeline .dot.gold {
    background: var(--gold);
}

.timeline .bar {
    width: 1px;
    flex: 1;
    background: var(--line);
}

.timeline p {
    padding-bottom: 2rem;
}

.timeline li:last-child p {
    padding-bottom: 0;
}

.price-big {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.75rem;
    color: var(--clay);
}

.price-big .unit {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 1.125rem;
    color: rgba(46, 42, 31, .6);
}

/* FAQ */
.faq-item {
    background: var(--paper2);
    border: 1px solid var(--line);
    border-radius: .75rem;
    padding: 1rem 1.25rem;
    margin-bottom: .75rem;
}

.faq-item summary {
    list-style: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    font-weight: 600;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-icon {
    color: var(--moss);
    font-size: 1.25rem;
    transition: transform .15s ease;
    flex-shrink: 0;
}

.faq-item[open] .faq-icon {
    transform: rotate(45deg);
}

.faq-item p {
    margin-top: .75rem;
    color: rgba(46, 42, 31, .75);
}

/* CTA mobile (el botón de WhatsApp en móviles) */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 40;
    padding: .75rem;
    background: rgba(247, 240, 217, .95);
    backdrop-filter: blur(6px);
    border-top: 1px solid var(--line);
}

.sticky-cta .btn {
    width: 100%;
    justify-content: center;
}

@media (min-width: 769px) {

    .sticky-cta,
    .sticky-spacer {
        display: none;
    }
}

.sticky-spacer {
    height: 4rem;
}

/* "Scroll reveal" */
.reveal {
    opacity: 0;
    transform: translateY(14px);
    transition: opacity .6s ease, transform .6s ease;
}

.reveal.in-view {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

footer.site-footer {
    background: var(--ink);
    color: rgba(255, 252, 242, .6);
    text-align: center;
    font-size: .75rem;
    padding: 1.5rem 1.25rem;
}