/* ===== RESET ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Outfit", sans-serif;
    background: #0d0f23;
    color: #fff;
}

/* ===== LINKS ===== */
a {
    text-decoration: none;
    color: inherit;
}

/* ===== CONTAINER GERAL ===== */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* ===== HERO ===== */
.hero {
    padding: 80px 0 60px;
    text-align: center;
}

.hero h1 {
    font-size: 3.4rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 0 0 18px rgba(140, 180, 255, 0.9);
}

.hero-subtitle {
    margin-top: 20px;
    font-size: 1.15rem;
    opacity: 0.85;
}

/* ===== VIDEO WRAPPER ===== */
.video-wrapper {
    width: 100%;
    max-width: 900px;
    margin: 30px auto 10px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.6), 0 0 35px rgba(90, 120, 255, 0.5);
    border: 2px solid rgba(130, 170, 255, 0.7);
}

/* ===== TITULOS DE SEÇÃO ===== */
.section-title {
    font-size: 2.4rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 45px;
}

/* ===== BOTÃO 3D FORTNITE ===== */
.btn-3d {
    position: relative;
    display: inline-block;
    background: linear-gradient(135deg, #4c74ff, #8b9dff);
    padding: 15px 38px;
    border-radius: 14px;
    font-size: 1.15rem;
    font-weight: 700;
    color: #ffffff;
    margin-top: 25px;
    box-shadow: 0 5px 0 #1f2baa, 0 0 18px rgba(90, 120, 255, 0.9);
    transition: all 0.18s ease;
}

.btn-3d::before {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    width: 90%;
    height: 16px;
    background: rgba(90, 120, 255, 0.8);
    filter: blur(18px);
    transform: translateX(-50%);
    border-radius: 50%;
    z-index: -1;
}

.btn-3d:hover {
    transform: translateY(-3px);
    box-shadow: 0 9px 22px rgba(90, 120, 255, 1);
}

.btn-3d:active {
    transform: translateY(4px);
    box-shadow: 0 0px 0 #1f2baa;
}

/* ===== PACKAGES SECTION ===== */
.packages-section {
    padding: 60px 0 70px;
}

.packages-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

/* ===== CARD DOS PACOTES ===== */
.package-card {
    position: relative;
    width: 320px;
    min-height: 650px;
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(12px) saturate(180%);
    padding: 26px 26px 35px;
    border-radius: 22px;
    box-shadow: 0 0 24px rgba(0, 0, 0, 0.45);
    text-align: center;
    transition: transform 0.22s ease, box-shadow 0.22s ease;
    overflow: hidden;
}

/* ===== efeito glow atrás do card ===== */
.package-card::before {
    content: "";
    position: absolute;
    top: -40%;
    left: -40%;
    width: 180%;
    height: 180%;
    background: radial-gradient(circle, rgba(72, 106, 255, 0.32), rgba(0, 0, 0, 0));
    z-index: -1;
    filter: blur(35px);
    transition: 0.4s ease;
}

.package-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 0 36px rgba(0, 0, 0, 0.7);
}

.package-card:hover::before {
    transform: scale(1.2);
    opacity: 0.95;
}

/* ===== imagens dos pacotes ===== */
.package-img {
    width: 100%;
    max-height: 460px;
    border-radius: 18px;
    object-fit: cover;
    margin-bottom: 18px;
    box-shadow: 0 0 26px rgba(110, 140, 255, 0.45);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.package-card:hover .package-img {
    transform: scale(1.05);
    box-shadow: 0 0 40px rgba(110, 140, 255, 0.9);
}

/* ===== TÍTULO DO PACOTE ===== */
.package-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 4px;
}

/* ===== SUBTÍTULO DO PACOTE ===== */
.package-subtitle {
    display: block;
    font-size: 0.82rem;
    font-weight: 400;
    opacity: 0.75;
    margin-bottom: 14px;
    letter-spacing: 0.2px;
    margin-top: -2px;
}

/* ===== RARIDADE FORTNITE ===== */
.package-card:nth-child(1) {
    border: 2px solid rgba(190, 190, 190, 0.4);
}

.package-card:nth-child(2) {
    border: 2px solid rgba(0, 126, 255, 0.75);
    box-shadow: 0 0 22px rgba(0, 126, 255, 0.6);
}

.package-card:nth-child(3) {
    border: 2px solid rgba(170, 80, 255, 0.8);
    box-shadow: 0 0 26px rgba(170, 80, 255, 0.75);
}

