:root {
    --wine-darkest: #000000;
    --wine-deep: #000000;
    --wine-mid: #611434;
    --wine-base: #611434;
    --wine-bright: #ae1549;
    --wine-rose: #ae1549;

    --champagne: #e8c97a;
    --champagne-soft: #f3e0b0;
    --champagne-dim: rgba(232, 201, 122, 0.18);

    --white: #ffffff;
    --white-90: rgba(255, 255, 255, 0.90);
    --white-70: rgba(255, 255, 255, 0.70);
    --white-40: rgba(255, 255, 255, 0.40);
    --white-15: rgba(255, 255, 255, 0.15);
    --white-08: rgba(255, 255, 255, 0.08);
    --white-05: rgba(255, 255, 255, 0.05);

    --shadow-card: 0 36px 80px rgba(0, 0, 0, 0.70);
    --shadow-gold: 0 7px 26px rgba(232, 201, 122, 0.38);
    --shadow-wine: 0 8px 28px rgba(174, 21, 73, 0.45);
}

/* ── Reset base ── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

/* BODY — fondo degradado vino profundo*/
body {
    font-family: 'DM Sans', sans-serif;
    background:
        linear-gradient(158deg,
            #000000 0%,
            #000000 20%,
            #611434 60%,
            #ae1549 100%);
    background-attachment: fixed;
    min-height: 100vh;
    color: var(--white-90);
    overflow-x: hidden;
}

/* Textura sutil */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    opacity: .055;
    background-image: url('https://www.transparenttextures.com/patterns/subtle-dark-vertical.png');
    pointer-events: none;
    z-index: 0;
}

/* Resplandor ambient central */
body::after {
    content: '';
    position: fixed;
    top: 35%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 860px;
    height: 560px;
    background: radial-gradient(ellipse, rgba(148, 31, 84, 0.16) 0%, transparent 68%);
    pointer-events: none;
    z-index: 0;
}


/* NAV*/
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 6vw;
    background: rgba(8, 5, 16, 0.52);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(232, 201, 122, 0.12);
    transition: background .35s, border-color .35s;

    height: 88px;
}

nav.scrolled {
    background: rgba(8, 5, 16, 0.94);
    border-bottom-color: rgba(232, 201, 122, 0.22);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 11px;
}

.nav-logo {
    display: flex;
    align-items: center;
}

.nav-logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
    display: block;
}

@media (max-width: 768px) {

    .nav-logo-img {
        height: 42px;
    }

}


.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-links a {
    color: var(--white-70);
    text-decoration: none;
    font-size: .85rem;
    font-weight: 500;
    letter-spacing: .2px;
    transition: color .2s;
    position: relative;
}

/* Subrayado animado en links normales */
.nav-links a:not(.nav-cta)::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--champagne);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .26s ease;
}

.nav-links a:not(.nav-cta):hover {
    color: var(--white);
}

.nav-links a:not(.nav-cta):hover::after {
    transform: scaleX(1);
}

/* CTA nav — botón champán */
.nav-cta {
    background: linear-gradient(135deg, var(--champagne), #c89a3a) !important;
    color: var(--wine-darkest) !important;
    font-weight: 700 !important;
    font-size: .83rem !important;
    padding: 9px 20px;
    border-radius: 10px;
    box-shadow: var(--shadow-gold);
    transition: transform .15s, box-shadow .2s !important;
    letter-spacing: .3px;
}

.nav-cta::after {
    display: none !important;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(232, 201, 122, 0.52) !important;
}

@media (max-width: 640px) {
    .nav-links {
        display: none;
    }
}


/* HERO*/
.hero {
    min-height: 100vh;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 130px 6vw 100px;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 680px;
}

/* Tarjeta glass vino — rica y profunda */
.hero-card {
    background: rgba(24, 7, 18, 0.62);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(232, 201, 122, 0.16);
    border-radius: 32px;
    padding: 52px 48px;
    box-shadow:
        var(--shadow-card),
        inset 0 1px 0 rgba(232, 201, 122, 0.08);
}

@media (max-width: 500px) {
    .hero-card {
        padding: 36px 22px;
    }
}

/* Badge estado */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(232, 201, 122, 0.11);
    border: 1px solid rgba(232, 201, 122, 0.34);
    color: var(--champagne-soft);
    font-size: .73rem;
    font-weight: 700;
    letter-spacing: 1.1px;
    text-transform: uppercase;
    padding: 5px 15px;
    border-radius: 99px;
    margin-bottom: 22px;
    animation: fadeUp .5s .1s ease both;
}

.badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--champagne);
    animation: pulse 1.5s infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.7);
        opacity: .45;
    }
}

/* Título */
h1.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.6rem, 6.5vw, 4.6rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.08;
    margin-bottom: 14px;
    animation: fadeUp .5s .15s ease both;
    text-shadow: 0 4px 24px rgba(0, 0, 0, 0.45);
}

h1.hero-title em {
    font-style: italic;
    color: var(--champagne);
    text-shadow: 0 0 40px rgba(232, 201, 122, 0.32);
}

/* Subtítulo */
.hero-sub {
    font-size: clamp(.88rem, 1.8vw, 1.03rem);
    font-weight: 300;
    color: rgba(245, 225, 235, 0.68);
    max-width: 460px;
    margin: 0 auto 36px;
    line-height: 1.80;
    animation: fadeUp .5s .2s ease both;
}

/* Acciones */
.hero-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeUp .5s .25s ease both;
}

/* ── Botón primario — champán brillante ── */
.btn-gold {
    background: linear-gradient(135deg, var(--champagne), #c89a3a);
    color: var(--wine-darkest);
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: .92rem;
    padding: 14px 30px;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    box-shadow: var(--shadow-gold);
    transition: transform .15s, box-shadow .2s;
    letter-spacing: .2px;
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 38px rgba(232, 201, 122, 0.58);
}

/* ── Botón secundario — glass con borde champán ── */
.btn-glass {
    background: rgba(255, 255, 255, 0.07);
    color: var(--white-90);
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    font-size: .92rem;
    padding: 14px 26px;
    border-radius: 12px;
    border: 1.5px solid rgba(232, 201, 122, 0.22);
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    backdrop-filter: blur(8px);
    transition: background .2s, border-color .2s, transform .15s;
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(232, 201, 122, 0.44);
    transform: translateY(-2px);
}

/* Scroll hint */
.scroll-hint {
    position: absolute;
    bottom: 34px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 7px;
    opacity: .34;
    animation: fadeIn 1.2s 1.2s ease both;
}

.scroll-hint span {
    font-size: .64rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(232, 201, 122, 0.68);
}

.scroll-wheel {
    width: 20px;
    height: 32px;
    border: 2px solid rgba(232, 201, 122, 0.32);
    border-radius: 11px;
    display: flex;
    justify-content: center;
    padding-top: 5px;
}

.scroll-wheel::before {
    content: '';
    width: 4px;
    height: 6px;
    background: rgba(232, 201, 122, 0.52);
    border-radius: 99px;
    animation: scrollDown 1.8s ease infinite;
}

@keyframes scrollDown {
    0% {
        transform: translateY(0);
        opacity: 1;
    }

    75% {
        transform: translateY(8px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 0;
    }
}


/* ═══════════════════════
   STATS BAR
   ═══════════════════════ */
.stats-bar {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    gap: clamp(22px, 5vw, 72px);
    flex-wrap: wrap;
    padding: 32px 6vw;
    background: rgba(8, 3, 12, 0.48);
    backdrop-filter: blur(16px);
    border-top: 1px solid rgba(232, 201, 122, 0.13);
    border-bottom: 1px solid rgba(232, 201, 122, 0.13);
}

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

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.1rem;
    font-weight: 700;
    color: var(--champagne);
    line-height: 1;
    text-shadow: 0 0 28px rgba(232, 201, 122, 0.28);
}

.stat-label {
    font-size: .68rem;
    font-weight: 600;
    color: rgba(240, 210, 225, 0.44);
    letter-spacing: .9px;
    text-transform: uppercase;
    margin-top: 5px;
}


/* ═══════════════════════
   ABOUT
   ═══════════════════════ */
.about {
    position: relative;
    z-index: 1;
    padding: 180px 6vw;
}

.about-inner {
    max-width: 1080px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: start;
}

@media (max-width: 768px) {
    .about-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* Etiqueta de sección */
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: var(--champagne);
    margin-bottom: 14px;
}

.section-label::before {
    content: '';
    width: 20px;
    height: 2px;
    background: linear-gradient(90deg, var(--champagne), transparent);
    border-radius: 99px;
}

/* Texto */
.about-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3.8vw, 2.6rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.16;
    margin-bottom: 18px;
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.30);
}

