/* =========================
   THEME (Cámbialo aquí)
========================= */
:root {
    /* Base */
    --bg: #fbf7f2;
    /* crema suave */
    --surface: #ffffff;
    --surface2: #f6eee6;

    /* Text */
    --text: #2a1f1a;
    /* cacao oscuro */
    --muted: #6b5a52;

    /* Brand / accents (pastel premium) */
    --primary: #b85c7a;
    /* frambuesa suave */
    --primary-2: #e9a6b7;
    /* rosa claro */
    --accent: #c48a5a;
    /* caramelo */
    --accent-2: #f3d7b6;
    /* crema caramelo */

    /* Borders & shadows */
    --border: rgba(43, 31, 26, .10);
    --shadow: 0 18px 45px rgba(43, 31, 26, .12);

    /* Radii */
    --r-xl: 26px;
    --r-lg: 20px;
    --r-md: 14px;

    /* Layout */
    --container: 1120px;
}

/* Reset */
* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
    background: var(--bg);
    color: var(--text);
    line-height: 1.55;
}

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

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

button {
    font-family: inherit;
}

/* Utilities */
.container {
    width: min(var(--container), calc(100% - 32px));
    margin-inline: auto;
}

.section {
    padding: 72px 0;
}

.section--alt {
    background: linear-gradient(180deg, var(--surface2), var(--bg));
}

.section__head {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 22px;
}

.section__head h2 {
    font-size: clamp(26px, 3vw, 36px);
    margin: 0;
    letter-spacing: -0.02em;
}

.section__head p {
    margin: 0;
    color: var(--muted);
}

.section__foot {
    margin-top: 22px;
    display: flex;
    justify-content: center;
}

.grid {
    display: grid;
    gap: 16px;
}

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

/* Topbar */
.topbar {
    background: linear-gradient(90deg, rgba(184, 92, 122, .18), rgba(196, 138, 90, .18));
    border-bottom: 1px solid var(--border);
}

.topbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 0;
}

.topbar__msg {
    margin: 0;
    font-size: 14px;
    color: var(--muted);
}

.topbar__cta {
    font-size: 14px;
    padding: 7px 12px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: var(--surface);
}

/* Header */
.header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(251, 247, 242, .75);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 14px 0;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.brand__logo {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    font-weight: 900;
    background: linear-gradient(135deg, rgba(184, 92, 122, .95), rgba(196, 138, 90, .95));
    color: #fff;
    box-shadow: var(--shadow);
}

.brand__text strong {
    display: block;
    font-size: 16px;
    line-height: 1;
}

.brand__text span {
    display: block;
    font-size: 12px;
    color: var(--muted);
    margin-top: 3px;
}

/* Nav */
.nav {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav__toggle {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    border: 1px solid var(--border);
    background: var(--surface);
    display: none;
    align-items: center;
    justify-content: center;
    gap: 5px;
    flex-direction: column;
    cursor: pointer;
}

.nav__toggle span {
    width: 18px;
    height: 2px;
    background: var(--text);
    opacity: .85;
    border-radius: 999px;
}

.nav__list {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 0;
    padding: 0;
}

.nav__list a {
    font-size: 14px;
    color: var(--muted);
    padding: 10px 10px;
    border-radius: 999px;
    transition: .2s;
}

.nav__list a:hover {
    color: var(--text);
    background: rgba(184, 92, 122, .08);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 999px;
    padding: 12px 16px;
    border: 1px solid var(--border);
    background: var(--surface);
    cursor: pointer;
    transition: transform .15s ease, background .2s ease, box-shadow .2s ease;
    font-weight: 700;
}

.btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 30px rgba(43, 31, 26, .10);
}

.btn--primary {
    border: none;
    color: #fff;
    background: linear-gradient(135deg, var(--primary), var(--accent));
}

.btn--ghost {
    background: transparent;
}

.btn--soft {
    background: rgba(184, 92, 122, .10);
    border: 1px solid rgba(184, 92, 122, .22);
}

.btn--sm {
    padding: 10px 14px;
    font-size: 14px;
}

.btn--block {
    width: 100%;
}

/* Hero */
.hero {
    position: relative;
    padding: 64px 0 26px;
    overflow: hidden;
}

.hero__grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 18px;
    align-items: center;
}

