/* ══════════════════════════════════════════
    RESET & ROOT
══════════════════════════════════════════ */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --gold: #c9a96e;
    --gold-light: #e4cfaa;
    --gold-pale: rgba(201, 169, 110, 0.12);
    --ivory: #faf8f4;
    --linen: #f3ede4;
    --stone: #e5ddd4;
    --dark: #1a1614;
    --charcoal: #2c2820;
    --mid: #7a6e68;
    --rose: #c4907a;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Raleway', sans-serif;
    background: var(--ivory);
    color: var(--charcoal);
    overflow-x: hidden;
}

/* ══════════════════════════════════════════
    NAV
══════════════════════════════════════════ */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(250, 248, 244, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--stone);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5vw;
    height: 60px;
}

.nav-logo {
    font-family: 'Cinzel', serif;
    font-weight: 300;
    font-size: 0.72rem;
    letter-spacing: 0.22em;
    color: var(--charcoal);
}

.nav-logo span {
    color: var(--gold);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    font-size: 0.58rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--mid);
    text-decoration: none;
    transition: color 0.2s;
}

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

.nav-cta {
    background: var(--charcoal);
    color: white;
    padding: 0.55rem 1.4rem;
    font-size: 0.58rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 2px;
    transition: background 0.25s;
    font-family: 'Raleway', sans-serif;
}

.nav-cta:hover {
    background: var(--gold);
    color: var(--charcoal);
}

/* ══════════════════════════════════════════
    HERO
══════════════════════════════════════════ */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 2rem;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.45) saturate(0.7);
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(26, 22, 20, 0.3) 0%, rgba(26, 22, 20, 0.65) 100%);
}

/* corner ornaments */
.corner {
    position: absolute;
    width: 50px;
    height: 50px;
    border-color: rgba(201, 169, 110, 0.4);
}

.c-tl {
    top: 80px;
    left: 5vw;
    border-top: 1px solid;
    border-left: 1px solid;
}

.c-tr {
    top: 80px;
    right: 5vw;
    border-top: 1px solid;
    border-right: 1px solid;
}

.c-bl {
    bottom: 40px;
    left: 5vw;
    border-bottom: 1px solid;
    border-left: 1px solid;
}

.c-br {
    bottom: 40px;
    right: 5vw;
    border-bottom: 1px solid;
    border-right: 1px solid;
}

.hero-inner {
    position: relative;
    z-index: 1;
    max-width: 780px;
    animation: heroIn 1.4s ease;
}

@keyframes heroIn {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
    }
}

.hero-eyebrow {
    font-size: 0.58rem;
    letter-spacing: 0.42em;
    text-transform: uppercase;
    color: var(--gold-light);
    opacity: 0.8;
    margin-bottom: 1.5rem;
}

.hero-logo-text {
    font-family: 'Cinzel', serif;
    font-weight: 300;
    font-size: clamp(1.6rem, 4vw, 2.8rem);
    letter-spacing: 0.12em;
    color: white;
    margin-bottom: 0.5rem;
}

.hero-logo-text em {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    color: var(--gold-light);
}

.hero-tagline {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: clamp(1.1rem, 2.5vw, 1.6rem);
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.hero-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.hd-line {
    width: 80px;
    height: 1px;
    background: rgba(201, 169, 110, 0.5);
}

.hd-gem {
    width: 6px;
    height: 6px;
    background: var(--gold);
    transform: rotate(45deg);
}

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

.btn-primary {
    padding: 0.85rem 2.5rem;
    background: var(--gold);
    color: var(--dark);
    text-decoration: none;
    border-radius: 2px;
    font-family: 'Cinzel', serif;
    font-weight: 400;
    font-size: 0.65rem;
    letter-spacing: 0.22em;
    transition: all 0.25s;
    display: inline-block;
}

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

.btn-outline {
    padding: 0.85rem 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: white;
    text-decoration: none;
    border-radius: 2px;
    font-family: 'Cinzel', serif;
    font-weight: 300;
    font-size: 0.65rem;
    letter-spacing: 0.22em;
    transition: all 0.25s;
    display: inline-block;
}

.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* ══════════════════════════════════════════
    SECTION COMMONS
══════════════════════════════════════════ */
.section {
    padding: 6rem 5vw;
}

.section-inner {
    max-width: 1060px;
    margin: 0 auto;
}

.section-center {
    text-align: center;
}

.sep {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    max-width: 1060px;
    margin: 0 auto;
    padding: 0 5vw;
}

.sep::before,
.sep::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--stone));
}

