

/* ========= VARIÁVEIS GLOBAIS ========= */
:root {
    --primary: #1a174b;
    --secondary: #0e0c1f;
    --light: #FFFFFF;
    --gray: #bababc;
    --text: #0e0c1f;
    --border-light: #ccc;
    --radius: 12px;
    --shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
    --font: "Segoe UI", Arial, sans-serif;
    --font2: "Poppins", sans-serif;
   
}

/* ========= RESET ========= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font);
    color: var(--text);
    background: var(--light);
    line-height: 1.6;
}

img {
    max-width: 100%;
    display: block;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
}

section {
    padding: 80px 20px;
}

/* ========= HEADER ========= */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--secondary);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    z-index: 1000;
    transition: var(--transition);
}

.logo-dark {
    display: none;
}

.logo-light {
    display: block;
}

header.scrolled .logo-light {
    display: none;
}

header.scrolled .logo-dark {
    display: block;
}

header.scrolled {
    background: var(--light);
    box-shadow: var(--shadow);
}

header.scrolled nav a {
    color: var(--primary);
}

header.scrolled nav a:hover {
    color: var(--secondary);
}

header img {
    height: 50px;
}

nav ul {
    display: flex;
    gap: 20px;
    
    list-style: none;
}

nav a {
    font-weight: 100;
    color: var(--light);
    transition: var(--transition);
    font-size: clamp(0.9rem, 2vw, 1.1rem);
}

nav a:hover,
nav a:focus {
    color: var(--gray);
    outline: none;
}

/* ========= MENU HAMBÚRGUER ========= */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    z-index: 1100;
    
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--light);
    border-radius: 2px;
    transition: var(--transition);
}

header.scrolled .menu-toggle span {
    background: var(--text);
}

.menu-toggle.open span:nth-child(1) {
    transform: rotate(45deg) translateY(8px);
}

.menu-toggle.open span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.open span:nth-child(3) {
    transform: rotate(-45deg) translateY(-8px);
}

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: var(--secondary);
    color:  var(--light);
    padding: 0 20px;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 800px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.hero h1 {
    font-family: var(--font2);
    font-weight: 100;
    letter-spacing: 8px;
    font-size: clamp(6rem, 12vw, 9rem);
    margin: 0 0 6px;
    color: var(--light);
    line-height: 0.95;
}

.hero h2 {
    font-family: var(--font);
    font-weight: 300;
    font-size: clamp(0.9rem, 2.5vw, 1.3rem);
    letter-spacing: 6px;
    text-transform: uppercase;
    color: var(--gray);
    margin: 0 0 10px;
}

.subtitle {
    font-size: clamp(0.9rem, 2.8vw, 1.2rem);
    margin: 8px 0 22px;
    color: #e0e0e0;
}

.hero .btn {
    display: inline-block;
    margin-top: 10px;
    padding: 14px 32px;
    font-weight: 600;
    border-radius: 50px;
    background: linear-gradient(135deg, #1a174b, #0e0c1f);
    color:  var(--light);
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
}

.btn:hover {
    background: linear-gradient(135deg, #0e0c1f, #1a174b);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

.scroll-down {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: clamp(28px, 4vh, 96px);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #e0e0e0;
    font-size: 0.85rem;
}

.scroll-down span {
    margin-bottom: 8px;
}

.scroll-down .arrow {
    width: 10px;
    height: 10px;
    border-left: 2px solid #e0e0e0;
    border-bottom: 2px solid #e0e0e0;
    transform: rotate(-45deg);
    animation: bounce 1.5s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) rotate(-45deg);
    }
    40% {
        transform: translateY(8px) rotate(-45deg);
    }
    60% {
        transform: translateY(4px) rotate(-45deg);
    }
}

/* ===== SOBRE NÓS ===== */
.sobre-nos {
    max-width: 1500px;
    margin: 0 auto;
    padding: 60px 50px;
}

.sobre-nos h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 40px;
    color: var(--primary);
}

.sobre-conteudo strong {
    color: var(--primary);
}

.sobre-conteudo {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: flex-start;
}

.sobre-conteudo img {
    flex: 1 1 350px;
    max-width: 600px;
}

.sobre-texto {
    flex: 1 1 600px;
}

.sobre-texto h3 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.sobre-texto p {
    margin-bottom: 15px;
    line-height: 1.6;
    text-align: justify;
}

/* ===== NOSSA ESSÊNCIA ===== */
.essencia {
    margin-top: 6px;
    text-align: center;
}

.essencia h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: bold;
    color: var(--primary);
}

.cards-essencia {
    display: flex;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap; 
    gap: 40px;
}

.card2-essencia {
    background:  var(--light);
    flex: 1;
    max-width: 320px;
    min-height: 220px;
    border-radius: 16px;
    padding: 15px;
    text-align: left;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.card2-essencia:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
}

.card2-essencia h4 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--primary);
}

.card2-essencia p {
    font-size: 1rem;
    color: var(--text);
    line-height: 1.4;
    text-align: center;
}

.card2-essencia ul {
    padding-left: 18px;
    color: var(--text);
    line-height: 1.6;
}

.card2-essencia ul li::marker {
    list-style: disc;
    color: var(--secondary);
}

/* ========= SERVIÇOS ========= */
.services2 {
    text-align: center;
}

.services2 h2 {
    font-size: 3rem;
    margin-bottom: 40px;
    color: var(--text);
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: var(--secondary);
    color:  var(--light);
    border-radius: var(--radius);
    padding: 25px;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    background: var(--primary);
}

