*,*::before,*::after{
    margin:0;
    padding:0;
    box-sizing:border-box
}

:root {
    --terracotta: #C1553B;
    --terracotta-light: #D4785F;
    --terracotta-dark: #8B3A28;
    --mustard: #D4A843;
    --mustard-light: #E8C96A;
    --mustard-pale: #F2E2A8;
    --olive: #6B7F47;
    --olive-light: #8FA65E;
    --olive-dark: #4A5A30;
    --cream: #FDF6E3;
    --cream-dark: #F5E6C8;
    --warm-white: #FFFDF8;
    --ink: #2C1810;
    --ink-light: #4A3228;
    --ink-faded: #6B5548;
    --paper: #FAF3E8;

    --font-display: 'Caveat', cursive;
    --font-body: 'Libre Baskerville', Georgia, serif;

    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 3rem;
    --space-xl: 5rem;
    --space-2xl: 8rem;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--ink);
    background: var(--warm-white);
    line-height: 1.7;
    font-size: 16px;
    overflow-x: hidden;
}

/* ========== NAV ========== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.4s ease;
}

.nav.scrolled {
    background: rgba(253, 246, 227, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(44, 24, 16, 0.08);
    padding: 0.6rem 2rem;
}

.nav-logo {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--terracotta);
    text-decoration: none;
    transition: transform 0.3s;
}

.nav-logo:hover {
    transform: rotate(-2deg) scale(1.05);
}

.nav-links {
    display: flex;
    gap: 1.5rem;
    list-style: none;
}

.nav-links a {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--ink-light);
    text-decoration: none;
    position: relative;
    transition: color 0.3s;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    padding: 0;                 /* <- clave */
    border-radius: 0;
    background: rgba(193,85,59,0.45);
    transition: width 0.3s;
}

.nav-links a:hover {
    color: var(--terracotta);
}
.nav-links a:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
}

.nav-toggle span {
    width: 28px;
    height: 2.5px;
    background: var(--ink);
    border-radius: 3px;
    transition: all 0.3s;
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 300px;
        height: 100vh;
        background: var(--cream);
        flex-direction: column;
        padding: 5rem 2rem 2rem;
        gap: 1.5rem;
        transition: right 0.4s ease;
        box-shadow: -5px 0 30px rgba(44,24,16,0.1);
    }
    .nav-links.open {
        right: 0;
    }
    .nav-links a {
        font-size: 1.4rem;
    }
}

/* ========== PAINT SPLATTERS (decorative) ========== */
.splatter {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.splatter-1 {
    width: 300px;
    height: 300px;
    background: radial-gradient(ellipse at 30% 40%, var(--mustard-light) 0%, transparent 70%);
    top: -50px;
    right: -80px;
    opacity: 0.5;
    transform: rotate(15deg);
}

.splatter-2 {
    width: 200px;
    height: 250px;
    background: radial-gradient(ellipse at 60% 30%, var(--terracotta-light) 0%, transparent 65%);
    bottom: 10%;
    left: -60px;
    opacity: 0.35;
    transform: rotate(-20deg);
}

.splatter-3 {
    width: 180px;
    height: 180px;
    background: radial-gradient(ellipse at 50% 50%, var(--olive-light) 0%, transparent 60%);
    top: 40%;
    right: 5%;
    opacity: 0.3;
}

/* ========== HERO ========== */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 6rem 1.5rem 4rem;
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(ellipse at 20% 80%, rgba(193, 85, 59, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(212, 168, 67, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(107, 127, 71, 0.08) 0%, transparent 60%),
        linear-gradient(175deg, var(--warm-white) 0%, var(--cream) 40%, var(--cream-dark) 100%);
}

/* Canvas texture overlay */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(44,24,16,0.015) 2px, rgba(44,24,16,0.015) 3px),
        repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(44,24,16,0.015) 2px, rgba(44,24,16,0.015) 3px);
    pointer-events: none;
}

/* Decorative brush strokes */
.hero-stroke {
    position: absolute;
    pointer-events: none;
}

.hero-stroke-1 {
    width: 60vw;
    max-width: 500px;
    height: 120px;
    background: linear-gradient(95deg, transparent 5%, var(--mustard-pale) 15%, var(--mustard-light) 40%, var(--mustard-pale) 70%, transparent 95%);
    top: 18%;
    left: -5%;
    transform: rotate(-4deg);
    border-radius: 80% 40% 60% 30% / 50% 60% 40% 50%;
    opacity: 0.35;
    filter: blur(2px);
}

.hero-stroke-2 {
    width: 45vw;
    max-width: 400px;
    height: 80px;
    background: linear-gradient(100deg, transparent 5%, rgba(193,85,59,0.25) 20%, rgba(193,85,59,0.35) 50%, rgba(193,85,59,0.2) 80%, transparent 95%);
    bottom: 25%;
    right: -3%;
    transform: rotate(3deg);
    border-radius: 40% 70% 30% 60% / 60% 30% 50% 40%;
    opacity: 0.4;
    filter: blur(1px);
}

.hero-stroke-3 {
    width: 25vw;
    max-width: 200px;
    height: 60px;
    background: linear-gradient(90deg, transparent, rgba(107,127,71,0.3) 30%, rgba(107,127,71,0.4) 60%, transparent);
    top: 55%;
    left: 8%;
    transform: rotate(-7deg);
    border-radius: 50% 30% 60% 40% / 40% 60% 30% 50%;
    opacity: 0.35;
    filter: blur(1px);
}

/* Paint drops */
.paint-drop {
    position: absolute;
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    pointer-events: none;
}

