*,
*::before,
*::after {
    box-sizing: border-box;
}

:root {
    --bg-body: #050816;
    --bg-elevated: #0b1020;
    --bg-card: #0f172a;
    --border-soft: rgba(148, 163, 184, 0.35);
    --accent-pink: #ff6bcb;
    --accent-yellow: #ffbf69;
    --accent-cyan: #22d3ee;
    --accent-purple: #a855f7;
    --text-main: #e5e7eb;
    --text-muted: #9ca3af;
    --text-soft: #6b7280;
    --radius-lg: 18px;
    --radius-xl: 28px;
    --shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.8);
    --shadow-card: 0 14px 30px rgba(15, 23, 42, 0.9);
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background:
        radial-gradient(circle at 0% 0%, rgba(239, 68, 68, 0.18), transparent 55%),
        radial-gradient(circle at 100% 0%, rgba(56, 189, 248, 0.18), transparent 55%),
        radial-gradient(circle at 0% 100%, rgba(250, 204, 21, 0.12), transparent 55%),
        radial-gradient(circle at 100% 100%, rgba(147, 51, 234, 0.22), transparent 55%),
        var(--bg-body);
    color: var(--text-main);
    line-height: 1.6;
}

/* Layout helpers */

.container {
    width: min(1120px, 100% - 2.5rem);
    margin-inline: auto;
    padding-block: 3rem;
}

.section {
    position: relative;
    z-index: 1;
}

/* Header */

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(14px);
    background: linear-gradient(to bottom, rgba(15, 23, 42, 0.96), rgba(15, 23, 42, 0.86));
    border-bottom: 1px solid rgba(148, 163, 184, 0.35);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding-block: 0.95rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-badge {
    width: 40px;
    height: 40px;
    border-radius: 14px;
    background: conic-gradient(from 210deg, #f97316, #ec4899, #6366f1, #22c55e, #f97316);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.95rem;
    color: white;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
}

.logo-img {
    height: 40px;
    width: auto;
    border-radius: 14px;
    display: inline-block;
    object-fit: contain;
    background: transparent;
}



.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-weight: 800;
    letter-spacing: 0.03em;
    font-size: 1.15rem;
}

.logo-domain {
    font-size: 0.75rem;
    color: var(--text-soft);
}

.nav {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    font-size: 0.9rem;
}

.nav a {
    position: relative;
    text-decoration: none;
    color: var(--text-muted);
    padding-block: 0.2rem;
}

.nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.2rem;
    width: 0;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--accent-pink), var(--accent-yellow));
    transition: width 0.18s ease-out;
}

.nav a:hover {
    color: var(--text-main);
}

.nav a:hover::after {
    width: 100%;
}

/* Hero */

.hero {
    padding-block: 3.5rem 3.75rem;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
    gap: 3rem;
    align-items: center;
}

.hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.2rem 0.6rem;
    border-radius: 999px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    background: rgba(15, 23, 42, 0.88);
    border: 1px solid rgba(148, 163, 184, 0.55);
    color: var(--accent-yellow);
}

.hero h1 {
    margin-top: 0.9rem;
    font-size: clamp(2.15rem, 3.1vw + 1.5rem, 3rem);
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.hero h1 span {
    display: block;
    margin-top: 0.6rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--accent-cyan);
    text-transform: uppercase;
    letter-spacing: 0.18em;
}

.hero-lead {
    margin-top: 1.1rem;
    max-width: 34rem;
    color: var(--text-muted);
    font-size: 0.98rem;
}

.hero-bullets {
    margin-top: 1.2rem;
    padding-left: 1.1rem;
    color: var(--text-soft);
    font-size: 0.95rem;
}

.hero-bullets li + li {
    margin-top: 0.2rem;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.6rem;
}

/* Buttons */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.6rem 1.3rem;
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    border: 1px solid transparent;
    transition: transform 0.12s ease-out, box-shadow 0.12s ease-out, background 0.15s ease-out, border-color 0.15s ease-out;
}

