/* ===== RESET & BASE ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: 'Sora', 'Montserrat', 'Open Sans', sans-serif;
    color: #FFFFFF;
    background: #000000;
    overflow-x: hidden;
    line-height: 1.6;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.center {
    text-align: center;
}

/* ===== TYPOGRAPHY ===== */
h1 {
    font-family: 'Sora', sans-serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.15;
}

h2 {
    font-family: 'Sora', sans-serif;
    font-size: clamp(1.5rem, 3.5vw, 2.8rem);
    font-weight: 700;
    line-height: 1.2;
}

h3 {
    font-family: 'Sora', sans-serif;
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    font-weight: 600;
    line-height: 1.3;
}

p {
    font-family: 'Sora', sans-serif;
    font-size: clamp(0.9rem, 1.2vw, 1.05rem);
    line-height: 1.7;
    color: #A5A5A5;
}

.text-blue {
    color: #2968ED;
}

.text-white {
    color: #FFFFFF;
}

.text-lightblue {
    color: #81A9FF;
}

/* ===== BUTTONS ===== */
.btn-outline {
    display: inline-block;
    padding: 10px 28px;
    border: 1.5px solid #2968ED;
    border-radius: 50px;
    color: #FFFFFF;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    font-family: 'Sora', sans-serif;
}

.btn-outline:hover {
    background: #2968ED;
    color: #fff;
}

