:root {
    --ink: #1d1024;
    --plum: #40214e;
    --berry: #7a3b74;
    --lavender: #e4d3ea;
    --peach: #f0b7a6;
    --paper: #fff;
    --soft: #fbf7fb;
    --line: #eadfeb;
    --green: #25d366;
    --shadow: 0 24px 70px rgba(29, 16, 36, 0.14);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: "Poppins", Arial, sans-serif;
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(255, 255, 255, 0.92);
    border-bottom: 1px solid rgba(228, 211, 234, 0.8);
    backdrop-filter: blur(18px);
}

.navbar {
    width: min(1120px, calc(100% - 32px));
    min-height: 82px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}



.brand-mark {
    width: 46px;
    height: 46px;
    display: inline-grid;
    place-items: center;
    color: white;
    background: linear-gradient(135deg, var(--ink), var(--berry) 62%, var(--peach));
    border-radius: 50%;
    font-family: "Playfair Display", serif;
    font-weight: 700;
    box-shadow: 0 12px 30px rgba(122, 59, 116, 0.22);
}

.brand {
    display: flex;
    align-items: center;
    gap: 9px;
    flex-shrink: 0;
}

.brand-logo {
    width: 46px;
    height: 46px;
    display: block;
    object-fit: contain;
    flex-shrink: 0;
}

.brand-mark {
    width: 38px;
    height: 38px;
    display: inline-grid;
    place-items: center;
    color: white;
    background: linear-gradient(135deg, var(--ink), var(--berry));
    border-radius: 50%;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: 0 8px 20px rgba(122, 59, 116, 0.2);
}

.brand-name {
    color: var(--ink);
    font-family: "Playfair Display", Georgia, serif;
    font-size: 1.08rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    white-space: nowrap;
}

.brand-dot {
    color: var(--berry);
    font-size: 1rem;
    font-weight: 700;
    line-height: 1;
}



.nav-links {
    display: flex;
    align-items: center;
    gap: 22px;
    font-size: 0.94rem;
    font-weight: 600;
}

.nav-links a {
    position: relative;
}

.nav-links a:not(.nav-cta)::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -7px;
    width: 0;
    height: 2px;
    background: var(--berry);
    transition: width 0.25s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    padding: 12px 20px;
    color: white;
    background: var(--ink);
    border-radius: 999px;
}

.menu-toggle {
    width: 44px;
    height: 44px;
    display: none;
    padding: 0;
    border: 0;
    background: transparent;
}

