:root {
    --bg: #060407;
    --bg-2: #221932;
    --card: rgba(34, 25, 50, 0.65);
    --card-strong: rgba(34, 25, 50, 0.86);
    --primary: #722548;
    --primary-2: #541533;
    --accent: #9882B9;
    --text: #ffffff;
    --text-soft: rgba(255, 255, 255, 0.76);
    --line: rgba(152, 130, 185, 0.16);
    --shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
    --radius-xl: 28px;
    --radius-lg: 22px;
    --radius-md: 16px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    min-height: 100vh;
    max-width: 100%;
    background:
        radial-gradient(circle at top left, rgba(114, 37, 72, 0.20), transparent 30%),
        radial-gradient(circle at top right, rgba(152, 130, 185, 0.14), transparent 28%),
        linear-gradient(180deg, #0b0710 0%, var(--bg) 100%);
    color: var(--text);
    font-family: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    opacity: 0;
    transition: opacity 0.8s ease;
    overflow-x: hidden;
        overflow-y: auto;
}


body.loaded {
    opacity: 1;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ================= HEADER ================= */
.site-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px clamp(20px, 4vw, 60px);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--text);
    font-weight: 700;
    letter-spacing: 0.2px;
}

.brand-mark {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    box-shadow: 0 0 18px rgba(152, 130, 185, 0.42);
    flex: 0 0 auto;
}

.brand-text {
    font-size: 1.05rem;
}

.site-nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

.site-nav a {
    padding: 11px 16px;
    border-radius: 999px;
    color: var(--text-soft);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid transparent;
    transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.site-nav a:hover,
.site-nav a.active {
    color: var(--text);
    background: rgba(114, 37, 72, 0.26);
    border-color: rgba(152, 130, 185, 0.18);
    transform: translateY(-1px);
}

/* ================= HERO ================= */
.hero {
    padding: 56px clamp(20px, 4vw, 60px) 10px;
    text-align: center;
    max-width: 980px;
    margin: 0 auto;
}

.hero h1 {
    font-size: clamp(2.1rem, 4vw, 4rem);
    line-height: 1.05;
    margin-bottom: 16px;
}

.hero p {
    color: var(--text-soft);
    line-height: 1.8;
    max-width: 720px;
    margin: 0 auto;
    font-size: 1.02rem;
}

/* ================= ACTION BUTTONS ================= */
.header {
    text-align: center;
    padding: 40px 20px 10px;
}

.header-actions {
    margin-top: 20px;
}

.btn-primary {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    font-weight: 600;
    letter-spacing: 0.3px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
    box-shadow: 0 10px 25px rgba(114, 37, 72, 0.35);
}

.btn-primary:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 15px 35px rgba(152, 130, 185, 0.5);
}

.cta-final {
    text-align: center;
    margin: 80px 0;
}

/* ================= GRID ================= */
.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    padding: 30px clamp(20px, 4vw, 60px);
}

/* ================= PRICING ================= */
.pricing {
    padding: 70px clamp(20px, 4vw, 60px) 30px;
    perspective: 1200px;
}

.section-title {
    text-align: center;
    font-size: clamp(1.7rem, 3vw, 2.5rem);
    margin-bottom: 36px;
}

.pricing-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    max-width: 1180px;
    margin: 0 auto 34px;
    padding: 18px;
    border: 1px solid rgba(152, 130, 185, 0.16);
    border-radius: var(--radius-lg);
    background: rgba(34, 25, 50, 0.56);
    backdrop-filter: blur(18px);
    box-shadow: 0 16px 38px rgba(0, 0, 0, 0.22);
}