.btn-primary {
    background: linear-gradient(135deg, #f97316, #ec4899);
    border-color: rgba(251, 191, 36, 0.75);
    color: #0b1020;
    box-shadow: 0 14px 30px rgba(236, 72, 153, 0.45);
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 18px 40px rgba(236, 72, 153, 0.6);
}

.btn-ghost {
    background: rgba(15, 23, 42, 0.9);
    border-color: rgba(148, 163, 184, 0.6);
    color: var(--text-main);
}

.btn-whatsapp {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    border-color: rgba(34, 197, 94, 0.85);
    color: #022c22;
    box-shadow: 0 14px 30px rgba(22, 163, 74, 0.45);
}

.btn-whatsapp:hover {
    transform: translateY(-1px);
    box-shadow: 0 18px 40px rgba(22, 163, 74, 0.7);
}

.hero-price-line {
    margin-top: 1.3rem;
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0.35rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.hero-price-label {
    font-weight: 500;
}

.hero-price-value {
    font-weight: 700;
    color: var(--accent-yellow);
}

.hero-price-note {
    font-size: 0.85rem;
    color: var(--text-soft);
}



.btn-ghost:hover {
    border-color: var(--accent-cyan);
    background: radial-gradient(circle at 0 0, rgba(56, 189, 248, 0.24), rgba(15, 23, 42, 0.9));
}

.btn-block {
    width: 100%;
}

/* Hero preview stack */

.hero-preview {
    display: flex;
    justify-content: center;
}

.preview-stack {
    position: relative;
    width: min(320px, 100%);
    aspect-ratio: 3 / 4;
    border-radius: var(--radius-xl);
    padding: 1.3rem 1.4rem;
    background: radial-gradient(circle at 0 0, rgba(248, 250, 252, 0.06), transparent 55%),
                radial-gradient(circle at 100% 100%, rgba(248, 250, 252, 0.06), transparent 55%),
                #020617;
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    border: 1px solid rgba(148, 163, 184, 0.45);
}

.preview-card {
    position: absolute;
    border-radius: 18px;
    padding: 0.85rem 0.95rem;
    background: radial-gradient(circle at 0 0, rgba(248, 250, 252, 0.18), transparent 60%), #0b1120;
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(148, 163, 184, 0.5);
}

.preview-card-main {
    inset: 16% 10% 16% 10%;
    display: flex;
    flex-direction: column;
}

.card-category {
    align-self: flex-start;
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.25rem 0.6rem;
    border-radius: 999px;
    background: rgba(17, 24, 39, 0.95);
    border: 1px solid rgba(251, 191, 36, 0.8);
    color: #fbbf24;
}

.preview-card-main h3 {
    margin: 0.75rem 0 0.3rem;
    font-size: 1rem;
}

.preview-card-main p {
    margin: 0;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.preview-card-alt {
    width: 58%;
    font-size: 0.78rem;
}

.preview-card-alt.one {
    bottom: 6%;
    left: -4%;
    transform: rotate(-10deg);
    border-color: rgba(96, 165, 250, 0.9);
}

.preview-card-alt.two {
    top: 4%;
    right: -4%;
    transform: rotate(11deg);
    border-color: rgba(244, 114, 182, 0.9);
}

.preview-fan {
    position: absolute;
    inset: 8% 4% 6% 4%;
    pointer-events: none;
}

.preview-fan-card {
    position: absolute;
    width: 46%;
    max-width: 150px;
    border-radius: 16px;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.9);
    border: 1px solid rgba(148, 163, 184, 0.9);
    object-fit: cover;
}

.preview-fan-card.fan-1 {
    top: 6%;
    left: -6%;
    transform: rotate(-12deg);
}

.preview-fan-card.fan-2 {
    top: 18%;
    right: -10%;
    transform: rotate(11deg);
}

.preview-fan-card.fan-3 {
    bottom: 6%;
    left: 2%;
    transform: rotate(-5deg);
}

.preview-fan-card.fan-4 {
    bottom: 10%;
    right: -4%;
    transform: rotate(7deg);
}

.preview-price-tag {
    position: absolute;
    top: 8%;
    right: 8%;
    z-index: 3;
}

.preview-price-tag span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.25rem 0.7rem;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 700;
    background: rgba(15, 23, 42, 0.96);
    border: 1px solid rgba(251, 191, 36, 0.9);
    color: var(--accent-yellow);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.9);
}



