html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
    background: linear-gradient(180deg, #0f1f55, #08152e);
    min-height: 100vh;
}

/* ===== HEADER ===== */

.custom-navbar {
    position: fixed;   /* ← isso resolve */
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;

    /*background: transparent;*/
    background: linear-gradient(90deg, #3b82f6, #2563eb);
    padding: 18px 0;
    transition: 0.3s ease;
}


/* ===== MENU LINKS ===== */

.navbar-nav .nav-link {
    color: #ffffff !important;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;
    margin: 0 8px;
    position: relative;
    transition: 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: #e0f2fe !important;
}

/* Linha animada abaixo do item */

.navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0%;
    height: 2px;
    background: white;
    transition: 0.3s ease;
}

.navbar-nav .nav-link:hover::after {
    width: 100%;
}

/* ===== BOTÕES ===== */

.btn-outline-info {
    border: 1.5px solid #ffffff;
    color: #ffffff;
    padding: 6px 18px;
    border-radius: 25px;
    font-weight: 600;
    background: transparent;
    transition: 0.3s ease;
}

.btn-outline-info:hover {
    background: #138496;
    color: #fff;
}

.btn-info {
    background: #ffffff;
    color: #2563eb;
    font-weight: 700;
    padding: 6px 18px;
    border-radius: 25px;
    border: none;
    transition: 0.3s ease;
}

.btn-info:hover {
    background: #138496;
    transform: translateY(-1px);
}

.logo-brand {
    font-family: 'Montserrat Alternates', sans-serif;
    font-weight: 700;
    font-size: 26px;
    letter-spacing: -0.5px;
    text-decoration: none;
}

/* Parte 1 */
.logo-primary {
    color: #ffffff;
}

/* Parte 2 */
.logo-secondary {
    background: linear-gradient(90deg, #ffffff, #dbeafe);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-full {
    height: 100vh;
    width: 100%;

    background: url("img/hero-bg.png");
    background-size: cover;
    background-position: right center;
    background-repeat: no-repeat;

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

    padding-left: 4%;
    color: #ffffff;
}

.hero-title {
    max-width: 650px;
    text-align: left;
}


/* Glow decorativo */

.hero-full::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    background: #2563eb;
    filter: blur(200px);
    opacity: 0.4;
    top: -150px;
    right: -150px;
}

.hero-full::after {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    background: #38bdf8;
    filter: blur(200px);
    opacity: 0.3;
    bottom: -150px;
    left: -150px;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    text-align: left;
    padding-left: 5%;
}

.hero-content h1 {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.2;
}

.hero-content h1 span {
    color: #38bdf8;
    display: block;
}

.hero-content p {
    margin-top: 20px;
    font-size: 18px;
    opacity: 0.9;
}

.hero-buttons {
    margin-top: 40px;
    display: flex;
    gap: 20px;
}

.hero-buttons a {
    padding: 14px 36px;
    border-radius: 40px;
    font-weight: 600;
    margin: 0 10px;
    text-decoration: none;
    transition: 0.3s ease;
}

/* CTA principal */

.btn-cta-primary {
    background: linear-gradient(135deg, #00e0ff, #2563eb);
    color: #ffffff;
    padding: 16px 42px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(0, 224, 255, 0.4);
    transition: all 0.3s ease;
}

.btn-cta-primary:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 15px 40px rgba(0, 224, 255, 0.6);
}