.paint-drop-1 {
    width: 18px;
    height: 22px;
    background: var(--terracotta);
    top: 15%;
    right: 18%;
    opacity: 0.2;
    transform: rotate(20deg);
}

.paint-drop-2 {
    width: 12px;
    height: 15px;
    background: var(--olive);
    bottom: 30%;
    left: 15%;
    opacity: 0.25;
    transform: rotate(-30deg);
}

.paint-drop-3 {
    width: 10px;
    height: 12px;
    background: var(--mustard);
    top: 35%;
    right: 30%;
    opacity: 0.3;
    transform: rotate(45deg);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 720px;
}

.hero-title {
    margin-bottom: 0.5rem;
    position: relative;
    text-align: center;
    line-height: 0;
}

.hero-logo {
    width: clamp(280px, 50vw, 500px);
    height: auto;
    mix-blend-mode: multiply;
    display: inline-block;
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    font-style: italic;
    color: var(--ink-faded);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.hero-text {
    font-size: clamp(0.95rem, 1.8vw, 1.1rem);
    color: var(--ink-light);
    max-width: 560px;
    margin: 0 auto 1.2rem;
    line-height: 1.8;
}

.hero-badges {
    margin-bottom: 2.5rem;
}

.hero-schedule {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--olive-dark);
    background: rgba(107, 127, 71, 0.1);
    border: 2px solid rgba(107, 127, 71, 0.25);
    border-radius: 50px;
    padding: 0.5rem 1.5rem;
    margin-bottom: 0.8rem;
}

.hero-badge-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
}

.hero-badge {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: var(--ink);
    background: rgba(44, 24, 16, 0.05);
    border: 1px solid rgba(44, 24, 16, 0.12);
    border-radius: 50px;
    padding: 0.35rem 1rem;
}

.hero-badge--cupos {
    color: var(--terracotta);
    background: rgba(193, 85, 59, 0.08);
    border-color: rgba(193, 85, 59, 0.2);
    font-weight: 600;
}

.btn-primary {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--warm-white);
    background: var(--terracotta);
    border: none;
    padding: 0.9rem 2.8rem;
    border-radius: 60px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(193, 85, 59, 0.3);
    margin-top: 0.5rem;
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 60%);
    border-radius: inherit;
}

.btn-primary:hover {
    transform: translateY(-3px) rotate(-1deg);
    box-shadow: 0 8px 25px rgba(193, 85, 59, 0.4);
    background: var(--terracotta-dark);
}

/* ========== SECTIONS COMMON ========== */
.section {
    padding: 3.5rem 1.5rem;
    position: relative;
}

.section-inner {
    max-width: 900px;
    margin: 0 auto;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 0.4em;
    position: relative;
    display: inline-block;
}

.section-title .accent {
    color: var(--terracotta);
}

.section-title::after {
    content: '';
    display: block;
    width: 60%;
    height: 4px;
    background: linear-gradient(90deg, var(--mustard) 0%, var(--mustard-light) 60%, transparent 100%);
    border-radius: 3px;
    margin-top: 0.2em;
}

/* ========== ABOUT ========== */
.about {
    background: var(--paper);
    overflow: hidden;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
}

.about-text p {
    font-size: clamp(0.95rem, 1.5vw, 1.05rem);
    color: var(--ink-light);
    margin-bottom: 1.2rem;
}

.about-text p:last-of-type {
    margin-bottom: 0;
    font-style: italic;
}

.about-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 1.5rem;
}

.about-tag {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--ink-faded);
    background: rgba(212, 168, 67, 0.15);
    border: 1.5px solid rgba(212, 168, 67, 0.3);
    border-radius: 30px;
    padding: 0.35rem 1.1rem;
}

/* Art piece decoration */
.about-art {
    display: flex;
    justify-content: center;
    align-items: center;
}

.canvas-frame {
    width: 220px;
    height: 260px;
    border-radius: 0;
    position: relative;
    box-shadow: 0 8px 30px rgba(44,24,16,0.15);
    transform: rotate(-3deg);
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.canvas-frame:hover {
    transform: rotate(-1deg) scale(1.08);
    box-shadow: 0 14px 40px rgba(44,24,16,0.22);
}

.canvas-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.canvas-frame::before {
    content: '';
    position: absolute;
    inset: -16px;
    border: 25px solid #fff;
    border-radius: 0;
    opacity: 1;
    z-index: 1;
}

@media (min-width: 700px) {
    .about-content {
        grid-template-columns: 1fr 260px;
    }
}

/* ========== PRICES ========== */
.prices {
    background: var(--warm-white);
    text-align: center;
}

.price-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 650px;
    margin: 2.5rem auto 0;
}

@media (min-width: 600px) {
    .price-cards {
        grid-template-columns: 1fr 1fr;
    }
}

.price-card {
    background: var(--paper);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
    overflow: hidden;
}

.price-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    border-radius: 16px 16px 0 0;
}

.price-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(44,24,16,0.1);
}

/* Brush-stroke border effect */
.price-card::after {
    content: '';
    position: absolute;
    inset: 3px;
    border: 2px solid transparent;
    border-radius: 14px;
    pointer-events: none;
}

.price-card--single {
    transform: rotate(-1.5deg);
}

.price-card--single:hover {
    transform: rotate(-1.5deg) translateY(-5px);
}

.price-card--single::before {
    background: linear-gradient(90deg, var(--olive-light), var(--olive));
}

.price-card--single::after {
    border-color: rgba(107, 127, 71, 0.15);
}