.sep::before {
    background: linear-gradient(to left, transparent, var(--stone));
}

.sep span {
    font-size: 0.75rem;
    color: var(--gold);
    opacity: 0.6;
}

.s-eyebrow {
    font-size: 0.55rem;
    letter-spacing: 0.42em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.9rem;
}

.s-title {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-weight: 300;
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--dark);
    margin-bottom: 1.4rem;
    line-height: 1.2;
}

.s-body {
    font-size: 0.82rem;
    line-height: 2.2;
    color: var(--mid);
    font-weight: 300;
    max-width: 680px;
    margin: 0 auto;
}

/* ══════════════════════════════════════════
    INTRO BAND
══════════════════════════════════════════ */
.intro-section {
    background: white;
    padding: 6rem 5vw;
    border-top: 1px solid var(--stone);
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    max-width: 1060px;
    margin: 0 auto;
}

.intro-photo {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    filter: saturate(0.85);
    display: block;
}

/* .intro-text {} */

/* ══════════════════════════════════════════
    BENEFICIOS
══════════════════════════════════════════ */
.benefits-section {
    background: var(--linen);
    padding: 6rem 5vw;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--stone);
    border: 1px solid var(--stone);
    margin-top: 3.5rem;
}

.benefit-card {
    background: var(--linen);
    padding: 3rem 2.5rem;
    text-align: center;
    transition: background 0.3s;
    position: relative;
}

.benefit-card:hover {
    background: white;
}

.benefit-icon {
    font-size: 2rem;
    margin-bottom: 1.2rem;
    opacity: 0.6;
}

.benefit-title {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1.25rem;
    color: var(--dark);
    margin-bottom: 0.7rem;
}

.benefit-desc {
    font-size: 0.75rem;
    line-height: 1.9;
    color: var(--mid);
    font-weight: 300;
}

/* ══════════════════════════════════════════
    ESTILOS / PLANTILLAS
══════════════════════════════════════════ */
.templates-section {
    background: white;
    padding: 6rem 5vw;
    border-top: 1px solid var(--stone);
}

.templates-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
    margin-top: 3.5rem;
}

.tpl-card {
    text-decoration: none;
    display: block;
    border: 1px solid var(--stone);
    overflow: hidden;
    transition: transform 0.25s, box-shadow 0.25s;
}

.tpl-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
}

.tpl-thumb {
    height: 140px;
    overflow: hidden;
    position: relative;
}

.tpl-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.75) brightness(0.85);
    transition: filter 0.4s, transform 0.5s;
    display: block;
}

.tpl-card:hover .tpl-thumb img {
    filter: saturate(1) brightness(0.95);
    transform: scale(1.05);
}

.tpl-num {
    position: absolute;
    top: 8px;
    left: 8px;
    background: rgba(0, 0, 0, 0.45);
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.52rem;
    letter-spacing: 0.2em;
    padding: 0.2rem 0.5rem;
    border-radius: 100px;
    font-family: 'Cinzel', serif;
}

.tpl-body {
    padding: 1rem 1.2rem 1.3rem;
}

.tpl-tag {
    font-size: 0.5rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.3rem;
}

.tpl-name {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1rem;
    color: var(--dark);
    margin-bottom: 0.3rem;
}

.tpl-desc {
    font-size: 0.62rem;
    color: var(--mid);
    line-height: 1.5;
}

.tpl-palette {
    display: flex;
    gap: 3px;
    margin-top: 0.8rem;
}

.tpl-palette span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: block;
}

.card-pkg {
    font-family: 'Cinzel', serif;
    font-size: 0.48rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    padding: 0.25rem 0.75rem;
    border-radius: 100px;
}

.pkg-esencial {
    background: rgba(201, 169, 110, 0.12);
    color: rgba(201, 169, 110, 0.75);
    border: 1px solid rgba(201, 169, 110, 0.28);
}

