@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Marcellus&display=swap');

:root {
    --dark: #2A2A2A;
    --darker: #1F1F22;
    --light: #F7F4F2;
    --gray: #FFFFFF;
    --mid: #CDE0E0;
    --accent: #E1AFC5;
    --accent-soft: rgba(225, 175, 197, 0.4);
    --turquoise: #B6D2D2;
    --green: #81B299;
    --lilac: #F4EDF1;
    --ink: #6A6A6A;
    --slate: #76A890;
    --haze: rgba(244, 237, 241, 0.6);
    --maxw: 1080px;
    --pad: clamp(20px, 6vw, 60px);
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'DM Sans', Arial, sans-serif;
    line-height: 1.6;
    color: var(--ink);
    background: var(--light);
}

h1,
h2 {
    text-align: center;
    line-height: 1.2;
    margin: 0 0 20px;
    font-family: 'Marcellus', Georgia, serif;
    color: var(--dark);
}

h1 {
    font-size: clamp(32px, 6vw, 48px);
    font-weight: 400;
}

h2 {
    font-size: clamp(24px, 4vw, 32px);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 0 28px;
    margin: 0 auto 60px;
    font-weight: 400;
    letter-spacing: 0.02em;
    text-transform: none;
    text-align: center;
}

h2::before,
h2::after {
    content: "";
    flex: 0 1 120px;
    min-width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(225, 175, 197, 0.8), transparent);
}

h2::after {
    background: linear-gradient(90deg, transparent, rgba(182, 210, 210, 0.6), transparent);
    height: 2px;
}

h2 span {
    position: relative;
    z-index: 1;
    padding: 0 12px;
    white-space: normal;
}

h2 span::before {
    content: attr(data-kana);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -58%) rotate(-4deg);
    font-size: clamp(42px, 12vw, 88px);
    letter-spacing: 0.32em;
    font-weight: 400;
    text-transform: none;
    color: rgba(225, 175, 197, 0.2);
    pointer-events: none;
    z-index: -1;
    white-space: nowrap;
}

p {
    margin: 0 0 16px;
    font-size: clamp(16px, 2.4vw, 18px);
    color: var(--ink);
}

.wrap {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 var(--pad);
    position: relative;
    z-index: 1;
}

/* Sections */
section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    z-index: 0;
}

.bg-dark {
    background: var(--dark);
    color: var(--gray);
}

.bg-deep {
    background:
        radial-gradient(circle at 14% 18%, rgba(241, 205, 220, 0.4), transparent 55%),
        radial-gradient(circle at 85% 12%, rgba(182, 210, 210, 0.4), transparent 62%),
        linear-gradient(135deg, var(--lilac) 0%, var(--turquoise) 100%);
    color: var(--dark);
}

.bg-deep::before {
    content: "";
    position: absolute;
    inset: -40% -10% 40% 55%;
    background: linear-gradient(120deg, rgba(225, 175, 197, 0.18) 0%, transparent 60%);
    filter: blur(70px);
    opacity: 0.8;
    z-index: 0;
}

.bg-deep::after {
    content: "";
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.18) 0 12px, transparent 12px 24px);
    opacity: 0.12;
    z-index: 0;
}

.bg-slate {
    background:
        linear-gradient(160deg, rgba(241, 205, 220, 0.35) 0%, transparent 45%),
        linear-gradient(140deg, var(--gray) 0%, rgba(182, 210, 210, 0.6) 60%, rgba(118, 168, 144, 0.55) 100%);
    color: var(--dark);
}

.bg-slate::before {
    content: "";
    position: absolute;
    inset: 30% -20% -50% 60%;
    background: linear-gradient(210deg, rgba(129, 178, 153, 0.2) 0%, transparent 70%);
    filter: blur(90px);
    opacity: 0.6;
    z-index: 0;
}

.bg-slate::after {
    content: "";
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(150deg, rgba(225, 175, 197, 0.12) 0 10px, transparent 10px 24px);
    opacity: 0.18;
    z-index: 0;
}