.about-text h2 em {
    color: var(--champagne);
    font-style: italic;
}

.about-text p {
    font-size: .91rem;
    font-weight: 300;
    line-height: 1.84;
    color: rgba(245, 220, 232, 0.62);
    margin-bottom: 14px;
}

/* Pilares */
.pillars {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.pillar-card {
    background: rgba(24, 7, 18, 0.52);
    border: 1px solid rgba(232, 201, 122, 0.09);
    border-radius: 18px;
    padding: 20px 22px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    backdrop-filter: blur(10px);
    transition: background .26s, border-color .26s, transform .22s, box-shadow .25s;
}

.pillar-card:hover {
    background: rgba(101, 24, 64, 0.38);
    border-color: rgba(232, 201, 122, 0.28);
    transform: translateX(6px);
    box-shadow: 0 10px 32px rgba(148, 31, 84, 0.22);
}

.pillar-icon {
    width: 46px;
    height: 46px;
    border-radius: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, .07);
}

.pi-sport {
    background: rgba(101, 24, 64, 0.55);
}

.pi-culture {
    background: rgba(148, 31, 84, 0.42);
}

.pi-ludic {
    background: rgba(58, 14, 44, 0.60);
}

.pillar-body h4 {
    font-size: .90rem;
    font-weight: 700;
    color: var(--white-90);
    margin-bottom: 4px;
}

.pillar-body p {
    font-size: .80rem;
    color: rgba(240, 205, 220, 0.46);
    line-height: 1.58;
}


/* ═══════════════════════
   REGISTER CTA
   ═══════════════════════ */
.register-cta {
    position: relative;
    z-index: 1;
    padding: 90px 6vw 114px;
    text-align: center;
}

/* Tarjeta CTA — más densa y dramática */
.cta-inner {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(14, 5, 11, 0.68);
    backdrop-filter: blur(26px);
    -webkit-backdrop-filter: blur(26px);
    border: 1px solid rgba(232, 201, 122, 0.20);
    border-radius: 36px;
    padding: 60px 50px;
    box-shadow:
        0 52px 96px rgba(8, 3, 12, 0.65),
        inset 0 1px 0 rgba(232, 201, 122, 0.09);
}

@media (max-width: 520px) {
    .cta-inner {
        padding: 40px 24px;
    }
}

.cta-inner h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.9rem, 4.5vw, 3.1rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.12;
    margin-bottom: 14px;
    text-shadow: 0 4px 24px rgba(0, 0, 0, 0.40);
}

.cta-inner h2 em {
    color: var(--champagne);
    font-style: italic;
}

.cta-inner p {
    font-size: .92rem;
    color: rgba(245, 215, 230, 0.62);
    line-height: 1.78;
    margin-bottom: 28px;
}

/* Badge deadline */
.deadline-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(232, 201, 122, 0.10);
    border: 1px solid rgba(232, 201, 122, 0.26);
    color: var(--champagne-soft);
    font-size: .74rem;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 99px;
    margin-bottom: 28px;
    letter-spacing: .3px;
}