.btn-primary {
    display: inline-block;
    padding: 14px 36px;
    background: linear-gradient(135deg, #2968ED, #316BDC);
    border-radius: 50px;
    color: #FFFFFF;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    font-family: 'Sora', sans-serif;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #3971FF, #2968ED);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(41, 104, 237, 0.4);
}

.btn-primary.large {
    padding: 18px 48px;
    font-size: 1.1rem;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fadeInUp {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.animate-fadeInUp:nth-child(2) { animation-delay: 0.2s; }
.animate-fadeInUp:nth-child(3) { animation-delay: 0.4s; }

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    min-height: 100vh;
    background: url('assets/images/BG-2.webp') center center / cover no-repeat;
    background-color: #000;
    overflow: hidden;
}

.hero-bg-noise {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('assets/images/ruido-animado.gif') repeat;
    opacity: 0.03;
    pointer-events: none;
    z-index: 1;
}

.hero-inner {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 0;
}

.hero-logo img {
    max-width: 200px;
}

.hero-content {
    text-align: center;
    padding: 60px 0 40px;
    max-width: 800px;
    margin: 0 auto;
}

.hero-content h1 {
    margin-bottom: 24px;
}

.hero-sub {
    font-size: clamp(0.95rem, 1.3vw, 1.1rem);
    color: #A5A5A5;
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-image {
    text-align: center;
    padding-bottom: 40px;
}

.hero-image img {
    max-width: 90%;
    margin: 0 auto;
    border-radius: 12px;
}

/* ===== SECTION ESPERE ===== */
.section-dark {
    background: #000;
    padding: 80px 0;
}

.section-light {
    background: #EFEFF0;
    padding: 80px 0;
}

.flex-row {
    display: flex;
    align-items: center;
    gap: 60px;
}

.flex-row-reverse {
    display: flex;
    align-items: center;
    gap: 60px;
    flex-direction: row-reverse;
}

.col-img {
    flex: 1;
    min-width: 0;
}

.col-text {
    flex: 1;
    min-width: 0;
}

.section-espere .col-img img {
    border-radius: 20px;
    max-width: 500px;
    width: 100%;
}

.section-espere h2 {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    color: #fff;
}

/* ===== SECTION SOLUÇÕES ===== */
.section-title {
    text-align: center;
    margin-bottom: 16px;
    color: #fff;
}

.section-title.dark {
    color: #292929;
}

.section-subtitle {
    text-align: center;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: #A5A5A5;
    font-size: 1rem;
}

.section-subtitle.dark {
    color: #696969;
}

.section-subtitle strong {
    color: #fff;
}

.section-subtitle-small {
    text-align: center;
    color: #A5A5A5;
    margin-bottom: 40px;
}

.cards-row {
    display: flex;
    gap: 24px;
}

.card-gradient {
    flex: 1;
    background: linear-gradient(180deg, #090979 0%, #323268 100%);
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

.card-gradient:hover {
    transform: translateY(-4px);
}

.card-gradient:nth-child(2) {
    display: flex;
    flex-direction: column-reverse;
}

.card-gradient-text {
    padding: 30px;
}

.card-gradient-text p {
    color: #fff;
    font-size: 1rem;
    line-height: 1.7;
}

.card-gradient-img {
    padding: 0 20px 20px;
}

.card-gradient-img img {
    border-radius: 15px;
    width: 100%;
}

.card-gradient:nth-child(2) .card-gradient-img {
    padding: 20px 20px 0;
}

/* ===== SECTION NÚMEROS ===== */
.section-numeros {
    background: #000;
}

.numeros-header {
    text-align: center;
    margin-bottom: 60px;
    padding: 30px;
    background: linear-gradient(135deg, rgba(41,104,237,0.15), rgba(41,104,237,0));
    border-radius: 20px;
    border: 1px solid rgba(41,104,237,0.2);
}

.numeros-header h2 {
    color: #fff;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
}

.numeros-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.numeros-leaves {
    flex: 0 0 auto;
    max-width: 120px;
}

.numeros-leaves img {
    width: 100%;
    opacity: 0.6;
}

.numero-item {
    flex: 1;
    text-align: center;
    max-width: 280px;
}

.numero-value {
    font-family: 'Sora', sans-serif;
    font-size: clamp(3rem, 5vw, 5rem);
    font-weight: 800;
    color: #3971FF;
    line-height: 1;
    margin-bottom: 16px;
}

.numero-value span {
    font-size: 0.5em;
}

.numero-item p {
    color: #A5A5A5;
    font-size: 0.95rem;
}

.numero-item p strong {
    color: #fff;
}

/* ===== SECTION GANHA ===== */
.grid-images {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 16px;
}

.grid-img-item {
    border-radius: 15px;
    overflow: hidden;
    background: #111;
}

.grid-img-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    transition: transform 0.4s ease;
}

.grid-img-item:hover img {
    transform: scale(1.03);
}

.grid-img-item.large {
    grid-column: span 2;
}

/* ===== SECTION BENEFÍCIOS ===== */
.section-beneficios {
    background: #000;
}

.section-beneficios .flex-row {
    align-items: flex-start;
}

.robo-img {
    max-width: 450px;
    width: 100%;
    border-radius: 20px;
}

.beneficios-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,188,125,0.1);
    border: 1px solid rgba(255,188,125,0.3);
    border-radius: 50px;
    padding: 8px 20px;
    margin-bottom: 16px;
}

.beneficios-badge .star-icon {
    width: 18px;
    height: 18px;
}

.beneficios-badge span {
    color: #FFBC7D;
    font-size: 0.85rem;
    font-weight: 600;
}

.beneficios-content h2 {
    color: #fff;
    margin-bottom: 30px;
    font-size: clamp(1.5rem, 2.5vw, 2.2rem);
}

.beneficio-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.beneficio-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 20px;
    transition: background 0.3s ease;
}

.beneficio-card:hover {
    background: rgba(255,255,255,0.06);
}

.beneficio-icon {
    flex: 0 0 60px;
}

.beneficio-icon svg {
    width: 60px;
    height: 60px;
}

.beneficio-card p {
    color: #A5A5A5;
    font-size: 0.95rem;
}

.beneficio-card p strong {
    color: #fff;
}

/* ===== SECTION ERA ===== */
.section-era {
    background: linear-gradient(180deg, #000 0%, #090920 100%);
    padding: 100px 0;
}

.era-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.era-content h2 {
    color: #fff;
    margin-bottom: 24px;
    font-size: clamp(1.8rem, 3vw, 2.8rem);
}

.era-content p {
    color: #A5A5A5;
    font-size: 1.05rem;
    margin-bottom: 12px;
}

/* ===== SECTION CARDS FUNCIONALIDADES ===== */
.section-cards-func {
    background: #000;
}

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

.func-card {
    background: #111;
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.3s ease;
}

.func-card:hover {
    border-color: rgba(41,104,237,0.3);
    background: rgba(41,104,237,0.05);
    transform: translateY(-4px);
}

.func-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 20px;
}

.func-icon svg {
    width: 100%;
    height: 100%;
}

.func-card h3 {
    color: #fff;
    margin-bottom: 12px;
    font-size: 1.1rem;
}

.func-card p {
    color: #A5A5A5;
    font-size: 0.9rem;
    line-height: 1.7;
}

/* ===== SECTION FUNCIONALIDADES ===== */
.section-funcionalidades {
    background: #000;
}

.func-lists-row {
    display: flex;
    gap: 60px;
    margin-bottom: 60px;
}

.func-list-col {
    flex: 1;
}

.func-list-col h3 {
    color: #fff;
    margin-bottom: 24px;
    font-size: 1.2rem;
}

.func-checklist li {
    color: #A5A5A5;
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    font-size: 0.95rem;
}

.func-checklist li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2968ED;
    font-weight: 700;
    font-size: 1.1rem;
}

