/* 
   ========================================
   INVESTIDOR EM 1 SEMANA - MOBILE-FIRST CSS
   ========================================
   Otimizado para responsividade perfeita
   Base: Mobile 320px+
*/

/* ========================================
   1. RESET E BASE STYLES
   ======================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    overflow-x: hidden;
}

body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    position: relative;
    background-color: #0a0a0a;
    color: #e5e5e5;
    font-family: 'Inter', sans-serif;
}

#app {
    overflow-x: hidden;
    max-width: 100vw;
}

img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
    height: auto;
}

input,
button,
textarea,
select {
    font: inherit;
    font-size: 16px;
    /* Evita zoom no iOS */
}

/* ========================================
   2. TIPOGRAFIA RESPONSIVA
   ======================================== */

h1,
.hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(32px, 10vw, 64px);
    line-height: 1.25;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

h2 {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(24px, 7vw, 40px);
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 1rem;
}

h3 {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(20px, 5vw, 32px);
    line-height: 1.3;
    font-weight: 600;
}

p,
li {
    font-size: clamp(14px, 4vw, 18px);
    line-height: 1.6;
    color: #b0b0b0;
    margin-bottom: 1rem;
}

/* ========================================
   3. LAYOUT & GRID SYSTEM
   ======================================== */

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 40px 20px;
}

/* Grid Padrão: 1 coluna Mobile */
.grid-system {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

/* ========================================
   4. COMPONENTES
   ======================================== */

/* Botões Touch-Friendly */
.btn-primary,
.hero-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    /* Mobile Full Width */
    min-height: 48px;
    /* Touch Target Mínimo */
    padding: 25px 50px;
    font-size: 18px;
    background-color: #f27317;
    color: white;
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    text-transform: uppercase;
    border-radius: 50px;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    border: none;
    font-size: 16px;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(242, 115, 23, 0.3);
}

.btn-primary:active,
.hero-cta:active {
    transform: scale(0.98);
}

/* Badge */
.hero-badge {
    display: inline-block;
    padding: 6px 16px;
    border: 1px solid #f27317;
    color: #f27317;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.hero-description {
    margin-top: 1.5rem;
    margin-bottom: 2.5rem;
    font-size: 1.125rem;
    /* 18px */
}

/* ========================================
   5. HERO SECTION
   ======================================== */

.hero-section {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    min-height: 100vh;
    /* Ocupa tela toda */
    padding: 80px 20px 40px;
    /* Mais padding top para navbar/header */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-container {
    width: 100%;
    max-width: 1200px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

.hero-content {
    text-align: center;
    /* Centralizado no mobile */
}

/* Highlight Text */
.highlight {
    color: #f27317;
}

/* ========================================
   6. TABLET BREAKPOINT (768px+)
   ======================================== */

@media (min-width: 768px) {
    .container {
        padding: 0 40px;
    }

    .section {
        padding: 60px 40px;
    }

    .grid-system {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    /* Botões tamanho auto */
    .btn-primary,
    .hero-cta {
        width: auto;
        min-width: 240px;
    }

    /* Hero Layout */
    .hero-container {
        grid-template-columns: 1.2fr 1fr;
        /* Texto maior que imagem */
        text-align: left;
    }

    .hero-content {
        text-align: left;
    }
}

/* ========================================
   7. DESKTOP BREAKPOINT (1024px+)
   ======================================== */

@media (min-width: 1024px) {
    .container {
        padding: 0 60px;
    }

    .section {
        padding: 80px 60px;
    }

    .grid-system {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }

    /* Cursor Customizado apenas Desktop */
    .cursor-dot,
    .cursor-outline {
        display: block;
        position: fixed;
        pointer-events: none;
        z-index: 9999;
        border-radius: 50%;
        transform: translate(-50%, -50%);
    }

    .cursor-dot {
        width: 8px;
        height: 8px;
        background-color: #f27317;
    }

    .cursor-outline {
        width: 40px;
        height: 40px;
        border: 1px solid rgba(242, 115, 23, 0.5);
        transition: width 0.2s, height 0.2s, background-color 0.2s;
    }

    body.hovering .cursor-outline {
        width: 60px;
        height: 60px;
        background-color: rgba(242, 115, 23, 0.1);
        border-color: #f27317;
    }
}

/* ========================================
   8. UTILITÁRIOS E ANIMAÇÕES
   ======================================== */

/* Animações de Scroll */
.reveal-up {
    transform: translateY(30px);
    opacity: 0;
    transition: 0.8s ease;
}

.reveal-left {
    transform: translateX(-30px);
    opacity: 0;
    transition: 0.8s ease;
}

.reveal-right {
    transform: translateX(30px);
    opacity: 0;
    transition: 0.8s ease;
}

.reveal-scale {
    transform: scale(0.9);
    opacity: 0;
    transition: 0.8s ease;
}

.reveal-active {
    transform: translate(0);
    opacity: 1;
}

@media (prefers-reduced-motion: reduce) {

    .reveal-up,
    .reveal-left,
    .reveal-right,
    .reveal-scale {
        transform: none;
        opacity: 1;
        transition: none;
    }
}

/* Glow Effects */
.blur-3xl {
    filter: blur(64px);
}

.animate-pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

/* FAQ Styles */
.faq-item {
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: #1a1a1a;
    width: 100%;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-bottom: 24px;
}



/* Ajustes Específicos para Elementos Existentes */
.hero-social-proof {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    /* Mobile Center */
}

@media (min-width: 768px) {
    .hero-social-proof {
        justify-content: flex-start;
    }
}

/* Classes utilitárias necessárias para animações */
.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

.z-10 {
    z-index: 10;
}

.rounded-full {
    border-radius: 9999px;
}

.bg-brand-orange\/20 {
    background-color: rgba(242, 115, 23, 0.2);
}

.bg-brand-orange\/30 {
    background-color: rgba(242, 115, 23, 0.3);
}

.-top-10 {
    top: -2.5rem;
}

.-left-10 {
    left: -2.5rem;
}

.-bottom-10 {
    bottom: -2.5rem;
}

.-right-10 {
    right: -2.5rem;
}

.w-40 {
    width: 10rem;
}

.h-40 {
    height: 10rem;
}