.bg-light {
    background: var(--light);
    color: var(--dark);
}

.bg-light::before {
    content: "";
    position: absolute;
    inset: -60% 60% 30% -40%;
    background: radial-gradient(circle at 30% 40%, rgba(225, 175, 197, 0.18), transparent 70%);
    z-index: 0;
}

.bg-alt {
    background: var(--gray);
    color: var(--dark);
}

/* Hero */
.top-banner {
    background: linear-gradient(120deg, rgba(225, 175, 197, 0.85), rgba(118, 168, 144, 0.65));
    color: var(--dark);
    text-align: center;
    padding: 14px var(--pad);
}

.top-banner .wrap {
    max-width: 980px;
}

.top-banner p {
    margin: 0;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.hero {
    background:
        linear-gradient(140deg, rgba(31, 31, 34, 0.82), rgba(118, 168, 144, 0.55)),
        url('hero-mosaic.webp');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    color: var(--dark);
    text-align: center;
    padding: 120px var(--pad);
}

.hero .wrap {
    background: rgba(247, 244, 242, 0.82);
    border: 1px solid rgba(225, 175, 197, 0.35);
    border-radius: 28px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 24px 60px rgba(225, 175, 197, 0.28);
    padding: clamp(40px, 8vw, 80px);
}

.hero p {
    max-width: 720px;
    margin: 0 auto 32px;
    font-size: 18px;
    color: var(--ink);
}

.hero h1 {
    max-width: 900px;
    margin: 0 auto 22px;
    font-size: clamp(28px, 4.4vw, 42px);
    line-height: 1.15;
    letter-spacing: 0.01em;
}

.hero-brand {
    display: block;
    font-family: 'DM Sans', Arial, sans-serif;
    font-size: 14px;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--slate);
    margin-bottom: 10px;
}

.hero-headline {
    display: block;
    font-size: clamp(28px, 4.2vw, 40px);
    line-height: 1.15;
    color: var(--dark);
}

.hero-urgency {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    border-radius: 999px;
    background: rgba(225, 175, 197, 0.22);
    font-weight: 600;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    margin: 6px 0 18px;
}

.hero-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 18px;
    justify-content: center;
    font-size: 14px;
    color: var(--slate);
}

.benefit-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(205, 224, 224, 0.35);
}

.hero-urgency .icon-circle,
.benefit-item .icon-circle {
    margin-right: 0;
}

/* Footer */
.site-footer {
    background: var(--lilac);
    color: var(--ink);
    padding: 40px 0;
    font-size: 13px;
}

.site-footer a {
    color: var(--green);
    text-decoration: none;
}

.site-footer a:hover {
    text-decoration: underline;
}

.footer-basic {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
}

.footer-brand {
    display: flex;
    gap: 14px;
    align-items: center;
    color: var(--ink);
}

.footer-brand strong {
    display: block;
    font-size: 14px;
    color: var(--dark);
}

.footer-brand span {
    display: block;
    margin-top: 2px;
}

.footer-links,
.footer-contact {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.footer-links a,
.footer-contact a {
    font-size: 13px;
    color: var(--green);
}

.footer-copy {
    font-size: 12px;
    color: rgba(42, 42, 42, 0.5);
}

@media (min-width: 720px) {
    .footer-basic {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 24px;
    }

    .footer-contact {
        justify-content: flex-end;
    }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 36px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
    position: relative;
    overflow: hidden;
    font-family: 'DM Sans', Arial, sans-serif;
}

.btn::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.35), transparent 60%);
    opacity: 0;
    transition: opacity 0.2s ease;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 28px rgba(225, 175, 197, 0.35);
}

.btn:hover::after {
    opacity: 1;
}

