/* Importação da fonte e Reset Básico */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&display=swap');

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

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

:root {
    --primary-color: #007bff;
    --secondary-color: #0056b3;
    --text-color: #333;
    --light-bg: #f8f9fa;
    --dark-bg: #1a1a1a;
    --header-height: 80px;
}

/* --- Header e Navegação --- */
#main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: background-color 0.4s ease, padding 0.4s ease;
    padding: 15px 0;
}

#main-header.scrolled {
    background-color: rgba(26, 26, 26, 0.95);
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    padding: 10px 0;
}

.navbar { display: flex; justify-content: space-between; align-items: center; height: var(--header-height); }
.logo img { height: 50px; transition: height 0.4s ease; }
#main-header.scrolled .logo img { height: 40px; }
.nav-links { list-style: none; display: flex; align-items: center; gap: 30px; }
.nav-links li a { color: #fff; text-decoration: none; font-weight: 600; font-size: 0.9rem; position: relative; padding-bottom: 5px; }
.nav-links li a:not(.btn-nav)::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background-color: var(--primary-color); transition: width 0.3s ease; }
.nav-links li a:not(.btn-nav):hover::after { width: 100%; }
.btn-nav { background-color: var(--primary-color); padding: 10px 20px; border-radius: 5px; transition: background-color 0.3s ease; }
.btn-nav:hover { background-color: var(--secondary-color); }
.hamburger { display: none; color: #fff; font-size: 1.8rem; cursor: pointer; z-index: 1001; }

/* --- Estilos Gerais --- */
.btn { display: inline-block; background: var(--primary-color); color: #fff; padding: 15px 30px; text-decoration: none; border-radius: 5px; transition: background-color 0.3s ease; font-weight: 600; border: none; cursor: pointer; }
.btn:hover { background: var(--secondary-color); }
.bg-light { background-color: var(--light-bg); }

section { padding: 120px 0; text-align: center; overflow-x: hidden; /* Evita scroll horizontal por causa das animações */ }
section h2 { font-size: 2.5em; margin-bottom: 70px; color: var(--text-color); font-weight: 700; }

/* --- Seção Banner (Hero) --- */
.hero { 
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('../images/banner.avif') no-repeat center center / cover;
    color: #fff; 
    padding-top: calc(var(--header-height) + 100px); 
    padding-bottom: 100px; 
    min-height: 700px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
}
.hero-content h1 { font-size: 3.5em; margin-bottom: 20px; font-weight: 700; line-height: 1.1; }
.hero-content p { font-size: 1.3em; margin-bottom: 40px; max-width: 800px; margin-left: auto; margin-right: auto; }
.pillars { margin-top: 60px; background-color: rgba(0, 0, 0, 0.4); padding: 20px; border-radius: 10px; display: inline-block; }
.pillars h3 { font-size: 1.2em; margin-bottom: 15px; font-weight: 600; }
.pillar-items { display: flex; gap: 30px; justify-content: center; }
.pillar-item { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.pillar-item i { font-size: 2.5em; color: var(--primary-color); }
.pillar-item span { font-size: 1em; font-weight: 600; }

/* --- Seção Soluções --- */
.solucoes-section .solution-cards { display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; }
.solucoes-section .card { background-color: #fff; border-radius: 10px; box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05); padding: 40px; max-width: 450px; flex: 1; min-width: 300px; text-align: left; transition: transform 0.3s ease; border: 1px solid #eee; }
.solucoes-section .card:hover { transform: translateY(-10px); }
.solucoes-section .card h3 { font-size: 1.8em; margin-bottom: 15px; color: var(--primary-color); }
.solucoes-section .card p { font-size: 1.1em; color: #555; }

/* --- Seção Processo --- */
.processo-section .process-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.processo-section .step-card { background-color: #fff; border-radius: 10px; box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05); padding: 40px; text-align: center; }
.process-icon { font-size: 4em; color: var(--primary-color); margin-bottom: 30px; display: block; }
.processo-section .step-card h3 { font-size: 1.8em; margin-bottom: 15px; }

/* --- Seção Números --- */
.numbers-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; }
.number-item { background: var(--light-bg); padding: 40px 20px; border-radius: 10px; text-align: center; border: 1px solid #ddd; }
.number-item i { font-size: 3.5em; color: var(--primary-color); margin-bottom: 20px; }
.number-item h3 { font-size: 2.5em; font-weight: 700; color: var(--text-color); margin-bottom: 10px; }
.number-item p { font-size: 1em; color: #666; }

/* --- Seção Segmentos --- */
.segmentos-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 40px; }
.segmento-card { background: #fff; border: 1px solid #e0e0e0; padding: 40px; border-radius: 10px; text-align: center; transition: transform 0.3s ease, box-shadow 0.3s ease; }
.segmento-card:hover { transform: translateY(-10px); box-shadow: 0 15px 30px rgba(0,0,0,0.1); }
.segmento-icon { margin-bottom: 25px; }
.segmento-icon i { font-size: 4em; color: var(--primary-color); }
.segmento-card h3 { font-size: 1.8em; margin-bottom: 15px; }

/* --- Seção FAQ --- */
.faq-section .container { max-width: 800px; }
.faq-accordion { text-align: left; }
.faq-item { background-color: #fff; margin-bottom: 10px; border-radius: 5px; border: 1px solid #eee; }
.faq-question { width: 100%; background: transparent; border: none; padding: 20px; font-size: 1.2em; font-weight: 600; font-family: 'Montserrat', sans-serif; color: var(--text-color); display: flex; justify-content: space-between; align-items: center; cursor: pointer; }
.faq-question i { transition: transform 0.3s ease; }
.faq-question.active i { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease-out; }
.faq-answer p { padding: 0 20px 20px 20px; font-size: 1em; color: #555; line-height: 1.7; }

/* --- Seção Contato --- */
.contato-section { background-color: var(--dark-bg); color: #fff; }
.contato-section h2 { color: #fff; }
.contato-section p { font-size: 1.2em; max-width: 700px; margin: 0 auto 50px auto; }
.contact-form { max-width: 600px; margin: 0 auto; display: grid; gap: 20px; }
.contact-form input { width: 100%; padding: 15px; border: 1px solid #555; border-radius: 5px; background-color: #333; color: #fff; font-size: 1em; }
.contact-form .btn-primary { width: 100%; padding: 18px; font-size: 1.2em; }

/* --- Rodapé --- */
footer { background-color: #111; color: #aaa; padding: 30px 0; text-align: center; font-size: 0.9em; }

.linkemail a{
    color:#FFFFFF !important;
}
/* Contatos no desktop (ao lado da logo) */
.logo {
  display: flex;
  flex-direction: column; /* empilha logo e contatos */
  align-items: flex-start;
}

.contact-info {
  font-size: 14px;
  margin-top: 5px;
  color:#FFF;
}

.contact-info a {
  color: inherit;
  text-decoration: none;
  color:#FFF !important;
}
a.contact-info{
    color:#FFF !important;
}



/* --- Responsividade --- */
@media (max-width: 992px) {
    .nav-links { position: fixed; top: 0; right: -100%; width: 70%; max-width: 300px; height: 100vh; background-color: var(--dark-bg); flex-direction: column; justify-content: center; align-items: center; gap: 40px; transition: right 0.5s cubic-bezier(0.77, 0, 0.175, 1); }
    .nav-links.active { right: 0; }
    .nav-links li a { font-size: 1.2rem; }
    .hamburger { display: block; }
    .hamburger.active i::before { content: '\f00d'; }
    .hero-content h1 { font-size: 2.8em; }
    section { padding: 80px 0; }
    section h2 { font-size: 2em; margin-bottom: 50px; }
}

@media (max-width: 480px) {
    .hero-content h1 { font-size: 2.2em; }
    .hero-content p { font-size: 1em; }
}