@import"https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Syne:wght@400;500;600;700;800&family=PT+Sans:ital,wght@0,400;0,700;1,400;1,700&display=swap";

:root {
    --primary: #d4a31c; /* Dourado original da imagem */
    --primary-glow: rgba(223, 174, 42, 0.24);
    --font-h1: "PT Sans", sans-serif;
		--font-h2: "Syne", sans-serif;
		--font-padrao: "Inter", sans-serif;
}
body{
	font-family: var(--font-padrao);
}
h1, .accordion-header{
	font-family: var(--font-h1);
}
h2{
	font-family: var(--font-h2);
}
/* Custom Topbar Styles */
.navbar-custom {
    background: rgba(10, 10, 10, 0.96);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    transition: all 0.5s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Logo de duas linhas */
.brand-container {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.brand-icon {
    width: 36px;
    height: 36px;
    background-color: var(--primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
}

.brand-text-wrapper {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.brand-main-text {
    font-weight: 700;
    font-size: 0.9rem;
    color: #fff;
    letter-spacing: -0.02em;
}

.brand-sub-text {
    font-weight: 500;
    font-size: 11px;
    color: rgba(212, 163, 28, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Links de Navegação */
.nav-custom-link {
    color: rgba(255, 255, 255, 0.7) !important;
    font-size: 0.85rem;
    font-weight: 500;
    padding: 8px 14px !important;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.nav-custom-link:hover {
    color: var(--primary) !important;
    background-color: rgba(255, 255, 255, 0.05);
}

/* Botão CTA */
.btn-nav-cta {
    background-color: var(--primary);
    color: #000;
    font-weight: 600;
    font-size: 0.85rem;
    padding: 10px 24px;
    border-radius: 50px;
    border: none;
    box-shadow: 0 8px 20px rgba(212, 163, 28, 0.25);
    transition: all 0.3s ease;
}

.btn-nav-cta:hover {
    background-color: #e6b121;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(212, 163, 28, 0.35);
}

/* Ajuste de altura responsiva */
@media (min-width: 1024px) {
    .navbar-custom { height: 90px; }
}
@media (max-width: 1023px) {
    .navbar-custom { height: 90px; }
}
@media (max-width: 1023px) {
    /* Garante que o fundo da barra seja sólido no mobile */
    .navbar-custom {
        background: rgba(10, 10, 10, 0.98) !important;
    }

    /* Estiliza o menu expandido (collapse) */
    .navbar-collapse {
        background: rgba(10, 10, 10, 0.98);
        margin-top: 10px;
        padding: 20px;
        border-radius: 15px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
    }

    /* Ajuste nos links para melhor espaçamento no mobile */
    .nav-custom-link {
        padding: 12px 15px !important;
        margin-bottom: 5px;
        display: block;
    }

    /* Botão entrar no clube dentro do menu mobile */
    .btn-nav-cta {
        width: 100%;
        margin-top: 15px;
    }
}

.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: #000000;
    overflow: hidden;
    padding: 100px 0; 
}
.img-fluid{
	width: auto;
	max-height: 75px;
}

@media (max-width: 1023px) {
    .img-fluid {
        max-height: 70px;
    }
		.p-5 {
		    padding: 1rem !important;
				padding-top: 100px!important;
		}
}

/* Efeitos de Brilho Ambiental (Glow) */
.glow-1 {
    position: absolute;
    top: 25%;
    left: 33%;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    filter: blur(140px);
    background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%);
    pointer-events: none;
}

.glow-2 {
    position: absolute;
    bottom: 33%;
    right: 25%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    filter: blur(100px);
    background: radial-gradient(circle, rgba(212, 163, 28, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    border-radius: 50px;
    background: var(--primary-glow);
    border: 1px solid rgba(212, 163, 28, 0.35);
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 500;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.btn-primary-custom {
    background-color: var(--primary);
    color: #000;
    border: none;
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(212, 163, 28, 0.2);
}

.btn-primary-custom:hover {
    background-color: #e6b121;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 163, 28, 0.3);
    color: #000;
}

.icon-box-hero {
    width: 50px;
    height: 50px;
    background: rgba(212, 163, 28, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    color: var(--primary);
}

.hero-footer-text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.4;
}

.section-benefits {
    background-color: #ffffff;
    padding: 100px 0;
}

.benefit-card {
    background: #ffffff;
    border: 1px solid #f0f0f0;
    border-radius: 24px;
    padding: 45px 30px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.benefit-card:hover {
    border-color: rgba(212, 163, 28, 0.3);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.08);
    transform: translateY(-8px);
}

.icon-wrapper {
    width: 64px;
    height: 64px;
    background-color: #f8f9fa;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 1.8rem;
    color: var(--primary);
    transition: background-color 0.4s ease;
}

.benefit-card:hover .icon-wrapper {
    background-color: rgba(212, 163, 28, 0.1);
}

.benefit-title {
    font-weight: 700;
    font-size: 1.2rem;
    color: #000;
    margin-bottom: 12px;
}

.benefit-text {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
}

.badge-benefit {
    background: var(--primary);
    color: #fdfafa;
    font-weight: 700;
    font-size: 0.75rem;
    padding: 6px 16px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.section-steps {
    padding: 100px 0;
    position: relative;
    background: linear-gradient(180deg, #111111 0%, #0d0d0d 100%);
    overflow: hidden;
}

/* Brilho ambiental no canto da seção */
.glow-step {
    position: absolute;
    top: 0;
    right: 0;
    width: 500px;
    height: 500px;
    background: rgba(212, 163, 28, 0.05);
    border-radius: 50%;
    filter: blur(150px);
    pointer-events: none;
}

.step-card {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 50px 30px 35px;
    height: 100%;
    transition: all 0.5s ease;
    margin-top: 20px; /* Espaço para o número flutuante */
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.step-card:hover {
    border-color: rgba(212, 163, 28, 0.3);
    background: rgba(255, 255, 255, 0.07);
    transform: translateY(-5px);
}

/* Número flutuante com gradiente dourado */
.step-number-badge {
    position: absolute;
    top: -20px;
    left: 25px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #d4a017 0%, #c8860a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.85rem;
    color: #000;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.step-icon-wrapper {
    width: 56px;
    height: 56px;
    background: rgba(212, 163, 28, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: var(--primary);
    font-size: 1.5rem;
}

.step-title {
    font-weight: 700;
    font-size: 1.15rem;
    color: #fff;
    margin-bottom: 12px;
}

.step-description {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
}

.badge-step-header {
    background: rgba(212, 163, 28, 0.1);
    color: var(--primary);
    font-weight: 700;
    font-size: 0.75rem;
    padding: 6px 16px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.section-modalidades {
    background-color: #f8f9fa; /* Fundo claro conforme solicitado */
    padding: 100px 0;
}

.modalidade-card {
    background: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 24px;
    padding: 40px 30px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    position: relative;
}

/* Card em Destaque (Mais Popular) */
.modalidade-card.featured {
    border-color: rgba(212, 163, 28, 0.4);
    box-shadow: 0 20px 40px rgba(212, 163, 28, 0.1);
}

.modalidade-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.05);
}

.modalidade-card.featured:hover {
    box-shadow: 0 25px 50px rgba(212, 163, 28, 0.15);
}

/* Badge Mais Popular */
.popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary);
    color: #000;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 8px;
    text-transform: uppercase;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    white-space: nowrap;
}

.modalidade-icon-box {
    width: 64px;
    height: 64px;
    background-color: #f8f9fa;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--primary);
    font-size: 1.8rem;
}

.modalidade-title {
    font-weight: 700;
    font-size: 1.25rem;
    color: #000;
    margin-bottom: 5px;
}

.modalidade-duration {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 30px;
}

/* Lista de Features */
.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.88rem;
    color: #666;
    margin-bottom: 12px;
}

.feature-list li i {
    color: var(--primary);
    font-size: 0.9rem;
    margin-top: 3px;
}
.section-referral {
    background: linear-gradient(180deg, #0d0d0d 0%, #111111 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

/* Brilho ambiental no canto inferior */
.glow-referral {
    position: absolute;
    bottom: 0;
    left: 33%;
    width: 500px;
    height: 500px;
    background: rgba(212, 163, 28, 0.08);
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
}

.referral-badge {
    background: rgba(212, 163, 28, 0.1);
    color: var(--primary);
    font-weight: 700;
    font-size: 0.75rem;
    padding: 6px 16px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.referral-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 24px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: all 0.3s ease;
    margin-bottom: 16px;
}

.referral-item:hover {
    border-color: rgba(212, 163, 28, 0.2);
    background: rgba(255, 255, 255, 0.08);
}

.referral-icon-sm {
    width: 44px;
    height: 44px;
    background: rgba(212, 163, 28, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.referral-item h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
}

.referral-item p {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.6;
    margin-bottom: 0;
}
.section-faq {
    background-color: #f8f9fa;
    padding: 100px 0;
}

.faq-badge {
    background: rgba(212, 163, 28, 0.15); /* Tonalidade do seu accent */
    color: var(--primary);
    font-weight: 700;
    font-size: 0.75rem;
    padding: 6px 18px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Estilização do Accordion para Casar com o Modelo */
.accordion-faq .accordion-item {
    background-color: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 16px !important;
    margin-bottom: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-faq .accordion-button {
    padding: 22px 28px;
    font-weight: 600;
    font-size: 0.95rem;
    color: #000;
    background-color: #ffffff;
    box-shadow: none;
    transition: all 0.3s ease;
}

.accordion-faq .accordion-button:not(.collapsed) {
    color: var(--primary);
    background-color: #ffffff;
    border-bottom: 1px solid rgba(0,0,0,0.03);
}

/* Shadow Effect no item aberto */
.accordion-faq .accordion-item:has(.accordion-button:not(.collapsed)) {
    border-color: rgba(212, 163, 28, 0.3);
    box-shadow: 0 10px 25px rgba(212, 163, 28, 0.08);
}

.accordion-faq .accordion-body {
    padding: 20px 28px 25px;
    color: #666;
    font-size: 0.9rem;
    line-height: 1.7;
}

/* Rotação customizada do ícone */
.accordion-faq .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transition: transform 0.3s ease;
}
.section-cta {
    background: linear-gradient(180deg, #111111 0%, #0a0a0a 100%);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

/* Efeito de brilho centralizado (Glow) */
.glow-cta-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 700px;
    height: 700px;
    background: rgba(212, 163, 28, 0.1);
    border-radius: 50%;
    filter: blur(150px);
    pointer-events: none;
    z-index: 1;
}

.cta-icon-wrapper {
    width: 56px;
    height: 56px;
    background: rgba(212, 163, 28, 0.15);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 32px;
    color: var(--primary);
    font-size: 1.5rem;
}

.cta-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 600;
    line-height: 1.2;
    color: #fff;
    margin-bottom: 24px;
}

.cta-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.5);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

/* Botão Premium CTA Final */
.btn-cta-final {
    background-color: var(--primary);
    color: #000;
    font-weight: 700;
    font-size: 1.15rem;
    padding: 18px 45px;
    border-radius: 50px;
    border: none;
    box-shadow: 0 20px 40px rgba(212, 163, 28, 0.25);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.btn-cta-final:hover {
    background-color: #e6b121;
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 25px 50px rgba(212, 163, 28, 0.35);
    color: #000;
}

.btn-cta-final i {
    transition: transform 0.3s ease;
}

.btn-cta-final:hover i {
    transform: translateX(5px);
}

.cta-disclaimer {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.75rem;
    margin-top: 24px;
}
.footer-section {
    background-color: #0a0a0a;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 60px 0 30px;
}

.footer-logo-box {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-icon-wrapper {
    width: 32px;
    height: 32px;
    background-color: var(--primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 0.9rem;
}

.footer-logo-text {
    font-weight: 700;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-nav {
    display: flex;
    gap: 30px;
}

.footer-link {
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--primary);
}

.footer-copyright {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.25);
    margin: 0;
}

.footer-disclaimer-box {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 40px;
    padding-top: 25px;
}

.footer-disclaimer-text {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.2);
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Ajuste responsivo para o rodapé */
@media (max-width: 1023px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    .footer-nav {
        justify-content: center;
        margin: 20px 0;
    }
}
.text-primary{
	color: var(--primary)!important;
}
.btn-link {
	padding: 18px 40px;
    border-radius: 50px;
}
.btn-link:hover{
	box-shadow: 0px 0px 30px 0px #fff;
}

/* Estilo do container de texto "Include" */
.text-container-premium {
    max-height: 60vh; /* Altura máxima para ativar a rolagem interna */
    overflow-y: auto;
    padding: 25px;
    background-color: #0f0f0f;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.92rem;
    line-height: 1.7;
    white-space: pre-line; /* Preserva as quebras de linha do arquivo de texto */
    
    /* Proteção contra cópia simples (Opcional) */
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

/* Customização da barra de rolagem interna */
.text-container-premium::-webkit-scrollbar {
    width: 6px;
}
.text-container-premium::-webkit-scrollbar-track {
    background: #0f0f0f;
}
.text-container-premium::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 10px;
}

/* Bloqueio de impressão via CSS se tentarem usar Ctrl+P com o modal aberto */
@media print {
    body *, #textModal {
        display: none !important;
    }
}