.btn-primary {
    background: linear-gradient(135deg, #E1AFC5 0%, #E9BCD0 45%, #F1CDDC 100%);
    color: var(--dark);
    box-shadow: 0 18px 32px rgba(225, 175, 197, 0.45);
}

.btn-primary:hover {
    filter: brightness(1.02);
}

.btn-success {
    background: linear-gradient(135deg, #81B299 0%, #76A890 50%, #6A9D8A 100%);
    color: #0f2d22;
    box-shadow: 0 18px 32px rgba(118, 168, 144, 0.4);
}

.btn-success:hover {
    filter: brightness(1.02);
}

.btn-outline {
    border: 2px solid rgba(255, 255, 255, 0.65);
    color: #FFFFFF;
    background: transparent;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #FFFFFF;
}

.btn-ghost {
    background: rgba(182, 210, 210, 0.16);
    color: var(--slate);
    border: 2px solid rgba(182, 210, 210, 0.4);
    box-shadow: none;
}

.btn-ghost:hover {
    background: rgba(182, 210, 210, 0.28);
    filter: none;
}

.btn-buy {
    padding: 22px 44px;
    font-size: clamp(16px, 2.8vw, 20px);
    letter-spacing: 0.08em;
    box-shadow: 0 26px 48px rgba(225, 175, 197, 0.38);
}

.btn-buy::after {
    background: linear-gradient(110deg, rgba(255, 255, 255, 0.6) 0%, transparent 55%);
    opacity: 0.2;
}

.btn-buy:hover::after {
    opacity: 0.5;
}

/* Lists */
ul {
    padding: 0;
    list-style: none;
    margin: 20px 0;
}

li {
    margin-bottom: 16px;
    padding-left: 28px;
    position: relative;
    font-size: clamp(16px, 2.4vw, 18px);
    color: var(--ink);
}

li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
}

.course-bullets {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: clamp(12px, 3vw, 18px);
}

.course-bullets li {
    margin: 0;
    padding: clamp(18px, 4vw, 22px) clamp(20px, 5vw, 28px) clamp(18px, 4vw, 22px) clamp(56px, 8vw, 64px);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(225, 175, 197, 0.22);
    box-shadow: 0 24px 44px rgba(225, 175, 197, 0.18);
    font-size: clamp(16px, 2.3vw, 18px);
    line-height: 1.7;
}

.course-bullets li::before {
    content: "";
    position: absolute;
    left: clamp(20px, 5vw, 28px);
    top: 50%;
    transform: translateY(-50%);
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: linear-gradient(135deg, #E1AFC5 0%, #F1CDDC 100%);
    box-shadow: 0 0 0 8px rgba(225, 175, 197, 0.18);
}

.course-bullets li strong {
    color: var(--dark);
}

/* Video placeholder */
.video {
    aspect-ratio: 16/9;
    background: rgba(225, 175, 197, 0.2);
    border: 2px dashed var(--accent);
    border-radius: 12px;
    display: grid;
    place-items: center;
    color: var(--accent);
    margin-top: 32px;
    overflow: hidden;
}

.video iframe {
    width: 100%;
    height: 100%;
    display: block;
    border: 0;
}

/* Pricing */
.pricing {
    max-width: 460px;
    margin: 40px auto 0;
}

.price-card {
    border: 1px solid rgba(225, 175, 197, 0.3);
    border-radius: 16px;
    padding: 40px 32px;
    text-align: center;
    background: var(--light);
    box-shadow: 0 26px 48px rgba(225, 175, 197, 0.25);
    position: relative;
    overflow: hidden;
}

.price-card::before {
    content: "";
    position: absolute;
    inset: -60px 45% 50% -45%;
    background: linear-gradient(135deg, rgba(225, 175, 197, 0.28) 0%, transparent 70%);
    opacity: 0.5;
}

.price-card::after {
    content: "";
    position: absolute;
    bottom: -50px;
    right: -30px;
    width: 160px;
    height: 160px;
    background: radial-gradient(circle, rgba(205, 224, 224, 0.3) 0%, transparent 70%);
    opacity: 0.5;
}

.price-card h3 {
    margin-bottom: 12px;
}

.price-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(225, 175, 197, 0.22);
    color: var(--accent);
    padding: 6px 18px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
}

.price-headline {
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--slate);
    margin-bottom: 12px;
}