.pkg-popular {
    background: rgba(255, 255, 255, 0.06);
    color: rgba(240, 236, 228, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.pkg-premium {
    background: rgba(201, 169, 110, 0.22);
    color: #c9a96e;
    border: 1px solid rgba(201, 169, 110, 0.5);
}

/* ══════════════════════════════════════════
    PROCESO
══════════════════════════════════════════ */
.process-section {
    background: var(--dark);
    padding: 6rem 5vw;
    color: white;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.06);
    margin-top: 3.5rem;
}

.process-step {
    background: var(--dark);
    padding: 3rem 2rem;
    text-align: center;
    position: relative;
}

.step-num {
    font-family: 'Cinzel', serif;
    font-weight: 300;
    font-size: 2.5rem;
    color: rgba(201, 169, 110, 0.2);
    line-height: 1;
    display: block;
    margin-bottom: 1.2rem;
}

.step-icon {
    font-size: 1.4rem;
    opacity: 0.5;
    margin-bottom: 0.8rem;
}

.step-title {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 0.5rem;
}

.step-desc {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.3);
    line-height: 1.8;
}

/* arrow between steps */
.process-step:not(:last-child)::after {
    content: '›';
    position: absolute;
    right: -12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
    color: rgba(201, 169, 110, 0.3);
    z-index: 1;
}

/* ══════════════════════════════════════════
    PRECIOS
══════════════════════════════════════════ */
.pricing-section {
    background: var(--ivory);
    padding: 6rem 5vw;
    border-top: 1px solid var(--stone);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3.5rem;
}

.price-card {
    background: white;
    border: 1px solid var(--stone);
    padding: 3rem 2.5rem;
    text-align: center;
    position: relative;
    transition: transform 0.25s, box-shadow 0.25s;
}

.price-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.08);
}

.price-card.featured {
    background: var(--dark);
    color: white;
    border-color: var(--dark);
}

.price-card.featured .price-tag {
    color: var(--gold-light);
}

.price-card.featured .price-desc {
    color: rgba(255, 255, 255, 0.4);
}

.price-card.featured .price-list li {
    color: rgba(255, 255, 255, 0.65);
}

.price-card.featured .price-list li::before {
    color: var(--gold);
}

.price-badge {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: var(--dark);
    font-size: 0.52rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    padding: 0.3rem 1rem;
    border-radius: 100px;
    font-family: 'Cinzel', serif;
    white-space: nowrap;
}

.price-eyebrow {
    font-size: 0.52rem;
    letter-spacing: 0.38em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.price-name {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1.8rem;
    color: var(--dark);
    margin-bottom: 1.2rem;
}

.price-card.featured .price-name {
    color: white;
}

.price-tag {
    font-family: 'Cinzel', serif;
    font-weight: 300;
    font-size: 3rem;
    color: var(--dark);
    line-height: 1;
}

.price-from {
    font-size: 0.6rem;
    vertical-align: super;
}

.price-desc {
    font-size: 0.68rem;
    color: var(--mid);
    margin: 0.5rem 0 1.8rem;
    letter-spacing: 0.06em;
}

.price-divider {
    height: 1px;
    background: var(--stone);
    margin-bottom: 1.8rem;
}

.price-card.featured .price-divider {
    background: rgba(255, 255, 255, 0.1);
}

.price-list {
    list-style: none;
    text-align: left;
    margin-bottom: 2rem;
}

.price-list li {
    font-size: 0.73rem;
    color: var(--mid);
    padding: 0.45rem 0;
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.06);
    line-height: 1.5;
}

.price-card.featured .price-list li {
    border-bottom-color: rgba(255, 255, 255, 0.06);
}

.price-list li::before {
    content: '✦';
    font-size: 0.5rem;
    color: var(--gold);
    margin-top: 0.2rem;
    flex-shrink: 0;
}

/* ══════════════════════════════════════════
    RSVP COMPARE TABLE
══════════════════════════════════════════ */
.rsvp-compare-wrap {
    margin-top: 3rem;
    padding: 0 1rem;
}

.rsvp-compare-title {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1.6rem;
    color: var(--dark);
    text-align: center;
    margin-bottom: 1.8rem;
    font-weight: 300;
}

.rsvp-compare-table-wrap {
    overflow-x: auto;
}

.rsvp-compare-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.76rem;
    color: var(--mid);
}

.rsvp-compare-table thead tr {
    background: var(--dark);
    color: white;
}

