:root {
    --wollo-color-marca: #849E3C;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: #1F2937;
    background: #FCF9F6;
    line-height: 1.6;
}

img {
    max-width: 100%;
    display: block;
}

/* Nav */

.wollo-nav {
    position: sticky;
    top: 0;
    z-index: 50;
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 0.85rem 1.5rem;
    background: rgba(252, 249, 246, 0.9);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.wollo-nav-marca {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
    color: #1F2937;
    font-weight: 700;
    font-size: 1.05rem;
    white-space: nowrap;
}

.wollo-nav-marca img {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    object-fit: cover;
}

.wollo-nav-links {
    display: flex;
    gap: 1.5rem;
    flex-grow: 1;
}

.wollo-nav-links a {
    color: #4B5563;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
}

.wollo-nav-links a:hover {
    color: var(--wollo-color-marca);
}

.wollo-nav-cta {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    white-space: nowrap;
}

.wollo-nav-login {
    color: #1F2937;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
}

.wollo-nav-login:hover {
    color: var(--wollo-color-marca);
}

.wollo-nav .wollo-btn {
    padding: 0.6rem 1.4rem;
    font-size: 0.95rem;
}

.wollo-nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 32px;
    height: 32px;
    padding: 0;
    border: none;
    background: transparent;
    cursor: pointer;
}

.wollo-nav-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: #1F2937;
    border-radius: 2px;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.wollo-nav-toggle.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.wollo-nav-toggle.is-open span:nth-child(2) {
    opacity: 0;
}

.wollo-nav-toggle.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.wollo-nav-links-only-mobile {
    display: none;
}

@media (max-width: 780px) {
    .wollo-nav-toggle {
        display: flex;
    }

    .wollo-nav-cta {
        display: none;
    }

    .wollo-nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        gap: 0;
        background: #FCF9F6;
        border-bottom: 1px solid rgba(0, 0, 0, 0.06);
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.06);
    }

    .wollo-nav-links.is-open {
        display: flex;
    }

    .wollo-nav-links a {
        padding: 0.9rem 1.5rem;
        border-top: 1px solid rgba(0, 0, 0, 0.05);
    }

    .wollo-nav-links-only-mobile {
        display: block;
    }

    .wollo-nav-links a.wollo-btn {
        margin: 0.75rem 1.5rem;
        text-align: center;
        border-top: none;
    }
}

section {
    padding: 4rem 1.5rem;
}

section h2 {
    text-align: center;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin: 0 0 0.5rem;
}

/* Hero */

.wollo-hero {
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 3rem 1.5rem;
}

.wollo-front-logo {
    width: 96px;
    height: 96px;
    border-radius: 24px;
    margin-bottom: 1.5rem;
    object-fit: cover;
}

.wollo-badge {
    display: inline-block;
    background: color-mix(in srgb, var(--wollo-color-marca) 15%, white);
    color: var(--wollo-color-marca);
    font-weight: 600;
    font-size: 0.85rem;
    padding: 0.4rem 1rem;
    border-radius: 999px;
    margin-bottom: 1.25rem;
}

.wollo-hero h1 {
    margin: 0 0 1rem;
    font-size: clamp(2rem, 5vw, 3.25rem);
    max-width: 44rem;
    color: #1F2937;
}

.wollo-hero-subtitulo {
    margin: 0 0 1rem;
    font-size: 1.25rem;
    font-weight: 600;
    max-width: 38rem;
    color: var(--wollo-color-marca);
}

.wollo-hero-texto {
    margin: 0 0 2rem;
    font-size: 1.05rem;
    max-width: 36rem;
    color: #4B5563;
}

.wollo-front-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.wollo-hero-split {
    max-width: 80rem;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    text-align: left;
    align-items: center;
}

.wollo-hero-split .wollo-front-logo,
.wollo-hero-split .wollo-badge,
.wollo-hero-split h1,
.wollo-hero-split .wollo-hero-subtitulo,
.wollo-hero-split .wollo-hero-texto {
    margin-left: 0;
}

.wollo-hero-split h1,
.wollo-hero-split .wollo-hero-subtitulo,
.wollo-hero-split .wollo-hero-texto {
    max-width: none;
}

.wollo-hero-split .wollo-front-cta {
    justify-content: flex-start;
}

.wollo-hero-bullets {
    list-style: none;
    padding: 0;
    margin: 0 0 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.wollo-hero-bullets li {
    padding-left: 1.6rem;
    position: relative;
    color: #374151;
}

.wollo-hero-bullets li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--wollo-color-marca);
    font-weight: 700;
}

.wollo-hero-precio-desde {
    margin: 1rem 0 0;
    font-size: 0.9rem;
    color: #6B7280;
}