.price-main {
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 6px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}

.price-installments {
    font-size: 24px;
    color: var(--slate);
}

.price-text {
    font-size: 18px;
    color: var(--slate);
}

.price-currency {
    font-size: 28px;
}

.price-value {
    font-size: clamp(48px, 8vw, 60px);
    line-height: 1;
}

.price-decimals {
    font-size: 28px;
}

.price-sub {
    font-size: 18px;
    color: var(--ink);
    margin-bottom: 24px;
}

.price-note {
    font-size: 14px;
    color: var(--ink);
    margin: 0 0 28px;
}

.price-anchor {
    font-size: 14px;
    color: var(--slate);
    text-decoration: line-through;
    margin-bottom: 8px;
    display: inline-block;
}

.price-bonus,
.price-guarantee {
    text-align: left;
    padding: 16px 18px;
    border-radius: 14px;
    margin: 16px 0;
    background: rgba(205, 224, 224, 0.35);
    color: var(--ink);
    font-size: 14px;
    line-height: 1.6;
}

.price-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    color: var(--dark);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-size: 12px;
    margin-bottom: 10px;
}

.price-bonus-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 8px;
}

.price-bonus-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    list-style: none;
    padding-left: 0;
    position: static;
}

.price-bonus-list li::marker {
    content: "";
}

.price-bonus-list li::before {
    content: none;
}

.price-guarantee {
    background: rgba(225, 175, 197, 0.18);
    border: 1px solid rgba(225, 175, 197, 0.35);
    font-weight: 600;
}

.price-guarantee p {
    margin: 0;
    font-weight: 500;
}

.price-urgency {
    font-size: 14px;
    font-weight: 700;
    color: var(--accent);
    margin: 12px 0 20px;
}

.list-grid {
    display: grid;
    gap: 20px;
    padding: 0;
    margin: 32px 0 0;
    list-style: none;
}

@media(min-width:768px) {
    .list-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media(max-width: 640px) {
    h2 {
        display: block;
        padding: 0 12px;
        letter-spacing: 0.02em;
        white-space: normal;
    }

    h2::before,
    h2::after {
        display: none;
    }

    h2 span {
        display: inline-block;
        padding: 0;
        white-space: normal;
    }

    h2 span::before {
        display: block;
        top: 55%;
        transform: translate(-50%, -55%) rotate(-6deg);
        font-size: clamp(28px, 18vw, 48px);
        letter-spacing: 0.22em;
        opacity: 0.25;
    }
}

.bullet-card {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(225, 175, 197, 0.25);
    border-radius: 18px;
    padding: 28px 28px 28px 72px;
    box-shadow: 0 24px 48px rgba(225, 175, 197, 0.18);
    position: relative;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    backdrop-filter: blur(12px);
    color: var(--ink);
}

.bullet-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 32px 42px rgba(225, 175, 197, 0.24);
}

.bullet-card::before {
    content: "";
    position: absolute;
    top: 32px;
    left: 28px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 3px solid var(--accent);
    box-shadow: 0 0 0 6px rgba(225, 175, 197, 0.28);
}

.bullet-card::after {
    content: "";
    position: absolute;
    bottom: -6px;
    right: -12px;
    width: 1520px;
    height: 120px;
    background: conic-gradient(from 120deg, rgba(225, 175, 197, 0) 0deg, rgba(225, 175, 197, 0.22) 120deg, transparent 300deg);
    opacity: 0.4;
    pointer-events: none;
}

.bullet-card b {
    display: block;
    font-size: 18px;
    margin-bottom: 6px;
    color: var(--dark);
}

.icon-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    font-size: 14px;
    font-weight: 700;
    margin-right: 10px;
    flex: 0 0 26px;
    background: rgba(205, 224, 224, 0.4);
    color: var(--dark);
}

.icon-check {
    background: rgba(118, 168, 144, 0.35);
    color: #1f2f29;
}