/* Pasos */
.reg-steps {
    display: flex;
    justify-content: center;
    gap: 9px;
    flex-wrap: wrap;
    margin-top: 36px;
}

.reg-step {
    display: flex;
    align-items: center;
    gap: 9px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(232, 201, 122, 0.09);
    border-radius: 11px;
    padding: 10px 15px;
    font-size: .78rem;
    color: rgba(240, 210, 225, 0.55);
    backdrop-filter: blur(6px);
    transition: background .22s, border-color .22s;
}

.reg-step:hover {
    background: rgba(101, 24, 64, 0.28);
    border-color: rgba(232, 201, 122, 0.20);
}

.step-num {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--wine-bright), var(--wine-rose));
    color: var(--white);
    font-size: .7rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 3px 10px rgba(148, 31, 84, 0.42);
}


/* ═══════════════════════
   FOOTER
   ═══════════════════════ */
footer {
    position: relative;
    z-index: 1;
    background: rgba(6, 2, 8, 0.62);
    backdrop-filter: blur(12px);
    border-top: 1px solid rgba(232, 201, 122, 0.09);
    padding: 28px 6vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}

footer p {
    font-size: .74rem;
    color: rgba(225, 185, 205, 0.36);
}

footer strong {
    color: rgba(225, 185, 205, 0.58);
}


/* ═══════════════════════
   KEYFRAMES
   ═══════════════════════ */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(22px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Scroll-reveal */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .75s ease, transform .75s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}


/*Cuenta
/* ═══════════════════════
   COUNTDOWN HERO
   ═══════════════════════ */

.countdown {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-bottom: 34px;
    flex-wrap: wrap;
    animation: fadeUp .5s .22s ease both;
}

.countdown-item {
    min-width: 70px;
    padding: 14px 12px;
    border-radius: 14px;
    text-align: center;

    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(232, 201, 122, 0.18);
    backdrop-filter: blur(10px);

    transition: transform .2s, border-color .2s, box-shadow .2s;
}

.countdown-item:hover {
    transform: translateY(-3px);
    border-color: rgba(232, 201, 122, 0.45);
    box-shadow: 0 10px 28px rgba(232, 201, 122, 0.18);
}

.countdown-item span {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--champagne);
    line-height: 1;
    text-shadow: 0 0 18px rgba(232, 201, 122, 0.25);
}

.countdown-item small {
    font-size: .65rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--white-40);
}


/* Slider
/* ═══════════════════════
   GALLERY / SLIDER
   ═══════════════════════ */
.gallery {
    padding: 180px 6vw;
    text-align: center;
    position: relative;
    z-index: 1;
}

.gallery-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    margin-bottom: 40px;
    color: var(--white);
}

.slider {
    max-width: 860px;
    margin: 0 auto;
    position: relative;
}

.slides {
    position: relative;
    overflow: hidden;
    border-radius: 95px 0px 140px 0px;
    border: 1px solid rgba(232, 201, 122, 0.18);
    background: rgba(20, 6, 15, 0.6);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-card);
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: scale(1.05);
    transition: opacity .6s ease, transform .6s ease;
}

.slide.active {
    opacity: 1;
    transform: scale(1);
    position: relative;
}

.slide img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 95px 0px 140px 0px;
    display: block;
}

.slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(8, 5, 16, 0.85) 0%,
            rgba(8, 5, 16, 0.35) 40%,
            transparent 70%);
    border-radius: 95px 0px 140px 0px;
}

.slide-content {
    position: absolute;
    bottom: 28px;
    left: 32px;
    text-align: left;
    z-index: 2;
    max-width: 60%;
}

.slide-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 5px;
}

.slide-content p {
    font-size: .82rem;
    color: var(--white-70);
}

/* Dots — debajo, centrados */
.slider-dots {
    margin-top: 18px;
    display: flex;
    justify-content: center;
    gap: 6px;
}