.wollo-hero-media img {
    border-radius: 24px;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

@media (max-width: 900px) {
    .wollo-hero-split {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .wollo-hero-split .wollo-front-cta {
        justify-content: center;
    }

    .wollo-hero-bullets li {
        text-align: left;
    }

    .wollo-hero-media {
        order: -1;
    }
}

/* Resumen (grilla rápida) */

.wollo-resumen {
    padding-top: 0;
}

.wollo-resumen-grid {
    max-width: 68rem;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.wollo-resumen-card {
    background: #fff;
    border: 1px solid #E5E7EB;
    border-radius: 16px;
    padding: 1.75rem;
    text-align: center;
}

.wollo-resumen-icono {
    margin: 0 auto 1rem;
}

.wollo-resumen-card h3 {
    font-size: 1.1rem;
    margin: 0 0 0.4rem;
}

.wollo-resumen-card p {
    font-size: 0.9rem;
    color: #6B7280;
    margin: 0;
}

@media (max-width: 900px) {
    .wollo-resumen-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 560px) {
    .wollo-resumen-grid {
        grid-template-columns: 1fr;
    }
}

.wollo-btn {
    display: inline-block;
    padding: 0.85rem 1.75rem;
    border-radius: 999px;
    font-weight: 600;
    text-decoration: none;
    transition: opacity 0.15s ease;
}

.wollo-btn:hover {
    opacity: 0.88;
}

.wollo-btn-primary {
    background: var(--wollo-color-marca);
    color: #fff;
}

.wollo-btn-secondary {
    background: #fff;
    color: var(--wollo-color-marca);
    border: 2px solid var(--wollo-color-marca);
}

/* Intro */

.wollo-intro {
    max-width: 50rem;
    margin: 0 auto;
}

.wollo-intro h2 {
    font-weight: 500;
}

.wollo-intro strong {
    color: var(--wollo-color-marca);
}

/* Features */

.wollo-features {
    max-width: 68rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.wollo-feature {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.wollo-feature-invertido {
    direction: rtl;
}

.wollo-feature-invertido > * {
    direction: ltr;
}

.wollo-feature-media img,
.wollo-feature-media-placeholder {
    border-radius: 20px;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.wollo-feature-media-placeholder {
    background: color-mix(in srgb, var(--wollo-color-marca) 12%, white);
}

.wollo-feature-texto h3 {
    font-size: 1.6rem;
    margin: 0 0 0.4rem;
}

.wollo-feature-subtitulo {
    font-weight: 600;
    color: var(--wollo-color-marca);
    margin: 0 0 0.75rem;
}

@media (max-width: 780px) {
    .wollo-feature,
    .wollo-feature-invertido {
        grid-template-columns: 1fr;
        direction: ltr;
    }
}

/* IADN */

.wollo-iadn {
    background: #0A0A0A;
    color: #fff;
    text-align: center;
}

.wollo-iadn-kicker {
    color: #9CA3AF;
    margin: 0 0 0.5rem;
}

.wollo-iadn h2 {
    font-family: Georgia, serif;
    font-size: clamp(2.5rem, 8vw, 5rem);
    margin: 0 0 1rem;
}

.wollo-iadn-texto {
    max-width: 40rem;
    margin: 0 auto;
    color: #D1D5DB;
}

/* Precios */

.wollo-precios {
    max-width: 68rem;
    margin: 0 auto;
    text-align: center;
}

.wollo-precios-subtitulo {
    color: #6B7280;
    margin: 0 0 2.5rem;
}

.wollo-planes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    text-align: left;
}

.wollo-plan {
    border-radius: 20px;
    padding: 2rem;
    background: #fff;
    border: 1px solid #E5E7EB;
    display: flex;
    flex-direction: column;
}

.wollo-plan-destacado {
    background: var(--wollo-color-marca);
    color: #fff;
    border: none;
}

.wollo-plan-destacado .wollo-plan-detalle,
.wollo-plan-destacado .wollo-plan-items li {
    color: rgba(255, 255, 255, 0.9);
}

.wollo-plan h3 {
    margin: 0 0 0.25rem;
    font-size: 1.75rem;
}

.wollo-plan-precio {
    font-size: 2rem;
    font-weight: 700;
    color: var(--wollo-color-marca);
    margin: 0;
}

.wollo-plan-destacado .wollo-plan-precio {
    color: #fff;
}

.wollo-plan-precio-antes,
.wollo-plan-precio-despues {
    font-size: 1rem;
    font-weight: 500;
}

.wollo-plan-detalle {
    color: #6B7280;
    margin: 0.25rem 0 1.25rem;
}

.wollo-plan-items {
    list-style: none;
    padding: 0;
    margin: 0 0 1.75rem;
    flex-grow: 1;
}

.wollo-plan-items li {
    padding: 0.4rem 0;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.wollo-plan-items li:first-child {
    border-top: none;
}

.wollo-plan .wollo-btn {
    text-align: center;
}

.wollo-plan-destacado .wollo-btn-primary {
    background: #fff;
    color: var(--wollo-color-marca);
}

.wollo-comparativa-wrap {
    margin-top: 3rem;
    overflow-x: auto;
}

.wollo-comparativa {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    min-width: 480px;
}

.wollo-comparativa th,
.wollo-comparativa td {
    padding: 0.85rem 1.25rem;
    border-bottom: 1px solid #E5E7EB;
    text-align: left;
}

.wollo-comparativa th {
    background: #F3F4F6;
    font-size: 0.9rem;
}

.wollo-comparativa td:first-child,
.wollo-comparativa th:first-child {
    color: #374151;
}

.wollo-comparativa-check {
    text-align: center;
    font-weight: 700;
    color: var(--wollo-color-marca);
}

.wollo-comparativa tr:last-child td {
    border-bottom: none;
}

/* FAQ */

.wollo-faq {
    max-width: 44rem;
    margin: 0 auto;
}

.wollo-faq-item {
    border-bottom: 1px solid #E5E7EB;
    padding: 1.25rem 0;
}

.wollo-faq-item summary {
    cursor: pointer;
    font-weight: 600;
    font-size: 1.05rem;
    list-style: none;
}

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

.wollo-faq-item summary::after {
    content: "+";
    float: right;
    color: var(--wollo-color-marca);
    font-weight: 700;
}

.wollo-faq-item[open] summary::after {
    content: "\2212";
}

.wollo-faq-item p {
    margin: 0.75rem 0 0;
    color: #4B5563;
}

/* Footer */

.wollo-front-footer {
    text-align: center;
    padding: 1.5rem;
    font-size: 0.85rem;
    color: #9CA3AF;
}