.icon-gift {
    background: rgba(182, 210, 210, 0.5);
    color: #2a3b36;
}

.icon-shield {
    background: rgba(225, 175, 197, 0.28);
    color: #452731;
}

.icon-arrow {
    background: rgba(205, 224, 224, 0.35);
    color: var(--dark);
    font-size: 16px;
}

.icon-x {
    background: rgba(225, 175, 197, 0.4);
    color: #452731;
}

.icon-clock {
    background: rgba(225, 175, 197, 0.35);
    color: #452731;
    margin-right: 0;
}

.workshop-fit .bullet-card {
    padding: 24px 24px 24px 24px;
}

.workshop-fit .bullet-card::before {
    display: none;
}

.bg-deep p,
.bg-deep .faq-q,
.bg-deep .faq-a,
.bg-slate p,
.bg-slate .faq-q,
.bg-slate .faq-a {
    color: var(--ink);
}

.bg-deep h2 span::before {
    color: rgba(225, 175, 197, 0.22);
}

.bg-slate h2 span::before {
    color: rgba(205, 224, 224, 0.22);
}

.content-card {
    background: var(--light);
    border: 1px solid rgba(225, 175, 197, 0.25);
    border-radius: 20px;
    padding: clamp(24px, 6vw, 40px);
    box-shadow: 0 36px 60px rgba(225, 175, 197, 0.22);
    margin-top: 32px;
    position: relative;
    overflow: hidden;
    color: var(--ink);
}

.content-card img {
    max-width: 620px;
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto 24px;
}

.bg-alt .content-card {
    background: rgba(255, 255, 255, 0.94);
}

.content-card p {
    margin-bottom: 18px;
    color: var(--ink);
}

.content-card p:last-child {
    margin-bottom: 0;
}

.author-grid {
    display: grid;
    gap: clamp(20px, 5vw, 36px);
    margin-top: 32px;
}

@media (min-width: 820px) {
    .author-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.author-card {
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(225, 175, 197, 0.25);
    border-radius: 24px;
    padding: clamp(24px, 4vw, 32px);
    box-shadow: 0 28px 48px rgba(225, 175, 197, 0.22);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: clamp(18px, 3vw, 24px);
    text-align: left;
}

.author-photo {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 5;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(241, 205, 220, 0.5) 0%, rgba(182, 210, 210, 0.35) 100%);
    border: 1px dashed rgba(225, 175, 197, 0.6);
    display: grid;
    place-items: center;
    overflow: hidden;
    color: rgba(42, 42, 42, 0.5);
    font-size: 14px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.author-photo span {
    background: rgba(255, 255, 255, 0.72);
    padding: 6px 14px;
    border-radius: 999px;
}

.author-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.author-body h3 {
    font-family: 'Marcellus', Georgia, serif;
    font-size: clamp(20px, 2.8vw, 24px);
    margin: 0;
    color: var(--dark);
}

.author-body p {
    margin: 0 0 14px;
}

.author-body p:last-child {
    margin-bottom: 0;
}

.author-summary {
    margin: clamp(32px, 6vw, 48px) auto 0;
    max-width: 760px;
    text-align: center;
    color: var(--ink);
}

.highlight-visual {
    position: relative;
    margin-top: clamp(28px, 6vw, 40px);
}

.highlight-image-grid {
    display: grid;
    gap: clamp(16px, 4vw, 24px);
}

@media (min-width: 720px) {
    .highlight-image-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.highlight-image-placeholder {
    width: 100%;
    aspect-ratio: 3 / 2;
    margin: 0 auto;
    border-radius: 28px;
    background: linear-gradient(135deg, rgba(225, 175, 197, 0.55) 0%, rgba(205, 224, 224, 0.4) 100%);
    border: 1px dashed rgba(225, 175, 197, 0.6);
    display: grid;
    place-items: center;
    box-shadow: 0 28px 60px rgba(225, 175, 197, 0.25);
    overflow: hidden;
}

.highlight-image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.highlight-image-placeholder span {
    background: rgba(255, 255, 255, 0.76);
    padding: 8px 18px;
    border-radius: 999px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-size: 12px;
    color: rgba(42, 42, 42, 0.52);
}

.metodo-grid {
    display: grid;
    gap: clamp(28px, 6vw, 44px);
}

@media (min-width: 920px) {
    .metodo-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        align-items: center;
    }
}

.metodo-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.metodo-image-placeholder {
    width: 100%;
    max-width: 420px;
    aspect-ratio: 1;
    border-radius: 32px;
    background: linear-gradient(135deg, rgba(225, 175, 197, 0.5) 0%, rgba(182, 210, 210, 0.45) 50%, rgba(244, 237, 241, 0.7) 100%);
    border: 1px dashed rgba(225, 175, 197, 0.6);
    display: grid;
    place-items: center;
    box-shadow: 0 42px 70px rgba(225, 175, 197, 0.25);
    overflow: hidden;
}

.metodo-image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.metodo-image-placeholder span {
    display: inline-block;
    background: rgba(255, 255, 255, 0.78);
    padding: 10px 22px;
    border-radius: 999px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-size: 13px;
    color: rgba(42, 42, 42, 0.5);
}

/* FAQ */
.faq-item {
    margin-bottom: 20px;
    padding: 20px 24px;
    border-radius: 16px;
    border: 1px solid rgba(225, 175, 197, 0.22);
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(6px);
}

.faq-q {
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--dark);
}