.package-card:nth-child(4) {
    border: 2px solid rgba(255, 200, 60, 0.95);
    box-shadow: 0 0 32px rgba(255, 200, 60, 0.9);
    transform: scale(1.05);
}

.package-card:nth-child(4):hover {
    transform: translateY(-10px) scale(1.08);
}

/* ===== MODULES SECTION ===== */
.modules-section {
    padding: 70px 0 60px;
}

.modules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

.module-block {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 0 18px rgba(0, 0, 0, 0.35);
}

.module-block h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.module-block ul {
    list-style: disc;
    margin-left: 18px;
    font-size: 0.96rem;
    opacity: 0.9;
}

.module-block li+li {
    margin-top: 4px;
}

.module-block.special {
    border: 2px solid #6b8bff;
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: 80px 0 70px;
    text-align: center;
}

.cta-section h2 {
    font-size: 2rem;
    margin-bottom: 18px;
}

/* ===== FOOTER ===== */
footer {
    text-align: center;
    padding: 25px 0 35px;
    opacity: 0.6;
    font-size: 0.9rem;
}

/* ===== ESTRELAS CANVAS ===== */
#stars-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: radial-gradient(circle at center, #101333, #090b1f, #050616);
}

/* ===== TOP BAR SOCIAL ===== */
.top-bar {
    background: #070a18;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    position: sticky;
    top: 0;
    z-index: 999;
}

.top-bar-inner {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 8px 0;
}

.top-socials {
    display: flex;
    gap: 14px;
    align-items: center;
    font-size: 1.2rem;
}

.top-socials a {
    color: #ffffff;
    opacity: 0.85;
    transition: 0.2s ease;
}

.top-socials a:hover {
    opacity: 1;
    transform: translateY(-2px) scale(1.05);
    filter: drop-shadow(0 0 6px rgba(88, 101, 242, 0.6));
}

/* ===== SEÇÃO DE RESULTADOS ===== */
.results-section {
    padding: 60px 0 40px;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 2rem;
}

@media (max-width: 960px) {
    .results-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 650px) {
    .results-grid {
        grid-template-columns: 1fr;
    }
}

.result-card {
    background: rgba(10, 10, 25, 0.92);
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(159, 74, 255, 0.35);
    box-shadow: 0 0 28px rgba(159, 74, 255, 0.18);
    backdrop-filter: blur(6px);
}

/* ===== RESULT IMG FINAL ===== */
.result-img {
    width: 100%;
    height: 340px;
    overflow: hidden;
    border-bottom: 1px solid rgba(159, 74, 255, 0.25);
    border-radius: 14px 14px 0 0;
}

.result-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left center;
    transform: scale(1.08);
    transform-origin: center;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    filter: contrast(1.12) saturate(1.08) brightness(1.03);
    display: block;
}

.result-card h3 {
    margin: 1rem 1rem 0.4rem;
    font-size: 1.05rem;
    font-weight: 700;
}

.result-card p {
    margin: 0 1rem 0.3rem;
    font-size: 0.9rem;
    opacity: 0.85;
}

.result-extra {
    font-size: 0.82rem;
    margin: 0 1rem 1rem;
    opacity: 0.75;
}

/* selo "Mais vendido" no Pacote 3 (Agressividade Avançada) */
.packages-grid .package-card:nth-child(3)::after {
    content: "MAIS VENDIDO";
    position: absolute;
    top: 14px;
    right: 18px;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ffb700, #ffe38f);
    color: #3a2a00;
    box-shadow: 0 0 14px rgba(255, 210, 90, 0.85);
    z-index: 5;
}

.analysis-banners {
    padding: 40px 0 0;
}

.analysis-grid {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.analysis-item {
    width: 100%;
    max-width: 360px;
    /* cada banner fica desse tamanho */
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 0 22px rgba(0, 0, 0, 0.45);
}

.analysis-item img {
    width: 100%;
    height: auto;
    display: block;
}

/* mobile: ocupa toda a largura */
@media (max-width: 768px) {
    .analysis-item {
        max-width: 100%;
    }
}

/* ===== SELO EM BREVE ===== */
.coming-soon {
    position: relative;
}

/* estilo do selo */
.badge-soon {
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(135deg, #ffd86b, #ffbf00);
    padding: 6px 12px;
    font-size: 0.78rem;
    font-weight: 800;
    border-radius: 999px;
    color: #3a2a00;
    box-shadow: 0 0 14px rgba(255, 210, 90, 0.85);
    z-index: 5;
}