:root {
    --green: #90be3e;
    --green-dark: #6f9a2a;
    --green-deep: #4d6b1c;
    --green-light: #eaf4d4;
    --green-soft: #f5faf0;
    --earth: #8b6b3d;
    --earth-light: #f7f1e8;
    --ink: #1a1f14;
    --ink-2: #2d3324;
    --paper: #ffffff;
    --paper-2: #fafcf7;
    --paper-3: #f0f4e8;
    --muted: #6b7261;
    --border: #e3e9d6;
    --shadow-sm: 0 1px 3px rgba(26, 31, 20, .06);
    --shadow: 0 12px 32px rgba(26, 31, 20, .08);
    --shadow-lg: 0 30px 60px rgba(26, 31, 20, .14);
    --radius: 18px;
    --radius-lg: 26px;
    --max: 1160px;
}
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}
html {
    scroll-behavior: smooth
}
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--paper);
    color: var(--ink);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
a {
    color: inherit;
    text-decoration: none
}
img {
    max-width: 100%;
    display: block
}
button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none
}
.container {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 24px
}
.nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, .9);
    backdrop-filter: saturate(180%) blur(14px);
    -webkit-backdrop-filter: saturate(180%) blur(14px);
    border-bottom: 1px solid var(--border);
}
.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}
.logo {
    display: flex;
    align-items: center;
    gap: 11px;
    font-weight: 800;
    font-size: 18px;
    letter-spacing: -.02em;
}
.logo-mark {
    width: 36px;
    height: 36px;
    border-radius: 11px;
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    position: relative;
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}
.logo span small {
    display: block;
    font-size: 11px;
    font-weight: 500;
    color: var(--muted);
    letter-spacing: 0
}
.nav-links {
    display: flex;
    gap: 26px;
    align-items: center
}
.nav-links a {
    font-size: 14px;
    font-weight: 500;
    color: var(--muted);
    transition: color .2s
}
.nav-links a:hover {
    color: var(--green-dark)
}
.nav-cta {
    background: var(--green);
    color: #fff !important;
    padding: 10px 20px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 14px;
    transition: transform .2s, box-shadow .2s, background .2s;
}
.nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow);
    background: var(--green-dark)
}
@media(max-width:820px) {
    .nav-links a:not(.nav-cta) {
        display: none
    }
}
.hero {
    position: relative;
    padding: 100px 0 90px;
    background:
        radial-gradient(1000px 500px at 85% -10%, rgba(144, 190, 62, .18), transparent 60%),
        radial-gradient(900px 500px at 5% 0%, rgba(139, 107, 61, .10), transparent 60%),
        radial-gradient(700px 400px at 50% 100%, rgba(144, 190, 62, .08), transparent 60%),
        var(--paper-2);
    overflow: hidden;
}
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle, rgba(144, 190, 62, .14) 1.5px, transparent 1.5px);
    background-size: 26px 26px;
    mask-image: radial-gradient(circle at 50% 40%, black, transparent 72%);
    pointer-events: none;
}
.hero-inner {
    position: relative;
    text-align: center;
    max-width: 860px;
    margin: 0 auto
}
.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border: 1px solid var(--border);
    padding: 8px 16px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    color: var(--green-deep);
    box-shadow: var(--shadow-sm);
    margin-bottom: 28px;
}
.leaf {
    width: 16px;
    height: 16px;
    color: var(--green);
    flex-shrink: 0;
}
.hero h1 {
    font-family: 'Fraunces', Georgia, serif;
    font-size: clamp(2.2rem, 5.6vw, 4.2rem);
    font-weight: 800;
    letter-spacing: -.02em;
    line-height: 1.06;
    margin-bottom: 20px;
}
.hero h1 .accent {
    color: var(--green-dark);
    position: relative;
}
.hero h1 .accent::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: .06em;
    height: .28em;
    background: linear-gradient(90deg, var(--green), var(--green-light));
    border-radius: 4px;
    z-index: -1;
    opacity: .55;
}
.hero .sub {
    font-size: clamp(1.05rem, 2.2vw, 1.3rem);
    color: var(--muted);
    font-weight: 400;
    max-width: 660px;
    margin: 0 auto 16px;
}
.hero .sub strong {
    color: var(--ink);
    font-weight: 600
}
.hero .meta {
    font-size: 15px;
    color: var(--muted);
    margin-bottom: 40px;
}
.hero .meta b {
    color: var(--ink);
    font-weight: 600
}
.trust-row {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 34px;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--muted);
    font-weight: 500;
}
.trust-item .leaf {
    color: var(--green);
    width: 15px;
    height: 15px
}
section {
    padding: 92px 0;
    position: relative
}
.section-head {
    max-width: 740px;
    margin: 0 auto 56px;
    text-align: center
}
.kicker {
    display: inline-block;
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--green-dark);
    margin-bottom: 16px;
}
.section-head h2 {
    font-family: 'Fraunces', Georgia, serif;
    font-size: clamp(1.8rem, 3.9vw, 2.7rem);
    font-weight: 800;
    letter-spacing: -.02em;
    line-height: 1.15;
}
.section-head p {
    font-size: 1.05rem;
    color: var(--muted);
    margin-top: 16px;
}
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
@media(max-width:960px) {
    .products-grid {
        grid-template-columns: 1fr 1fr
    }
}
@media(max-width:620px) {
    .products-grid {
        grid-template-columns: 1fr
    }
}
.product-card {
    background: var(--paper);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    transition: transform .28s, box-shadow .28s, border-color .28s;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
    border-color: var(--green);
}
.product-icon {
    width: 52px;
    height: 52px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: #fff;
    background: linear-gradient(135deg, var(--green), var(--green-dark));
}
.product-icon.earth {
    background: linear-gradient(135deg, #a8874f, var(--earth))
}
.product-icon.mixed {
    background: linear-gradient(135deg, var(--green), #8b6b3d)
}
.product-card h3 {
    font-family: 'Fraunces', Georgia, serif;
    font-size: 1.22rem;
    font-weight: 700;
    letter-spacing: -.01em;
    margin-bottom: 10px;
    line-height: 1.25;
}
.product-card p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.65;
    margin-bottom: 16px
}
.product-card p:last-child {
    margin-bottom: 0
}
.product-card ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 9px;
    margin-bottom: 16px;
}
.product-card li {
    display: flex;
    gap: 10px;
    font-size: 13.5px;
    line-height: 1.5;
    color: var(--ink-2);
}
.product-card li::before {
    content: "";
    flex-shrink: 0;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--green);
    margin-top: 9px;
}
.price-tag {
    display: inline-block;
    background: var(--green-light);
    color: var(--green-deep);
    font-size: 12.5px;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 999px;
    margin-bottom: 14px;
    letter-spacing: .01em;
}
.directorio {
    background: var(--paper-2);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px 36px;
    max-width: 860px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.directorio::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--green), var(--earth), var(--green));
}
.directorio .icon-link {
    width: 60px;
    height: 60px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #fff;
    box-shadow: 0 8px 24px rgba(144, 190, 62, .3);
}
.directorio h3 {
    font-family: 'Fraunces', Georgia, serif;
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: -.01em;
    margin-bottom: 14px;
    line-height: 1.25;
}
.directorio p {
    font-size: 14.5px;
    color: var(--muted);
    line-height: 1.75;
    max-width: 640px;
    margin: 0 auto 12px;
}
.directorio p strong {
    color: var(--ink);
    font-weight: 600
}
.friends-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin: 28px 0 24px;
}
@media(max-width:620px) {
    .friends-grid {
        grid-template-columns: 1fr
    }
}
.friend-card {
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: 16px;
    padding: 20px 16px;
    text-align: center;
    transition: transform .22s, box-shadow .22s, border-color .22s;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}