/* Bonus Section */
.bonus-section {
    margin: 60px 0;
    background: linear-gradient(135deg, #090979 0%, #323268 100%);
    border-radius: 20px;
    overflow: hidden;
}

.bonus-content {
    display: flex;
    align-items: center;
}

.bonus-left {
    flex: 1;
    min-width: 0;
}

.bonus-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bonus-right {
    flex: 1;
    padding: 40px;
}

.bonus-right h3 {
    color: #fff;
    margin-bottom: 16px;
    font-size: 1.3rem;
    line-height: 1.4;
}

.bonus-right p {
    color: rgba(255,255,255,0.8);
    font-size: 1rem;
    line-height: 1.8;
}

/* Training Section */
.training-section {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.training-block {
    display: flex;
    align-items: center;
    gap: 40px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 20px;
    padding: 30px;
    overflow: hidden;
}

.training-block.reverse {
    flex-direction: row-reverse;
}

.training-img {
    flex: 1;
    min-width: 0;
}

.training-img img {
    border-radius: 15px;
    width: 100%;
}

.training-text {
    flex: 1;
    min-width: 0;
}

.training-text h3 {
    color: #fff;
    margin-bottom: 16px;
    font-size: 1.3rem;
}

.training-text p {
    color: #A5A5A5;
    margin-bottom: 12px;
}

.training-text p strong {
    color: #fff;
}

.training-text ul {
    margin: 12px 0;
    padding-left: 20px;
}

.training-text ul li {
    color: #A5A5A5;
    padding: 4px 0;
    position: relative;
    padding-left: 16px;
    font-size: 0.95rem;
}

.training-text ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #2968ED;
}

/* ===== SECTION PLANOS ===== */
.section-planos {
    background: #EFEFF0;
    padding: 100px 0;
}

.section-planos .section-subtitle {
    color: #696969;
}

.plano-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 50px;
}

.toggle-label {
    font-size: 1rem;
    font-weight: 600;
    color: #292929;
}

.toggle-badge {
    background: #2968ED;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 50px;
}

.planos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.plano-card {
    background: #fff;
    border-radius: 20px;
    padding: 36px 28px;
    text-align: center;
    position: relative;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.plano-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.plano-card.destaque {
    border-color: #2968ED;
    box-shadow: 0 10px 40px rgba(41,104,237,0.15);
}

.plano-card.enterprise {
    border-color: #FFBC7D;
}

.plano-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #ef911c, #FFBC7D);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 6px 20px;
    border-radius: 50px;
    white-space: nowrap;
}

.plano-nome {
    color: #292929;
    font-size: 1.4rem;
    margin-bottom: 6px;
}

.plano-desc {
    color: #696969;
    font-size: 0.9rem;
    margin-bottom: 24px;
}

.plano-price {
    margin-bottom: 8px;
}

.plano-valor {
    font-family: 'Sora', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: #292929;
}

.plano-periodo {
    color: #696969;
    font-size: 1rem;
}

.enterprise-valor {
    font-size: 1.6rem;
    color: #2968ED;
}

.plano-ou {
    color: #696969;
    font-size: 0.85rem;
    margin-bottom: 4px;
}

.plano-parcelado {
    font-size: 1rem;
    color: #292929;
    margin-bottom: 2px;
}

.plano-parcelado strong {
    font-size: 1.3rem;
    color: #292929;
}

.plano-cobranca {
    color: #696969;
    font-size: 0.8rem;
    margin-bottom: 24px;
}

.plano-inclui {
    color: #292929;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 12px;
    text-align: left;
}

.plano-features {
    text-align: left;
    margin-bottom: 28px;
}

.plano-features li {
    color: #696969;
    font-size: 0.88rem;
    padding: 6px 0;
    padding-left: 24px;
    position: relative;
}

.plano-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2968ED;
    font-weight: 700;
}

