:root {
    --bg: #08090c;
    --bg-soft: #11141a;
    --bg-soft-2: #151922;
    --card: rgba(255,255,255,0.05);
    --card-border: rgba(255,255,255,0.10);
    --text: #ffffff;
    --muted: #c8ced9;
    --red: #d31717;
    --red-2: #9b0d0d;
    --green: #26d19b;
    --gold: #f0b90b;
    --shadow: 0 20px 60px rgba(0,0,0,0.45);
}

html, body {
    background: var(--bg);
    color: var(--text);
    scroll-behavior: smooth;
}

body {
    margin: 0;
    overflow-x: hidden;
}

.container {
    width: min(100% - 24px, 1200px);
    margin-inline: auto;
}

.section-evo .container,
.hero-home .container,
.footer-evo .container {
    max-width: 1200px;
}

.hero-home {
    position: relative;
    min-height: min(100vh, 980px);
    padding: clamp(110px, 10vw, 160px) 0 clamp(70px, 8vw, 110px);
    display: flex;
    align-items: center;
    background:
    linear-gradient(to right, rgba(0,0,0,0.62), rgba(0,0,0,0.35)),
    
    linear-gradient(to top, rgba(9,9,9,1), rgba(9,9,9,0.25)),
    url('/assets/images/Season10/ChatGPT Image 25 de fev. de 2026, 02_12_16.png') center center / cover no-repeat;
}

.hero-home::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(211,23,23,0.10), transparent 48%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 130px 0 90px 0;
}

.eyebrow {
    display: inline-block;
    margin-bottom: 18px;
    padding: 8px 14px;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 999px;
    background: rgba(255,255,255,0.04);
    color: #f2f2f2;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero-title {
    font-size: clamp(2.8rem, 6vw, 5.8rem);
    font-weight: 900;
    line-height: 0.95;
    text-transform: uppercase;
    margin-bottom: 18px;
    color: #fff;
    text-shadow: 0 6px 25px rgba(0,0,0,0.45);
}

.hero-title .accent {
    color: #ff3d3d;
}

.hero-subtitle {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--muted);
    max-width: 760px;
    margin-bottom: 28px;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 30px;
}

.hero-badge {
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    color: #fff;
    font-size: 0.95rem;
    font-weight: 600;
}

.btn-evo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-width: 220px;
    padding: 14px 24px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: 0.25s ease;
    margin-right: 12px;
    margin-bottom: 12px;
}

.btn-evo-primary {
    background: linear-gradient(180deg, #ff2424, #b80d0d);
    color: #fff;
    box-shadow: 0 12px 30px rgba(211,23,23,0.28);
}

.btn-evo-primary:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 16px 36px rgba(211,23,23,0.36);
}

.btn-evo-outline {
    border: 1px solid rgba(255,255,255,0.14);
    background: rgba(255,255,255,0.04);
    color: #fff;
}

.btn-evo-outline:hover {
    color: #fff;
    transform: translateY(-2px);
    background: rgba(255,255,255,0.08);
}

.countdown-box {
    margin-top: 24px;
    display: inline-block;
    padding: 14px 18px;
    border-radius: 16px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.10);
    box-shadow: var(--shadow);
    max-width: 760px;
}

.countdown-timer {
    margin: 0;
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    line-height: 1.6;
}

.section-evo {
    padding: 90px 0;
    position: relative;
}

.section-dark {
    background: var(--bg);
}

.section-soft {
    background: linear-gradient(180deg, #0e1015 0%, #151922 100%);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    text-transform: uppercase;
    font-weight: 900;
    margin-bottom: 14px;
    text-align: center;
}

.section-title .accent {
    color: var(--red);
}

.section-text {
    max-width: 860px;
    margin: 0 auto 45px auto;
    color: var(--muted);
    text-align: center;
    line-height: 1.8;
    font-size: 1.05rem;
}

.server-card {
    height: 100%;
    padding: 30px 24px;
    border-radius: 24px;
    background: var(--card);
    border: 1px solid var(--card-border);
    box-shadow: var(--shadow);
    transition: 0.25s ease;
    position: relative;
    overflow: hidden;
}

.server-card:hover {
    transform: translateY(-8px);
}

.server-card.red:hover {
    border-color: rgba(211,23,23,0.35);
}

.server-card.green:hover {
    border-color: rgba(38,209,155,0.35);
}

.server-card.gold:hover {
    border-color: rgba(240,185,11,0.35);
}

.server-icon {
    width: 62px;
    height: 62px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 18px;
}

.server-card.red .server-icon {
    background: linear-gradient(180deg, rgba(211,23,23,0.24), rgba(211,23,23,0.10));
    color: #ff4b4b;
}

.server-card.green .server-icon {
    background: linear-gradient(180deg, rgba(38,209,155,0.24), rgba(38,209,155,0.10));
    color: #6bffd0;
}

.server-card.gold .server-icon {
    background: linear-gradient(180deg, rgba(240,185,11,0.24), rgba(240,185,11,0.10));
    color: #ffd34d;
}

.server-card h3 {
    font-size: 1.3rem;
    font-weight: 900;
    margin-bottom: 12px;
    color: #fff;
    text-transform: uppercase;
}

.server-card p {
    color: var(--muted);
    line-height: 1.75;
    font-size: 0.98rem;
    margin-bottom: 18px;
}

.server-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 18px;
}

