:root {
        --verde: #5a7a58;
        --verde-oscuro: #7e7646;
        --verde-claro: #8bad88;
        --verde-fondo: #eff5ee;
        --dorado: #c4a06a;
        --dorado-oscuro: #9a7040;
        --dorado-fondo: #faf3e6;
        --beige: #e8d9c2;
        --blanco-suave: #faf7f2;
        --blanco: #fffefb;
        --texto-oscuro: #2c2416;
        --texto-medio: #5a4e3a;
        --texto-claro: #8f806c;
        --borde: #e0d5c5;
        --sombra: 0 22px 70px rgba(62, 92, 60, 0.13);
        --max: 1160px;
      }

      * {
        box-sizing: border-box;
      }

      html {
        scroll-behavior: smooth;
      }

      body {
        margin: 0;
        background: var(--blanco-suave);
        color: var(--texto-oscuro);
        font-family: "Jost", ui-sans-serif, system-ui, sans-serif;
        font-size: 16px;
        font-weight: 300;
        line-height: 1.72;
      }

      body::selection {
        background: var(--beige);
      }

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

      a {
        color: inherit;
      }

      .page {
        width: 100%;
      }

      .topbar {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 18px;
        min-height: 44px;
        padding: 8px 20px;
        color: var(--blanco);
        background: var(--verde-oscuro);
        text-align: center;
      }

      .topbar p {
        margin: 0;
        color: rgba(255, 254, 251, 0.88);
        font-size: 0.88rem;
        line-height: 1.4;
      }

      .topbar a,
      .text-link {
        color: inherit;
        font-size: 0.78rem;
        font-weight: 500;
        letter-spacing: 2px;
        text-decoration: none;
        text-transform: uppercase;
        border-bottom: 1px solid currentColor;
      }

      .site-header {
        position: sticky;
        top: 0;
        z-index: 20;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 24px;
        padding: 17px clamp(18px, 5vw, 58px);
        background: rgba(250, 247, 242, 0.92);
        border-bottom: 1px solid rgba(224, 213, 197, 0.9);
        backdrop-filter: blur(16px);
      }

      .brand {
        display: inline-flex;
        align-items: center;
        gap: 12px;
        min-width: 210px;
        text-decoration: none;
      }

      .brand-mark {
        display: grid;
        place-items: center;
        width: 42px;
        height: 42px;
        color: var(--blanco);
        background: var(--verde);
        border: 1px solid rgba(255, 254, 251, 0.45);
        border-radius: 50%;
        font-family: "Cormorant Garamond", serif;
        font-size: 1.2rem;
        font-weight: 500;
      }

      .brand strong,
      .brand span {
        display: block;
      }

      .brand strong {
        font-family: "Cormorant Garamond", serif;
        font-size: 1.18rem;
        font-weight: 500;
        line-height: 1;
      }

      .brand span {
        margin-top: 3px;
        color: var(--texto-claro);
        font-size: 0.7rem;
        font-weight: 400;
        letter-spacing: 2px;
        line-height: 1.1;
        text-transform: uppercase;
      }

      .nav {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: clamp(14px, 2vw, 28px);
      }

      .nav a {
        color: var(--texto-medio);
        font-size: 0.88rem;
        text-decoration: none;
      }

      .nav a:hover {
        color: var(--verde-oscuro);
      }

      .section {
        padding: clamp(72px, 9vw, 112px) clamp(18px, 5vw, 64px);
      }

      .section-inner {
        width: min(100%, var(--max));
        margin: 0 auto;
      }

      .eyebrow {
        margin: 0 0 12px;
        color: var(--dorado-oscuro);
        font-size: 0.72rem;
        font-weight: 500;
        letter-spacing: 3px;
        line-height: 1.4;
        text-transform: uppercase;
      }

      h1,
      h2,
      h3 {
        margin: 0;
        color: var(--texto-oscuro);
        font-family: "Cormorant Garamond", Georgia, serif;
        font-weight: 400;
        letter-spacing: 0;
        line-height: 1.08;
      }

      h1 {
        max-width: 790px;
        font-size: clamp(2.9rem, 5.6vw, 5rem);
      }

      h2 {
        font-size: clamp(2.2rem, 4.7vw, 4.6rem);
      }

      h3 {
        font-size: clamp(1.45rem, 2.1vw, 2rem);
      }

      p {
        margin: 0;
        color: var(--texto-medio);
      }

      .lead {
        max-width: 720px;
        margin-top: 24px;
        font-size: clamp(1.05rem, 1.7vw, 1.28rem);
        line-height: 1.72;
      }

      .btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 50px;
        padding: 0 26px;
        border: 1px solid transparent;
        border-radius: 2px;
        font-size: 0.76rem;
        font-weight: 500;
        letter-spacing: 2px;
        line-height: 1.2;
        text-align: center;
        text-decoration: none;
        text-transform: uppercase;
        transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
      }

      .btn:hover {
        transform: translateY(-1px);
      }

      .btn-primary {
        color: var(--blanco);
        background: var(--verde-oscuro);
      }

      .btn-primary:hover {
        background: var(--verde);
      }

      .btn-secondary {
        color: var(--verde-oscuro);
        background: transparent;
        border-color: var(--verde);
      }

      .btn-secondary:hover {
        background: var(--verde-fondo);
      }

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

      .btn-gold:hover {
        background: var(--dorado-oscuro);
      }

      .actions {
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
        align-items: center;
        margin-top: 30px;
      }

      .hero {
        position: relative;
        min-height: auto;
        padding-top: clamp(32px, 4vw, 40px);
        padding-bottom: clamp(22px, 3vw, 30px);
        background:
          linear-gradient(90deg, rgba(250, 247, 242, 0.98) 0%, rgba(250, 247, 242, 0.9) 48%, rgba(239, 245, 238, 0.78) 100%),
          url("../images/optimized/presentacion1-800.webp") center right / cover;
      }

      .hero-grid {
        display: grid;
        grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.72fr);
        gap: clamp(34px, 6vw, 86px);
        align-items: center;
      }

      .event-panel {
        align-self: stretch;
        display: grid;
        align-content: end;
        gap: 16px;
      }

      .event-card {
        padding: clamp(22px, 3vw, 30px);
        background: rgba(255, 254, 251, 0.88);
        border: 1px solid rgba(224, 213, 197, 0.95);
        border-radius: 8px;
        box-shadow: var(--sombra);
        backdrop-filter: blur(12px);
      }

      .event-card h2 {
        font-size: clamp(1.9rem, 3vw, 2.45rem);
      }

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

      .event-list li {
        display: grid;
        grid-template-columns: 84px 1fr;
        gap: 14px;
        padding-top: 14px;
        color: var(--texto-medio);
        border-top: 1px solid var(--borde);
      }

      .event-list strong {
        color: var(--verde-oscuro);
        font-size: 0.72rem;
        font-weight: 500;
        letter-spacing: 2px;
        text-transform: uppercase;
      }

      .price {
        margin-top: 24px;
        padding: 18px;
        background: var(--dorado-fondo);
        border-left: 3px solid var(--dorado);
      }

      .price strong {
        display: block;
        color: var(--texto-oscuro);
        font-family: "Cormorant Garamond", serif;
        font-size: 2.1rem;
        font-weight: 400;
        line-height: 1;
      }

      .price span {
        display: block;
        margin-top: 6px;
        color: var(--texto-claro);
        font-size: 0.9rem;
      }

      .section-heading {
        max-width: 820px;
        margin: 0 auto 42px;
        text-align: center;
      }

      .section-heading p:last-child {
        margin-top: 18px;
      }

      .identification {
        background: var(--blanco);
        padding-top: clamp(30px, 4vw, 44px);
      }

      .phrase-list {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
        margin: 0;
        padding: 0;
        list-style: none;
      }

      .phrase-list li {
        display: flex;
        align-items: center;
        min-height: 86px;
        padding: 22px;
        color: var(--texto-oscuro);
        background: var(--blanco-suave);
        border: 1px solid var(--borde);
        border-radius: 8px;
        font-family: "Cormorant Garamond", serif;
        font-size: clamp(1.35rem, 2.1vw, 1.95rem);
        line-height: 1.18;
      }

      .soft-note {
        max-width: 820px;
        margin: 36px auto 0;
        color: var(--verde-oscuro);
        font-family: "Cormorant Garamond", serif;
        font-size: clamp(1.55rem, 2.7vw, 2.45rem);
        font-style: italic;
        line-height: 1.25;
        text-align: center;
      }

      .reframe {
        background: var(--verde-fondo);
      }

      .split {
        display: grid;
        grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
        gap: clamp(34px, 6vw, 86px);
        align-items: center;
      }

      .image-frame {
        position: relative;
      }

      .image-frame picture {
        display: block;
        aspect-ratio: 4 / 5;
      }

      .image-frame img {
        height: 100%;
        object-fit: cover;
        border-radius: 8px;
        box-shadow: var(--sombra);
      }

      .ornament-card {
        position: absolute;
        right: -22px;
        bottom: 34px;
        width: min(240px, 72%);
        padding: 18px;
        background: rgba(255, 254, 251, 0.93);
        border: 1px solid var(--borde);
        border-radius: 8px;
        box-shadow: 0 18px 42px rgba(62, 92, 60, 0.12);
      }

      .ornament-card span {
        display: block;
        color: var(--dorado-oscuro);
        font-size: 0.7rem;
        font-weight: 500;
        letter-spacing: 2px;
        text-transform: uppercase;
      }

      .ornament-card strong {
        display: block;
        margin-top: 5px;
        color: var(--verde-oscuro);
        font-family: "Cormorant Garamond", serif;
        font-size: 1.8rem;
        font-weight: 400;
        line-height: 1.1;
      }

      .copy-stack {
        display: grid;
        gap: 18px;
      }

      .copy-stack h2 {
        margin-bottom: 6px;
      }

      .stat-row {
        display: grid;
        grid-template-columns: 130px 1fr;
        gap: 22px;
        align-items: center;
        margin-top: 18px;
        padding-top: 22px;
        border-top: 1px solid rgba(90, 122, 88, 0.22);
      }

      .stat-number {
        color: var(--verde);
        font-family: "Cormorant Garamond", serif;
        font-size: 4.8rem;
        font-weight: 300;
        line-height: 0.9;
      }

      .benefits {
        background: var(--blanco-suave);
      }

      .benefit-grid,
      .included-grid,
      .testimonial-grid,
      .payment-options {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 16px;
      }

      .benefit-card,
      .included-card,
      .testimonial-card,
      .faq details,
      .payment-option {
        background: var(--blanco);
        border: 1px solid var(--borde);
        border-radius: 8px;
      }

      .benefit-card {
        min-height: 260px;
        padding: 28px;
      }

      .benefit-card span,
      .included-card span {
        display: inline-grid;
        place-items: center;
        width: 36px;
        height: 36px;
        margin-bottom: 24px;
        color: var(--verde-oscuro);
        background: var(--verde-fondo);
        border: 1px solid rgba(90, 122, 88, 0.16);
        border-radius: 50%;
        font-size: 0.82rem;
        font-weight: 500;
      }

      .benefit-card p {
        margin-top: 12px;
      }

      .included {
        background: linear-gradient(180deg, var(--blanco), var(--dorado-fondo));
      }

      .included-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
      }

      .included-card {
        min-height: 210px;
        padding: 24px;
      }

      .included-card h3 {
        font-size: 1.45rem;
      }

      .about {
        background: var(--blanco);
      }

      .about .split {
        grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
      }

      .signature {
        display: inline-block;
        margin-top: 12px;
        color: var(--verde);
        font-family: "Cormorant Garamond", serif;
        font-size: 2rem;
        font-style: italic;
      }

      .testimonials {
        background: var(--verde-fondo);
      }

      .testimonial-card {
        min-height: 235px;
        padding: 26px;
      }

      .testimonial-card.pending {
        border-style: dashed;
        background: rgba(255, 254, 251, 0.74);
      }

      .testimonial-text {
        color: var(--texto-medio);
        font-family: "Cormorant Garamond", serif;
        font-size: 1.45rem;
        font-style: italic;
        line-height: 1.35;
      }

      .testimonial-author {
        margin-top: 22px;
        color: var(--verde-oscuro);
        font-size: 0.76rem;
        font-weight: 500;
        letter-spacing: 2px;
        text-transform: uppercase;
      }

      .payment {
        background:
          linear-gradient(rgba(62, 92, 60, 0.9), rgba(62, 92, 60, 0.92)),
          url("../images/section-calm.jpg") center / cover;
        color: var(--blanco);
      }

      .payment h2,
      .payment h3,
      .payment p,
      .payment .eyebrow {
        color: var(--blanco);
      }

      .payment .eyebrow {
        color: var(--dorado-fondo);
      }

      .payment-card {
        display: grid;
        grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr);
        gap: clamp(28px, 5vw, 64px);
        align-items: center;
        padding: clamp(28px, 5vw, 58px);
        background: rgba(255, 254, 251, 0.1);
        border: 1px solid rgba(250, 247, 242, 0.22);
        border-radius: 8px;
        backdrop-filter: blur(8px);
      }

      .payment-summary {
        padding: 26px;
        background: var(--blanco);
        border-radius: 8px;
      }

      .payment-summary p,
      .payment-summary h3 {
        color: var(--texto-oscuro);
      }

      .payment-summary .price {
        margin-top: 0;
      }

      .payment-options {
        grid-template-columns: 1fr;
        gap: 10px;
        margin-top: 16px;
      }

      .payment-option {
        display: block;
        padding: 16px;
        color: var(--texto-medio);
        text-decoration: none;
      }

      .payment-option strong {
        display: block;
        color: var(--verde-oscuro);
        font-weight: 500;
      }

      .payment-option:hover {
        border-color: var(--verde);
      }

      .faq {
        background: var(--blanco-suave);
      }

      .faq-list {
        display: grid;
        gap: 12px;
        max-width: 880px;
        margin: 0 auto;
      }

      .faq details {
        padding: 0 22px;
      }

      .faq summary {
        cursor: pointer;
        padding: 20px 0;
        color: var(--texto-oscuro);
        font-weight: 400;
        list-style: none;
      }

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

      .faq summary::after {
        content: "+";
        float: right;
        color: var(--verde);
        font-size: 1.2rem;
      }

      .faq details[open] summary::after {
        content: "-";
      }

      .faq details p {
        padding: 0 0 22px;
      }

      .footer {
        padding: 36px clamp(18px, 5vw, 64px);
        background: #2c2416;
      }

      .footer-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 22px;
        width: min(100%, var(--max));
        margin: 0 auto;
      }

      .footer p,
      .footer a {
        color: rgba(255, 254, 251, 0.72);
        font-size: 0.9rem;
      }

      .mobile-sticky-cta {
        position: fixed;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 30;
        display: none;
        padding: 10px 14px 12px;
        background: rgba(250, 247, 242, 0.94);
        border-top: 1px solid var(--borde);
        backdrop-filter: blur(16px);
      }

      .mobile-sticky-cta .btn {
        width: 100%;
      }

      @media (max-width: 1040px) {
        .nav {
          display: none;
        }

        .brand {
          min-width: auto;
        }

        .hero-grid,
        .split,
        .about .split,
        .payment-card {
          grid-template-columns: 1fr;
        }

        .event-panel {
          align-content: start;
        }

        .benefit-grid,
        .testimonial-grid {
          grid-template-columns: 1fr 1fr;
        }

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

      @media (max-width: 720px) {
        body {
          padding-bottom: 74px;
        }

        .topbar {
          align-items: center;
          flex-direction: column;
          gap: 4px;
        }

        .site-header {
          padding: 14px 18px;
        }

        .brand span {
          display: none;
        }

        .site-header .btn {
          display: none;
        }

        .section {
          padding: 62px 18px;
        }

        .hero {
          min-height: auto;
          padding-top: 42px;
          background:
            linear-gradient(180deg, rgba(250, 247, 242, 0.98) 0%, rgba(250, 247, 242, 0.9) 54%, rgba(239, 245, 238, 0.86) 100%),
            url("../images/optimized/presentacion1-800.webp") center top / cover;
        }

        h1 {
          font-size: clamp(3rem, 15vw, 4.35rem);
        }

        h2 {
          font-size: clamp(2.1rem, 11vw, 3.3rem);
        }

        .actions {
          align-items: stretch;
          flex-direction: column;
        }

        .btn {
          width: 100%;
          min-height: 52px;
          padding: 0 18px;
        }

        .event-list li,
        .stat-row {
          grid-template-columns: 1fr;
          gap: 8px;
        }

        .phrase-list,
        .benefit-grid,
        .included-grid,
        .testimonial-grid {
          grid-template-columns: 1fr;
        }

        .phrase-list li,
        .benefit-card,
        .included-card,
        .testimonial-card {
          min-height: auto;
        }

        .ornament-card {
          right: 12px;
          bottom: 12px;
        }

        .footer-inner {
          align-items: flex-start;
          flex-direction: column;
        }

        .mobile-sticky-cta {
          display: block;
        }
      }
