/* Paleta */
:root {
    --primary: #0057d8;
    --secondary: #0b1b3f;
    --light: #f5f7fa;
    --text: #2b2b2b;
    --white: #ffffff;

    --transition: 0.3s ease;
}

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background: #F5F7FA;
    color: var(--text);
    line-height: 1.6;
}

h1,
h2,
h3,
h4 {
  color: var(--secondary);
}


/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 20;
}

.navbar .logo {
    font-size: 24px;
    font-weight: bold;
    color: var(--primary);
}

.logo img {
    height: 40px;
    max-width: 100%;    
}

.menu a {
    margin-left: 20px;
    text-decoration: none;
    color: var(--secondary);
    transition: var(--transition);
    font-family: monospace;
    font-weight: bold;
    padding: 1rem;
    font-size: 1.1rem;
    text-transform: uppercase;
}

.menu a:hover {
    color: var(--primary);
}


/* Mobile menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--secondary);
    margin: 4px 0;
    transition: 0.3s;
}

@media (max-width: 760px) {
    .menu {
        position: absolute;
        top: 70px;
        right: 0;
        width: 60%;
        background: var(--white);
        flex-direction: column;
        display: none;
        box-shadow: -2px 0 10px rgba(0,0,0,0.1);
    }

    .menu a {
        padding: 15px;
        margin: 0;
        border-bottom: 1px solid #eee;
    }

    .hamburger {
        display: flex;
    }
}

/* Home */
.home {
  height: 35rem;
  display: flex;
  flex-direction: column;   /* IMPORTANTE */
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 20px;
  color: #fff;
  font-weight: bold;

  background-image: url("/assets/img/backgroundFINAL.jpeg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.home h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.home p {
  font-size: 1.2rem;
  margin: 0 auto 20px; /* CENTRALIZA */
  max-width: 600px;
}

.home .btn {
  margin-top: 30px;
  padding: 12px 25px;
  background: var(--primary);
  color: white;
  border-radius: 6px;
  text-decoration: none;
  transition: var(--transition);
  display: inline-block;   /* Agora funciona o margin-top */
  font-family: monospace;
  text-transform: uppercase;

}

.home .btn:hover {
  background: #003a8c;
}

.stack {
  padding: 10px 20px;
  text-align: center;
}

.stack h2 {
  margin-bottom: 10px;
}

.stack-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap; /* quebra no mobile */
}

.stack-logos img {
  height: 48px;
  filter: grayscale(100%);
  opacity: 0.75;
  transition: 0.3s ease;
}

.stack-logos img:hover {
  filter: grayscale(0);
  opacity: 1;
  transform: scale(1.05);
}

.stack-subtitle {
  color: #6B7280;
  margin-bottom: 30px;
}

.chart {
  display: flex;
  align-items: flex-end;
  gap: 20px;
  height: 200px;
  padding: 20px;
}

.bar {
  width: 50px;
  height: 0;
  border-radius: 8px;
  transition: height 1.3s ease;
}

.perfomance-negocios {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    padding: 40px 0;
}

.perfomance-negocios > div {
    flex: 1; /* cada div ocupa o mesmo espaço */
}
/*
.perfomance-text {
    margin-left: 30px;
}
*/

.container-principal { 
  display: flex; /* Define o layout flexbox */ flex-direction: row;
  gap: 20px;
   min-height: 70vh;
 } 

.coluna-esquerda, .coluna-central, .coluna-direita {
   flex: 1; 
  }

  .coluna-esquerda, .coluna-direita {
    padding: 24px;
  }
.coluna-esquerda h2 {
    font-size: 2rem;
    margin-bottom: 16px;
}

.coluna-esquerda h3,
.coluna-direita h3 {
    margin-top: 24px;
    margin-bottom: 12px;
}

.coluna-central {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.coluna-central img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/*.coluna-central::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.2),
        rgba(0,0,0,0.5)
    );
}*/

.destaque {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 12px;
}

.lista-problemas,
.lista-impacto {
    list-style: none;
    padding: 0;
}

.lista-problemas li,
.lista-impacto li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 10px;
}

.lista-problemas li::before {
    content: "❌";
    position: absolute;
    left: 0;
}

.lista-impacto li::before {
    content: "⚠️";
    position: absolute;
    left: 0;
}

.coluna-central {
    display: flex;
    align-items: center;
    justify-content: center;
}

.coluna-central img {
    max-width: 100%;
    height: auto;
}

.pergunta {
    font-weight: 600;
    margin-top: 20px;
}

.fechamento {
    font-weight: 600;
    margin-top: 16px;
}


/* ================================
   STEPS SECTION (ALINHADO AO SITE)
================================ */

.steps-section {
  padding-top: 60px;
  padding-bottom: 60px;
  background: var(--light);
}