.menu-toggle span {
    width: 30px;
    height: 3px;
    display: block;
    margin: 6px auto;
    background: var(--ink);
    border-radius: 999px;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-open .menu-toggle span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.menu-open .menu-toggle span:nth-child(2) {
    opacity: 0;
}

.menu-open .menu-toggle span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

.section-band,
.section-wrap {
    width: min(1120px, calc(100% - 32px));
    margin: 0 auto;
}

.hero {
    position: relative;
    isolation: isolate;
    min-height: auto;
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.78fr);
    align-items: center;
    gap: 54px;
    padding: 36px 0 28px;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 100vw;
    transform: translateX(-50%);
    z-index: -2;
    background:
        linear-gradient(180deg,
            #f1e8f6 0%,
            #f5eef8 44%,
            #fbf8fc 78%,
            #ffffff 100%);
}

.hero::after {
    content: "";
    position: absolute;
    top: 4%;
    left: 50%;
    width: min(920px, 95vw);
    height: 72%;
    transform: translateX(-50%);
    z-index: -1;
    pointer-events: none;
    background:
        radial-gradient(circle at 25% 35%,
            rgba(228, 211, 234, .82),
            transparent 42%),
        radial-gradient(circle at 78% 48%,
            rgba(240, 183, 166, .24),
            transparent 38%);
    filter: blur(18px);
    opacity: .95;
}

.eyebrow {
    margin: 0 0 10px;
    color: var(--berry);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.center {
    text-align: center;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1,
.section-title,
.experience h2,
.about-card h2 {
    font-family: "Playfair Display", Georgia, serif;
    line-height: 1.04;
    letter-spacing: 0;
}

h1 {
    max-width: 720px;
    margin-bottom: 22px;
    font-size: clamp(3rem, 8vw, 6.8rem);
}

.hero-text {
    max-width: 620px;
    color: #5c5261;
    font-size: 1.12rem;
}

.hero-actions,
.card-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.btn {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 22px;
    border: 2px solid transparent;
    border-radius: 999px;
    font-weight: 800;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    color: white;
    background: linear-gradient(135deg, var(--plum), var(--berry));
    box-shadow: 0 14px 34px rgba(64, 33, 78, 0.25);
}

.btn-secondary,
.btn-outline {
    color: var(--plum);
    background: white;
    border-color: var(--lavender);
}

.btn-dark {
    color: white;
    background: var(--ink);
}

.hero-visual {
    display: flex;
    justify-content: center;
}

.invitation-preview {
    width: min(390px, 100%);
    padding: 16px;
    background: linear-gradient(180deg, #ffffff 0%, #fbf7fb 100%);
    border: 1px solid var(--line);
    border-radius: 34px;
    box-shadow: var(--shadow);
    animation: floatPreview 5s ease-in-out infinite;
}

@keyframes floatPreview {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

.preview-top {
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: white;
    padding: 0 18px;
    background: var(--ink);
    border-radius: 22px 22px 8px 8px;
}

.preview-top span {
    font-family: "Playfair Display", serif;
    font-size: 1.45rem;
    font-weight: 700;
}

.preview-photo,
.screen-image,
.ref-image {
    display: grid;
    place-items: center;
    min-height: 245px;
    color: white;
    font-weight: 800;
    text-align: center;
    background:
        linear-gradient(135deg, rgba(29, 16, 36, 0.38), rgba(122, 59, 116, 0.1)),
        linear-gradient(135deg, var(--lavender), var(--peach));
}

.preview-photo {
    margin-top: 12px;
    border-radius: 14px;
}

.preview-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 14px;
    display: block;
}

.preview-card {
    margin-top: -44px;
    padding: 30px 20px 22px;
    background: white;
    border: 1px solid var(--line);
    border-radius: 24px;
    box-shadow: 0 16px 40px rgba(29, 16, 36, 0.12);
}

.script {
    margin: 0;
    color: var(--berry);
    font-family: "Great Vibes", cursive;
    font-size: 2.3rem;
    line-height: 1;
}

.preview-card h2 {
    margin: 8px 0 4px;
    font-size: 1.8rem;
}

.preview-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}

.preview-pills span,
.package-label {
    padding: 8px 12px;
    color: var(--plum);
    background: var(--lavender);
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 800;
}

.trust-strip {
    width: min(1120px, calc(100% - 32px));
    margin: 0 auto 48px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.trust-strip div {
    padding: 20px;
    background: var(--soft);
    border: 1px solid var(--line);
    border-radius: var(--radius-md, 18px);
}
.trust-strip strong {
    display: block;
    font-size: 1.15rem;
}

.trust-strip span,
.section-lead,
.package-desc,
.step p,
.about-card p,
.faq-item p,
.reference-card p,
.experience p {
    color: #625766;
}

.section-wrap {
    padding: 72px 0;
}

.section-title {
    max-width: 760px;
    margin: 0 auto 16px;
    text-align: center;
    font-size: clamp(2.1rem, 5.5vw, 4rem);
}

.section-lead {
    max-width: 700px;
    margin: 0 auto 36px;
    text-align: center;
}

.package-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    align-items: stretch;
}

.package-card {
    position: relative;
    display: flex;
    min-height: 380px;
    flex-direction: column;
    padding: 28px;
    overflow: hidden;
    background: white;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 16px 42px rgba(29, 16, 36, 0.08);
}

.package-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 7px;
    background: linear-gradient(90deg, var(--ink), var(--berry), var(--peach));
}

.package-card.featured {
    color: white;
    background: linear-gradient(150deg, var(--ink), var(--plum) 56%, var(--berry));
    border-color: transparent;
    transform: translateY(-16px);
    box-shadow: 0 30px 80px rgba(64, 33, 78, 0.28);
}

.package-card.featured .package-desc,
.package-card.featured li,
.package-card.featured .old-price {
    color: rgba(255, 255, 255, 0.78);
}

.package-card h3 {
    margin: 22px 0 10px;
    font-size: 1.55rem;
}

.price-row {
    margin: 6px 0 20px;
}

.old-price {
    display: block;
    color: #8a808e;
    text-decoration: line-through;
}

.price-row strong {
    font-size: 3rem;
    line-height: 1;
}

.package-card ul {
    flex: 0;
    margin: 0 0 16px;
    padding: 0;
    list-style: none;
}

.package-features {
    flex: 1;
    margin: 0 0 20px;
}

.package-features summary {
    list-style: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    min-height: 44px;
    padding: 10px 16px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--soft);
    color: var(--plum);
    font-size: .88rem;
    font-weight: 700;
    transition: border-color .2s ease, background .2s ease;
}

.package-features summary::-webkit-details-marker {
    display: none;
}

.package-features summary::after {
    content: "+";
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(122, 59, 116, .1);
    color: var(--berry);
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1;
    transition: transform .25s ease;
}

.package-features[open] summary::after {
    content: "−";
}

.package-features summary:hover {
    border-color: rgba(122, 59, 116, .28);
    background: #fff;
}

.package-features ul {
    margin: 14px 0 0;
    padding: 0;
    list-style: none;
    animation: featuresReveal .25s ease;
}

@keyframes featuresReveal {
    from {
        opacity: 0;
        transform: translateY(-6px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.package-card.featured .package-features summary {
    border-color: rgba(255, 255, 255, .22);
    background: rgba(255, 255, 255, .1);
    color: #fff;
}

.package-card.featured .package-features summary::after {
    background: rgba(255, 255, 255, .16);
    color: #fff;
}

.package-card.featured .package-features summary:hover {
    background: rgba(255, 255, 255, .16);
    border-color: rgba(255, 255, 255, .32);
}

.packages-early {
    padding-top: 24px;
}

@media (max-width: 820px) {
    .hero-visual {
        display: none;
    }

    .hero {
        padding: 22px 0 6px;
        gap: 0;
    }

    .packages-early.section-wrap {
        padding-top: 12px;
    }

    .packages-early .section-lead {
        margin-bottom: 20px;
    }
}

.package-card li {
    position: relative;
    margin: 12px 0;
    padding-left: 28px;
    color: #514858;
}

.package-card li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.45em;
    width: 12px;
    height: 12px;
    background: var(--peach);
    border-radius: 50%;
    box-shadow: 0 0 0 5px rgba(240, 183, 166, 0.22);
}

.featured .btn-outline {
    color: white;
    background: transparent;
    border-color: rgba(255, 255, 255, 0.35);
}

.experience {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.55fr);
    align-items: center;
    gap: 44px;
    padding: 84px max(16px, calc((100vw - 1120px) / 2));
    background: linear-gradient(180deg, #fbf0ed, #fff);
}

.experience h2 {
    max-width: 720px;
    font-size: clamp(2rem, 5vw, 4.2rem);
}

.phone-shell {
    width: min(330px, 100%);
    margin: 0 auto;
    padding: 14px;
    background: var(--ink);
    border-radius: 38px;
    box-shadow: var(--shadow);
}

.phone-screen {
    min-height: 560px;
    padding: 18px;
    background: white;
    border-radius: 28px;
}

.phone-screen h3 {
    margin: 8px 0 20px;
    font-size: 1.75rem;
}

.screen-image {
    min-height: 230px;
    border-radius: 18px;
}

.screen-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 18px;
    display: block;
}

.screen-list {
    display: grid;
    gap: 10px;
}

.screen-list span {
    padding: 14px;
    background: var(--soft);
    border: 1px solid var(--line);
    border-radius: 8px;
    font-weight: 700;
}

.timeline {
    display: grid;
    gap: 16px;
    max-width: 860px;
    margin: 36px auto 0;
}

.step {
    display: grid;
    grid-template-columns: 58px 1fr;
    gap: 18px;
    padding: 22px;
    background: white;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 12px 34px rgba(29, 16, 36, 0.06);
}

.step span {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    color: white;
    background: var(--berry);
    border-radius: 50%;
    font-weight: 900;
}

.step h3 {
    margin-bottom: 4px;
}

.about {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.about-card {
    padding: 34px;
    background: var(--soft);
    border: 1px solid var(--line);
    border-radius: 8px;
}

.about-card h2 {
    font-size: clamp(1.8rem, 3vw, 2.8rem);
}

.faq {
    max-width: 900px;
}

.faq-list {
    display: grid;
    gap: 12px;
}

.faq-item {
    background: white;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 10px 28px rgba(29, 16, 36, 0.06);
}

.faq-item summary {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 22px;
    cursor: pointer;
    font-weight: 800;
}

.faq-item summary::after {
    content: "+";
    color: var(--berry);
    font-size: 1.4rem;
}

.faq-item[open] summary::after {
    content: "-";
}

.faq-item p {
    padding: 0 22px 22px;
}

.reference-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.reference-card {
    overflow: hidden;
    background: white;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 16px 42px rgba(29, 16, 36, 0.08);
}

.reference-card h3,
.reference-card p {
    padding: 0 20px;
}

.reference-card h3 {
    margin-top: 18px;
}

.reference-card p {
    padding-bottom: 22px;
}

.client-avatar {
    width: 68px;
    height: 68px;
    display: grid;
    place-items: center;
    margin: 24px 20px 12px;
    color: white;
    background: linear-gradient(135deg, var(--ink), var(--berry), var(--peach));
    border-radius: 50%;
    font-weight: 900;
    box-shadow: 0 14px 34px rgba(64, 33, 78, 0.18);
}

.stars {
    margin: 0;
    color: var(--peach);
    font-size: 1.05rem;
    letter-spacing: 0.08em;
}

.site-footer {
    padding: 58px max(16px, calc((100vw - 1120px) / 2)) 90px;
    color: white;
    background: #09060b;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 34px;
}

.footer-logo {
    width: 54px;
    height: 54px;
    display: block;
    object-fit: contain;
}

.footer-brand-mark {
    width: 40px;
    height: 40px;
    display: inline-grid;
    place-items: center;
    color: white;
    background: linear-gradient(135deg, var(--berry), #d953c7);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 0.85rem;
    font-weight: 700;
}

.footer-brand-name {
    color: white;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: 0.03em;
}

.footer-brand-dot {
    color: #e96bd6;
    font-size: 1.1rem;
    font-weight: 700;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 26px;
    padding: 28px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.25);
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

.site-footer a {
    display: block;
    margin: 10px 0;
    color: rgba(255, 255, 255, 0.78);
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.social-links a {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    padding: 10px 14px;
    color: var(--ink);
    background: white;
    border-radius: 999px;
    font-weight: 800;
}

.footer-note {
    margin: 26px 0 0;
    color: rgba(255, 255, 255, 0.72);
}

.copyright {
    margin: 12px 0 0;
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.9rem;
}

.whatsapp-float {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 30;
    width: 66px;
    height: 66px;
    display: grid;
    place-items: center;
    color: white;
    background: var(--green);
    border-radius: 50%;
    box-shadow: 0 18px 42px rgba(37, 211, 102, 0.35);
    font-weight: 900;
}

.whatsapp-float svg {
    width: 34px;
    height: 34px;
    display: block;
    fill: currentColor;
}

.whatsapp-float::before {
    content: "";
    position: absolute;
    inset: -8px;
    border: 1px solid rgba(37, 211, 102, 0.45);
    border-radius: 50%;
    animation: pulse 1.8s ease-out infinite;
}

@keyframes pulse {
    from {
        transform: scale(0.84);
        opacity: 1;
    }

    to {
        transform: scale(1.18);
        opacity: 0;
    }
}

.reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 920px) {
    .navbar {
        min-height: 74px;
    }

    .menu-toggle {
        display: block;
    }

    .nav-links {
        position: absolute;
        top: 74px;
        left: 0;
        right: 0;
        display: grid;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        background: white;
        border-bottom: 1px solid var(--line);
        box-shadow: 0 18px 40px rgba(29, 16, 36, 0.1);
        transition: max-height 0.25s ease;
    }

    .menu-open .nav-links {
        max-height: 460px;
    }

    .nav-links a {
        padding: 16px 24px;
    }

    .nav-cta {
        margin: 8px 20px 20px;
        text-align: center;
    }

    .hero,
    .experience,
    .about {
        grid-template-columns: 1fr;
    }

    .hero {
        min-height: auto;
        padding-top: 40px;
    }

    .package-grid,
    .reference-grid {
        grid-template-columns: 1fr;
    }

    .package-card.featured {
        transform: none;
    }

    .trust-strip,
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {

    .section-band,
    .section-wrap,
    .trust-strip {
        width: min(100% - 24px, 1120px);
    }

    h1 {
        font-size: 3.05rem;
    }

    .hero-actions,
    .card-actions {
        display: grid;
    }

    .btn {
        width: 100%;
    }

    .package-card,
    .about-card {
        padding: 22px;
    }

    .step {
        grid-template-columns: 48px 1fr;
        padding: 18px;
    }

    .step span {
        width: 48px;
        height: 48px;
    }

    .whatsapp-float {
        right: 16px;
        bottom: 16px;
        width: 60px;
        height: 60px;
    }

    .brand {
        gap: 6px;
    }

    .brand-logo {
        width: 39px;
        height: 39px;
    }

    .brand-mark {
        width: 32px;
        height: 32px;
        font-size: 0.72rem;
    }

    .brand-name {
        font-size: 0.9rem;
    }

    .brand-dot {
        font-size: 0.85rem;
    }

    .footer-logo {
        width: 46px;
        height: 46px;
    }

    .footer-brand-mark {
        width: 34px;
        height: 34px;
        font-size: 0.72rem;
    }

    .footer-brand-name {
        font-size: 1.1rem;
    }
}

.package-card.custom {
    background: linear-gradient(180deg, #ffffff 0%, #fbf7fb 100%);
    border-color: rgba(122, 59, 116, 0.28);
}

.package-card.custom .price-row strong {
    font-size: 2.45rem;
}

@media (min-width: 921px) {
    .package-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .package-card {
        padding: 24px;
    }

    .package-card h3 {
        font-size: 1.35rem;
    }

    .price-row strong {
        font-size: 2.55rem;
    }
}

.brand-mark,
.footer-brand-mark {
    display: none !important;
}

/* Logo principal del index, solo arriba */
.site-header .brand-logo {
    width: 62px;
    height: 62px;
    object-fit: contain;
}

.site-header .brand {
    gap: 12px;
}

.site-header .brand-name {
    font-size: 1.25rem;
}

/* El logo de abajo se queda discreto */
.footer-logo {
    width: 54px;
    height: 54px;
}

@media (max-width: 700px) {
    .site-header .brand-logo {
        width: 52px;
        height: 52px;
    }

    .site-header .brand-name {
        font-size: 1.05rem;
    }
}

/* Botones del paquete VIP */
.package-card.featured .card-actions {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 12px !important;
    margin-top: auto !important;
}

.package-card.featured .btn,
.package-card.featured .btn-primary,
.package-card.featured .btn-secondary,
.package-card.featured .btn-outline {
    width: 100% !important;
    min-height: 50px !important;
    padding: 12px 18px !important;
    border-radius: 999px !important;
    font-size: 15px !important;
    font-weight: 800 !important;
    text-align: center !important;
    box-shadow: none !important;
    transform: none !important;
}

.package-card.featured .btn-primary {
    background: #ffffff !important;
    color: var(--plum) !important;
    border: 2px solid #ffffff !important;
}

.package-card.featured .btn-outline,
.package-card.featured .btn-secondary {
    background: transparent !important;
    color: #ffffff !important;
    border: 2px solid rgba(255, 255, 255, .42) !important;
}

/* ===================================
   IMÁGENES DE LAS INVITACIONES
=================================== */

/* Evita que cualquier imagen provoque scroll horizontal */
.preview-photo,
.screen-image {
    width: 100%;
    overflow: hidden;
    position: relative;
}

/* Primera imagen: portada principal */
.preview-photo {
    height: 430px;
    margin-top: 12px;
    border-radius: 14px;
    background: #f5edf4;
}

.preview-photo img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center top;
    border-radius: inherit;
}

/* Segunda imagen: dentro del teléfono */
.screen-image {
    width: 100%;
    height: 390px;
    min-height: 0;
    border-radius: 18px;
    background: #f5edf4;
}

.screen-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center top;
    border-radius: inherit;
}

/* El contenido nunca puede salir del teléfono */
.phone-shell,
.phone-screen {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.phone-screen {
    min-height: auto;
}

/* Evita desplazamiento horizontal en toda la página */
html,
body {
    max-width: 100%;
    overflow-x: hidden;
}

@media (max-width: 560px) {

    .invitation-preview {
        width: 100%;
        max-width: 350px;
        padding: 12px;
    }

    .preview-photo {
        height: 390px;
    }

    .preview-card {
        margin-top: -30px;
        padding: 26px 16px 20px;
    }

    .experience-phone {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .phone-shell {
        width: min(100%, 330px);
        padding: 10px;
        border-radius: 32px;
    }

    .phone-screen {
        width: 100%;
        padding: 12px;
        border-radius: 24px;
    }

    .screen-image {
        height: 410px;
        border-radius: 15px;
    }

    .phone-screen h3 {
        margin: 14px 0;
        font-size: 1.4rem;
    }

    .screen-list span {
        padding: 11px;
        font-size: 0.86rem;
    }
}

/* ==================================================
   CORRECCIÓN FINAL DE PORTADAS Y VISTA EN CELULAR
   Pegar hasta el final de styles.css
================================================== */

/* Evita barras horizontales */
html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

/* Vista principal de la invitación */
.invitation-preview {
    width: min(390px, 100%);
    padding: 14px;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 34px;
    box-shadow: 0 24px 70px rgba(29, 16, 36, 0.16);
}

/* Encabezado superior */
.preview-top {
    position: relative;
    z-index: 3;
    height: 54px;
    border-radius: 22px 22px 0 0;
}

/* Contenedor de la primera imagen */
.preview-photo {
    width: 100%;
    height: 420px;
    min-height: 0;
    margin-top: 0;
    overflow: hidden;
    position: relative;
    z-index: 1;
    border-radius: 0;
    background: #f5edf4;
}

/* Imagen principal */
.preview-photo img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center top;
    border-radius: 0;
}

/* Información debajo de la imagen */
.preview-card {
    position: relative;
    z-index: 4;
    width: 100%;
    margin-top: 0;
    padding: 22px 20px 24px;
    background: #ffffff;
    border: 0;
    border-radius: 0 0 24px 24px;
    box-shadow: none;
}

/* Nombre de los festejados */
.preview-card .script {
    margin-bottom: 5px;
    font-size: 2rem;
}

/* Tipo de evento */
.preview-card h2 {
    margin: 5px 0;
    font-size: 1.65rem;
}

/* Fecha */
.preview-card>p:not(.script) {
    margin-bottom: 14px;
    color: #625766;
    font-size: 0.95rem;
}

/* Botones pequeños */
.preview-pills {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-top: 12px;
}

.preview-pills span {
    display: flex;
    min-height: 42px;
    align-items: center;
    justify-content: center;
    padding: 8px 5px;
    text-align: center;
    white-space: nowrap;
    font-size: 0.72rem;
}

/* ==================================================
   SEGUNDA IMAGEN DENTRO DEL TELÉFONO
================================================== */

.experience-phone {
    width: 100%;
    min-width: 0;
}

.phone-shell {
    width: min(330px, 100%);
    max-width: 100%;
    margin: 0 auto;
    padding: 12px;
    overflow: hidden;
    background: var(--ink);
    border-radius: 38px;
    box-shadow: var(--shadow);
}

.phone-screen {
    width: 100%;
    max-width: 100%;
    min-height: auto;
    padding: 14px;
    overflow: hidden;
    background: #ffffff;
    border-radius: 27px;
}

.screen-image {
    width: 100%;
    height: 390px;
    min-height: 0;
    overflow: hidden;
    position: relative;
    border-radius: 18px;
    background: #f5edf4;
}

.screen-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center top;
    border-radius: inherit;
}

.phone-screen h3 {
    margin: 16px 0;
    font-size: 1.5rem;
}

.screen-list {
    display: grid;
    gap: 9px;
}

.screen-list span {
    padding: 12px;
    font-size: 0.88rem;
    text-align: center;
}

/* ==================================================
   TABLET
================================================== */

@media (max-width: 920px) {
    .hero {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        width: 100%;
        margin-top: 15px;
    }

    .invitation-preview {
        width: min(380px, 100%);
        margin: 0 auto;
    }

    .experience {
        grid-template-columns: 1fr;
    }

    .experience-copy {
        text-align: center;
    }

    .experience-copy .btn {
        margin: 0 auto;
    }
}

/* ==================================================
   CELULAR
================================================== */

@media (max-width: 560px) {
    .hero {
        gap: 0;
        padding-top: 24px;
        padding-bottom: 8px;
    }

    .hero::after {
        top: 0;
        width: 120vw;
        height: 78%;
        filter: blur(14px);
    }

    .hero-copy {
        text-align: center;
    }

    .hero-text {
        margin-left: auto;
        margin-right: auto;
        font-size: 1rem;
    }

    .invitation-preview {
        width: 100%;
        max-width: 345px;
        padding: 9px;
        border-radius: 28px;
    }

    .preview-top {
        height: 48px;
        padding: 0 14px;
        border-radius: 19px 19px 0 0;
    }

    .preview-photo {
        height: 390px;
    }

    .preview-card {
        padding: 18px 14px 20px;
        border-radius: 0 0 20px 20px;
    }

    .preview-card .script {
        font-size: 1.75rem;
    }

    .preview-card h2 {
        font-size: 1.4rem;
    }

    .preview-card>p:not(.script) {
        font-size: 0.85rem;
    }

    .preview-pills {
        gap: 6px;
    }

    .preview-pills span {
        min-height: 38px;
        padding: 6px 3px;
        font-size: 0.66rem;
    }

    .experience {
        gap: 30px;
        padding-left: 12px;
        padding-right: 12px;
    }

    .experience-phone {
        display: flex;
        justify-content: center;
    }

    .phone-shell {
        width: min(310px, 100%);
        padding: 9px;
        border-radius: 31px;
    }

    .phone-screen {
        padding: 10px;
        border-radius: 23px;
    }

    .screen-image {
        height: 390px;
        border-radius: 15px;
    }

    .phone-screen h3 {
        margin: 13px 0;
        font-size: 1.25rem;
        text-align: center;
    }

    .screen-list span {
        padding: 10px 7px;
        font-size: 0.78rem;
    }
}

/* Celulares muy pequeños */
@media (max-width: 380px) {
    .preview-photo {
        height: 350px;
    }

    .screen-image {
        height: 350px;
    }

    .preview-pills span {
        font-size: 0.61rem;
    }
}

/* Corrección de botones Ver ejemplo en celular */
.package-card::before {
    pointer-events: none;
}

.package-card .card-actions {
    position: relative;
    z-index: 20;
}

.package-card .card-actions .btn {
    position: relative;
    z-index: 21;
    pointer-events: auto !important;
    touch-action: manipulation;
    -webkit-tap-highlight-color: rgba(122, 59, 116, 0.15);
}

.example-link {
    cursor: pointer;
}

/* =========================================================
   REDES SOCIALES DEL FOOTER
========================================================= */

.site-footer .social-links {
    display: grid;
    gap: 12px;
    margin-top: 14px;
}

.site-footer .social-link {
    width: 100%;
    max-width: 230px;
    min-height: 56px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 16px;
    background: rgba(255, 255, 255, .06);
    color: #fff;
    text-decoration: none;
    transition:
        transform .25s ease,
        background .25s ease,
        border-color .25s ease;
}

.site-footer .social-link:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, .12);
    border-color: rgba(255, 255, 255, .28);
}

.site-footer .social-link svg {
    width: 28px;
    height: 28px;
    flex: 0 0 28px;
    fill: currentColor;
}

.site-footer .social-link span {
    display: grid;
    gap: 2px;
    text-align: left;
}

.site-footer .social-link strong {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
}

.site-footer .social-link small {
    color: rgba(255, 255, 255, .68);
    font-size: 12px;
}

.site-footer .social-instagram {
    color: #f0a3ca;
}

.site-footer .social-facebook {
    color: #8fb7ff;
}

.site-footer .social-whatsapp {
    color: #73d69a;
}

@media (max-width: 700px) {
    .site-footer .social-link {
        max-width: 100%;
    }
}

/* =========================================================
   REFINAMIENTO VISUAL — Index moderno y elegante
========================================================= */

:root {
    --gold: #caa24f;
    --radius-lg: 24px;
    --radius-md: 18px;
}

body {
    -webkit-font-smoothing: antialiased;
    text-rendering: geometricPrecision;
}

body::before,
body::after {
    content: "";
    position: fixed;
    z-index: -1;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(90px);
    opacity: .45;
}

body::before {
    top: -100px;
    right: -60px;
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(228, 211, 234, .9), transparent 70%);
}

body::after {
    bottom: 10%;
    left: -80px;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(240, 183, 166, .55), transparent 72%);
}

