/* ==========================================================================
   CSS Variaveis Principais
   ========================================================================== */
:root {
    --color-black: #050505;
    --color-dark: #0a0a0a;
    --color-darker: #121212;
    --color-gray-dark: #1f1f1f;
    --color-gray: #4a4a4a;
    --color-gray-light: #888888;
    --color-white: #ffffff;
    --color-yellow: #FFC000;
    --color-yellow-hover: #ffb000;
    --color-yellow-light: #ffe599;
    --color-red: #ff4d4d;
    --color-green: #00cc66;

    --font-primary: 'Outfit', sans-serif;

    --transition: all 0.3s ease;
    --transition-slow: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ==========================================================================
   Reset & Globais
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    background-color: var(--color-black);
    color: var(--color-white);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ==========================================================================
   Tipografia
   ========================================================================== */
h1,
h2,
h3,
h4,
h5,
h6 {
    line-height: 1.2;
    margin-bottom: 0.5rem;
    font-weight: 800;
    text-transform: uppercase;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    letter-spacing: -1px;
    color: var(--color-white);
}

.subtitle {
    font-size: clamp(1.2rem, 3vw, 2rem);
    color: var(--color-yellow);
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 2rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--color-gray-light);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.text-yellow {
    color: var(--color-yellow);
}

.text-dark {
    color: var(--color-dark);
}

.text-white {
    color: var(--color-white);
}

.text-muted {
    color: var(--color-gray-light);
}

.text-red {
    color: var(--color-red);
}

.text-green {
    color: var(--color-green);
}

.bg-yellow {
    background-color: var(--color-yellow);
}

.bg-dark {
    background-color: var(--color-dark);
}

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

.mb-3 {
    margin-bottom: 1rem;
}

.mb-4 {
    margin-bottom: 1.5rem;
}

.mb-5 {
    margin-bottom: 3rem;
}

.mt-2 {
    margin-top: 0.5rem;
}

.mt-3 {
    margin-top: 1rem;
}

.mt-4 {
    margin-top: 1.5rem;
}

.w-100 {
    width: 100%;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.d-inline-block {
    display: inline-block;
}

.small {
    font-size: 0.85rem;
}

/* ==========================================================================
   Componentes
   ========================================================================== */
.section-bg-darker {
    background-color: var(--color-darker);
}

.badge {
    background-color: var(--color-gray-dark);
    color: var(--color-yellow);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    display: inline-block;
    border: 1px solid rgba(255, 192, 0, 0.3);
}

/* Botoes */
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 36px;
    border-radius: 6px;
    font-weight: 800;
    font-size: 1.1rem;
    text-transform: uppercase;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    text-align: center;
}

.primary-cta {
    background-color: var(--color-yellow);
    color: var(--color-dark);
    box-shadow: 0 10px 30px rgba(255, 192, 0, 0.2);
}

.primary-cta:hover {
    background-color: var(--color-yellow-hover);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 192, 0, 0.4);
}

.secondary-cta {
    background-color: transparent;
    color: var(--color-yellow);
    border: 2px solid var(--color-yellow);
}

.secondary-cta:hover {
    background-color: rgba(255, 192, 0, 0.1);
    transform: translateY(-3px);
}

/* ==========================================================================
   Seções da Página
   ========================================================================== */

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at 100% 0%, rgba(255, 192, 0, 0.08) 0%, rgba(5, 5, 5, 1) 50%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.hero-text .description {
    font-size: 1.2rem;
    color: var(--color-gray-light);
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.hero-cta-wrapper {
    margin-bottom: 2rem;
}

.trust-indicators {
    display: flex;
    gap: 20px;
    color: var(--color-gray-light);
    font-size: 0.9rem;
    font-weight: 500;
}

.trust-indicators i {
    color: var(--color-yellow);
    margin-right: 5px;
}

.image-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.image-wrapper img {
    width: 100%;
    transition: transform 0.5s ease;
}

.image-wrapper:hover img {
    transform: scale(1.03);
}

.badge-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 8px 16px;
    border-radius: 4px;
    font-weight: 800;
    font-size: 0.9rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.glass-effect {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
}

.glow-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(255, 192, 0, 0.2) 0%, rgba(0, 0, 0, 0) 70%);
    z-index: -1;
    filter: blur(40px);
}

/* Motivação */
.motivation-section {
    padding: 100px 0;
}

.motivation-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 10px rgba(255, 192, 0, 0.5));
}

.motivation-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 30px;
    align-items: stretch;
    margin-top: 3rem;
    position: relative;
}

.motivation-card {
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.card-dark {
    background-color: var(--color-darker);
    border: 1px solid var(--color-gray-dark);
}

.card-yellow {
    background-color: var(--color-yellow);
    box-shadow: 0 10px 30px rgba(255, 192, 0, 0.2);
}

.motivation-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.vs-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 900;
    position: relative;
    z-index: 1;
}

/* Conquistas (Grid de 3) */
.conquests-section {
    padding: 100px 0;
}

.conquests-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 3rem;
}

.glass-card {
    background: linear-gradient(145deg, rgba(31, 31, 31, 0.8), rgba(18, 18, 18, 0.9));
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    transition: var(--transition);
}