/* Container já existe no site */
.steps-section .container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 60px;
  align-items: center;
}

/* LEFT */
.steps-left {
  width: 55%;
}

.subtitle {
  color: var(--primary);
  font-size: 14px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  font-weight: 600;
}

/* TITLES */
.main-title {
  font-size: 2.6rem;
  margin: 15px 0 25px;
  line-height: 1.2;
  color: var(--secondary);
}

.main-title span {
  display: block;
  color: var(--primary);
  margin-top: 6px;
}

/* DESCRIPTION */
.description {
  color: var(--text);
  max-width: 520px;
  margin-bottom: 40px;
  line-height: 1.7;
}

/* STEPS */
.steps {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

/* ICON */
.step-icon {
  position: relative;
  min-width: 54px;
  height: 54px;
  background: var(--white);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.step-icon i {
  font-size: 20px;
  color: var(--primary);
}

/* NUMBER */
.step-icon span {
  position: absolute;
  top: -10px;
  right: -10px;
  background: var(--primary);
  color: var(--white);
  font-size: 12px;
  padding: 4px 7px;
  border-radius: 50%;
  font-weight: 600;
}

/* CARD */
.step-content {
  background: var(--white);
  padding: 22px;
  border-radius: 14px;
  flex: 1;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.step-content h4 {
  font-size: 18px;
  margin-bottom: 8px;
  color: var(--secondary);
}

.step-content p {
  color: var(--text);
  font-size: 14.5px;
  line-height: 1.6;
}

/* FOOTER TEXT */
.footer-text {
  color: var(--secondary);
  margin: 35px 0 25px;
  max-width: 520px;
  font-weight: 500;
}

/* BUTTON */
.btn-primary {
  display: inline-block;
  background: var(--primary);
  color: var(--white);
  padding: 14px 34px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  text-transform: uppercase;
  font-family: monospace;
  transition: var(--transition);
}

.btn-primary:hover {
  background: #003a8c;
}

/* RIGHT */
.steps-right {
  width: 45%;
}

.steps-right img {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .steps-section .container {
    flex-direction: column;
  }

  .steps-left,
  .steps-right {
    width: 100%;
  }

  .steps-section {
    padding: 60px 25px;
  }
}




/* RESPONSIVO PARA TELAS PEQUENAS */
@media (max-width: 768px) {
    .perfomance-negocios {
        flex-direction: column;   /* empilha */
        align-items: center;
        text-align: center;
    }

    .perfomance-negocios > div {
        width: 100%;
    }

    .perfomance-text {
        margin-left: 0; /* remove margem lateral no mobile */
    }

    .chart {
        height: 180px !important;     /* garante altura */
        min-height: 180px;            /* impede de colapsar */
        width: 100%;
        justify-content: center;
    }
}

/* Sections */
.section {
    padding: 80px 10%;
}

h2 {
    margin-bottom: 30px;
}

/* Cards */
.cards {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.card {
    flex: 1;
    min-width: 260px;
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 3px 12px rgba(0,0,0,0.1);
    transition: var(--transition);
}

.card:hover {
    transform: translateY(-6px);
}

/* Portfolio grid */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

.grid-item {
    background: white;
    padding: 40px;
    border-radius: 8px;
    text-align: center;
    font-weight: bold;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

/* Footer */
.footer {
    padding: 20px;
    text-align: center;
    background: var(--secondary);
    color: white;
}

/* Fade-in animation */
.fade-in {
    opacity: 0;
    transform: translateY(25px);
    transition: 0.8s ease;
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}


@media (max-width: 768px) {
  .bar {
    height: auto !important;
    min-height: 5px;
  }
}

.slider-section {
  width: 100%;
  overflow: hidden;
  padding: 40px 0;
}

.slider-wrapper {
  display: flex;
  flex-wrap: nowrap; /* impede quebrar linha */
  transition: transform 0.7s ease;
}

.slide {
  min-width: 100%; /* garante que cada slide ocupe toda a largura */
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 20px;
  box-sizing: border-box;
}

.slide img {
  width: 400px;
  border-radius: 10px;
}

.slide-text {
  max-width: 450px;
}

.slide-text h2 {
  font-size: 2rem;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.slide-text p {
  font-size: 1.1rem;
  color: #444;
}

nav a.aqui  {
  color: var(--primary);
}

#bar-h2 h2 {
  text-transform: uppercase;
}

#sobre h2 {
 text-transform: uppercase;
} 

#servicos h2 {
 text-transform: uppercase;
} 

#sobre p {
 padding: 1.9px;
}

#contato h2 {
  margin-top: 30px;
  text-transform: uppercase;
}



/* ================================
   FIX SLIDER STEPS-RIGHT
================================ */

/* Garante que o lado direito NÃO vaze */
.steps-right {
  width: 45%;
  overflow: hidden;       /* ESSENCIAL */
  position: relative;
}

/* Wrapper do slider */
.steps-right .slider-wrapper {
  display: flex;
  flex-wrap: nowrap;
  width: 100%;
  transition: transform 0.7s ease;
}

/* Cada slide ocupa só a largura da div direita */
.steps-right .slide {
  flex: 0 0 100%;         /* substitui min-width */
  max-width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Imagem cobre totalmente o espaço */
.steps-right .slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}
.process-section {
  background: var(--light);
  padding-top: 70px;
  padding-bottom: 70px;
}

.process-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

/* TAG */
.process-tag {
  color: var(--primary);
  font-weight: 600;
  letter-spacing: 1px;
  display: inline-block;
  margin-bottom: 12px;
}

/* TITLE */
.process-title {
  font-size: 40px;
  color: var(--secondary);
  margin-bottom: 70px;
}

/* GRID HORIZONTAL */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* CARD */
.process-card {
  background: var(--white);
  border-radius: 20px;
  padding: 28px;
  text-align: left;
  position: relative;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: var(--transition);
}

.process-card:hover {
  transform: translateY(-6px);
}

/* CARD DESTAQUE */
.process-card.destaque {
  border: 2px solid var(--primary);
}

/* NUMBER */
.process-number {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 72px;
  font-weight: 800;
  color: rgba(0, 87, 216, 0.08);
}

/* ICON */
.process-icon {
  width: 42px;
  margin-bottom: 15px;
}

.process-icon img {
  width: 100%;
}

/* TEXT */
.process-card h3 {
  color: var(--secondary);
  font-size: 20px;
  margin-bottom: 10px;
}

.process-card p {
  font-size: 15px;
  color: var(--text);
  line-height: 1.6;
}

/* IMAGE */
.process-image {
  margin-top: 20px;
  border-radius: 14px;
  overflow: hidden;
}

.process-image img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

/* FOOTER */
.process-footer {
  margin-top: 70px;
}

.process-footer p {
  color: var(--text);
  margin-bottom: 25px;
}

/* CTA */
.process-cta {
  display: inline-block;
  background: var(--primary);
  color: var(--white);
  padding: 14px 36px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
}

.process-cta:hover {
  background: #003f9e;
}

/* RESPONSIVO */
@media (max-width: 992px) {
  .process-grid {
    grid-template-columns: 1fr;
  }

  .process-title {
    font-size: 32px;
  }
}
.process-footer {
  margin-top: 70px;
  display: flex;
  flex-direction: column;  /* empilha elementos verticalmente */
  align-items: center;     /* centraliza horizontalmente */
  gap: 12px;               /* espaço entre botão e texto */
}

.process-footer p {
  color: var(--text);
  margin: 0;               /* remove margem extra */
}

.process-footer small {
  color: #FF0000;          /* cor chamativa para vagas limitadas */
  text-align: center;      /* centraliza o texto */
  display: block;
}

.benefits-section {
  padding-top: 70px;
  padding-bottom: 70px;
}

.benefits-section .container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: flex-start;
}