.price-card--monthly {
    transform: rotate(1.5deg);
    background: linear-gradient(160deg, var(--cream) 0%, rgba(212,168,67,0.1) 100%);
    border: 2px solid rgba(212, 168, 67, 0.3);
}

.price-card--monthly::before {
    background: linear-gradient(90deg, var(--mustard), var(--terracotta));
    height: 6px;
}

.price-card--monthly:hover {
    transform: rotate(1.5deg) translateY(-5px);
}

.price-card--monthly::after {
    border-color: rgba(212, 168, 67, 0.15);
}

.price-badge {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--warm-white);
    background: var(--mustard);
    padding: 0.2rem 1rem;
    border-radius: 20px;
    position: absolute;
    top: 18px;
    right: 18px;
}

.price-card-title {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 1rem;
}

.price-amount {
    font-family: var(--font-display);
    font-size: 3.2rem;
    font-weight: 700;
    color: var(--terracotta);
    line-height: 1;
    margin-bottom: 0.3rem;
}

.price-card--monthly .price-amount {
    color: var(--terracotta-dark);
}

.price-period {
    font-size: 0.85rem;
    color: var(--ink-faded);
    font-style: italic;
}

.price-features {
    list-style: none;
    text-align: left;
    margin: 1.2rem 0 0;
    padding: 1rem 0 0;
    border-top: 1px solid rgba(44, 24, 16, 0.1);
}

.price-features li {
    font-size: 0.9rem;
    color: var(--ink-light);
    padding: 0.3rem 0;
    line-height: 1.5;
}

.price-features li::before {
    content: '✓ ';
    color: var(--olive);
    font-weight: bold;
}

.price-savings {
    margin-top: 1rem;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--olive-dark);
    background: rgba(107, 127, 71, 0.1);
    border-radius: 20px;
    padding: 0.4rem 1rem;
    display: inline-block;
}

/* ========== PAYMENT ========== */
.payment {
    background: var(--paper);
    overflow: hidden;
}

.payment-alias-box {
    text-align: center;
    position: relative;
    max-width: 520px;
    margin: 1.5rem auto;
    padding: 1.6rem;
    border: 1px solid rgba(193,85,59,0.25);
    border-radius: 18px;
    background: rgba(255,255,255,0.55);
    backdrop-filter: blur(4px);
}

.payment-alias-label {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--ink-faded);
    margin-bottom: 0.5rem;
    letter-spacing: 0.03em;
}

.payment-alias {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: var(--terracotta);
    letter-spacing: 0.02em;
    margin-bottom: 1rem;
    word-break: break-all;
}

.btn-copy {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--terracotta);
    background: rgba(193, 85, 59, 0.08);
    border: 2px solid var(--terracotta);
    border-radius: 40px;
    padding: 0.6rem 2rem;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-copy:hover {
    background: var(--terracotta);
    color: var(--warm-white);
}

.btn-copy.copied {
    background: var(--olive);
    border-color: var(--olive);
    color: var(--warm-white);
}

.payment-steps {
    list-style: none;
    counter-reset: steps;
    margin: 2rem 0;
}

.payment-steps li {
    counter-increment: steps;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.2rem;
    font-size: 0.95rem;
    color: var(--ink-light);
}

.payment-steps li::before {
    content: counter(steps);
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--warm-white);
    background: var(--terracotta);
    min-width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.payment-note {
    font-size: 0.9rem;
    font-style: italic;
    color: var(--ink-faded);
    text-align: center;
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(107, 127, 71, 0.08);
    border-radius: 12px;
}

/* ========== MATERIALS ========== */
.materials {
    background: var(--warm-white);
}

.materials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (min-width: 600px) {
    .materials-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.material-card {
    padding: 2rem;
    border-radius: 16px;
    position: relative;
}

.material-card--included {
    background: rgba(107, 127, 71, 0.08);
    border: 1.5px solid rgba(107, 127, 71, 0.2);
}

.material-card--bring {
    background: rgba(212, 168, 67, 0.08);
    border: 1.5px solid rgba(212, 168, 67, 0.25);
}

.material-icon {
    font-size: 2rem;
    margin-bottom: 0.8rem;
}

.material-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--ink);
}

.material-card ul {
    list-style: none;
}

.material-card li {
    font-size: 0.95rem;
    color: var(--ink-light);
    padding: 0.4rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.material-card--included li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--olive);
    font-weight: 700;
}

.material-card--bring li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--mustard);
    font-weight: 700;
}

/* ========== INSCRIPTION ========== */
.inscription {
    background:
        radial-gradient(ellipse at 30% 70%, rgba(193, 85, 59, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 30%, rgba(212, 168, 67, 0.08) 0%, transparent 50%),
        var(--paper);
    text-align: center;
}

.inscription .section-title::after {
    margin-left: auto;
    margin-right: auto;
}

.inscription-subtitle {
    font-size: 1.05rem;
    color: var(--ink-faded);
    margin-bottom: 2rem;
}

.inscription-note {
    font-size: 0.9rem;
    font-style: italic;
    color: var(--ink-faded);
    max-width: 500px;
    margin: 0 auto;
    padding: 1rem;
    background: rgba(107, 127, 71, 0.06);
    border-radius: 12px;
}

/* Custom form */
.custom-form {
    max-width: 580px;
    margin: 0 auto 2rem;
    text-align: left;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 0.4rem;
}

.form-label .required {
    color: var(--terracotta);
    margin-left: 2px;
}

.form-hint {
    display: block;
    font-size: 0.8rem;
    color: var(--ink-faded);
    margin-bottom: 0.4rem;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--ink);
    background: var(--warm-white);
    border: 2px solid rgba(44, 24, 16, 0.12);
    border-radius: 12px;
    padding: 0.75rem 1rem;
    transition: border-color 0.3s, box-shadow 0.3s;
    outline: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    border-color: var(--terracotta-light);
    box-shadow: 0 0 0 3px rgba(193, 85, 59, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--ink-faded);
    opacity: 0.5;
}

