/* VARIÁVEIS E RESET MINIMALISTA */
:root {
    --blue: #009fe3;
    --black: #0a0a0a;
    --dark-gray: #333333;
    --gray: #888888;
    --light-gray: #e9ecef;
    --white: #f8f9fa;
    
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Work Sans', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--white);
    color: var(--black);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

::selection {
    background: var(--blue);
    color: var(--white);
}

/* TIPOGRAFIA BASE */
h1, h2, h3 {
    font-family: var(--font-heading);
    font-weight: 900;
    line-height: 0.95;
    letter-spacing: -2px;
    text-transform: uppercase;
}

.text-blue { color: var(--blue); }
.dot { color: var(--blue); }

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 4vw;
}

.section-padding {
    padding: 8rem 0;
}

a {
    text-decoration: none;
    color: inherit;
}

/* HEADER MINIMALISTA */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 2rem 0;
    background: rgba(255, 255, 255, 0);
    backdrop-filter: blur(0px);
    z-index: 100;
    transition: all 0.4s ease;
}

header.scrolled {
    padding: 1rem 0;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--light-gray);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 900;
    letter-spacing: -2px;
}

.nav-links {
    display: flex;
    gap: 3rem;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--black);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.nav-links a:hover::after {
    transform: translateX(0);
}

.btn-minimal {
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.8rem 1.5rem;
    border: 1px solid var(--black);
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-minimal:hover {
    background: var(--black);
    color: var(--white);
}

/* HERO INOVADOR */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 120px;
    padding-bottom: 4rem;
    position: relative;
    overflow: hidden;
}

.hero-bg-text {
    position: absolute;
    top: 50%;
    right: -10%;
    transform: translateY(-50%);
    font-family: var(--font-heading);
    font-size: 55vw;
    font-weight: 900;
    letter-spacing: -15px;
    color: var(--black);
    opacity: 0.03;
    z-index: 0;
    pointer-events: none;
    line-height: 0.8;
}

.hero-grid-brutalist {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4rem;
    width: 90%;
    max-width: 1000px;
    margin: 0;
    position: relative;
    z-index: 1;
}

.eyebrow {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gray);
    margin-bottom: 2rem;
    font-weight: 500;
}

.title-massive {
    font-size: clamp(5rem, 10vw, 10rem);
    font-weight: 900;
    letter-spacing: -4px;
    line-height: 0.9;
    margin-bottom: 3rem;
    text-transform: uppercase;
}

/* Animações de Hero removidas */

.hero-bottom {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 600px;
}

.desc {
    font-size: 1.1rem;
    color: var(--dark-gray);
    line-height: 1.6;
}

.link-arrow {
    font-size: 1.2rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: gap 0.3s ease;
}

.link-arrow span {
    transition: transform 0.3s ease;
    color: var(--blue);
}

.link-arrow:hover {
    gap: 15px;
}

/* HEADERS DE SEÇÃO COM LINHA */
.section-header {
    margin-bottom: 5rem;
}

.section-header h2 {
    font-size: 2rem;
    text-transform: uppercase;
    letter-spacing: -2px;
    color: var(--black);
    margin-bottom: 1rem;
    font-weight: 900;
}

.line-divider {
    width: 100%;
    height: 1px;
    background: var(--black);
}

/* METODOLOGIA LISTA LIMPA */
.method-list {
    display: flex;
    flex-direction: column;
}

.method-item {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 2rem;
    padding: 4rem 0;
    border-bottom: 1px solid var(--light-gray);
}

.method-num {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 900;
    color: var(--gray);
    letter-spacing: -2px;
}

.method-content h3 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    letter-spacing: -2px;
}

.method-content p {
    font-size: 1.2rem;
    color: var(--dark-gray);
    max-width: 700px;
}

/* SOBRE */
.about-grid {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    max-width: 900px;
    margin: 0 auto;
}

.about-text h2 {
    font-size: clamp(3rem, 5vw, 5rem);
    margin-bottom: 2rem;
    letter-spacing: -3px;
}

.about-text p {
    font-size: 1.2rem;
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
    max-width: 600px;
}