.dot {
    width: 28px;
    height: 4px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.2);
    overflow: hidden;
    position: relative;
}

.dot.active {
    background: rgba(255, 255, 255, 0.2);
}

.dot.active::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--champagne);
    animation: progress 4s linear forwards;
}

@keyframes progress {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

/* Responsive */
@media (max-width: 600px) {

    .slides,
    .slide img,
    .slide::after {
        border-radius: 100px 18px 18px 18px;
    }

    .slide img {
        height: 260px;
    }
}

.slide-content {
    position: absolute;
    bottom: 30px;
    left: 30px;
    text-align: left;
    z-index: 2;
    max-width: 60%;
}

.slide-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--white);
    margin-bottom: 6px;
}

.slide-content p {
    font-size: .85rem;
    color: var(--white-70);
}


/* STATS CATEGORIAS
   ═══════════════════════ */

.stats-bar {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    padding: 40px 6vw;

    background: rgba(8, 3, 12, 0.48);
    backdrop-filter: blur(16px);

    border-top: 1px solid rgba(232, 201, 122, 0.13);
    border-bottom: 1px solid rgba(232, 201, 122, 0.13);
}

.stat-item {
    text-align: center;
    width: 90px;
}

/* ICONO */
.stat-icon {
    width: 60px;
    height: 60px;
    border-radius: 18px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin: 0 auto 10px;

    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(232, 201, 122, 0.15);

    backdrop-filter: blur(10px);

    transition: all .25s ease;
}

.stat-icon img {
    width: 36px;
    height: 36px;
    object-fit: contain;
}

/* HOVER */
.stat-item:hover .stat-icon {
    transform: translateY(-6px) scale(1.08);
    border-color: rgba(232, 201, 122, 0.45);

    box-shadow:
        0 12px 30px rgba(232, 201, 122, 0.18),
        0 0 20px rgba(232, 201, 122, 0.15);
}

/* LABEL */
.stat-label {
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .8px;
    text-transform: uppercase;
    color: rgba(240, 210, 225, 0.5);
}

/* RESPONSIVE */
@media (max-width: 600px) {
    .stat-item {
        width: 70px;
    }

    .stat-icon {
        width: 52px;
        height: 52px;
    }
}

.stats-bar-banner {
    margin-top: 88px;
    width: 100%;

    display: flex;
    justify-content: center;
    align-items: center;

    padding: 18px 4vw;

    overflow: hidden;

    background: #ffffff;

    border-top: 1px solid rgba(0, 0, 0, .08);
    border-bottom: 1px solid rgba(0, 0, 0, .08);

    backdrop-filter: none;
}

.stats-pleca {
    width: min(1400px, 100%);
    max-height: 80px;
    object-fit: contain;
    object-position: center;
    opacity: 1;
    filter: none;
    mix-blend-mode: normal;
}

.stats-bar-banner {
    backdrop-filter: blur(14px);
}

.stats-pleca {
    filter: drop-shadow(0 0 18px rgba(0, 0, 0, .25));
}

.stats-pleca {
    width: min(1400px, 100%);
    object-fit: contain;

    opacity: .9;
}

.logo-card {
    display: flex;
    justify-content: center;
    align-items: center;

    margin-bottom: 34px;
}

.hero-main-logo {

    width: 100%;
    max-width: 250px;

    height: auto;

    display: block;

    object-fit: contain;

    opacity: .96;

    filter:
        drop-shadow(0 10px 30px rgba(0, 0, 0, .25));
}

.logo-card {
    width: 100%;

    overflow: hidden;
}


/* Ornamentos */
.hero-ornamento,
.about-ornamento,
.slider-ornamento,
.registro-ornamento {
    position: absolute;
    pointer-events: none;
    user-select: none;
    height: auto;
}


/*  HERO  */
.hero-ornamento {
    opacity: 0.9;
    width: clamp(80px, 15vw, 220px);
}