.faq-a {
    color: var(--ink);
}

.bg-light .faq-item {
    border-color: rgba(225, 175, 197, 0.22);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: none;
}

.bg-light .faq-a {
    color: var(--ink);
}

/* Footer */
footer {
    background: var(--lilac);
    color: var(--ink);
    text-align: center;
    padding: 40px var(--pad);
    font-size: 14px;
}

footer p {
    color: var(--ink);
}

footer a {
    color: var(--green);
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

.cta-highlight {
    background: linear-gradient(140deg, rgba(241, 205, 220, 0.55) 0%, rgba(182, 210, 210, 0.45) 45%, rgba(129, 178, 153, 0.35) 100%);
    position: relative;
    padding: clamp(80px, 14vw, 140px) 0;
    overflow: hidden;
}

.cta-highlight::before {
    content: "";
    position: absolute;
    inset: 12% 48% -20% -18%;
    background: radial-gradient(circle at 30% 30%, rgba(225, 175, 197, 0.5), transparent 65%);
    filter: blur(40px);
    opacity: 0.6;
}

.cta-wrap {
    display: grid;
    gap: clamp(32px, 6vw, 56px);
    align-items: center;
}

@media (min-width: 900px) {
    .cta-wrap {
        grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
    }
}

.cta-content {
    text-align: left;
    max-width: 620px;
}

.cta-content h2 {
    justify-content: flex-start;
    margin-bottom: clamp(28px, 4vw, 36px);
}

.cta-content h2::before,
.cta-content h2::after {
    display: none;
}

.cta-content h2 span::before {
    font-size: clamp(48px, 14vw, 96px);
    letter-spacing: 0.28em;
    color: rgba(255, 255, 255, 0.15);
}

.cta-lead {
    font-size: clamp(20px, 3vw, 24px);
    font-weight: 500;
    color: var(--dark);
    margin-bottom: clamp(16px, 2.6vw, 20px);
}

.cta-text {
    margin-bottom: clamp(24px, 4vw, 32px);
    color: var(--ink);
    font-size: clamp(17px, 2.6vw, 19px);
}

.cta-visual {
    position: relative;
}

.cta-image-placeholder {
    width: 100%;
    max-width: 420px;
    aspect-ratio: 1;
    margin: 0 auto;
    border-radius: 34px;
    background: linear-gradient(135deg, rgba(225, 175, 197, 0.55) 0%, rgba(182, 210, 210, 0.45) 50%, rgba(244, 237, 241, 0.7) 100%);
    border: 1px dashed rgba(225, 175, 197, 0.6);
    display: grid;
    place-items: center;
    box-shadow: 0 48px 80px rgba(225, 175, 197, 0.32);
    overflow: hidden;
}

.cta-image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.cta-image-placeholder span {
    display: inline-block;
    background: rgba(255, 255, 255, 0.76);
    padding: 10px 24px;
    border-radius: 999px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-size: 13px;
    color: rgba(42, 42, 42, 0.5);
}

/* Modal */
body.no-scroll {
    overflow: hidden;
    overscroll-behavior: none;
}

.modal {
    position: fixed;
    inset: 0;
    display: grid;
    align-items: center;
    justify-items: center;
    padding: clamp(12px, 3vw, 16px);
    background: rgba(31, 31, 34, 0.55);
    backdrop-filter: blur(10px);
    width: 100%;
    height: 100%;
    max-height: 100vh;
    overflow-y: auto;
    overscroll-behavior: contain;
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
}

.modal.is-open {
    opacity: 1;
    pointer-events: auto;
}

.modal__overlay {
    position: absolute;
    inset: 0;
}

.modal__card {
    position: relative;
    width: min(520px, calc(100vw - clamp(32px, 8vw, 48px)));
    max-width: 100%;
    max-height: calc(100vh - clamp(32px, 8vw, 48px));
    background: var(--light);
    border-radius: 22px;
    border: 1px solid rgba(225, 175, 197, 0.4);
    box-shadow: 0 42px 90px rgba(31, 31, 34, 0.28);
    padding: clamp(24px, 5vw, 32px);
    overflow: hidden;
    overflow-y: auto;
}

.modal__card::before {
    content: "";
    position: absolute;
    inset: -20% 60% 40% -20%;
    background: radial-gradient(circle at 30% 40%, rgba(225, 175, 197, 0.28), transparent 70%);
    opacity: 0.75;
    pointer-events: none;
}

.modal__close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(225, 175, 197, 0.5);
    background: rgba(255, 255, 255, 0.9);
    color: var(--dark);
    font-size: 22px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 16px 30px rgba(225, 175, 197, 0.24);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.modal__close:hover {
    transform: translateY(-2px);
    box-shadow: 0 22px 36px rgba(225, 175, 197, 0.32);
}

.modal__eyebrow {
    margin: 0 0 6px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 12px;
    color: var(--slate);
    font-weight: 700;
}

.modal h3 {
    margin: 0 0 12px;
    font-size: clamp(22px, 3vw, 26px);
    color: var(--dark);
}

.modal__lead {
    margin: 0 0 18px;
    color: var(--ink);
    font-size: 16px;
}

.modal__form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.modal__field {
    display: block;
}

.modal__field input {
    border-radius: 12px;
    border: 1px solid rgba(225, 175, 197, 0.5);
    background: rgba(255, 255, 255, 0.94);
    padding: 14px 16px;
    font-size: 16px;
    font-family: 'DM Sans', Arial, sans-serif;
    color: var(--dark);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    width: 100%;
}

.modal__field input:focus {
    outline: none;
    border-color: var(--slate);
    box-shadow: 0 0 0 3px rgba(182, 210, 210, 0.35);
}

.modal__field input.is-invalid {
    border-color: #d35b7c;
    box-shadow: 0 0 0 3px rgba(211, 91, 124, 0.2);
}

.modal__note {
    margin: 4px 0 12px;
    font-size: 13px;
    color: rgba(42, 42, 42, 0.72);
}

.modal__actions {
    margin-top: 4px;
}

.modal__actions .btn {
    width: 100%;
}

@supports (height: 100dvh) {
    .modal {
        height: 100dvh;
        max-height: 100dvh;
    }

    .modal__card {
        max-height: calc(100dvh - clamp(32px, 8vw, 48px));
        width: min(520px, calc(100dvw - clamp(32px, 8vw, 48px)));
    }
}