.form-textarea {
    min-height: 100px;
    resize: vertical;
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B5548' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
    cursor: pointer;
}

/* Radio group */
.form-radios {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-top: 0.3rem;
}

.form-radio-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: var(--ink-light);
    cursor: pointer;
    padding: 0.5rem 1rem;
    border-radius: 30px;
    border: 1.5px solid rgba(44, 24, 16, 0.1);
    background: var(--warm-white);
    transition: all 0.2s;
}

.form-radio-label:hover {
    border-color: var(--terracotta-light);
    background: rgba(193, 85, 59, 0.04);
}

.form-radio-label input[type="radio"] {
    accent-color: var(--terracotta);
    width: 16px;
    height: 16px;
    cursor: pointer;
}

.form-radio-label:has(input:checked) {
    border-color: var(--terracotta);
    background: rgba(193, 85, 59, 0.08);
    color: var(--ink);
    font-weight: 500;
}

/* File upload */
.file-upload-area {
    border: 2px dashed rgba(44, 24, 16, 0.15);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    background: var(--warm-white);
    position: relative;
}

.file-upload-area:hover {
    border-color: var(--terracotta-light);
    background: rgba(193, 85, 59, 0.03);
}

.file-upload-area.has-file {
    border-color: var(--olive);
    border-style: solid;
    background: rgba(107, 127, 71, 0.05);
}

.file-upload-icon {
    font-size: 2rem;
    margin-bottom: 0.4rem;
}

.file-upload-text {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--terracotta);
}

.file-upload-hint {
    font-size: 0.8rem;
    color: var(--ink-faded);
    margin-top: 0.2rem;
}

.file-upload-area input[type="file"] {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
}

.file-name {
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--olive-dark);
    font-weight: 600;
    word-break: break-all;
}

/* Submit */
.btn-submit {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--warm-white);
    background: var(--terracotta);
    border: none;
    padding: 0.9rem 3rem;
    border-radius: 60px;
    cursor: pointer;
    display: block;
    width: 100%;
    max-width: 320px;
    margin: 2rem auto 0;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(193, 85, 59, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-submit::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 60%);
    border-radius: inherit;
}

.btn-submit:hover:not(:disabled) {
    transform: translateY(-3px) rotate(-1deg);
    box-shadow: 0 8px 25px rgba(193, 85, 59, 0.4);
    background: var(--terracotta-dark);
}

.btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Form states */
.form-error {
    font-size: 0.8rem;
    color: var(--terracotta);
    margin-top: 0.3rem;
    display: none;
}

.form-group.invalid .form-input,
.form-group.invalid .form-select,
.form-group.invalid .form-textarea {
    border-color: var(--terracotta);
}

.form-group.invalid .file-upload-area {
    border-color: var(--terracotta);
}

.form-group.invalid .form-error {
    display: block;
}

/* Success/error messages */
.form-message {
    display: none;
    text-align: center;
    padding: 2rem;
    border-radius: 16px;
    max-width: 580px;
    margin: 0 auto 2rem;
}

.form-message--success {
    background: rgba(107, 127, 71, 0.1);
    border: 2px solid rgba(107, 127, 71, 0.3);
}

.form-message--error {
    background: rgba(193, 85, 59, 0.08);
    border: 2px solid rgba(193, 85, 59, 0.25);
}

.form-message-icon {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.form-message-title {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.form-message--success .form-message-title {
    color: var(--olive-dark);
}
.form-message--error .form-message-title {
    color: var(--terracotta);
}

.form-message-text {
    font-size: 0.95rem;
    color: var(--ink-light);
}

/* Loading spinner */
.spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255,255,255,0.3);
    border-top-color: var(--warm-white);
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
    vertical-align: middle;
    margin-right: 0.5rem;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* ========== FOOTER ========== */
.footer {
    background: var(--ink);
    color: var(--cream);
    text-align: center;
    padding: 2.5rem 1.5rem;
}

.footer-name {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--mustard-light);
    margin-bottom: 0.3rem;
}

.footer-desc {
    font-size: 0.85rem;
    color: rgba(253, 246, 227, 0.5);
    margin-bottom: 1rem;
}

.footer-made {
    font-family: var(--font-display);
    font-size: 0.95rem;
    color: rgba(253, 246, 227, 0.35);
}

/* ========== ANIMATIONS ========== */
/* No scroll animations - all content visible immediately */

/* Hero specific animations */
.hero-content > * {
    opacity: 0;
    transform: translateY(25px);
    animation: heroFadeIn 0.8s ease forwards;
}

.hero-content > *:nth-child(1) {
    animation-delay: 0.2s;
}
.hero-content > *:nth-child(2) {
    animation-delay: 0.35s;
}
.hero-content > *:nth-child(3) {
    animation-delay: 0.5s;
}
.hero-content > *:nth-child(4) {
    animation-delay: 0.65s;
}
.hero-content > *:nth-child(5) {
    animation-delay: 0.8s;
}

@keyframes heroFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Subtle float for paint drops */
@keyframes floatDrop {
    0%, 100% {
        transform: translateY(0) rotate(var(--rot, 20deg));
    }
    50% {
        transform: translateY(-8px) rotate(var(--rot, 20deg));
    }
}

.paint-drop {
    animation: floatDrop 4s ease-in-out infinite;
}