.rsvp-compare-table thead th {
    padding: 1rem 1.2rem;
    text-align: center;
    font-family: 'Cinzel', serif;
    font-size: 0.58rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.rsvp-compare-table thead th span {
    display: block;
    font-family: 'Raleway', sans-serif;
    font-size: 0.55rem;
    letter-spacing: 0.06em;
    opacity: 0.55;
    text-transform: none;
    margin-top: 0.15rem;
}

.rsvp-compare-table thead th.rsvp-col-premium {
    color: var(--gold);
}

.rsvp-compare-table tbody tr {
    border-bottom: 1px solid var(--stone);
    transition: background 0.2s;
}

.rsvp-compare-table tbody tr:hover {
    background: #faf9f7;
}

.rsvp-compare-table tbody td {
    padding: 1rem 1.2rem;
    vertical-align: top;
    line-height: 1.6;
}

.rsvp-compare-table tbody td.rsvp-feature {
    font-family: 'Cinzel', serif;
    font-size: 0.6rem;
    letter-spacing: 0.08em;
    color: var(--dark);
    white-space: nowrap;
    font-weight: 400;
}

.rsvp-compare-table tbody td.rsvp-col-premium {
    background: linear-gradient(135deg, rgba(201, 169, 110, 0.07), rgba(201, 169, 110, 0.02));
    border-left: 2px solid rgba(201, 169, 110, 0.4);
    color: var(--charcoal);
}

.rsvp-compare-table tbody td.rsvp-col-premium strong {
    color: var(--dark);
    display: block;
    margin-bottom: 0.2rem;
}

@media (max-width: 680px) {

    .rsvp-compare-table thead th,
    .rsvp-compare-table tbody td {
        padding: 0.75rem 0.8rem;
    }

    .rsvp-compare-table tbody td.rsvp-feature {
        white-space: normal;
    }
}

.price-note-premium {
    background: linear-gradient(135deg, rgba(201, 169, 110, 0.1), rgba(201, 169, 110, 0.03));
    border: 1px solid rgba(201, 169, 110, 0.35);
    border-left: 3px solid var(--gold);
    border-radius: 4px;
    padding: 1rem 1.2rem;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: left;
}

.pnp-title {
    font-family: 'Cinzel', serif;
    font-size: 0.52rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.pnp-text {
    font-size: 0.7rem;
    color: var(--mid);
    line-height: 1.65;
    margin: 0;
}

.price-btn {
    display: block;
    padding: 0.8rem;
    background: var(--charcoal);
    color: white;
    text-decoration: none;
    text-align: center;
    font-family: 'Cinzel', serif;
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    border-radius: 2px;
    transition: background 0.25s;
}

.price-btn:hover {
    background: var(--gold);
    color: var(--dark);
}

.price-card.featured .price-btn {
    background: var(--gold);
    color: var(--dark);
}

.price-card.featured .price-btn:hover {
    background: var(--gold-light);
}

/* ══════════════════════════════════════════
    ADD-ONS
══════════════════════════════════════════ */
.addons-section {
    background: var(--linen);
    padding: 6rem 5vw;
    border-top: 1px solid var(--stone);
}

.addons-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 3rem;
}

.addons-table thead tr {
    background: var(--dark);
    color: white;
}

.addons-table th {
    padding: 1.1rem 1.5rem;
    font-family: 'Cinzel', serif;
    font-weight: 300;
    font-size: 0.6rem;
    letter-spacing: 0.28em;
    text-align: left;
}

.addons-table tbody tr {
    border-bottom: 1px solid var(--stone);
    transition: background 0.2s;
}

.addons-table tbody tr:hover {
    background: white;
}

.addons-table td {
    padding: 1.1rem 1.5rem;
    font-size: 0.78rem;
    color: var(--charcoal);
    vertical-align: middle;
}

.addons-table td:last-child {
    font-family: 'Cinzel', serif;
    font-weight: 300;
    color: var(--gold);
    letter-spacing: 0.08em;
}

.addon-dot {
    width: 8px;
    height: 8px;
    background: var(--gold);
    transform: rotate(45deg);
    display: inline-block;
    margin-right: 0.6rem;
    opacity: 0.5;
}

/* ══════════════════════════════════════════
    PRECIOS POR PLANTILLA
══════════════════════════════════════════ */
.tpl-pricing-section {
    background: white;
    padding: 6rem 5vw;
    border-top: 1px solid var(--stone);
}

.tpl-pricing-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 3rem;
}

