/* Variáveis de Cores */
:root {
    /* Cores principais */
    --color-primary: #ff6600;
    /* Cor laranja principal */
    --color-secondary: #ffffff;
    /* Branco para textos */
    --color-bg: #0f0c15;
    /* Fundo escuro */
    --color-muted: rgba(255, 255, 255, 0.7);
    /* Texto secundário */

    /* Gradientes */
    --color-gradient-start: #ff6600;
    /* Início do gradiente */
    --color-gradient-end: #ff4500;
    /* Final do gradiente */

    /* Divisores e linhas */
    --color-divider: rgba(255, 255, 255, 0.1);
    --color-card-bg: #1a171d;
    /* Fundo dos cards */
    --color-icon-bg: #262528;
    /* Fundo dos ícones */

    /* Navegação */
    --color-nav-link-active: #ff6600;
    /* Cor do link ativo */
    --color-nav-link-hover: #ff4500;
    /* Cor ao passar o mouse */

    /* Botões */
    --color-btn-hover: #ff5722;
    /* Cor do botão ao passar o mouse */

    /* Texto */
    --color-text-muted: #B0B0B0;
    /* Texto secundário em cards */

    /* Fundo do footer */
    --color-footer-bg: #121017;
    /* Fundo do rodapé */
    --color-footer-text: rgba(255, 255, 255, 0.5);
    /* Texto do rodapé */
}


/* Reset Básico */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: var(--color-bg);
    color: var(--color-secondary);
}

@font-face {
    font-family: 'Francy';
    src: url('./../Francy.otf');
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Unitea Sans', Arial, sans-serif !important;
}


/* Header Geral */
.main-header {
    background-color: rgba(16, 13, 21, 0.1);

    z-index: 1000;
    padding: 15px 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(2px)
}

/* Logo */
.logo-icon {
    width: 180px;
}

/* Menu Central */
.nav-links {
    display: flex;
    gap: 30px;
    border: 1px solid var(--color-divider);
    border-radius: 8rem;
    align-items: center;
    padding: 0.5rem 1rem;
    max-width: 230px;
    width: fit-content;
}

.nav-links .nav-item {
    color: var(--color-secondary);
    font-weight: 500;
    text-decoration: none;
    font-size: 1rem;
    position: relative;
    transition: color 0.3s ease;
}

.nav-links .nav-item.active,
.nav-links .nav-item:hover {
    color: var(--color-nav-link-active);
}

/* Botões à Direita */
.header-buttons .btn {
    font-size: 0.9rem;
    padding: 10px 20px;
    /* border-radius: 20px; */
    transition: all 0.3s ease;
}

.header-buttons .btn-outline-light {
    color: var(--color-secondary);
    border: none !important;
}

.header-buttons .btn-outline-light:hover {
    color: var(--color-primary);
    background-color: rgba(255, 255, 255, 0.1);
}