.btn-plano {
    display: block;
    padding: 14px 24px;
    background: linear-gradient(135deg, #2968ED, #316BDC);
    color: #fff;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-plano:hover {
    background: linear-gradient(135deg, #3971FF, #2968ED);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(41,104,237,0.4);
}

.plano-tel {
    color: #696969;
    font-size: 0.85rem;
    margin-top: 12px;
    line-height: 1.5;
}

.planos-obs {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.planos-obs p {
    color: #696969;
    font-size: 0.9rem;
}

.planos-obs p strong {
    color: #292929;
}

/* ===== SECTION CTA ===== */
.section-cta {
    background: linear-gradient(135deg, #090979, #2968ED);
    padding: 100px 0;
    text-align: center;
}

.section-cta h2 {
    color: #fff;
    margin-bottom: 16px;
    font-size: clamp(1.8rem, 3vw, 2.8rem);
}

.section-cta p {
    color: rgba(255,255,255,0.8);
    font-size: 1.1rem;
    margin-bottom: 32px;
}

.section-cta .btn-primary {
    background: #fff;
    color: #2968ED;
    font-weight: 700;
}

.section-cta .btn-primary:hover {
    background: #f0f0f0;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.garantia {
    margin-top: 20px;
    color: rgba(255,255,255,0.6) !important;
    font-size: 0.9rem !important;
}

/* ===== FAQ ===== */
.section-faq {
    background: #000;
    padding: 100px 0;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    color: #fff;
    font-family: 'Sora', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    text-align: left;
    padding: 20px 40px 20px 0;
    cursor: pointer;
    position: relative;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: #3971FF;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: #2968ED;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
    content: '−';
}

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

.faq-item.active .faq-answer {
    max-height: 600px;
    padding-bottom: 20px;
}

.faq-answer p {
    color: #A5A5A5;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 8px;
}

.faq-answer ul {
    margin: 10px 0;
    padding-left: 20px;
}

.faq-answer ul li {
    color: #A5A5A5;
    padding: 4px 0;
    position: relative;
    padding-left: 16px;
    font-size: 0.95rem;
}

.faq-answer ul li::before {
    content: '●';
    position: absolute;
    left: 0;
    color: #2968ED;
    font-size: 0.6rem;
    top: 8px;
}

/* ===== SUPORTE ===== */
.section-suporte {
    padding: 80px 0;
    text-align: center;
}

.section-suporte h3 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.section-suporte p {
    color: #A5A5A5;
    margin-bottom: 24px;
}

/* ===== FOOTER ===== */
.footer {
    background: #000;
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 30px 0;
    text-align: center;
}

.footer a {
    color: #A5A5A5;
    font-size: 0.85rem;
    text-decoration: underline;
    margin-bottom: 8px;
    display: inline-block;
    transition: color 0.3s;
}

.footer a:hover {
    color: #2968ED;
}

.footer p {
    color: #696969;
    font-size: 0.8rem;
    margin-top: 8px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .planos-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .plano-card.enterprise {
        grid-column: span 2;
        max-width: 400px;
        margin: 0 auto;
    }

    .numeros-leaves {
        display: none;
    }
}

@media (max-width: 768px) {
    .flex-row,
    .flex-row-reverse {
        flex-direction: column;
        gap: 30px;
    }

    .cards-row {
        flex-direction: column;
    }

    .numeros-row {
        flex-direction: column;
        gap: 40px;
    }

    .numeros-leaves {
        display: none;
    }

    .grid-images {
        grid-template-columns: 1fr;
    }

    .grid-img-item.large {
        grid-column: span 1;
    }

    .planos-grid {
        grid-template-columns: 1fr;
    }

    .plano-card.enterprise {
        grid-column: span 1;
        max-width: 100%;
    }

    .func-lists-row {
        flex-direction: column;
        gap: 30px;
    }

    .bonus-content {
        flex-direction: column;
    }

    .bonus-right {
        padding: 30px 20px;
    }

    .training-block,
    .training-block.reverse {
        flex-direction: column;
    }

    .hero-top {
        flex-direction: column;
        gap: 16px;
    }

    .section-dark,
    .section-light {
        padding: 50px 0;
    }

    .func-grid {
        grid-template-columns: 1fr;
    }

    .section-espere .col-img img {
        max-width: 100%;
    }

    .robo-img {
        max-width: 300px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 14px;
    }

    .hero-content {
        padding: 30px 0 20px;
    }

    .btn-primary.large {
        padding: 14px 28px;
        font-size: 1rem;
    }
}

/* ===== SCROLL REVEAL ===== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