.badge {
    display: inline-flex;
    border-radius: 999px;
    padding: 8px 12px;
    background: rgba(196, 138, 90, .12);
    border: 1px solid rgba(196, 138, 90, .22);
    font-weight: 700;
    font-size: 13px;
    color: var(--muted);
}

.hero h1 {
    margin: 14px 0 10px;
    font-size: clamp(34px, 4.2vw, 54px);
    letter-spacing: -0.03em;
    line-height: 1.05;
}

.highlight {
    background: linear-gradient(90deg, rgba(184, 92, 122, .22), rgba(196, 138, 90, .18));
    padding: 0 .22em;
    border-radius: 14px;
}

.hero p {
    margin: 0 0 16px;
    color: var(--muted);
    max-width: 60ch;
}

.hero__actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.hero__stats {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.stat {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 12px 14px;
    min-width: 150px;
}

.stat strong {
    display: block;
    font-size: 18px;
}

.stat span {
    display: block;
    font-size: 13px;
    color: var(--muted);
}

.hero__card {
    background: linear-gradient(180deg, var(--surface), rgba(255, 255, 255, .70));
    border: 1px solid var(--border);
    border-radius: var(--r-xl);
    padding: 12px;
    box-shadow: var(--shadow);
}

.hero__img {
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid var(--border);
}

.hero__img img {
    width: 100%;
    height: 420px;
    object-fit: cover;
}

.hero__cardInfo {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 12px 2px 2px;
}

.pill {
    font-size: 13px;
    padding: 8px 10px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: rgba(184, 92, 122, .06);
    color: var(--muted);
}

/* Decorative background */
.hero__bg {
    position: absolute;
    inset: -40px -40px auto -40px;
    height: 420px;
    background:
        radial-gradient(700px 420px at 12% 20%, rgba(184, 92, 122, .18), transparent 55%),
        radial-gradient(700px 420px at 90% 10%, rgba(196, 138, 90, .18), transparent 55%);
    pointer-events: none;
    z-index: -1;
}

/* Cards */
.cards {
    grid-template-columns: repeat(4, 1fr);
}

.card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-xl);
    overflow: hidden;
    box-shadow: 0 10px 24px rgba(43, 31, 26, .06);
    transition: transform .18s ease, box-shadow .18s ease;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(43, 31, 26, .10);
}

.card__img {
    height: 170px;
    overflow: hidden;
    border-bottom: 1px solid var(--border);
}

.card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card__body {
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.card__body h3 {
    margin: 0;
    font-size: 16px;
}

.card__body p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
}

.card__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.chip {
    font-size: 12px;
    padding: 7px 10px;
    border-radius: 999px;
    background: rgba(196, 138, 90, .12);
    border: 1px solid rgba(196, 138, 90, .22);
    color: var(--muted);
}

.price {
    font-weight: 900;
    color: var(--text);
    font-size: 14px;
}

/* Features */
.features {
    grid-template-columns: repeat(4, 1fr);
}

.feature {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-xl);
    padding: 16px;
    box-shadow: 0 10px 24px rgba(43, 31, 26, .05);
}

.feature__icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: rgba(184, 92, 122, .10);
    border: 1px solid rgba(184, 92, 122, .22);
    margin-bottom: 10px;
    font-size: 20px;
}

.feature h3 {
    margin: 0 0 6px;
}

.feature p {
    margin: 0;
    color: var(--muted);
}

/* Why */
.why {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 18px;
    align-items: start;
}

.checklist {
    list-style: none;
    padding: 0;
    margin: 14px 0;
    display: grid;
    gap: 10px;
}

.checklist li {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 12px 14px;
    position: relative;
    padding-left: 42px;
}

.checklist li::before {
    content: "✓";
    position: absolute;
    left: 14px;
    top: 10px;
    width: 22px;
    height: 22px;
    display: grid;
    place-items: center;
    border-radius: 9px;
    background: rgba(184, 92, 122, .10);
    border: 1px solid rgba(184, 92, 122, .22);
    color: var(--primary);
    font-weight: 900;
}

.why__actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.why__box {
    display: grid;
    gap: 12px;
}

.miniCard {
    background: linear-gradient(180deg, var(--surface), rgba(255, 255, 255, .70));
    border: 1px solid var(--border);
    border-radius: var(--r-xl);
    padding: 16px;
    box-shadow: var(--shadow);
}