.paint-drop-1 {
    --rot: 20deg;
    animation-delay: 0s;
}
.paint-drop-2 {
    --rot: -30deg;
    animation-delay: 1.3s;
}
.paint-drop-3 {
    --rot: 45deg;
    animation-delay: 2.6s;
}

/* ========== GALERÍA / PRUEBA SOCIAL ========== */
.galeria {
    background: var(--paper);
}

.galeria-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

.galeria-placeholder {
    aspect-ratio: 1;
    background: var(--warm-white);
    border: 2px dashed rgba(44, 24, 16, 0.12);
    border-radius: 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1.5rem;
    gap: 0.5rem;
}

.galeria-placeholder span {
    font-size: 2rem;
    opacity: 0.5;
}

.galeria-placeholder p {
    font-size: 0.85rem;
    color: var(--ink-faded);
    font-style: italic;
}

.quien-soy {
    background: var(--warm-white);
    border-radius: 14px;
    padding: 2rem;
    padding-top: 5rem;
    border: 1.5px solid rgba(44, 24, 16, 0.08);
    margin-top: 5rem;
    text-align: center;
    position: relative;
}

.quien-soy-avatar {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--terracotta-light);
    box-shadow: 0 4px 12px rgba(44,24,16,0.1);
    position: absolute;
    top: -75px;
    left: 50%;
    transform: translateX(-50%);
}

.quien-soy h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--terracotta);
    margin-bottom: 0.8rem;
}

.quien-soy p {
    font-size: 0.95rem;
    color: var(--ink-light);
    line-height: 1.8;
    max-width: 550px;
    margin: 0 auto;
}

@media (max-width: 480px) {
    .galeria-grid {
        grid-template-columns: 1fr;
    }
    .galeria-placeholder {
        aspect-ratio: auto;
        padding: 2rem;
    }
}

/* ========== DESTINATARIOS ========== */
.destinatarios {
    background: var(--warm-white);
}

.destinatarios-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
    margin-top: 2rem;
    max-width: 700px;
}

@media (max-width: 600px) {
    .destinatarios-grid {
        grid-template-columns: 1fr;
    }
}

.destinatario-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.95rem;
    color: var(--ink-light);
    padding: 0.8rem 1.2rem;
    background: rgba(212, 168, 67, 0.06);
    border-radius: 12px;
    border: 1px solid rgba(212, 168, 67, 0.15);
}

.destinatario-item span:first-child {
    font-size: 1.3rem;
    flex-shrink: 0;
}

.info-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 2rem;
}

.info-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 600;
    padding: 0.5rem 1.2rem;
    border-radius: 30px;
}

.info-badge--duracion {
    color: var(--terracotta-dark);
    background: rgba(193, 85, 59, 0.1);
    border: 1.5px solid rgba(193, 85, 59, 0.25);
}

.info-badge--horas {
    color: var(--olive-dark);
    background: rgba(107, 127, 71, 0.1);
    border: 1.5px solid rgba(107, 127, 71, 0.25);
}

.info-badge--modalidad {
    color: var(--ink-faded);
    background: rgba(44, 24, 16, 0.06);
    border: 1.5px solid rgba(44, 24, 16, 0.15);
}

/* ========== ENCUENTROS (GRILLA 2x2) ========== */
.encuentros {
    background: var(--paper);
    overflow: hidden;
}

.encuentros-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
    margin-top: 2.5rem;
}

.enc-card {
    background: var(--warm-white);
    border-radius: 14px;
    padding: 1.8rem;
    border: 1.5px solid rgba(44, 24, 16, 0.08);
    border-top: 4px solid var(--terracotta);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.enc-card:hover {
    box-shadow: 0 8px 24px rgba(44, 24, 16, 0.08);
    z-index: 10;
}

.enc-card--1 {
    border-top-color: var(--terracotta);
    transform: rotate(-2deg);
}
.enc-card--2 {
    border-top-color: var(--mustard);
    transform: rotate(1.5deg);
}
.enc-card--3 {
    border-top-color: var(--olive);
    transform: rotate(1deg);
}
.enc-card--4 {
    border-top-color: var(--ink-light);
    transform: rotate(-1.5deg);
}

.enc-card--1:hover {
    transform: rotate(-2deg) translateY(-3px);
}
.enc-card--2:hover {
    transform: rotate(1.5deg) translateY(-3px);
}
.enc-card--3:hover {
    transform: rotate(1deg) translateY(-3px);
}
.enc-card--4:hover {
    transform: rotate(-1.5deg) translateY(-3px);
}

.enc-num {
    position: absolute;
    top: -1px;
    right: 1.2rem;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    opacity: 0.3;
    color: var(--ink);
    line-height: 1;
}

.enc-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 0.3rem;
}

.enc-eje {
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--terracotta);
    font-style: italic;
    margin-bottom: 1rem;
}

.enc-card--2 .enc-eje {
    color: var(--mustard);
}
.enc-card--3 .enc-eje {
    color: var(--olive);
}
.enc-card--4 .enc-eje {
    color: var(--ink-faded);
}

.enc-refs {
    border-top: 1px solid rgba(44, 24, 16, 0.06);
    padding-top: 0.8rem;
}

.enc-refs p {
    font-size: 0.9rem;
    color: var(--ink-light);
    line-height: 1.6;
    margin: 0;
}

.enc-ref-label {
    font-size: 0.85rem;
    margin-right: 0.3rem;
}