.server-tags span {
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 0.88rem;
    font-weight: 700;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    color: #fff;
}

.server-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 800;
    text-transform: uppercase;
    text-decoration: none;
}

.server-card.red .server-link {
    color: #ff4b4b;
}

.server-card.green .server-link {
    color: #6bffd0;
}

.server-card.gold .server-link {
    color: #ffd34d;
}

.showcase-box {
    background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.03));
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 24px;
    padding: 22px;
    box-shadow: var(--shadow);
}

.carousel-inner,
.carousel-item,
.carousel-item img {
    border-radius: 18px;
}

.carousel-item img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    background: #000;
}

.carousel-caption {
    background: linear-gradient(to top, rgba(0,0,0,0.72), rgba(0,0,0,0));
    left: 0;
    right: 0;
    bottom: 0;
    padding: 80px 20px 26px 20px;
    border-radius: 0 0 18px 18px;
}

.carousel-caption h5 {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 800;
    text-shadow: 0 3px 12px rgba(0,0,0,0.45);
}

.faq-wrap .card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 18px !important;
    margin-bottom: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.faq-wrap .card-header {
    background: transparent;
    border: 0;
    padding: 0;
}

.faq-wrap .panel-title {
    display: block;
    padding: 20px 22px;
    text-decoration: none;
    color: #fff !important;
}

.faq-wrap h4 {
    color: #fff;
    margin: 0;
    font-size: 1.05rem;
    font-weight: 800;
}

.faq-wrap .panel-body {
    color: var(--muted);
    background: rgba(255,255,255,0.02);
}

.faq-wrap .panel-text {
    color: var(--muted) !important;
    line-height: 1.8;
}

.faq-wrap .mbr-figure img {
    border-radius: 14px;
    box-shadow: var(--shadow);
}

.feature-mini {
    height: 100%;
    padding: 24px 18px;
    border-radius: 20px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    text-align: center;
    box-shadow: var(--shadow);
}

.feature-mini span {
    font-size: 30px;
    margin-bottom: 14px;
    display: inline-block;
    color: #d31717 !important;
}

.feature-mini h4 {
    color: #fff !important;
    font-size: 1rem;
    font-weight: 800;
    margin-bottom: 0;
}

.cta-home {
    border-radius: 28px;
    padding: 50px 30px;
    text-align: center;
    background:
        linear-gradient(135deg, rgba(211,23,23,0.20), rgba(255,255,255,0.04)),
        #131722;
    border: 1px solid rgba(255,255,255,0.10);
    box-shadow: var(--shadow);
}

.cta-home h3 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.cta-home p {
    color: var(--muted);
    max-width: 760px;
    margin: 0 auto 28px auto;
    line-height: 1.8;
}

.footer-evo {
    padding: 38px 0;
    border-top: 1px solid rgba(255,255,255,0.06);
    background: #080b10;
}

.footer-evo p {
    margin: 0;
    color: #bfc5cf;
    text-align: center;
    line-height: 1.8;
}

.footer-evo a {
    color: #ff4b4b;
    text-decoration: none;
}

.corner-ribbon {
    position: fixed;
    top: 80px;
    right: -40px;
    padding: 12px 60px;
    transform: rotate(45deg);
    background: linear-gradient(180deg, #ff2424, #b80d0d);
    color: #fff;
    font-weight: 900;
    font-size: 14px;
    text-align: center;
    box-shadow: 0 10px 24px rgba(0,0,0,0.35);
    z-index: 9999;
}

.icon-bar .youtube {
    background: #ff0000;
    border-radius: 12px 0 0 12px;
}

@media (max-width: 991px) {
    .hero-home {
        min-height: auto;
        padding-top: 80px;
    }

    .hero-content {
        padding: 90px 0 70px 0;
    }

    .carousel-item img {
        height: 420px;
    }

    .faq-wrap .mbr-figure {
        width: 100% !important;
        margin-bottom: 20px;
    }
}

@media (max-width: 575px) {
    .hero-title {
        font-size: 2.3rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .btn-evo {
        width: 100%;
        margin-right: 0;
    }

    .carousel-item img {
        height: 250px;
    }

    .section-evo {
        padding: 70px 0;
    }

    .countdown-timer {
        font-size: 0.92rem;
    }
}


.dropdown-menu {
    border: none;
}

.dropdown-item:active {
    background: rgba(255,255,255,0.08) !important;
    color: #fff !important;
}

.btn:focus,
.btn:active,
.nav-link:focus,
.dropdown-item:focus {
    box-shadow: none !important;
    outline: none !important;
}