.btn-cta-secondary {
    border: 2px solid #38bdf8;
    color: #ffffff;
    padding: 14px 36px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-cta-secondary:hover {
    background: rgba(56, 189, 248, 0.15);
    transform: translateY(-3px);
    color: #f7d96c;
}

/* Social proof */

.hero-proof {
    margin-top: 30px;
    font-size: 14px;
    opacity: 0.8;
}

.hero-proof strong {
    color: #38bdf8;
}

/* features  */

.features-section {
    width: 100%;
    padding: 120px 8%;
    background: linear-gradient(180deg, #0f1f55, #08152e);
    color: #ffffff;
}

.features-header {
    text-align: center;
    margin-bottom: 70px;
}

.features-header h2 {
    font-size: 42px;
    font-weight: 700;
}

.features-header p {
    font-size: 18px;
    opacity: 0.8;
    margin-top: 15px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px 30px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    transition: 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.feature-card:hover {
    transform: translateY(-8px);
    background: rgba(56, 189, 248, 0.08);
    border-color: rgba(56, 189, 248, 0.4);
}

.feature-icon {
    font-size: 32px;
    color: #38bdf8;
    margin-bottom: 20px;
}

.feature-card h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}

.feature-card p {
    font-size: 14px;
    opacity: 0.8;
    line-height: 1.6;
}
/* ===========================
   ADVERTISERS SECTION
=========================== */

.advertisers-section {
    width: 100%;
    padding: 120px 8%;
    background: linear-gradient(180deg, #0f1f4b, #0b1535);
    position: relative;
}

.advertisers-header {
    text-align: center;
    margin-bottom: 80px;
}

.advertisers-header h2 {
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
}

.advertisers-header p {
    margin-top: 15px;
    font-size: 18px;
    color: #a5b4fc;
}

/* GRID */

.advertisers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

/* CARD */

.advertiser-card {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.08);
    padding: 50px 35px;
    border-radius: 20px;
    transition: 0.4s ease;
}

.advertiser-card:hover {
    transform: translateY(-8px);
    border-color: #38bdf8;
    box-shadow: 0 20px 50px rgba(56,189,248,0.15);
}

/* ICON */

.advertiser-icon {
    font-size: 40px;
    margin-bottom: 25px;
    color: #38bdf8;
}

/* TEXT */

.advertiser-card h4 {
    font-size: 22px;
    color: #ffffff;
    margin-bottom: 15px;
}

.advertiser-card p {
    font-size: 15px;
    color: #cbd5e1;
    line-height: 1.6;
}

/* CTA */

.advertisers-cta {
    text-align: center;
    margin-top: 70px;
}

.btn-advertise {
    padding: 16px 45px;
    background: linear-gradient(90deg, #38bdf8, #2563eb);
    border-radius: 40px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    transition: 0.3s ease;
}

.btn-advertise:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(37,99,235,0.4);
}
/* ===========================
   PAYMENT SECTION
=========================== */

.payments-section {
    width: 100%;
    padding: 120px 8%;
    background: linear-gradient(180deg, #0b1535, #0e1c46);
    position: relative;
}

.payments-header {
    text-align: center;
    margin-bottom: 80px;
}

.payments-header h2 {
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
}

.payments-header p {
    margin-top: 15px;
    font-size: 18px;
    color: #93c5fd;
}

/* GRID */

.payments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 50px;
}

/* CARD */

.payment-card {
    background: rgba(255,255,255,0.04);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.08);
    padding: 60px 40px;
    border-radius: 24px;
    text-align: center;
    transition: 0.4s ease;
    position: relative;
}

.payment-card:hover {
    transform: translateY(-10px);
    border-color: #38bdf8;
    box-shadow: 0 25px 60px rgba(37,99,235,0.25);
}

/* Highlight card */

.payment-card.highlight {
    border: 1px solid #38bdf8;
    background: rgba(56,189,248,0.06);
}

/* ICON */

.payment-icon {
    font-size: 48px;
    color: #38bdf8;
    margin-bottom: 25px;
}

/* TEXT */

.payment-card h4 {
    font-size: 24px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 15px;
}

.payment-card p {
    font-size: 16px;
    color: #cbd5e1;
    margin-bottom: 25px;
    line-height: 1.6;
}

/* BADGE */

.payment-badge {
    display: inline-block;
    padding: 8px 18px;
    font-size: 13px;
    border-radius: 30px;
    background: rgba(255,255,255,0.08);
    color: #38bdf8;
    font-weight: 600;
}

.payment-badge.success {
    background: rgba(34,197,94,0.15);
    color: #22c55e;
}
/* ===========================
   WITHDRAWALS SECTION
=========================== */

.withdrawals-section {
    width: 100%;
    padding: 120px 8%;
    background: linear-gradient(180deg, #0b1535, #0e1c46);
}

/* GRID */

.withdrawals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

/* CARD */

.withdrawal-card {
    background: rgba(255,255,255,0.04);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.08);
    padding: 50px 35px;
    border-radius: 24px;
    text-align: center;
    transition: 0.4s ease;
}

.withdrawal-card:hover {
    transform: translateY(-10px);
    border-color: #38bdf8;
    box-shadow: 0 25px 60px rgba(37,99,235,0.25);
}

/* ICON */

.withdrawal-icon {
    font-size: 42px;
    color: #38bdf8;
    margin-bottom: 20px;
}

/* USER */

.withdrawal-user {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 15px;
}

/* AMOUNT */

.withdrawal-amount {
    font-size: 28px;
    font-weight: 700;
    color: #22c55e;
    margin-bottom: 10px;
}

.withdrawal-amount span {
    display: block;
    font-size: 13px;
    color: #94a3b8;
    margin-top: 4px;
}

/* META */

.withdrawal-meta {
    font-size: 14px;
    color: #cbd5e1;
    margin-bottom: 8px;
}

/* DATE */

.withdrawal-date {
    font-size: 13px;
    color: #64748b;
}

/* ===========================
   GLOBAL SECTION HEADER
=========================== */

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-header h2 {
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
}

.section-header p {
    margin-top: 15px;
    font-size: 18px;
    color: #93c5fd;
}
/* ===========================
   FAQ SECTION
=========================== */

.faq-section {
    width: 100%;
    padding: 120px 8%;
    background: linear-gradient(180deg, #0f1f55, #08152e);
}

/* Accordion container */

.faq-accordion {
    max-width: 900px;
    margin: 0 auto;
}

/* Item */

.faq-item {
    background: rgba(255,255,255,0.04);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: 0.3s ease;
}

.faq-item:hover {
    border-color: #38bdf8;
}

/* Question */

.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    padding: 25px 30px;
    text-align: left;
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    cursor: pointer;
    transition: 0.3s ease;
    position: relative;
}

.faq-question:hover {
    color: #38bdf8;
}

/* Arrow indicator */

.faq-question::after {
    content: "+";
    position: absolute;
    right: 30px;
    font-size: 22px;
    transition: 0.3s ease;
}

.faq-question:not(.collapsed)::after {
    content: "−";
}

/* Answer */

.faq-answer {
    padding: 0 30px 25px 30px;
    font-size: 15px;
    color: #cbd5e1;
    line-height: 1.6;
}
/* ==========================
   FOOTER PADRÃO HEADER
========================== */

.site-footer {
    background: linear-gradient(90deg, #3b82f6, #2563eb);
    color: #ffffff;
    padding: 80px 0 30px 0;
    margin-top: 0; /* remove espaço */
}

.site-footer h4 {
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
}

.site-footer p {
    color: rgba(255,255,255,0.85);
    line-height: 1.6;
}

.footer-links {
    list-style: none;   /* remove os pontinhos */
    padding-left: 0;    /* remove o espaço da esquerda */
    margin: 0;
}

.footer-links a {
    display: block;
    color: rgba(255,255,255,0.85);
    margin-bottom: 10px;
    text-decoration: none;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #ffffff;
    padding-left: 6px;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    margin-right: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    color: #ffffff;
    font-size: 18px;
    transition: 0.3s;
}

.footer-social a:hover {
    background: #ffffff;
    color: #2563eb;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.2);
    margin-top: 50px;
    padding-top: 20px;
    text-align: center;
    font-size: 14px;
    color: rgba(255,255,255,0.7);
}
.site-footer {
    margin-top: 0 !important;
}