/* Section headers */

.section-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.section-header h2 {
    font-size: 1.5rem;
    letter-spacing: -0.01em;
}

.section-header p {
    margin-top: 0.4rem;
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* How to play */

.howto {
    margin-top: 0.5rem;
}

.howto-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.4rem;
}

.step {
    position: relative;
    padding: 1.1rem 1.05rem 1.1rem 1.1rem;
    border-radius: var(--radius-lg);
    background: rgba(15, 23, 42, 0.96);
    border: 1px solid rgba(148, 163, 184, 0.4);
    box-shadow: 0 14px 35px rgba(15, 23, 42, 0.8);
}

.step-number {
    width: 28px;
    height: 28px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    background: conic-gradient(from 200deg, #22d3ee, #a855f7, #f97316, #22d3ee);
    color: #020617;
    margin-bottom: 0.6rem;
}

.step h3 {
    margin: 0 0 0.25rem;
    font-size: 0.98rem;
}

.step p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-soft);
}

/* Features */

.features {
    margin-top: 0.5rem;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.4rem;
}

.feature {
    padding: 1.15rem 1.1rem;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.94), rgba(15, 23, 42, 0.92));
    border: 1px solid rgba(148, 163, 184, 0.45);
    box-shadow: 0 14px 35px rgba(15, 23, 42, 0.85);
}

.feature h3 {
    margin: 0 0 0.45rem;
    font-size: 1rem;
}

.feature p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-soft);
}

/* Gallery */

.gallery {
    margin-top: 0.75rem;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.2rem;
}

.mood-card {
    padding: 1rem 1rem 1.1rem;
    border-radius: 20px;
    background: radial-gradient(circle at 0 0, rgba(248, 250, 252, 0.06), transparent 60%), #020617;
    border: 1px solid rgba(148, 163, 184, 0.65);
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.9);
}

.card-grid.card-grid-images {
    margin-bottom: 1.4rem;
    grid-template-columns: repeat(5, minmax(0, 1fr));
}


.mood-card-image {
    padding: 0;
}

.mood-card-image-inner {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(148, 163, 184, 0.75);
    background: radial-gradient(circle at 0 0, rgba(248, 250, 252, 0.1), transparent 60%), #020617;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.95);
}

.mood-card-image-inner img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}



.mood-card-category {
    display: inline-flex;
    align-items: center;
    padding: 0.2rem 0.55rem;
    border-radius: 999px;
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    background: rgba(15, 23, 42, 0.95);
    color: var(--accent-yellow);
    border: 1px solid rgba(251, 191, 36, 0.8);
}

.mood-card-title {
    margin: 0.6rem 0 0.25rem;
    font-size: 0.98rem;
}

.mood-card-text {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Final CTA */

.cta-final {
    margin-top: 1rem;
    padding-bottom: 2.5rem;
}

.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 1.4rem 1.5rem;
    border-radius: 1.6rem;
    background: radial-gradient(circle at 0 0, rgba(251, 191, 36, 0.16), transparent 55%),
                radial-gradient(circle at 100% 100%, rgba(59, 130, 246, 0.16), transparent 55%),
                rgba(15, 23, 42, 0.98);
    border: 1px solid rgba(148, 163, 184, 0.6);
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.95);
}

.cta-price-line {
    margin-top: 0.8rem;
    font-size: 0.9rem;
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0.3rem;
    color: var(--text-muted);
}

.cta-price-label {
    font-weight: 500;
}

.cta-price-value {
    font-weight: 700;
    color: var(--accent-yellow);
}