.btn-gradient {
    background: var(--color-gradient-start);
    color: var(--color-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    /* Espaço entre o texto e o ícone */
    font-weight: 600;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    border-radius: 8px;
}

.btn-gradient .bg-seta {
    background: #F7F3F3;
    /* padding: 4px; */
    border-radius: 8px;
    width: 22px;
    height: 22px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn-gradient .bg-seta i {
    color: #FF6707;
    transform: rotate(315deg);
}

.header-buttons .btn-gradient:hover {
    opacity: 0.9;
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.3);
}

/* Responsividade */
@media (max-width: 1200px) {
    .nav-links {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .header-buttons .btn {
        font-size: 0.8rem;
    }
}

@media (max-width: 576px) {
    .logo-icon {
        width: 140px;
    }
}













/* Hero Section */
.hero-section {
    background: url('../img/bg-hero.jpg') no-repeat center center/cover;
    color: #DBDADD;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 4rem 0;
    position: relative;
    z-index: 1;
    overflow: hidden;
}



.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.hero-section {
    flex: 1 1 50%;
    padding-right: 2rem;
}

.hero-section .hero-title {
    font-size: 3.5rem;
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-section .hero-title span {
    color: var(--color-primary);
}

.hero-section .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 2rem;
    color: var(--color-primary);
}


/* Hero CTA (Botão e Nota) */
.hero-cta-wrapper {
    margin-top: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.hero-cta-wrapper .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 2rem;
    font-size: 1rem;
    border-radius: 8px;
    background: var(--color-gradient-start);
    color: var(--color-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.hero-cta-wrapper .btn .bg-seta {
    background: #F7F3F3;
    border-radius: 8px;
    width: 22px;
    height: 22px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-cta-wrapper .btn .bg-seta i {
    font-size: 1.2rem;
    transform: rotate(320deg);
    /* Ícone rotacionado */
}

.hero-cta-wrapper .btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.hero-cta-wrapper .cta-note {
    font-size: 0.9rem;
    color: var(--color-muted);
    margin: 0;
    flex: 1;
    /* white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis; */
}

/* Responsividade */
@media (max-width: 992px) {
    .hero-section {
        padding-right: 1rem;
    }

    .hero-section .hero-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 2rem 0;
    }

    .hero-content {
        flex-direction: column;
        /* text-align: center; */
    }

    .hero-section {
        padding-right: 0;
    }

    .hero-right {
        margin-top: 2rem;
    }

    .hero-cta-wrapper {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .hero-cta-wrapper .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-cta-wrapper .cta-note {
        text-align: center;
    }
}

@media (max-width: 576px) {
    .hero-section .hero-title {
        font-size: 2.5rem;
    }

    .hero-section .hero-subtitle {
        font-size: 0.9rem;
    }

    .hero-cta-wrapper .btn {
        font-size: 0.9rem;
        padding: 0.7rem 1.5rem;
    }

    .hero-cta-wrapper .cta-note {
        font-size: 0.8rem;
    }
}






/* Info Section */
.info-section {
    padding: 60px 0;
}

.info-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    border-radius: 20rem;
    border: 1px solid var(--color-secondary);
}

.info-card {
    flex: 1 1 200px;
    text-align: center;
    padding: 10px;
}

.info-card h4,
.info-card p {
    color: var(--color-secondary);
}

.info-card h4 {
    margin-bottom: 0;
}

.info-card p {
    font-size: 14px;
    ;
}

.info-card .icon {
    max-width: 28px;
    margin-bottom: 10px;
}

.graph-img {
    max-width: 100%;
    border-radius: 15px;
    background: #17131d;
}

/* Advantages Section */
.advantages-section {
    background: var(--color-bg);
    padding: 60px 0;
    color: var(--color-secondary);
}

.hero-section .hero-title span {
    color: var(--color-primary);
}

.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.section-subtitle {
    font-size: 1rem;
    /* margin-bottom: 2rem; */
    color: var(--color-primary);
}

.advantage-card {
    background: #100D15;
    border: 1px solid #3D3D3D;
    border-radius: 24px;
    padding: 20px;
    /* text-align: center; */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.advantage-card h4 {
    font-size: 1.2rem;
    color: #F6F6F6;
}

.advantage-card p {
    font-size: 1rem;
    color: #BBB9C0;
}

.advantage-card:hover {
    transform: scale(1.05);
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.3);
}

.card-image {
    max-width: 100%;
    margin-bottom: 20px;
}




/* FAQ Section */
.faq-section {
    padding: 60px 0;
}

.faq-title {
    font-size: 2rem;
    margin-bottom: 20px;
}

.faq-item {
    border-bottom: 1px solid var(--color-divider);
    padding: 15px 0;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.icon-toggle {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.faq-question[aria-expanded="true"] .icon-toggle {
    transform: rotate(360deg);
}

/* Footer */
footer {
    border-top: 1px solid #262528;
}

.footer-section {
    background: url('../img/bg-footer.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-color: var(--color-bg);
    padding: 3rem 0 1rem 0;
    color: var(--color-secondary);
    font-size: 0.9rem;
}

.footer-title {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.footer-subtitle {
    margin-bottom: 20px;
    color: var(--color-muted);
}

.social-links {
    margin-bottom: 20px;
}

.social-link {
    display: inline-block;
    margin-right: 20px;
    color: #B0B0B0;
    font-size: 1rem;
    text-decoration: none;
}

.social-link i {
    margin-right: 8px;
    padding: 6px;
    border: 1px solid;
    border-radius: 1000px;
    font-size: 12px;
}

.social-link:hover {
    color: var(--color-primary);
}

.footer-heading {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--color-secondary);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--color-muted);
    text-decoration: none;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--color-primary);
}

.footer-section .btn-gradient {
    width: fit-content;
}

.footer-legal {
    margin-top: 40px;
    /* border-top: 1px solid rgba(255, 255, 255, 0.1); */
    padding-top: 20px;
    font-size: 12px;
    color: #454545;
}

.footer-legal .legal-title {
    font-weight: bold;
    color: #B0B0B0;
    margin-top: 20px;
}


/* Responsividade */
@media (max-width: 768px) {
    .hero-section {
        padding: 14rem 0 40px 0;
        flex-direction: column;
        /* text-align: center; */
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-section .cta-wrapper {
        justify-content: center;
    }

    .hero-section .cta-wrapper .btn {
        margin-left: 8px;
        margin-right: 8px;
    }

    .info-cards {
        gap: 10px;
    }



    .footer-links {
        /* text-align: center; */
    }
}

@media (max-width: 576px) {
    .main-header>div {
        place-items: center;
        -webkit-align-items: center;
        -webkit-justify-items: center;
    }

    .header-buttons .btn {
        font-size: 1rem;
        margin-top: .5rem;
    }

    .main-header>div nav {
        margin-top: .8rem;
        margin-bottom: .8rem;
        font-size: 18px;
    }

    .nav-links .nav-item {
        color: var(--color-secondary);
        font-weight: 500;
        text-decoration: none;
        font-size: 18px;
        position: relative;
        transition: color 0.3s ease;
    }

    .logo-icon {
        transform: translateX(20%);
    }

    .hero-text h1 {
        font-size: 3rem;
    }

    .hero-section .cta-wrapper .btn {
        margin-left: 8px;
        margin-right: 8px;
        font-size: 1rem;
    }

    .hero-section .cta-wrapper {
        justify-content: center;
        margin-top: 3rem;
    }

    .hero-text .hero-text p.small-text {
        font-size: 18px !important;
    }

    .hero-media .info-text {
        margin-top: 3rem;
        font-size: 17px;
        color: var(--color-muted);
    }


    .hero-section .hero-gif {
        display: none;
    }

    .cta-wrapper .btn-gradient {
        font-size: 0.8rem;
    }

    .info-card {
        flex: 0 0 100%;
        margin-bottom: 20px;
    }

    .footer-section .btn-gradient {
        justify-self: center;
        justify-content: center;
        margin: auto;
        text-align: center;
    }

    .footer-section .row>div {
        text-align: center;
        margin-bottom: 30px;
    }

    .footer-title {
        font-size: 1.5rem;
    }

    .footer-heading {
        font-size: 1rem;
    }

    .footer-note {
        font-size: 0.7rem;
    }
}



.btn .btn-gradient {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 2rem;
    font-size: 1rem;
    border-radius: 8px;
    background: var(--color-gradient-start);
    color: var(--color-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn .btn-gradient .bg-seta {
    background: #F7F3F3;
    border-radius: 8px;
    width: 22px;
    height: 22px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn .btn-gradient .bg-seta i {
    font-size: 1.2rem;
    transform: rotate(320deg);
    /* Ícone rotacionado */
}