.miniCard strong {
    display: block;
    margin-bottom: 6px;
}

.miniCard span {
    color: var(--muted);
}

/* Reviews */
.reviews {
    grid-template-columns: repeat(3, 1fr);
}

.review {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-xl);
    padding: 16px;
}

.review p {
    margin: 0 0 12px;
    color: var(--muted);
}

.review__foot {
    display: flex;
    gap: 6px;
    align-items: center;
}

/* Contact */
.contact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    align-items: start;
}

.contact__cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin: 16px 0;
}

.infoCard {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 12px 12px;
}

.infoCard strong {
    display: block;
    font-size: 13px;
}

.infoCard span {
    display: block;
    font-size: 13px;
    color: var(--muted);
    margin-top: 4px;
}

.form {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-xl);
    padding: 18px;
    box-shadow: var(--shadow);
}

.form h3 {
    margin: 0 0 4px;
}

.form p {
    margin: 0 0 16px;
}

.form label {
    display: grid;
    gap: 6px;
    font-size: 14px;
    color: var(--muted);
    margin-bottom: 10px;
}

input,
select,
textarea {
    width: 100%;
    border-radius: 14px;
    border: 1px solid var(--border);
    padding: 12px 12px;
    outline: none;
    background: #fff;
    color: var(--text);
}

input:focus,
select:focus,
textarea:focus {
    border-color: rgba(184, 92, 122, .40);
    box-shadow: 0 0 0 4px rgba(184, 92, 122, .12);
}

.two {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

/* Footer */
.footer {
    border-top: 1px solid var(--border);
    padding: 26px 0;
    background: rgba(255, 255, 255, .45);
}

.footer__inner {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
}

.brand--footer .brand__logo {
    width: 40px;
    height: 40px;
}

.footer__links {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.footer__links a {
    color: var(--muted);
    font-size: 14px;
    padding: 8px 10px;
    border-radius: 999px;
}

.footer__links a:hover {
    background: rgba(184, 92, 122, .08);
    color: var(--text);
}

/* Floating WhatsApp */
.floatWpp {
    position: fixed;
    right: 16px;
    bottom: 16px;
    width: 52px;
    height: 52px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #fff;
    box-shadow: 0 18px 40px rgba(43, 31, 26, .22);
    border: none;
    z-index: 60;
    font-size: 22px;
}

/* Modal */
.modal {
    position: fixed;
    inset: 0;
    display: none;
    z-index: 80;
}

.modal.is-open {
    display: block;
}

.modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(20, 10, 10, .45);
    backdrop-filter: blur(6px);
}

.modal__card {
    position: relative;
    width: min(920px, calc(100% - 26px));
    margin: 72px auto;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-xl);
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    box-shadow: var(--shadow);
}

.modal__close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 40px;
    height: 40px;
    border-radius: 14px;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, .85);
    cursor: pointer;
}

.modal__img img {
    width: 100%;
    height: 100%;
    min-height: 360px;
    object-fit: cover;
}

.modal__body {
    padding: 18px;
    display: grid;
    gap: 10px;
    align-content: start;
}

.modal__body h3 {
    margin: 0;
    font-size: 22px;
}

.modal__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.modal__actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 980px) {
    .cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .features {
        grid-template-columns: repeat(2, 1fr);
    }

    .reviews {
        grid-template-columns: 1fr;
    }

    .hero__grid,
    .why,
    .contact {
        grid-template-columns: 1fr;
    }

    .hero__img img {
        height: 360px;
    }

    .contact__cards {
        grid-template-columns: 1fr;
    }

    .modal__card {
        grid-template-columns: 1fr;
        margin: 22px auto;
    }

    .modal__img img {
        min-height: 260px;
    }
}

@media (max-width: 720px) {
    .nav__toggle {
        display: flex;
    }

    .nav__list {
        position: absolute;
        right: 16px;
        top: 74px;
        width: min(320px, calc(100vw - 32px));
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 6px;
        padding: 10px;
        background: var(--surface);
        border: 1px solid var(--border);
        border-radius: 20px;
        box-shadow: var(--shadow);
    }

    .nav__list.is-open {
        display: flex;
    }

    .nav__list a {
        padding: 12px 14px;
    }

    .footer__inner {
        flex-direction: column;
    }

    .footer__links {
        justify-content: flex-start;
    }
}