.enc-cierre {
    margin-top: 2rem;
    background: var(--ink);
    border-radius: 16px;
    padding: 3rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.enc-cierre::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at top, rgba(212, 168, 67, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.enc-cierre-label {
    font-family: var(--font-display);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: rgba(253, 246, 227, 0.4);
    margin-bottom: 0.8rem;
}

.enc-cierre-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.6rem;
    color: var(--mustard);
}

.enc-cierre h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--cream);
    margin-bottom: 0.8rem;
    position: relative;
}

.enc-cierre-desc {
    font-size: 0.95rem;
    color: rgba(253, 246, 227, 0.7);
    line-height: 1.7;
    max-width: 480px;
    margin: 0 auto 1.5rem;
    position: relative;
}

.enc-cierre-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.8rem;
    position: relative;
}

.enc-cierre-items span {
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--cream);
    background: rgba(253, 246, 227, 0.08);
    border: 1px solid rgba(253, 246, 227, 0.15);
    border-radius: 50px;
    padding: 0.4rem 1.2rem;
}

@media (max-width: 600px) {
    .encuentros-grid {
        grid-template-columns: 1fr;
    }
}

/* ========== MOBILE REFINEMENTS ========== */
@media (max-width: 480px) {
    .section {
        padding: 2.5rem 1.2rem;
    }
    .hero {
        padding: 5rem 1.2rem 3rem;
    }
    .payment-alias-box {
        padding: 1.5rem 1rem;
    }
    .price-card {
        padding: 2rem 1.5rem;
    }
}

/* ========== FADE IN ON SCROLL ========== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ================================
   SISTEMA TARJETAS EN MESA
   (Encuentros + Precios)
================================ */

/* Perspectiva para leve efecto 3D */
.encuentros-grid,
.price-cards{
    perspective: 1000px;
}

/* Base común de tarjetas */
.enc-card,
.price-card{
    --rot: 0deg;
    --tx: 0px;
    --ty: 0px;

    transform:
        translate3d(var(--tx), var(--ty), 0)
        rotate(var(--rot));

    transform-origin: 50% 60%;
    will-change: transform, box-shadow, filter;

    transition:
        transform 320ms cubic-bezier(.2,.9,.2,1),
        box-shadow 320ms cubic-bezier(.2,.9,.2,1),
        filter 200ms ease;

    box-shadow:
        0 12px 26px rgba(44,24,16,.16),
        0 2px 0 rgba(44,24,16,.05);
}

/* Hover universal: se endereza y se acerca */
.enc-card:hover,
.enc-card:focus-within,
.price-card:hover,
.price-card:focus-within{
    transform:
        translate3d(0,-16px,0)
        rotate(0deg)
        scale(1.05);

    box-shadow:
        0 28px 60px rgba(44,24,16,.25),
        0 10px 24px rgba(44,24,16,.12);

    z-index: 50;
    filter: saturate(1.05);
}

/* ================================
   POSES — ENCUENTROS
================================ */

.enc-card--1{
    --rot:-7deg;
    --tx:-10px;
    --ty:8px;
}

.enc-card--2{
    --rot:6deg;
    --tx:12px;
    --ty:-4px;
}

.enc-card--3{
    --rot:-4deg;
    --tx:14px;
    --ty:10px;
}

.enc-card--4{
    --rot:3deg;
    --tx:-12px;
    --ty:4px;
}

/* ================================
   POSES — PRECIOS
================================ */

.price-card--single{
    --rot:-3deg;
    --tx:-8px;
    --ty:6px;
}

.price-card--monthly{
    --rot:3deg;
    --tx:8px;
    --ty:-4px;
}

/* ================================
   ACCESIBILIDAD
================================ */

@media (prefers-reduced-motion: reduce){
    .enc-card,
    .price-card{
        transition:none;
    }

    .enc-card:hover,
    .price-card:hover{
        transform: translateY(-6px);
    }
}

.sr-only{
    position:absolute;
    width:1px;
    height:1px;
    padding:0;
    margin:-1px;
    overflow:hidden;
    clip-path: inset(50%);
    white-space:nowrap;
    border:0;
}

.encuentros-intro{
    max-width: 520px;
    margin: 0.5rem auto 2.5rem;
    text-align: center;
    color: var(--ink-light);
    position: relative;
    font-size: 1rem;
    line-height: 1.6;
}

.encuentros-intro::after{
    content:"";
    display:block;
    width:60px;
    height:2px;
    background: var(--mustard);
    margin: 12px auto 0;
    opacity: .6;
}

.price-kicker{
    margin: 0.2rem auto 1.2rem;
    max-width: 28ch;
    color: var(--ink-light);
    font-size: 0.95rem;
    line-height: 1.5;
}

.btn-price{
    display: inline-block;
    margin-top: 1.2rem;
    padding: 0.65rem 1.4rem;
    border-radius: 999px;
    text-decoration: none;
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--terracotta);
    border: 2px solid rgba(193, 85, 59, 0.35);
    background: rgba(193, 85, 59, 0.06);
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.btn-price:hover{
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(44,24,16,0.12);
    background: rgba(193, 85, 59, 0.10);
}

.btn-price--primary{
    background: var(--terracotta);
    color: var(--warm-white);
    border-color: transparent;
}

.btn-price--primary:hover{
    background: var(--terracotta-dark);
}

.price-note{
    margin-top: 0.7rem;
    font-size: 0.82rem;
    color: var(--ink-faded);
    font-style: italic;
}

.price-info-pill{
    margin: 2rem auto 0;
    max-width: 520px;
    text-align: center;
    padding: 0.7rem 1.4rem;

    background: rgba(107,127,71,0.12);
    border: 1px solid rgba(107,127,71,0.25);
    border-radius: 999px;

    color: var(--olive-dark);
    font-size: 0.95rem;
    line-height: 1.4;
}