.cta-price-note {
    font-size: 0.85rem;
    color: var(--text-soft);
}

.cta-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.6rem;
}

.cta-whatsapp {
    font-size: 0.88rem;
}

@media (max-width: 900px) {
    .cta-actions {
        align-items: flex-start;
    }
}



.cta-inner h2 {
    margin: 0 0 0.3rem;
    font-size: 1.35rem;
}

.cta-inner p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--text-soft);
}

.pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    font-size: 0.85rem;
    background: rgba(15, 23, 42, 0.9);
    border: 1px solid rgba(148, 163, 184, 0.75);
    color: var(--accent-cyan);
}

/* Footer */

.site-footer {
    margin-top: 1.5rem;
    background: rgba(2, 6, 23, 0.98);
    border-top: 1px solid rgba(148, 163, 184, 0.35);
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 1.1fr);
    gap: 1.8rem;
    padding-block: 2rem;
}

.footer-about h2 {
    margin: 0 0 0.35rem;
    font-size: 1.2rem;
}

.footer-about p {
    margin: 0 0 0.8rem;
    font-size: 0.92rem;
    color: var(--text-soft);
}

.contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.9rem;
}

.contact-list li + li {
    margin-top: 0.25rem;
}

.contact-list span {
    color: var(--text-muted);
    margin-right: 0.25rem;
}

.contact-list a {
    color: var(--accent-cyan);
    text-decoration: none;
}

.contact-list a:hover {
    text-decoration: underline;
}

/* Contact form */

.footer-form {
    align-self: center;
}

.contact-form {
    padding: 1rem 1rem 1.1rem;
    border-radius: 1.2rem;
    background: rgba(15, 23, 42, 0.95);
    border: 1px solid rgba(148, 163, 184, 0.6);
    box-shadow: 0 14px 35px rgba(15, 23, 42, 0.9);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.8rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 0.7rem;
}

.form-group label {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--text-soft);
}

input[type="text"],
input[type="email"],
textarea {
    border-radius: 0.85rem;
    border: 1px solid rgba(148, 163, 184, 0.75);
    background: rgba(15, 23, 42, 0.9);
    color: var(--text-main);
    padding: 0.55rem 0.7rem;
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.15s ease-out, box-shadow 0.15s ease-out, background 0.15s ease-out;
}

input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus {
    border-color: var(--accent-cyan);
    box-shadow: 0 0 0 1px rgba(34, 211, 238, 0.4);
    background: rgba(15, 23, 42, 0.98);
}

textarea {
    resize: vertical;
    min-height: 120px;
}

.alert {
    padding: 0.55rem 0.75rem;
    border-radius: 0.85rem;
    font-size: 0.82rem;
    margin-bottom: 0.7rem;
}

.alert.success {
    background: rgba(34, 197, 94, 0.12);
    border: 1px solid rgba(34, 197, 94, 0.8);
    color: #bbf7d0;
}

/* Footer bottom */

.footer-bottom {
    border-top: 1px solid rgba(15, 23, 42, 0.9);
    padding: 0.75rem 0;
    text-align: center;
    font-size: 0.78rem;
    color: var(--text-soft);
}

/* Responsive */

@media (max-width: 900px) {
    .hero-grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 2.3rem;
    }

    .hero-preview {
        order: -1;
    }

    .howto-grid,
    .feature-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .cta-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-grid {
        grid-template-columns: minmax(0, 1fr);
    }
}

@media (max-width: 640px) {
    .container {
        width: min(100% - 1.8rem, 100%);
        padding-block: 2.1rem;
    }

    .header-inner {
        flex-direction: row;
        align-items: center;
    }

    .nav {
        gap: 0.8rem;
        font-size: 0.8rem;
    }

    .howto-grid,
    .feature-grid,
    .card-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .hero {
        padding-block: 2.4rem 2.6rem;
    }

    .preview-stack {
        width: min(270px, 100%);
    }
}