/* LADO ESQUERDO */
.benefits-left .section-tag {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 16px;
}

.benefits-left h2 {
  font-size: 42px;
  line-height: 1.2;
  margin-bottom: 24px;
}

.benefits-left p {
  color: var(--text);
  margin-bottom: 16px;
  line-height: 1.6;
}

.benefits-left .areas {
  margin-top: 16px;
}

.btn-primary {
  display: inline-block;
  margin-top: 32px;
  padding: 14px 28px;
  background: var(--primary);
  color: #fff;
  border-radius: 40px;
  text-decoration: none;
  transition: 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

/* LADO DIREITO */
.benefits-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px 40px;
}

.benefit-item {
  display: flex;
  gap: 16px;
}

.benefit-item .number {
  min-width: 42px;
  height: 42px;
  border-radius: 10px;
  background: #fff;
  color: var(--primary);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefit-item h4 {
  font-size: 18px;
  margin-bottom: 6px;
}

.benefit-item p {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
}

/* RESPONSIVO */
@media (max-width: 900px) {
  .benefits-section .container {
    grid-template-columns: 1fr;
  }

  .benefits-right {
    grid-template-columns: 1fr;
  }
}

.titulo {
  font-family: 'Playfair Display SC', georgia;
  font-size: 3rem;
  line-height: 1;
  font-weight: 400;
  margin-bottom: 1rem;
}



.faq-lista dt {
  font-family: 'IBM Plex Mono', monospace;
  font-weight: bold;
  margin-top: 2rem;
  margin-bottom: .5rem;
  color: var(--secondary);
}

.faq-lista dt::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 10px;
  margin-right: 10px;
  background: #FB5;
}