.service-card:hover p {
    color:  var(--light);
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.service-card p {
    font-size: 0.9rem;
    line-height: 1.5;
    text-align: center;
    color: var(--gray);
}

.service-card .icon {
    width: 60px;
    height: 80px;
    margin: 0 auto 15px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
.icon.gestao {
  background-image: url("/imagens/gestao.png");
}
.icon.assessoria {
  background-image: url("/imagens/assessoria.png");
}
.icon.consultoria {
  background-image: url("/imagens/consultoria.png");
}
.icon.planejamento {
  background-image: url("/imagens/planejamento.png");
}
.icon.treinamento {
  background-image: url("/imagens/treinamento.png");
}
.icon.acompanhamento {
  background-image: url("/imagens/acompanhamentodeprocessos.png");
}
@supports (background-image: url("/imagens/gestao.webp")) {
  .icon.gestao {
    background-image: url("/imagens/gestao.webp");
  }
  .icon.assessoria {
    background-image: url("/imagens/assessoria.webp");
  }
  .icon.consultoria {
    background-image: url("/imagens/consultoria.webp");
  }
  .icon.planejamento {
    background-image: url("/imagens/planejamento.webp");
  }
  .icon.treinamento {
    background-image: url("/imagens/treinamento.webp");
  }
  .icon.acompanhamento {
    background-image: url("/imagens/acompanhamentodeprocessos.webp");
  }
}
/* ========= BENEFÍCIOS ========= */
.benefits {
    padding: 80px 20px;
    text-align: center;
}

.benefits h2 {
    font-size: 3rem;
    margin-bottom: 50px;
    color: var(--primary);
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 500px;
    margin: 0 auto;
    text-align: left;

}

.benefit-item {
    display: flex;
    gap: 20px;
    align-items:flex-start ;
}

.benefit-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--gray);
    flex-shrink: 0;
    width: 50px;
    text-align: right;
}

.benefit-item h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
    color: var(--secondary);
}

.benefit-item p {
    font-size: 1rem;
    color: var(--text);
}

/* ========= CONTATO ========= */
.contact-section {
    background: var(--secondary);
    color: var(--light);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

.contact-info h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.contact-info span {
    color: var(--gray);
}

.contact-info p {
    margin-bottom: 30px;
    line-height: 1.6;
    color: var(--light);
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 5px;
}

.info-item .icon {
    font-size: 1.5rem;
    padding: 10px;
    border-radius: var(--radius);
}

.contact-form {
    background: var(--light);
    padding: 30px;
    width: 100%;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form label {
    font-weight: 600;
    color: var(--text);
}

.contact-form input,
.contact-form textarea {
    padding: 10px;
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    font-family: var(--font);
}

.contact-form button {
    background: var(--primary);
    color:  var(--light);
    border: none;
    padding: 14px;
    border-radius: var(--radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.contact-form button:hover {
    background: var(--secondary);
}

/* ========= FOOTER ========= */
footer {
    background: var(--secondary);
    color:  var(--light);
}

.footer-top {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    max-width: 1300px;
    margin: 0 auto;
    padding: 60px 20px;
}

.footer-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-col h3 {
    margin-bottom: 15px;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--light);
}

.footer-col p,
.footer-col a {
    color: #e0e0e0;
    font-size: 0.95rem;
}

.footer-col a:hover {
    color:  var(--light);
}

.footer-col ul {
    text-align: center;
    list-style: none;
    width: 100%;
}

.footer-col ul li {
    margin-bottom: 8px;
}

.social {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social i {
    font-size: 2rem;
    color: var(--light);
}

.social i:hover {
    color: var(--gray);
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding: 20px;
    font-size: 0.9rem;
    color: #e0e0e0;
}

.links, .redes { 
    align-items: center;
}

/* ========= ANIMAÇÕES ========= */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade-up.show {
    opacity: 1;
    transform: translateY(0);
}

/* ========= RESPONSIVIDADE ========= */
@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    
}

@media (max-width: 992px) {
    header nav {
        position: absolute;
        top: 70px;
        right: 16px;
        width: 240px;
        background: var(--secondary);
        color:  var(--light);
        box-shadow: var(--shadow);
        border-radius: 12px;
        transform: translateX(120%);
        transition: var(--transition);
        z-index: 1050;
        padding: 8px 0;
    }

    header nav.active {
        transform: translateX(0);
    }

    header nav ul {
        display: flex;
        flex-direction: column;
        gap: 12px;
        list-style: none;
        padding: 12px 16px;
        margin: 0;
    }

    header nav a {
        color:  var(--light);
        font-size: 1rem;
        line-height: 1.2;
        
    }

    header.scrolled nav {
        background:  var(--light);
        color: var(--text);
    }

    header.scrolled nav a {
        color: var(--text);
    }

    header nav a:hover,
    header nav a:focus {
        color: var(--primary);
        outline: none;
    }

    .menu-toggle {
        display: flex;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
        text-align: center;
    
    }
}

@media (max-width: 768px) {
    nav {
        position: absolute;
        top: 70px;
        right: 0;
        width: 100%;
        background:  var(--light);
        box-shadow: var(--shadow);
        transform: translateX(100%);
        transition: var(--transition);
    }

    nav.active {
        transform: translateX(0);
    }

    nav ul {
        flex-direction: column;
        padding: 20px;
    }
   nav a {
        color: var(--light) !important; /* menu aberto = branco */
    }

    header.scrolled nav a {
        color: var(--text) !important; /* se rolar e fundo ficar claro */
    }
    

    .menu-toggle {
        display: flex;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .footer-top {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-col {
        align-items: center;
    }

    .sobre-conteudo {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .sobre-conteudo img {
        max-width: 100%;
        margin-bottom: 20px;
    }

    .sobre-texto {
        text-align: left;
        padding: 0 10px;
    }
}