.site-header {
    background: rgba(255, 255, 255, .88);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    box-shadow: 0 1px 0 rgba(228, 211, 234, .6);
}

.nav-cta {
    background: linear-gradient(135deg, var(--ink), var(--plum));
    box-shadow: 0 10px 28px rgba(64, 33, 78, .22);
    transition: transform .25s ease, box-shadow .25s ease;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 34px rgba(64, 33, 78, .28);
}

.trust-strip {
    gap: 18px;
    margin: 0 auto 56px;
}

.trust-strip div {
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.trust-strip div:hover {
    transform: translateY(-4px);
    border-color: rgba(122, 59, 116, .22);
    box-shadow: 0 18px 40px rgba(64, 33, 78, .08);
}

.trust-strip strong {
    font-family: "Playfair Display", Georgia, serif;
}

.package-card {
    border-radius: var(--radius-lg);
    transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}

.package-card:not(.featured):hover {
    transform: translateY(-8px);
    border-color: rgba(122, 59, 116, .25);
    box-shadow: 0 28px 60px rgba(64, 33, 78, .14);
}

.package-card.featured {
    border-radius: calc(var(--radius-lg) + 2px);
    box-shadow: 0 32px 80px rgba(64, 33, 78, .32);
}

.package-card.featured:hover {
    transform: translateY(-20px);
    box-shadow: 0 38px 90px rgba(64, 33, 78, .38);
}

.package-label {
    display: inline-block;
    padding: 6px 14px;
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--berry);
    background: rgba(228, 211, 234, .45);
    border-radius: 999px;
}