.stats-minimal {
    display: flex;
    gap: 4rem;
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid var(--light-gray);
}

.stats-minimal strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 0.5rem;
    letter-spacing: -3px;
}

.stats-minimal span {
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 2px;
    color: var(--gray);
}

/* RESULTADOS & FEEDBACKS */
.results-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.ba-card {
    background: var(--light-gray);
    border: 1px solid var(--black);
    padding: 1rem;
    margin-bottom: 2rem;
}

.ba-images {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.img-placeholder {
    flex: 1;
    aspect-ratio: 4 / 5;
    background: #d0d0d0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--gray);
    letter-spacing: -1px;
}

.img-placeholder.after {
    background: var(--black);
    color: var(--white);
}

.ba-info h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.ba-info p {
    color: var(--dark-gray);
    font-size: 0.95rem;
}

.feedback-col {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.feedback-card {
    background: var(--white);
    border: 1px solid var(--light-gray);
    padding: 2.5rem;
    position: relative;
}

.feedback-card.highlight {
    background: var(--black);
    color: var(--white);
    border-color: var(--black);
}

.feedback-card.highlight p {
    color: var(--white);
}

.quote-icon {
    width: 2rem;
    height: 2rem;
    color: var(--blue);
    margin-bottom: 1.5rem;
}

.feedback-card p {
    font-size: 1.15rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
    color: var(--dark-gray);
}

.feedback-card strong {
    font-family: var(--font-heading);
    font-weight: 900;
    letter-spacing: -1px;
    text-transform: uppercase;
}

/* PLANOS (CARDS) */
.pricing-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    align-items: stretch;
}

.pricing-card {
    background: var(--white);
    border: 1px solid var(--light-gray);
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    transition: all 0.4s ease;
    position: relative;
}

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

.pricing-card.featured {
    background: linear-gradient(180deg, var(--white) 0%, #f9f9f9 100%);
    border: 2px solid var(--blue);
    position: relative;
    transform: scale(1.05);
    z-index: 2;
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.p-name {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 900;
    letter-spacing: -2px;
    margin-bottom: 0.5rem;
}

.pricing-card.featured .p-name {
    font-size: 2.5rem;
}

.badge-card {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: var(--blue);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    white-space: nowrap;
    box-shadow: 0 4px 10px rgba(0, 159, 227, 0.3);
}

.p-desc {
    color: var(--dark-gray);
    font-size: 1.05rem;
    line-height: 1.6;
}

/* Features List */
.p-features {
    margin-top: 0.5rem;
    margin-bottom: 1.5rem;
}

.p-features ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.p-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    font-size: 0.95rem;
    color: var(--black);
    font-weight: 500;
    line-height: 1.6;
}

.p-features li.disabled {
    color: var(--gray);
    opacity: 0.6;
}

.p-features li.disabled .icon-x {
    color: var(--gray);
}

.icon-check {
    color: var(--blue);
    width: 1.2rem;
    height: 1.2rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.icon-x {
    width: 1.2rem;
    height: 1.2rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.btn-card {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    padding: 1.2rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: auto;
}

.ghost-cta {
    color: var(--blue);
    border: 1px solid var(--blue);
    border-radius: 50px;
}

.ghost-cta:hover {
    background: var(--blue);
    color: var(--white);
}

.btn-highlight {
    background: var(--blue);
    color: var(--black);
    font-weight: 800;
    border-radius: 50px;
}

.btn-highlight:hover {
    background: var(--black);
    color: var(--white);
}

/* FOOTER PREMIUM BRUTALISTA */
.footer-premium {
    background-color: var(--black);
    color: var(--white);
    padding: 8rem 0 3rem;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    padding-bottom: 4rem;
    margin-bottom: 4rem;
    gap: 4rem;
}

.footer-brand-large h2 {
    font-size: clamp(4rem, 10vw, 10rem);
    line-height: 0.85;
    color: var(--white);
    letter-spacing: -4px;
    font-family: var(--font-heading);
    font-weight: 900;
}

.footer-cta {
    max-width: 400px;
    text-align: right;
}

.footer-cta p {
    font-size: 1.2rem;
    color: var(--gray);
    margin-bottom: 1.5rem;
}

.btn-footer {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: var(--blue);
    color: var(--black);
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.2rem;
    text-transform: uppercase;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    letter-spacing: -1px;
}

.btn-footer:hover {
    background: var(--white);
    transform: translateY(-3px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: var(--gray);
}

.footer-social {
    display: flex;
    gap: 1.5rem;
}

.footer-social svg {
    width: 2rem;
    height: 2rem;
    color: var(--white);
    transition: color 0.3s ease;
}

.footer-social a:hover svg {
    color: var(--blue);
}

.footer-policy {
    display: flex;
    gap: 2rem;
}

.footer-policy a {
    color: var(--gray);
    transition: color 0.3s ease;
}

.footer-policy a:hover {
    color: var(--white);
}

/* ANIMAÇÕES DE SCROLL REMOVIDAS */

/* FAQ */
.faq-list {
    display: flex;
    flex-direction: column;
}

.faq-item {
    border-bottom: 1px solid var(--light-gray);
    transition: border-color 0.4s ease;
}

.faq-item.active {
    border-bottom: 1px solid var(--blue);
}

.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 2.5rem 0;
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 900;
    letter-spacing: -2px;
    color: var(--black);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-icon {
    transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1), color 0.4s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    color: var(--blue);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 400px; /* Aumentado para acomodar textos maiores */
}

.faq-answer p {
    color: var(--dark-gray);
    font-size: 1.1rem;
    padding-bottom: 2.5rem;
    max-width: 800px;
    font-weight: 300;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.faq-item.active .faq-answer p {
    opacity: 1;
    transform: translateY(0);
}

/* RESPONSIVO */
@media (max-width: 1024px) {
    .title-massive {
        font-size: 5rem;
    }
    
    .stats-minimal {
        justify-content: center;
    }
    
    .results-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-cards {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }
    
    .footer-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 3rem;
    }
    
    .footer-cta {
        text-align: left;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 2rem;
        align-items: flex-start;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .brand {
        font-size: 1.5rem;
    }
    
    .btn-minimal {
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
    }

    .section-padding {
        padding: 4rem 0;
    }
    
    .hero {
        padding-top: 100px;
    }
    
    .hero-grid-brutalist {
        gap: 2rem;
    }
    
    .hero-bg-text {
        letter-spacing: -3px;
    }
    
    .title-massive {
        font-size: clamp(2.8rem, 10vw, 3.5rem);
        letter-spacing: -2px;
        margin-bottom: 2rem;
    }
    
    .method-item {
        grid-template-columns: 1fr;
        gap: 0.5rem;
        padding: 2.5rem 0;
    }
    
    .method-num {
        font-size: 2.5rem;
        letter-spacing: -1px;
    }
    
    .method-content h3 {
        font-size: 2rem;
        letter-spacing: -1px;
    }
    
    .about-text h2 {
        font-size: clamp(2.5rem, 8vw, 3.5rem);
        letter-spacing: -2px;
    }
    
    .stats-minimal {
        flex-direction: column;
        gap: 2rem;
        align-items: flex-start;
        margin-top: 2rem;
        padding-top: 2rem;
    }
    
    .feedback-card {
        padding: 1.5rem;
    }
    
    .pricing-card {
        padding: 2rem 1.5rem;
    }
    
    .p-name {
        font-size: 1.8rem;
        letter-spacing: -1px;
    }
    
    .footer-brand-large h2 {
        font-size: clamp(3rem, 10vw, 4rem);
        letter-spacing: -2px;
    }
    
    .faq-question {
        font-size: 1.4rem;
        padding: 1.5rem 0;
    }
}

/* LUCIDE ICONS */
.lucide {
    vertical-align: middle;
}

.icon-sm {
    width: 1.2rem;
    height: 1.2rem;
    margin-right: 0.2rem;
}

.icon-md {
    width: 2rem;
    height: 2rem;
    margin-right: 1rem;
    color: var(--blue);
}



.btn-minimal .lucide {
    margin-right: 0.3rem;
    margin-top: -2px;
}

.p-price .lucide {
    margin-left: 0.5rem;
    margin-right: 0;
}