.control-label,
.group-kicker {
    display: block;
    margin-bottom: 6px;
    color: var(--accent);
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.pricing-controls p {
    color: var(--text-soft);
    line-height: 1.6;
}

.currency-switch {
    display: grid;
    grid-template-columns: repeat(2, minmax(78px, 1fr));
    gap: 6px;
    padding: 6px;
    border: 1px solid rgba(152, 130, 185, 0.14);
    border-radius: 999px;
    background: rgba(6, 4, 7, 0.58);
    flex: 0 0 auto;
}

.currency-option {
    min-height: 42px;
    padding: 0 18px;
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: var(--text-soft);
    cursor: pointer;
    font: inherit;
    font-weight: 800;
    transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.currency-option:hover,
.currency-option.active {
    color: #fff;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    box-shadow: 0 10px 24px rgba(114, 37, 72, 0.24);
    transform: translateY(-1px);
}

.pricing-groups {
    display: grid;
    gap: 48px;
    max-width: 1240px;
    min-width: 0;
    margin: 0 auto;
}

.pricing-group {
    display: grid;
    gap: 20px;
    min-width: 0;
}

.pricing-group-header {
    max-width: 820px;
}

.pricing-group-header h3 {
    margin-bottom: 10px;
    font-size: clamp(1.45rem, 3vw, 2.3rem);
}

.pricing-group-header p {
    color: var(--text-soft);
    line-height: 1.75;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
    gap: 30px;
    align-items: stretch;
    min-width: 0;
}

.price-card {
    position: relative;
    border-radius: var(--radius-xl);
    transform-style: preserve-3d;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    min-width: 0;
    min-height: 100%;
    will-change: transform;
}

.price-card:hover {
    box-shadow: var(--shadow);
}

.card-glow {
    position: absolute;
    inset: 0;
    border-radius: var(--radius-xl);
    background: radial-gradient(circle at center, rgba(152, 130, 185, 0.24), transparent 62%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.price-card:hover .card-glow {
    opacity: 1;
}

.card-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    min-width: 0;
    height: 100%;
    padding: 30px 26px 28px;
    border-radius: var(--radius-xl);
    background:
        linear-gradient(180deg, rgba(34, 25, 50, 0.72), rgba(34, 25, 50, 0.58)),
        rgba(34, 25, 50, 0.58);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(152, 130, 185, 0.16);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
    transform: translateZ(40px);
    overflow: hidden;
    will-change: transform;
}

.price-card.featured .card-content {
    border-color: rgba(152, 130, 185, 0.38);
    box-shadow: 0 26px 60px rgba(0, 0, 0, 0.45);
}

.icon {
    display: inline-grid;
    width: 58px;
    height: 58px;
    margin: 0 auto 14px;
    border-radius: 18px;
    place-items: center;
    color: #fff;
    font-size: 0.86rem;
    font-weight: 900;
    letter-spacing: 0.03em;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(152, 130, 185, 0.14);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.price-card h3,
.price-card h4 {
    font-size: 1.35rem;
    margin-bottom: 8px;
    text-align: center;
}

.price {
    font-size: clamp(1.55rem, 3vw, 2.15rem);
    font-weight: 800;
    margin: 6px 0 10px;
    text-align: center;
    letter-spacing: -0.02em;
    line-height: 1.14;
}

.price-value {
    color: #fff;
}

.price-approx {
    display: inline-block;
    margin-left: 4px;
    color: var(--accent);
    font-size: 0.92rem;
    font-weight: 800;
    letter-spacing: 0;
}

.desc {
    color: var(--text-soft);
    margin-bottom: 18px;
    text-align: center;
    line-height: 1.6;
}

.price-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 22px;
    flex: 1;
}

.price-card li {
    position: relative;
    padding-left: 22px;
    margin: 10px 0;
    color: rgba(255, 255, 255, 0.84);
    line-height: 1.55;
}

.price-card li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.7em;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    box-shadow: 0 0 12px rgba(152, 130, 185, 0.35);
    transform: translateY(-50%);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px 18px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #fff;
    font-weight: 600;
    border: 0;
    transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
    box-shadow: 0 12px 28px rgba(114, 37, 72, 0.24);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 36px rgba(152, 130, 185, 0.25);
    filter: brightness(1.05);
}

.badge {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 3;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: #fff;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    box-shadow: 0 10px 24px rgba(114, 37, 72, 0.25);
}

.pricing-note {
    max-width: 1180px;
    margin: 42px auto 0;
    padding: 20px 22px;
    border: 1px solid rgba(152, 130, 185, 0.18);
    border-radius: var(--radius-lg);
    background:
        linear-gradient(135deg, rgba(114, 37, 72, 0.22), rgba(34, 25, 50, 0.68)),
        rgba(255, 255, 255, 0.03);
    color: var(--text-soft);
    line-height: 1.75;
}

.pricing-note strong {
    color: #fff;
}

.pricing-note a {
    display: inline-flex;
    margin-left: 8px;
    color: var(--accent);
    font-size: 0.88rem;
    font-weight: 800;
}

/* ================= EXTRAS ================= */
.extras {
    padding: 30px clamp(20px, 4vw, 60px) 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.extras h2 {
    text-align: center;
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    margin-bottom: 26px;
}

.extras-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 18px;
}

.extra-card {
    padding: 22px 20px;
    border-radius: var(--radius-lg);
    background: rgba(34, 25, 50, 0.58);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(152, 130, 185, 0.12);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
}

.extra-card h4 {
    margin-bottom: 10px;
    font-size: 1.05rem;
}

.extra-card p {
    color: var(--text-soft);
    line-height: 1.75;
}

/* ================= FOOTER ================= */
.footer {
    position: relative;
    margin-top: 80px;
    padding: 60px 60px 24px;
    background: linear-gradient(180deg, rgba(6, 4, 7, 0.96), rgba(34, 25, 50, 0.98));
    border-top: 1px solid rgba(152, 130, 185, 0.16);
    overflow: hidden;
}

.footer::before,
.footer::after,
.footer-glow {
    content: "";
    position: absolute;
    border-radius: 50%;
    filter: blur(70px);
    pointer-events: none;
    opacity: 0.22;
}

.footer::before,
.footer-glow-1 {
    width: 260px;
    height: 260px;
    background: #722548;
    top: -80px;
    left: -80px;
}

.footer::after,
.footer-glow-2 {
    width: 300px;
    height: 300px;
    background: #9882B9;
    right: -120px;
    bottom: -120px;
}

.footer-container,
.footer-bottom {
    position: relative;
    z-index: 1;
    min-width: 0;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.3fr 0.8fr 1fr;
    gap: 40px;
    align-items: start;
}

.footer-brand-top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.footer-brand h3 {
    font-size: 1.3rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.8;
    max-width: 36ch;
}

.footer h4 {
    color: var(--accent);
    margin-bottom: 14px;
}

.footer-links a,
.contact-link {
    display: flex;
    align-items: center;
    gap: 12px;
    width: fit-content;
    max-width: 100%;
    color: rgba(255, 255, 255, 0.78);
    text-decoration: none;
    margin-bottom: 10px;
    transition: transform 0.25s ease, color 0.25s ease, filter 0.25s ease;
}

.contact-link span:last-child {
    min-width: 0;
    overflow-wrap: anywhere;
}

.footer-links a:hover,
.contact-link:hover {
    color: #ffffff;
    transform: translateX(6px);
    filter: drop-shadow(0 0 10px rgba(152, 130, 185, 0.35));
}

.icon-wrap,
.whatsapp-icon {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(152, 130, 185, 0.14);
    box-shadow: 0 0 0 rgba(152, 130, 185, 0);
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
    flex: 0 0 auto;
}

.icon-wrap svg,
.whatsapp-icon svg {
    width: 18px;
    height: 18px;
    fill: #9882B9;
    transition: transform 0.25s ease, fill 0.25s ease;
}

.contact-link:hover .icon-wrap,
.whatsapp-float:hover .whatsapp-icon {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 0 18px rgba(152, 130, 185, 0.28);
    background: rgba(114, 37, 72, 0.22);
}

.contact-link:hover svg,
.whatsapp-float:hover svg {
    fill: #ffffff;
    transform: rotate(-6deg) scale(1.04);
}

.footer-bottom {
    margin-top: 34px;
    padding-top: 16px;
    text-align: center;
    border-top: 1px solid rgba(152, 130, 185, 0.10);
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.88rem;
}

.whatsapp-float {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    z-index: 999;
    background: linear-gradient(135deg, #722548, #9882B9);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
}

.whatsapp-pulse {
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    border: 1px solid rgba(152, 130, 185, 0.25);
    animation: pulse 1.9s infinite;
}

.whatsapp-float:hover {
    transform: translateY(-3px) scale(1.04);
}

.whatsapp-float:hover .whatsapp-icon {
    background: rgba(255, 255, 255, 0.10);
}

/* ================= ANIMATIONS ================= */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

@keyframes pulse {
    0% {
        transform: scale(0.85);
        opacity: 0.8;
    }

    70% {
        transform: scale(1.12);
        opacity: 0;
    }

    100% {
        transform: scale(1.12);
        opacity: 0;
    }
}

/* ================= RESPONSIVE ================= */
@media (max-width: 980px) {
    .footer-container {
        grid-template-columns: 1fr;
    }

    .card-content {
        transform: none;
    }
}

@media (max-width: 900px) {
    .footer {
        padding: 50px 20px 24px;
    }
}

@media (max-width: 720px) {
    .site-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .site-nav {
        display: grid;
        grid-template-columns: 1fr;
        width: 100%;
    }

    .site-nav a {
        width: 100%;
        text-align: center;
    }

    .hero {
        padding-top: 40px;
    }

    .hero h1 {
        max-width: 12ch;
        margin-inline: auto;
        overflow-wrap: break-word;
    }

    .hero p,
    .pricing-group-header p,
    .pricing-controls p {
        max-width: 34ch;
        overflow-wrap: break-word;
    }

    .pricing {
        padding-top: 50px;
    }

    .pricing-controls {
        flex-direction: column;
        align-items: stretch;
        margin-bottom: 28px;
    }

    .currency-switch {
        width: 100%;
        border-radius: var(--radius-md);
    }

    .pricing-groups {
        gap: 38px;
    }

    .pricing-grid {
        gap: 22px;
    }

    .price {
        font-size: 2rem;
    }

    .pricing-note a {
        display: block;
        width: fit-content;
        margin: 8px 0 0;
    }

    .footer-brand p {
        max-width: none;
    }
}

@media (max-width: 430px) {
    .hero h1 {
        font-size: clamp(1.85rem, 8vw, 2.2rem);
    }

    .card-content {
        padding: 26px 20px 24px;
    }

    .price {
        font-size: 1.75rem;
    }
}