.faq-lista dd {
  font-family: Helvetica, Arial;
  margin-bottom: .5rem;
  margin-left: 30px;
}

[data-anime="accordion"] dd {
  display: none;
}

[data-anime="accordion"] dt::after {
  content: '⬎';
  margin-left: 10px;
}

[data-anime="accordion"] dt.ativo::after {
  content: '⬏';
}

[data-anime="accordion"] dd.ativo {
  display: block;
  animation: slideDown .5s forwards;
}


.home h1,
.stack h2,
.steps-section .main-title,
.process-title,
.benefits-left h2,
.faq .titulo {
  text-align: center;
}

p,
li,
dd {
  color: var(--text);
}


/* ================================
   CENTRALIZAÇÃO REAL DOS BOTÕES
================================ */

/* HOME */
.home .btn {
  display: inline-block;
  margin-top: 30px;
}

/* STEPS */
.steps-left .btn-primary {
  align-self: center;   /* ESSENCIAL */
}

/* PROCESS (já é flex column, reforço) */
.process-footer .process-cta {
  align-self: center;
}

/* BENEFITS */
.benefits-left .btn-primary {
  align-self: center;
}

/* GARANTE FUNCIONAMENTO EM GRID/FLEX */
.steps-left,
.benefits-left {
  display: flex;
  flex-direction: column;
}

.contact-consulting {
  padding: 80px 5%;
}

.consulting-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

/* Lado esquerdo */
.consulting-info {
  color: var(--text);
  max-width: 520px;
}

.consulting-info h2 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 20px;
}

.consulting-description {
  font-size: 1.05rem;
  opacity: 0.9;
  margin-bottom: 30px;
}

.offer-box {
  background: rgba(255, 255, 255, 0.08);
  padding: 15px 20px;
  border-left: 4px solid var(--primary);
  margin-bottom: 30px;
}

.offer-box strong {
  font-size: 1.1rem;
  display: block;
}

.offer-box span {
  font-size: 0.9rem;
  opacity: 0.85;
}

.benefits-title {
  margin-bottom: 15px;
  font-weight: 600;
}

.benefits {
  list-style: none;
  margin-bottom: 35px;
}

.benefits li {
  padding-left: 28px;
  margin-bottom: 12px;
  position: relative;
  font-size: 0.95rem;
}

.benefits li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: bold;
}

.cta-button {
  display: inline-block;
  background: var(--primary);
  color: var(--white);
  padding: 14px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
}

.cta-button:hover {
  background: #0046b8;
}

.cta-note {
  margin-top: 15px;
  font-size: 0.8rem;
  opacity: 0.75;
}

/* Lado direito */
.consulting-form {
  background: var(--light);
  padding: 40px;
  border-radius: 10px;
}

.consulting-form label {
  font-size: 0.75rem;
  font-weight: 600;
  display: block;
  margin-bottom: 6px;
  color: var(--text);
}

.consulting-form input,
.consulting-form select,
.consulting-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 20px;
  border-radius: 6px;
  border: 1px solid #ddd;
  font-size: 0.9rem;
}

.consulting-form textarea {
  min-height: 120px;
  resize: vertical;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.form-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
}

.consulting-form button {
  background: var(--secondary);
  color: var(--white);
  border: none;
  padding: 14px 28px;
  border-radius: 30px;
  cursor: pointer;
  transition: var(--transition);
}

.consulting-form button:hover {
  background: var(--primary);
}

/* Responsivo */
@media (max-width: 900px) {
  .consulting-container {
    grid-template-columns: 1fr;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .form-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

.faq {
  padding: 70px 5%;
  background: var(--light);
}

.faq-lista {
  max-width: 1200px;
  margin: 0 auto;      /* centraliza */
}

.steps-cta {
  width: 100%;
  max-width: 1000px;
  margin: 20px auto 0;    /* centraliza no container */
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.steps-cta .footer-text {
  max-width: 600px;      /* melhora leitura */
}

.steps-title-center {
  width: 100%;
  max-width: 1200px;
  margin: 60px auto 60px;
  text-align: center;
}
/* ================================
   CORES DOS TÍTULOS NO HOME
================================ */

.home h1 {
  color: var(--white);   /* branco puro */
}

.home p {
  color: #e5ecff;        /* branco azulado suave */
}


.popup {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.popup-content {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  max-width: 400px;
  width: 90%;
  text-align: center;
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.popup-content h3 {
  margin-bottom: 10px;
}

.popup-content button {
  margin-top: 20px;
  padding: 10px 20px;
  border: none;
  border-radius: 6px;
  background: #0a3cff;
  color: #fff;
  cursor: pointer;
}

.hidden {
  display: none;
}