.glass-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 192, 0, 0.3);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
}

.icon-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: rgba(255, 192, 0, 0.1);
    color: var(--color-yellow);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 1.5rem auto;
}

/* Method / Pillars */
.method-section {
    padding: 100px 0;
}

.pillars-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.pillar-box {
    display: flex;
    align-items: center;
    background-color: var(--color-darker);
    border-left: 4px solid var(--color-yellow);
    border-radius: 4px 12px 12px 4px;
    padding: 30px;
    transition: var(--transition);
}

.pillar-box:hover {
    background-color: #1a1a1a;
    transform: translateX(10px);
}

.pillar-number {
    font-size: 4rem;
    font-weight: 900;
    opacity: 0.5;
    margin-right: 30px;
    line-height: 1;
}

.pillar-content h3 {
    font-size: 1.5rem;
}

/* Bonus */
.bonus-section {
    padding: 100px 0;
}

.bonus-title {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.flex-center-vertical {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.check-list li {
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.check-list i {
    margin-top: 5px;
}

.cross-list li {
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: rgba(255, 255, 255, 0.7);
}

.cross-list i {
    margin-top: 5px;
}

/* Who is it for */
.who-is-it-for-section {
    padding: 100px 0;
}

.target-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: stretch;
}

.target-card {
    padding: 40px;
    text-align: left;
}

.border-green {
    border-top: 4px solid var(--color-green);
}

.border-red {
    border-top: 4px solid var(--color-red);
}

.target-icon {
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.opacity-80 {
    opacity: 0.8;
}

/* Pricing Page */
.pricing-section {
    padding: 100px 0;
    position: relative;
}

.pricing-card {
    max-width: 500px;
    padding: 50px 40px;
    border-radius: 16px;
    text-align: center;
}

.border-yellow {
    border: 2px solid var(--color-yellow);
}

.price-old {
    font-size: 1.2rem;
}

.price-current {
    font-size: 1.1rem;
    font-weight: 700;
    margin-top: 10px;
}

.price-value {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.price-value .currency {
    font-size: 2rem;
    margin-top: 0.5rem;
    margin-right: 5px;
}

.price-value .cents {
    font-size: 2rem;
    margin-top: 0.5rem;
}

/* Garantia */
.guarantee-section {
    padding: 80px 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 1), rgba(30, 25, 0, 1), rgba(0, 0, 0, 1));
    border-top: 1px solid rgba(255, 192, 0, 0.2);
    border-bottom: 1px solid rgba(255, 192, 0, 0.2);
}

.guarantee-text {
    max-width: 700px;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-gray-light);
}

/* FAQ */
.faq-section {
    padding: 100px 0;
}

.faq-container {
    max-width: 800px;
}

.faq-item {
    background-color: var(--color-dark);
    border: 1px solid var(--color-gray-dark);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: rgba(255, 192, 0, 0.3);
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 24px;
    background: none;
    border: none;
    color: var(--color-white);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-primary);
}

.faq-icon {
    color: var(--color-yellow);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
    padding: 0 24px 24px 24px;
}

.faq-answer p {
    color: var(--color-gray-light);
}

/* Footer */
.footer {
    padding: 60px 0 40px;
    background-color: #030303;
    border-top: 1px solid #111;
}

.footer-logo {
    font-size: 2rem;
    letter-spacing: -1px;
}

.legal-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    color: var(--color-gray-light);
}

.legal-links a:hover {
    color: var(--color-white);
}

.separator {
    color: #333;
}

/* ==========================================================================
   Animações
   ========================================================================== */
.pulse-animation {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 192, 0, 0.4);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 15px rgba(255, 192, 0, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 192, 0, 0);
    }
}

.pulse-glow {
    animation: pulse-glow 3s infinite alternate;
}

@keyframes pulse-glow {
    0% {
        box-shadow: 0 0 15px rgba(255, 192, 0, 0.1);
    }

    100% {
        box-shadow: 0 0 30px rgba(255, 192, 0, 0.3);
    }
}

.bounce-slow {
    animation: bounce 6s infinite ease-in-out;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

/* Intersection Observer Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.is-visible {
    opacity: 1;
    transform: translateY(0) translateX(0);
}

/* ==========================================================================
   Media Queries (Responsividade)
   ========================================================================== */
@media (max-width: 991px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text .description {
        margin: 0 auto 2.5rem;
    }

    .trust-indicators {
        justify-content: center;
    }

    .motivation-grid {
        grid-template-columns: 1fr;
    }

    .vs-divider {
        padding: 15px 0;
    }

    .target-grid {
        grid-template-columns: 1fr;
    }

    .reverse-mobile {
        display: flex;
        flex-direction: column-reverse;
        text-align: center;
        gap: 40px;
    }

    .check-list li {
        justify-content: center;
    }

    .check-list li i {
        margin-top: 3px;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }

    .pillar-box {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .pillar-number {
        margin-right: 0;
        margin-bottom: 20px;
    }

    .pricing-card {
        padding: 40px 20px;
    }

    .cta-button {
        width: 100%;
        padding: 14px 20px;
    }
}