.friend-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
    border-color: var(--green);
}
.friend-card .f-icon {
    width: 38px;
    height: 38px;
    border-radius: 11px;
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}
.friend-card .f-name {
    font-size: 13.5px;
    font-weight: 700;
    color: var(--ink);
    letter-spacing: -.01em;
}
.friend-card .f-desc {
    font-size: 12px;
    color: var(--muted);
    line-height: 1.5;
}
.directorio .link-out {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14.5px;
    font-weight: 700;
    color: var(--green-dark);
    border-bottom: 2px solid var(--green);
    padding-bottom: 2px;
    transition: gap .2s, color .2s, border-color .2s;
}
.directorio .link-out:hover {
    gap: 12px;
    color: var(--green-deep);
    border-color: var(--green-deep)
}
.duo {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}
@media(max-width:820px) {
    .duo {
        grid-template-columns: 1fr
    }
}
.duo-card {
    background: var(--paper-2);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 38px 34px;
    position: relative;
    overflow: hidden;
    transition: transform .25s, box-shadow .25s;
}
.duo-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow)
}
.duo-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--green), var(--green-dark));
}
.duo-card.alt::before {
    background: linear-gradient(90deg, var(--earth), var(--green))
}
.duo-card .tag {
    display: inline-block;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--green-dark);
    margin-bottom: 14px;
}
.duo-card h3 {
    font-family: 'Fraunces', Georgia, serif;
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: -.01em;
    margin-bottom: 8px;
}
.duo-card .lead {
    font-size: 14.5px;
    color: var(--muted);
    margin-bottom: 24px
}
.duo-card ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px
}
.duo-card li {
    display: flex;
    gap: 13px;
    font-size: 14.5px;
    line-height: 1.55;
    color: var(--ink-2);
}
.duo-card li strong {
    font-weight: 700;
    color: var(--ink)
}
.check {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    border-radius: 7px;
    background: var(--green);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
}
.steps {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}
@media(max-width:820px) {
    .steps {
        grid-template-columns: 1fr;
        gap: 56px
    }
}
.steps-col h3 {
    font-family: 'Fraunces', Georgia, serif;
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: -.01em;
    margin-bottom: 26px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.steps-col h3 .pill {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 5px 11px;
    border-radius: 999px;
    background: var(--green-light);
    color: var(--green-deep);
}
.step {
    display: flex;
    gap: 18px;
    padding: 22px 0;
    border-bottom: 1px solid var(--border);
}
.step:last-child {
    border-bottom: none
}
.step .num {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    border-radius: 13px;
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Fraunces', Georgia, serif;
    font-weight: 800;
    font-size: 17px;
}
.step h4 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 4px;
    letter-spacing: -.01em
}
.step p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.55
}
.local {
    background: var(--ink);
    color: var(--paper)
}
.local .section-head h2 {
    color: var(--paper)
}
.local .section-head p {
    color: rgba(255, 255, 255, .7)
}
.local .kicker {
    color: var(--green)
}
.local-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 56px;
    align-items: start;
}
@media(max-width:820px) {
    .local-grid {
        grid-template-columns: 1fr;
        gap: 36px
    }
}
.local-text p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, .82);
    margin-bottom: 18px;
    line-height: 1.75;
}
.local-text p strong {
    color: var(--paper);
    font-weight: 600
}
.zonas h4 {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .55);
    margin-bottom: 18px;
}
.zonas-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px
}
.zona-chip {
    padding: 9px 17px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .12);
    font-size: 13.5px;
    font-weight: 500;
    transition: background .2s, border-color .2s, transform .2s;
}
.zona-chip:hover {
    background: rgba(144, 190, 62, .2);
    border-color: var(--green);
    transform: translateY(-1px);
}
.zona-chip.destacada {
    background: var(--green);
    border-color: var(--green);
    font-weight: 700;
    color: #fff;
}
.faq-list {
    max-width: 840px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px
}
.faq-item {
    background: var(--paper);
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: box-shadow .2s, border-color .2s;
}
.faq-item[open] {
    box-shadow: var(--shadow);
    border-color: var(--green)
}
.faq-item summary {
    padding: 22px 26px;
    font-size: 15.5px;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    letter-spacing: -.01em;
}
.faq-item summary::-webkit-details-marker {
    display: none
}
.faq-item summary::after {
    content: "";
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none' stroke='%2390be3e' stroke-width='2.4' stroke-linecap='round'%3E%3Cpath d='M5 8l5 5 5-5'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    transition: transform .25s;
}
.faq-item[open] summary::after {
    transform: rotate(180deg)
}
.faq-item .answer {
    padding: 0 26px 24px;
    font-size: 14.5px;
    color: var(--muted);
    line-height: 1.75;
}
.faq-item .answer strong {
    color: var(--ink);
    font-weight: 600
}
.faq-item .answer a {
    color: var(--green-dark);
    font-weight: 600;
    border-bottom: 1px solid currentColor
}
.final {
    background:
        radial-gradient(700px 400px at 50% 0%, rgba(144, 190, 62, .16), transparent 70%),
        radial-gradient(700px 400px at 20% 100%, rgba(139, 107, 61, .10), transparent 70%),
        var(--paper-2);
    text-align: center;
}
.final h2 {
    font-family: 'Fraunces', Georgia, serif;
    font-size: clamp(1.9rem, 4.2vw, 2.9rem);
    font-weight: 800;
    letter-spacing: -.02em;
    line-height: 1.12;
    margin-bottom: 18px;
}
.final p {
    font-size: 1.08rem;
    color: var(--muted);
    max-width: 580px;
    margin: 0 auto 34px
}
.final .btn {
    max-width: 360px;
    margin: 0 auto
}
footer {
    background: var(--ink);
    color: rgba(255, 255, 255, .65);
    padding: 60px 0 34px;
    font-size: 14px;
}
.foot-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}
@media(max-width:720px) {
    .foot-grid {
        grid-template-columns: 1fr;
        gap: 28px
    }
}
.foot-brand .logo {
    color: var(--paper);
    margin-bottom: 16px
}
.foot-brand .logo span small {
    color: rgba(255, 255, 255, .5)
}
.foot-brand p {
    font-size: 13.5px;
    line-height: 1.7;
    max-width: 360px
}
.foot-col h5 {
    color: var(--paper);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 18px;
}
.foot-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 11px
}
.foot-col a {
    font-size: 14px;
    transition: color .2s
}
.foot-col a:hover {
    color: var(--green)
}
.foot-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    padding-top: 28px;
    font-size: 13px;
}
.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .7s ease, transform .7s ease
}
.reveal.in {
    opacity: 1;
    transform: none
}
.pagos-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    max-width: 820px;
    margin: 0 auto;
}
@media(max-width:720px) {
    .pagos-grid {
        grid-template-columns: 1fr 1fr
    }
}
.pago-item {
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: 18px;
    padding: 22px 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 90px;
    transition: transform .22s, box-shadow .22s, border-color .22s;
}
.pago-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
    border-color: var(--green);
}
.pago-item img {
    max-width: 100%;
    width: auto;
    object-fit: contain;
    filter: grayscale(.15);
    transition: filter .2s;
}
.pago-item:hover img {
    filter: grayscale(0)
}
/* Botón flotante de WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    z-index: 1000;
    text-decoration: none;
}
.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #20b359;
    color: white;
}
@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 25px;
        bottom: 20px;
        right: 20px;
    }
}
.fila-producto {
    display: flex;
    gap: 48px;
    align-items: center;
    margin-bottom: 70px;
}
.fila-foto {
    flex: 0 0 45%;
}
.fila-foto img {
    width: 100%;
    border-radius: 14px;
}
.fila-texto {
    flex: 1;
}
@media(max-width:820px) {
    .fila-producto {
        flex-direction: column;
        gap: 24px;
        margin-bottom: 50px;
    }
    .fila-foto {
        flex: 1;
        width: 100%;
    }
}