.package-card.featured .package-label {
    color: rgba(255, 255, 255, .92);
    background: rgba(255, 255, 255, .14);
}

.btn {
    transition: transform .25s ease, box-shadow .25s ease, background .25s ease, border-color .25s ease;
}

.btn-primary {
    background: linear-gradient(135deg, var(--ink) 0%, var(--plum) 55%, var(--berry) 100%);
    box-shadow: 0 12px 28px rgba(64, 33, 78, .22);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 36px rgba(64, 33, 78, .28);
}

.btn-outline:hover {
    border-color: var(--berry);
    color: var(--berry);
    transform: translateY(-2px);
}

.section-title {
    position: relative;
}

.invitation-preview {
    border: 1px solid rgba(234, 223, 235, .95);
    box-shadow:
        0 28px 70px rgba(29, 16, 36, .16),
        0 0 0 1px rgba(255, 255, 255, .5) inset;
}

.step {
    border-radius: var(--radius-md);
    transition: transform .3s ease, box-shadow .3s ease;
}

.step:hover {
    transform: translateX(6px);
    box-shadow: 0 16px 40px rgba(29, 16, 36, .08);
}

.about-card,
.reference-card,
.faq-item {
    border-radius: var(--radius-md);
    transition: transform .3s ease, box-shadow .3s ease;
}

.about-card:hover,
.reference-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 48px rgba(29, 16, 36, .1);
}