.tpl-pricing-table thead tr {
    background: var(--charcoal);
    color: white;
}

.tpl-pricing-table th {
    padding: 1rem 1.5rem;
    font-family: 'Cinzel', serif;
    font-weight: 300;
    font-size: 0.58rem;
    letter-spacing: 0.25em;
    text-align: left;
}

.tpl-pricing-table tbody tr {
    border-bottom: 1px solid var(--stone);
    transition: background 0.2s;
}

.tpl-pricing-table tbody tr:hover {
    background: var(--linen);
}

.tpl-pricing-table td {
    padding: 0.9rem 1.5rem;
    font-size: 0.76rem;
    color: var(--charcoal);
}

.tpl-pricing-table td:first-child {
    color: var(--gold);
    font-family: 'Cinzel', serif;
    font-weight: 300;
}

.tpl-pricing-table td:last-child {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1.1rem;
    color: var(--dark);
}

.photos-badge {
    background: var(--gold-pale);
    color: var(--gold);
    padding: 0.15rem 0.6rem;
    border-radius: 100px;
    font-size: 0.6rem;
    letter-spacing: 0.1em;
}

.pkg-badge {
    display: inline-block;
    padding: 0.2rem 0.7rem;
    border-radius: 100px;
    font-family: 'Cinzel', serif;
    font-size: 0.52rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    white-space: nowrap;
}

.pkg-esencial {
    background: #f0ece4;
    color: #6b5e42;
    border: 1px solid #d9cdb8;
}

.pkg-popular {
    background: var(--dark);
    color: var(--gold);
    border: 1px solid var(--dark);
}

.pkg-premium {
    background: linear-gradient(135deg, #c9a96e, #e8c97a);
    color: var(--dark);
    border: none;
}

/* ══════════════════════════════════════════
    COMPARATIVA
══════════════════════════════════════════ */
.compare-section {
    background: var(--dark);
    padding: 6rem 5vw;
}

.compare-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px;
    margin-top: 3.5rem;
    max-width: 860px;
    margin-left: auto;
    margin-right: auto;
}

.compare-col {
    padding: 3rem 2.5rem;
}

.compare-col.digital {
    background: rgba(201, 169, 110, 0.08);
    border: 1px solid rgba(201, 169, 110, 0.2);
}

.compare-col.paper {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.compare-header {
    font-family: 'Cinzel', serif;
    font-weight: 300;
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-bottom: 1.8rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.compare-col.digital .compare-header {
    color: var(--gold);
    border-bottom-color: rgba(201, 169, 110, 0.2);
}

.compare-col.paper .compare-header {
    color: rgba(255, 255, 255, 0.466);
}

.compare-item {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin-bottom: 1rem;
    font-size: 0.76rem;
    line-height: 1.7;
}

.compare-col.digital .compare-item {
    color: rgba(255, 255, 255, 0.75);
}

.compare-col.paper .compare-item {
    color: rgba(255, 255, 255, 0.466);
}

.check {
    flex-shrink: 0;
    font-size: 0.7rem;
    margin-top: 0.15rem;
}

.compare-col.digital .check {
    color: var(--gold);
}

.compare-col.paper .check {
    color: rgba(255, 255, 255, 0.15);
}

/* ══════════════════════════════════════════
    FAQ
══════════════════════════════════════════ */
.faq-section {
    background: var(--ivory);
    padding: 6rem 5vw;
    border-top: 1px solid var(--stone);
}

.faq-list {
    max-width: 760px;
    margin: 3rem auto 0;
}

.faq-item {
    border-bottom: 1px solid var(--stone);
    overflow: hidden;
}

.faq-q {
    width: 100%;
    padding: 1.4rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: 'Raleway', sans-serif;
    font-size: 0.82rem;
    font-weight: 400;
    color: var(--charcoal);
    letter-spacing: 0.03em;
    gap: 1rem;
}

.faq-q span {
    flex: 1;
}

.faq-icon {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1.3rem;
    color: var(--gold);
    flex-shrink: 0;
    transition: transform 0.3s;
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s;
    font-size: 0.78rem;
    color: var(--mid);
    line-height: 2;
    font-weight: 300;
}

.faq-a.open {
    max-height: 4000px;
    padding-bottom: 1.2rem;
}

.faq-icon.open {
    transform: rotate(45deg);
}

/* ══════════════════════════════════════════
    CONTACTO / CTA FINAL
══════════════════════════════════════════ */
.cta-section {
    position: relative;
    padding: 8rem 5vw;
    text-align: center;
    overflow: hidden;
}

.cta-section img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.35) saturate(0.5);
}