.price-kicker{
    margin: 0.2rem auto 1.2rem;
    max-width: 32ch;
    color: var(--ink-light);
    font-size: 0.95rem;
    line-height: 1.5;
}

.btn-price{
    display: inline-block;
    margin-top: 1.2rem;
    padding: 0.65rem 1.4rem;
    border-radius: 999px;
    text-decoration: none;
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--terracotta);
    border: 2px solid rgba(193, 85, 59, 0.35);
    background: rgba(193, 85, 59, 0.06);
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.btn-price:hover{
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(44,24,16,0.12);
    background: rgba(193, 85, 59, 0.10);
}

.btn-price--primary{
    background: var(--terracotta);
    color: var(--warm-white);
    border-color: transparent;
}

.btn-price--primary:hover{
    background: var(--terracotta-dark);
}

.price-info-pill{
    margin: 2rem auto 0;
    max-width: 620px;
    text-align: center;
    padding: 0.7rem 1.4rem;

    background: rgba(107,127,71,0.12);
    border: 1px solid rgba(107,127,71,0.25);
    border-radius: 999px;

    color: var(--olive-dark);
    font-size: 0.95rem;
    line-height: 1.4;
}

.pulse{
    animation: pulseHighlight .9s ease;
}

@keyframes pulseHighlight{
    0%{
        transform: scale(1);
    }
    35%{
        transform: scale(1.01);
    }
    100%{
        transform: scale(1);
    }
}

.payment-method-note{
    max-width: 560px;
    margin: .6rem auto 1.6rem;
    text-align: center;
    padding: .7rem 1.2rem;

    background: rgba(193,85,59,0.10);
    border: 1px solid rgba(193,85,59,0.25);
    border-radius: 14px;

    color: var(--ink);
    font-size: .95rem;
    line-height: 1.5;
}

.next-steps{
    max-width: 560px;
    margin: 1.6rem auto 0;
    padding: 1.1rem 1.2rem;
    border-radius: 18px;
    background: rgba(255,255,255,0.55);
    border: 1px solid rgba(44,24,16,0.10);
}

.next-steps-title{
    margin: 0 0 .7rem;
    color: var(--ink);
    font-weight: 700;
}

.next-steps-list{
    margin: 0;
    padding-left: 1.1rem;
    color: var(--ink-light);
    line-height: 1.6;
}

.next-steps-mini{
    margin: .8rem 0 0;
    color: var(--ink-faded);
    font-size: .92rem;
}

.footer-contact{
    margin-top:.4rem;
    font-size:.95rem;
    color: var(--ink-faded);
}

.materials-card{
    max-width: 760px;
    margin: 2rem auto 0;
    padding: 1.4rem 1.4rem 1.6rem;

    border-radius: 22px;
    border: 1px solid rgba(44,24,16,0.10);
    background: rgba(255,255,255,0.55);
    backdrop-filter: blur(4px);

    box-shadow: 0 14px 36px rgba(44,24,16,0.10);
}

.materials-head{
    display: flex;
    flex-direction: column;
    gap: .25rem;
    margin-bottom: 1.1rem;
}

.materials-title{
    margin: 0;
    font-family: var(--font-display);
    font-size: 2.3rem;
    color: var(--ink);
    letter-spacing: .02em;
}

.materials-subtitle{
    margin: 0;
    color: var(--ink-faded);
    font-size: .98rem;
}

