@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: #fff;
    color: #171717;
    overflow-x: hidden;
}

/* ========================================
   NAVBAR
======================================== */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    background-color: #171717;
    padding: 16px 0;
    border-bottom: 1px solid #262626;
}

.nav-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo img {
    height: 40px;
    filter: brightness(200%);
}

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: #9ca3af;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #fff;
}

.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    transition: all 0.3s;
}

/* Menu Mobile */
.mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    background: #000;
    z-index: 200;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.mobile-menu.open {
    display: flex;
}

.mobile-menu a {
    text-decoration: none;
    color: #9ca3af;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    transition: color 0.3s;
}

.mobile-menu a:hover {
    color: #fff;
}

.mobile-close {
    position: absolute;
    top: 32px;
    right: 24px;
    background: none;
    border: none;
    color: #fff;
    font-size: 32px;
    cursor: pointer;
}

/* ========================================
   HERO
======================================== */
.hero {
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.65);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 0 24px;
    animation: fadeInUp 1s ease-out;
}

.hero-content h1 {
    font-size: clamp(28px, 5vw, 52px);
    color: #fff;
    font-weight: 600;
    margin-bottom: 24px;
    line-height: 1.25;
}

.hero-content p.subtitle {
    font-size: clamp(16px, 2vw, 20px);
    color: rgba(255,255,255,0.8);
    font-weight: 300;
    margin-bottom: 16px;
}

.hero-content p.address {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    font-weight: 300;
    letter-spacing: 0.05em;
    margin-bottom: 48px;
}

.btn {
    display: inline-block;
    padding: 16px 40px;
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: background 0.3s, color 0.3s;
}

.btn-white {
    background: #fff;
    color: #171717;
}

.btn-white:hover {
    background: #f5f5f5;
}

.btn-dark {
    background: #171717;
    color: #fff;
}

.btn-dark:hover {
    background: #262626;
}

/* ========================================
   SEÇÕES GENÉRICAS
======================================== */
section {
    padding: 96px 0;
}