.cta-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(26, 22, 20, 0.5);
}

.cta-inner {
    position: relative;
    z-index: 1;
    color: white;
    max-width: 680px;
    margin: 0 auto;
}

.cta-eyebrow {
    font-size: 0.55rem;
    letter-spacing: 0.45em;
    text-transform: uppercase;
    color: var(--gold-light);
    opacity: 0.8;
    margin-bottom: 1rem;
}

.cta-title {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-weight: 300;
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: white;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.cta-body {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 2;
    margin-bottom: 2.5rem;
}

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

.btn-wa {
    padding: 0.9rem 2.2rem;
    background: #25D366;
    color: white;
    text-decoration: none;
    border-radius: 2px;
    font-family: 'Cinzel', serif;
    font-size: 0.62rem;
    letter-spacing: 0.18em;
    transition: background 0.25s;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
}

.btn-wa:hover {
    background: #1ebe5d;
}

.btn-email {
    padding: 0.9rem 2.2rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    text-decoration: none;
    border-radius: 2px;
    font-family: 'Cinzel', serif;
    font-size: 0.62rem;
    letter-spacing: 0.18em;
    transition: all 0.25s;
}

.btn-email:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* ══════════════════════════════════════════
    GARANTÍAS
══════════════════════════════════════════ */
.guarantees-section {
    background: white;
    padding: 4rem 5vw;
    border-top: 1px solid var(--stone);
}

.guarantees-inner {
    max-width: 1060px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 3rem;
}

.guarantee-item {
    text-align: center;
}

.g-icon {
    font-size: 1.4rem;
    opacity: 0.5;
    margin-bottom: 0.5rem;
}

.g-text {
    font-size: 0.68rem;
    color: var(--mid);
    letter-spacing: 0.06em;
}

/* ══════════════════════════════════════════
    FOOTER
══════════════════════════════════════════ */
footer {
    background: var(--dark);
    color: rgba(255, 255, 255, 0.25);
    padding: 3rem 5vw;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.footer-brand {
    font-family: 'Cinzel', serif;
    font-weight: 300;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    color: rgba(255, 255, 255, 0.3);
}

.footer-brand span {
    color: var(--gold);
    opacity: 0.6;
}

.footer-copy {
    font-size: 0.55rem;
    letter-spacing: 0.15em;
}

.footer-link {
    font-size: 0.55rem;
    letter-spacing: 0.15em;
    color: rgba(201, 169, 110, 0.4);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-link:hover {
    color: var(--gold);
}

/* ══════════════════════════════════════════
    RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 900px) {
    .templates-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 460px;
        margin: 3.5rem auto 0;
    }

    .process-steps {
        grid-template-columns: 1fr 1fr;
    }

    .process-step::after {
        display: none;
    }

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

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

    .intro-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .intro-photo {
        aspect-ratio: 16/9;
    }

    .nav-cta {
        display: none;
    }

    .nav-links {
        gap: 1.5rem;
    }

    .nav-links a {
        font-size: 0.52rem;
    }
}

@media (max-width: 600px) {
    nav {
        flex-wrap: wrap;
        height: auto;
        padding: 0.6rem 4vw;
        gap: 0.4rem;
        justify-content: center;
    }

    .nav-logo {
        width: 100%;
        text-align: center;
        font-size: 0.62rem;
    }

    .nav-links {
        gap: 1rem;
        justify-content: center;
    }

    .nav-links a {
        font-size: 0.5rem;
    }

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

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

    .process-steps {
        grid-template-columns: 1fr;
    }

    .addons-table thead {
        display: none;
    }

    .addons-table td {
        display: block;
        padding: 0.5rem 1rem;
    }

    .addons-table tr {
        border-bottom: 2px solid var(--stone);
        padding: 0.5rem 0;
        display: block;
    }
}