.materials-columns{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.materials-panel{
    border-radius: 18px;
    padding: 1rem 1rem 1.05rem;
    border: 1px solid rgba(44,24,16,0.08);
}

.materials-panel--included{
    background: rgba(212,168,67,0.14); /* mustard suave */
    border-color: rgba(212,168,67,0.22);
}

.materials-panel--bring{
    background: rgba(193,85,59,0.10); /* terracotta suave */
    border-color: rgba(193,85,59,0.20);
}

.materials-panel-title{
    margin: 0 0 .7rem;
    font-weight: 700;
    color: var(--ink);
}

.materials-list{
    margin: 0;
    padding-left: 1.1rem;
    color: var(--ink-light);
    line-height: 1.65;
}

.materials-list li{
    margin: .25rem 0;
}

@media (max-width: 720px){
    .materials-card{
        padding: 1.1rem 1.1rem 1.3rem;
    }
    .materials-columns{
        grid-template-columns: 1fr;
    }
}

/* =========================================
   PASO 1: “Caja premium” reutilizable
   (borde + borde interno + glass suave)
   ========================================= */

:root{
    --stroke: rgba(44,24,16,.12);
    --stroke-strong: rgba(44,24,16,.16);
    --inner-stroke: rgba(44,24,16,.08);
    --glass: rgba(255,255,255,.55);
}

/* Base: la usamos en varias cajas */
.enc-card,
.price-card,
.payment-alias-box,
.material-card,
.next-steps{
    position: relative;
    border-radius: 18px;

    /* Fondo “vidrio” suave (si un componente quiere otro fondo, lo pisa) */
    background: var(--glass);
    border: 1px solid var(--stroke);
    backdrop-filter: blur(4px);

    /* Sombra prolija (y corregida) */
    box-shadow:
        0 14px 28px rgba(44,24,16,.14),
        0 2px 0 rgba(44,24,16,.06);
}

/* Borde interno finito (la “línea” elegante) */
.enc-card::before,
.price-card::before,
.payment-alias-box::before,
.material-card::before,
.next-steps::before{
    content:"";
    position:absolute;
    inset: 10px;
    border-radius: 14px; /* 18 - (aprox) */
    border: 1px solid var(--inner-stroke);
    pointer-events:none;
    opacity: .9;
}

/* En móviles: un toque menos de inset para que no “coma” espacio */
@media (max-width: 480px){
    .enc-card::before,
    .price-card::before,
    .payment-alias-box::before,
    .material-card::before,
    .next-steps::before{
        inset: 8px;
        border-radius: 13px;
    }
}

/* Materiales: mantenemos tu colorcito, pero con el mismo “acabado” */
.material-card--included{
    background: rgba(107, 127, 71, 0.08);
    border-color: rgba(107, 127, 71, 0.22);
}
.material-card--included::before{
    border-color: rgba(107, 127, 71, 0.16);
}

.material-card--bring{
    background: rgba(212, 168, 67, 0.08);
    border-color: rgba(212, 168, 67, 0.26);
}
.material-card--bring::before{
    border-color: rgba(212, 168, 67, 0.18);
}

/* =========================================
   PASO 2: Materiales (jerarquía + orden)
   ========================================= */

.materials-card{
    max-width: 820px;
    margin: 1.6rem auto 0;
    padding: 1.2rem 1.2rem 1.3rem;
}

/* Head */
.materials-head{
    display: flex;
    flex-direction: column;
    gap: .25rem;
    margin-bottom: 1rem;
    text-align: center;
}

/* Más grande como pediste */
.materials-title{
    margin: 0;
    font-family: var(--font-display);
    font-size: 2.6rem;   /* <- acá está el “más grande” */
    line-height: 1.05;
    color: var(--ink);
    letter-spacing: .02em;
}

.materials-subtitle{
    margin: 0;
    color: var(--ink-faded);
    font-size: 1rem;
    line-height: 1.5;
}

/* Columns */
.materials-columns{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 1rem;
}

.materials-panel{
    border-radius: 18px;
    padding: 1rem 1rem 1.05rem;
    border: 1px solid rgba(44,24,16,0.08);
    position: relative;
}

/* Colores con intención */
.materials-panel--included{
    background: rgba(107,127,71,0.10);  /* olive suave */
    border-color: rgba(107,127,71,0.22);
}
.materials-panel--bring{
    background: rgba(212,168,67,0.12);  /* mustard suave */
    border-color: rgba(212,168,67,0.26);
}

.materials-panel-title{
    margin: 0 0 .7rem;
    font-weight: 800;
    color: var(--ink);
}

/* Lista más prolija y “limpia” */
.materials-list{
    margin: 0;
    padding-left: 1.1rem;
    color: var(--ink-light);
    line-height: 1.65;
}
.materials-list li{
    margin: .25rem 0;
}

/* Cierre chiquito */
.materials-footnote{
    margin: 1rem 0 0;
    text-align: center;
    color: var(--ink-faded);
    font-size: .95rem;
}

@media (max-width: 720px){
    .materials-columns{
        grid-template-columns: 1fr;
    }
    .materials-title{
        font-size: 2.2rem;
    }
}

/* =========================================
   PASO 3: Pago (alias + botón copiar)
   ========================================= */

.payment-alias-box{
    max-width: 520px;
    margin: 1.4rem auto 1rem;
    padding: 1.4rem 1.4rem 1.3rem;
}

/* Label un toque más chico: el protagonista es el alias */
.payment-alias-label{
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--ink-faded);
    margin-bottom: .4rem;
}

/* Alias protagonista, pero prolijo */
.payment-alias{
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 800;
    letter-spacing: .03em;
    color: var(--ink);
    margin: 0 0 1rem;
}

/* Botón copiar: mismo idioma que tus CTAs */
.btn-copy{
    display: inline-flex;
    align-items: center;
    gap: .55rem;

    padding: .75rem 1.2rem;
    border-radius: 999px;
    border: 2px solid rgba(193,85,59,0.30);

    background: rgba(193,85,59,0.08);
    color: var(--terracotta);
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 800;

    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.btn-copy:hover{
    transform: translateY(-2px);
    box-shadow: 0 12px 26px rgba(44,24,16,0.22);
    filter: brightness(.95);
}

.btn-copy:active{
    transform: translateY(-1px);
}

.btn-copy.is-copied{
    border-color: rgba(107,127,71,0.35);
    background: rgba(107,127,71,0.14);
    color: var(--olive-dark);
}

/* Si querés que el ícono no “mueva” el texto */
.btn-copy-icon{
    line-height: 1;
}

section{
    scroll-margin-top: 110px;
}

.btn,
.btn-price,
.btn-copy,
.btn-submit{
    min-height: 44px;
}

@media (max-width: 768px){
    .section-title{
        font-size: 2.2rem;
    }
}

/* Canvas texture para secciones marcadas con .canvas-section */
.canvas-section{
    position: relative;
    overflow: hidden; /* evita que la textura se “escape” */
}

.canvas-section::before{
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;

    /* misma lógica que el hero, pero más suave */
    background-image:
        repeating-linear-gradient(0deg,
        transparent,
        transparent 2px,
        rgba(44,24,16,0.012) 2px,
        rgba(44,24,16,0.012) 3px
        ),
        repeating-linear-gradient(90deg,
        transparent,
        transparent 2px,
        rgba(44,24,16,0.012) 2px,
        rgba(44,24,16,0.012) 3px
        );

    opacity: 1; /* lo dejamos en 1 y controlamos “qué tanto se nota” con el rgba */
}

/* Asegura que el contenido quede arriba de la textura */
.canvas-section > .section-inner{
    position: relative;
    z-index: 1;
}