.hero-ornamento--izq {
    top: -1px;
    left: 0;
}

.hero-ornamento--der {
    bottom: -7px;
    right: 0;
}


/*  ABOUT */
.about-ornamento {
    opacity: 0.9;
    width: clamp(55px, 10vw, 120px);
}

.about-ornamento--sup {
    top: 0;
    right: 0;
    width: clamp(65px, 11vw, 120px);
}

.about-ornamento--inf {
    bottom: 0;
    right: 0;
    width: clamp(50px, 9vw, 85px);
}

.about-ornamento--persona {
    width: clamp(160px, 22vw, 500px);
    top: 40%;
    left: 0;
    transform: translateY(-50%);
    opacity: 0.10;
    filter: brightness(0) invert(1);
}


/*  SLIDER */
.slider-ornamento {
    opacity: 0.9;
    width: clamp(80px, 15vw, 220px);
}

.slider-ornamento--izq {
    top: -1px;
    left: 0;
}

.slider-ornamento--der {
    bottom: -7px;
    right: 0;
}


/* REGISTRO */
.registro-ornamento--persona {
    right: -60px;
    bottom: -30px;
    width: clamp(160px, 28vw, 500px);
    opacity: 0.10;
    filter: brightness(0) invert(1);
}

.registro-ornamento--figura {
    left: 0;
    bottom: clamp(60px, 18vw, 270px);
    width: clamp(70px, 10vw, 180px);
    opacity: 0.85;
}


/* PLECA FOOTER */
.stats-bar-footer {
    width: 100%;
    overflow: hidden;
    line-height: 0;
    margin: 0 0 -28px;
    padding: 0;
    position: relative;
    z-index: 2;
}

.stats-ornamentoFo {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}


/* Responsive */
@media (max-width: 1024px) {
    .about-ornamento--persona {
        width: clamp(120px, 18vw, 300px);
    }

    .registro-ornamento--figura {
        bottom: clamp(40px, 14vw, 180px);
    }
}

@media (max-width: 768px) {

    .hero-ornamento,
    .slider-ornamento {
        width: clamp(65px, 16vw, 120px);
        opacity: 0.75;
    }

    .about-ornamento {
        width: clamp(45px, 10vw, 80px);
        opacity: 0.75;
    }

    .about-ornamento--sup {
        width: clamp(55px, 11vw, 90px);
    }

    .about-ornamento--inf {
        width: clamp(40px, 9vw, 70px);
    }

    .about-ornamento--persona {
        width: clamp(100px, 16vw, 200px);
        opacity: 0.08;
    }

    .registro-ornamento--persona {
        width: clamp(130px, 26vw, 280px);
    }

    .registro-ornamento--figura {
        width: clamp(55px, 9vw, 110px);
        bottom: clamp(30px, 10vw, 120px);
    }
}

@media (max-width: 480px) {

    .hero-ornamento,
    .slider-ornamento {
        width: clamp(55px, 18vw, 90px);
        opacity: 0.70;
    }

    .about-ornamento {
        width: clamp(40px, 12vw, 65px);
        opacity: 0.65;
    }

    .about-ornamento--persona {
        display: none;
    }


    .registro-ornamento--persona {
        width: clamp(110px, 30vw, 200px);
        opacity: 0.08;
    }

    .registro-ornamento--figura {
        display: none;
    }

}

@media (max-width: 375px) {

    .hero-ornamento,
    .slider-ornamento {
        width: 55px;
        opacity: 0.65;
    }

    .about-ornamento {
        width: 45px;
        opacity: 0.60;
    }
}

/* PLECA FOOTER*/
.footer-wrapper {
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
    gap: 0;
}

.stats-bar-footer {
    width: 100%;
    overflow: hidden;
    line-height: 0;
    margin: 0;
    padding: 0;
    position: relative;
    z-index: 2;
}

.stats-ornamentoFo {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

footer {
    margin-top: 0 !important;
}