.section-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-inner-md {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-title {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 600;
    text-align: center;
    margin-bottom: 80px;
}

/* ========================================
   SEÇÃO SOBRE (bege)
======================================== */
.bg-bege { background-color: #A69D94; }
.bg-dark  { background-color: #2C2C2C; }
.bg-white { background-color: #fff; }
.bg-darkest { background-color: #0a0a0a; }

.text-white { color: #fff; }
.text-white-70 { color: rgba(255,255,255,0.7); }
.text-white-80 { color: rgba(255,255,255,0.8); }

.sobre-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 64px;
}

.sobre-text p {
    color: rgba(255,255,255,0.9);
    font-weight: 300;
    line-height: 1.8;
    margin-bottom: 20px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 800px;
    margin: 0 auto;
}

.stat-card {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 32px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
}

.stat-card:hover {
    background: #171717;
    border-color: #171717;
    transform: scale(1.05);
}

.stat-card h4 {
    font-size: clamp(36px, 5vw, 48px);
    color: #fff;
    font-weight: 600;
    margin-bottom: 12px;
}

.stat-card p {
    font-size: 11px;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

/* ========================================
   DIFERENCIAIS
======================================== */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
    align-items: center;
}

.feature-card {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 40px;
    transition: all 0.5s;
    cursor: pointer;
}

.feature-card:hover {
    background: #fff;
    border-color: #fff;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.feature-card svg {
    width: 20px;
    height: 20px;
    margin-bottom: 24px;
    color: rgba(255,255,255,0.5);
    stroke: rgba(255,255,255,0.5);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: stroke 0.5s;
}

.feature-card:hover svg {
    stroke: #171717;
}

.feature-card h3 {
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 12px;
    transition: color 0.5s;
}

.feature-card:hover h3 {
    color: #171717;
}

.feature-card p {
    font-size: 13px;
    color: rgba(255,255,255,0.8);
    font-weight: 300;
    line-height: 1.7;
    transition: color 0.5s;
}

.feature-card:hover p {
    color: #525252;
}

/* ========================================
   ÁREAS
======================================== */

.area-card i{
    color: #fff;
    margin-bottom: 15px; 
    font-size: 30px;
}

.area-card:hover i{
    color: black;
}

.area-card {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 40px;
    transition: all 0.5s;
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.area-card:hover {
    background: #fff;
    border-color: #fff;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.area-card svg {
    width: 28px;
    height: 28px;
    margin-bottom: 20px;
    stroke: rgba(255,255,255,0.5);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: stroke 0.5s;
}

.area-card:hover svg {
    stroke: #404040;
}

.area-card h3 {
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 16px;
    transition: color 0.5s;
}

.area-card:hover h3 { color: #171717; }

.area-card p {
    font-size: 13px;
    color: rgba(255,255,255,0.8);
    font-weight: 300;
    line-height: 1.7;
    transition: color 0.5s;
    flex-grow: 1;
}

.area-card:hover p { color: #525252; }

/* ========================================
   EQUIPE
======================================== */
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
    align-items: stretch;
}

.team-card{
    display: flex;
    flex-direction: column;
    height: 100%;
}

.team-card a {
    text-decoration: none;
    display: block;
}

.team-avatar {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    aspect-ratio: 4/5;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: all 0.5s;
    font-size: 64px;
    color: rgba(255,255,255,0.5);
    font-weight: 300;
}

.team-avatar img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.team-card:hover .team-avatar {
    background: #fff;
    border-color: #fff;
}

.team-card h3 {
    font-size: 22px;
    color: #fff;
    font-weight: 500;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.team-card .team-role {
    font-size: 11px;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 500;
    margin-bottom: 16px;
}

.team-card .team-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 16px;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(255,255,255,0.6);
}

/* ========================================
   DEPOIMENTOS
======================================== */
.testimonials-section {
    text-align: center;
}

.testimonial-stars {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 32px;
}

.testimonial-stars span {
    color: #fff;
    font-size: 16px;
}

.testimonial-box {
    min-height: 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
}

.testimonial-text {
    font-size: clamp(18px, 2.5vw, 24px);
    color: #fff;
    font-style: italic;
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 32px;
    max-width: 700px;
    opacity: 1;
    transition: opacity 0.5s;
}

.testimonial-author {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(255,255,255,0.7);
}

.testimonial-author strong {
    color: #fff;
    font-weight: 500;
}

.testimonial-controls {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.testimonial-btn {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255,255,255,0.3);
    background: none;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-btn:hover {
    background: #171717;
    border-color: #171717;
}

/* ========================================
   BLOG / NOTÍCIAS - CARDS
======================================== */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.card {
    background: #fff;
    border: 1px solid #e5e5e5;
    overflow: hidden;
    transition: all 0.5s;
}

.card:hover {
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.card-img {
    aspect-ratio: 16/9;
    overflow: hidden;
}

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s;
}

.card:hover .card-img img {
    transform: scale(1.05);
}

.card-body {
    padding: 32px;
}

.card-body h3 {
    font-size: 18px;
    color: #171717;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 12px;
}

.card-body p {
    font-size: 13px;
    color: #525252;
    font-weight: 300;
    line-height: 1.7;
    margin-bottom: 24px;
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #a3a3a3;
    text-decoration: none;
    transition: color 0.3s;
}

.card:hover .card-link {
    color: #171717;
}

.text-center { text-align: center; }
.mt-12 { margin-top: 48px; }

/* ========================================
   FAQ - ACCORDION
======================================== */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    border: 1px solid rgba(255,255,255,0.2);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 32px;
    background: none;
    border: none;
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    transition: background 0.2s;
    font-family: 'Montserrat', sans-serif;
}

.faq-question:hover {
    background: rgba(255,255,255,0.05);
}

.faq-icon {
    width: 24px;
    height: 24px;
    border: 1px solid rgba(255,255,255,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 14px;
    color: #fff;
    transition: transform 0.3s;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s;
    padding: 0 32px;
}

.faq-answer.open {
    max-height: 300px;
    padding: 0 32px 24px;
}

.faq-answer p {
    font-size: 13px;
    color: rgba(255,255,255,0.7);
    font-weight: 300;
    line-height: 1.8;
}

/* ========================================
   GOLPES / FRAUD WARNING
======================================== */
.fraud-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 64px;
    align-items: center;
}

.fraud-title {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.fraud-title svg {
    width: 24px;
    height: 24px;
    stroke: #171717;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
}

.fraud-title h2 {
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 600;
    color: #171717;
}

.fraud-desc {
    color: #525252;
    font-weight: 300;
    line-height: 1.8;
    margin-bottom: 40px;
}

.channel-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.channel-link {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 16px;
    border: 1px solid #e5e5e5;
    text-decoration: none;
    transition: all 0.3s;
}

.channel-link:hover {
    background: #171717;
    border-color: #171717;
}

.channel-icon {
    width: 40px;
    height: 40px;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.3s;
}

.channel-link:hover .channel-icon {
    background: rgba(255,255,255,0.1);
}

.channel-icon svg {
    width: 20px;
    height: 20px;
    stroke: #404040;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: stroke 0.3s;
}

.channel-link:hover .channel-icon svg {
    stroke: #fff;
}

.channel-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #a3a3a3;
    transition: color 0.3s;
}

.channel-link:hover .channel-label {
    color: rgba(255,255,255,0.6);
}

.channel-value {
    font-size: 14px;
    font-weight: 500;
    color: #171717;
    transition: color 0.3s;
}

.channel-link:hover .channel-value {
    color: #fff;
}

.fraud-img-wrap {
    position: relative;
}

.fraud-img-wrap img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    filter: grayscale(100%);
}

.fraud-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    right: 24px;
    background: #171717;
    color: #fff;
    padding: 20px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.fraud-badge svg {
    width: 20px;
    height: 20px;
    stroke: #fff;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
    margin-top: 2px;
}

.fraud-badge p {
    font-size: 13px;
    font-weight: 300;
    line-height: 1.6;
}

/* ========================================
   CONTATO / ENDEREÇO
======================================== */
.contact-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: center 35%;
}

.contact-info h3 {
    font-size: 24px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 32px;
}

.contact-info .info-block {
    margin-bottom: 24px;
}

.contact-info strong {
    display: block;
    color: #fff;
    font-weight: 500;
    margin-bottom: 8px;
    font-size: 16px;
}

.contact-info p {
    color: rgba(255,255,255,0.8);
    font-weight: 300;
    font-size: 16px;
    line-height: 1.6;
}

/* ========================================
   CTA FINAL
======================================== */
.cta-section {
    background: #0a0a0a;
    text-align: center;
    padding: 128px 0;
    border-top: 1px solid #262626;
}

.cta-section h2 {
    font-size: clamp(28px, 5vw, 48px);
    color: #fff;
    font-weight: 600;
    margin-bottom: 40px;
    line-height: 1.25;
}

.cta-section p {
    color: #737373;
    font-weight: 300;
    letter-spacing: 0.05em;
    margin-top: 24px;
}

/* ========================================
   FOOTER
======================================== */
footer {
    background: #050505;
    color: #737373;
    padding: 96px 0;
    border-top: 1px solid #0a0a0a;
}

.footer-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 64px;
}

.footer-logo {
    height: 32px;
    margin-bottom: 24px;
}

.footer-desc {
    font-size: 13px;
    font-weight: 300;
    line-height: 1.7;
}

.footer-socials {
    display: flex;
    gap: 16px;
    margin-top: 32px;
}

.footer-socials svg {
    width: 20px;
    height: 20px;
    stroke: #737373;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    cursor: pointer;
    transition: stroke 0.3s;
}

.footer-socials svg:hover { stroke: #fff; }

footer h4 {
    color: #fff;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 32px;
}

footer ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

footer ul li {
    font-size: 13px;
    font-weight: 300;
}

footer ul li a {
    color: #737373;
    text-decoration: none;
    transition: color 0.3s;
}

footer ul li a:hover { color: #fff; }

.footer-bottom {
    max-width: 1280px;
    margin: 80px auto 0;
    padding: 32px 24px 0;
    border-top: 1px solid #0a0a0a;
    text-align: center;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #404040;
}

/* ========================================
   WHATSAPP FLUTUANTE
======================================== */
.whatsapp-btn {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 56px;
    height: 56px;
    background: #fff;
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
    z-index: 100;
    text-decoration: none;
    transition: transform 0.3s;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
}

.whatsapp-btn svg {
    width: 24px;
    height: 24px;
}
/*EDICAO DO TYNEMCE PARA O CSS FICAR BOM!*/
/* Container da formação */
.formacao-academica ul {
    list-style: none; /* Remove as bolinhas */
    padding: 0;
    margin: 20px 0;
}

/* Estilo de cada item da lista */
.formacao-academica li {
    position: relative;
    padding-left: 25px;      /* Espaço para a barrinha lateral */
    margin-bottom: 25px;    /* Espaço entre um curso e outro */
    font-family: sans-serif; /* Ou a fonte que estiver usando */
    color: #666;             /* Cor cinza do texto na imagem */
    font-size: 18px;
    line-height: 1.2;
    display: flex;
    align-items: center;
}

/* A barrinha lateral (borda esquerda) */
.formacao-academica li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;             /* Grossura da barrinha */
    background-color: #ddd; /* Cor cinza clara da barrinha */
}
/*EDICAO DO TYNEMCE PARA O CSS FICAR BOM!*/

/* ========================================
   ANIMAÇÕES
======================================== */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}

.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   RESPONSIVO
======================================== */
@media (max-width: 1024px) {
    .grid-3, .cards-grid, .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-inner {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .hamburger { display: flex; }

    .grid-3, .grid-2, .cards-grid, .team-grid, .stats-grid,
    .fraud-grid, .footer-inner {
        grid-template-columns: 1fr;
    }

    section { padding: 64px 0; }
    .section-title { margin-bottom: 48px; }
}