/* =========================================================
   APROVA CONSULTORIA
   STYLE.CSS
   ========================================================= */

:root {

  /* -------------------------------------------------------
     CORES
  ------------------------------------------------------- */

  --green-primary: #2E8B57;
  --green-secondary: #3FA66B;
  --green-light: #75C893;
  --green-soft: #EAF7EE;
  --green-pale: #F4FBF6;

  --text: #24352B;
  --text-soft: #5D6D63;

  --white: #FFFFFF;
  --border: #D9E9DE;

  --shadow-sm:
    0 5px 20px rgba(46, 139, 87, 0.08);

  --shadow:
    0 15px 45px rgba(46, 139, 87, 0.12);

  --shadow-lg:
    0 25px 70px rgba(46, 139, 87, 0.16);


  /* -------------------------------------------------------
     TIPOGRAFIA
  ------------------------------------------------------- */

  --font:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;


  /* -------------------------------------------------------
     DIMENSÕES
  ------------------------------------------------------- */

  --container: 1180px;

  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 28px;

}


/* =========================================================
   RESET
   ========================================================= */

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


html {
  scroll-behavior: smooth;
}


body {

  font-family: var(--font);

  color: var(--text);

  background: var(--white);

  line-height: 1.7;

  -webkit-font-smoothing: antialiased;

}


img {
  max-width: 100%;
  display: block;
}


a {
  color: inherit;
  text-decoration: none;
}


button,
input,
textarea {
  font: inherit;
}


button {
  cursor: pointer;
}


ul {
  padding-left: 1.2rem;
}


/* =========================================================
   CONTAINER
   ========================================================= */

.container {

  width: min(
    calc(100% - 40px),
    var(--container)
  );

  margin-inline: auto;

}


/* =========================================================
   HEADER
   ========================================================= */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;

  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(14px);
}

.nav {
  min-height: 105px;
  display: flex;
  align-items: center;
  gap: 32px;
}

/* =========================================================
   LOGO
   ========================================================= */

.brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.brand-logo {
  width: 310px;
  height: auto;
  max-height: 92px;
  object-fit: contain;
  display: block;
}

/* =========================================================
   LOGO — MOBILE
   ========================================================= */

@media (max-width: 768px) {
  .brand-logo {
    width: 200px;
    max-height: 58px;
  }
}


/* =========================================================
   MENU
   ========================================================= */

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-left: auto;
}

.nav-links a {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
  transition:
    color .2s ease,
    transform .2s ease;
}

.nav-links a:hover {
  color: var(--green-primary);
  transform: translateY(-1px);
}


/* =========================================================
   BOTÃO MENU MOBILE
   ========================================================= */

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  color: var(--green-primary);
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  padding: 8px;
}


/* =========================================================
   BOTÕES
   ========================================================= */

.btn {

  display: inline-flex;

  align-items: center;

  justify-content: center;

  gap: 10px;

  min-height: 48px;

  padding:
    0 22px;

  border-radius: 999px;

  font-weight: 700;

  font-size: 0.9rem;

  transition:
    transform .2s ease,
    box-shadow .2s ease,
    background .2s ease;

}


.btn:hover {

  transform:
    translateY(-2px);

}


.btn-primary {

  color: var(--white);

  background:
    linear-gradient(
      135deg,
      var(--green-primary),
      var(--green-secondary)
    );

  box-shadow:
    0 10px 25px rgba(
      46,
      139,
      87,
      .20
    );

}


.btn-primary:hover {

  box-shadow:
    0 15px 30px rgba(
      46,
      139,
      87,
      .28
    );

}


.btn-outline {

  color: var(--green-primary);

  border:
    1px solid var(--green-primary);

  background:
    transparent;

}


.btn-outline:hover {

  color: var(--white);

  background:
    var(--green-primary);

}


.btn-ghost {

  color: var(--green-primary);

  background:
    var(--green-soft);

}


.btn-small {

  min-height: 42px;

  padding:
    0 18px;

  font-size: 0.8rem;

}


.full {

  width: 100%;

}


/* =========================================================
   HERO
   ========================================================= */

.hero {

  position: relative;

  overflow: hidden;

  padding:
    110px 0
    100px;

  background:

    radial-gradient(
      circle at 85% 20%,
      rgba(117, 200, 147, .28),
      transparent 30%
    ),

    linear-gradient(
      135deg,
      #F7FCF8,
      #EAF7EE
    );

}


.hero-grid {

  display: grid;

  grid-template-columns:
    1.05fr
    .95fr;

  align-items: center;

  gap: 70px;

}


.hero-copy {

  max-width: 680px;

}


.eyebrow {

  display: inline-block;

  margin-bottom: 14px;

  color:
    var(--green-primary);

  font-size: .74rem;

  font-weight: 800;

  letter-spacing:
    .13em;

}


.hero h1 {

  margin-bottom: 20px;

  font-size:
    clamp(
      2.8rem,
      6vw,
      5.3rem
    );

  line-height: 1.02;

  letter-spacing: -.055em;

  color: var(--text);

}


.hero-copy > p {

  max-width: 650px;

  font-size:
    clamp(
      1.15rem,
      2vw,
      1.5rem
    );

  color:
    var(--text-soft);

}


.hero-actions {

  display: flex;

  flex-wrap: wrap;

  gap: 14px;

  margin-top: 32px;

}


/* =========================================================
   HERO CARD
   ========================================================= */

.chart {
  height: 230px;
  display: flex;
  align-items: flex-end;
  gap: 13px;
  padding: 30px 10px;
}

.bar {
  flex: 1 1 0;
  min-width: 0;
  border-radius: 8px 8px 3px 3px;
  background: linear-gradient(
    to top,
    var(--green-primary),
    var(--green-light)
  );
}

.b1 { height: 35%; }
.b2 { height: 50%; }
.b3 { height: 43%; }
.b4 { height: 70%; }
.b5 { height: 63%; }
.b6 { height: 88%; }

.dashboard-bottom {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 20px;

  padding-top: 20px;
  border-top: 1px solid var(--border);

  color: var(--text-soft);
  font-size: .82rem;
}

.dashboard-bottom span,
.dashboard-bottom strong {
  flex-shrink: 0;
  white-space: nowrap;
}

.dashboard-bottom strong {
  color: var(--green-primary);
}


/* =========================================================
   SEÇÕES
   ========================================================= */

.section {

  padding:
    100px 0;

}


.section-light {

  background:
    var(--white);

}


.section-dark {

  background:
    var(--green-primary);

  color:
    var(--white);

}


.section-dark .eyebrow {

  color:
    #D9F6E3;

}


.section-heading {

  max-width: 850px;

  margin-bottom: 50px;

}


.section-heading.centered {

  margin-inline: auto;

  text-align: center;

}


.section-heading h2 {

  margin-bottom: 18px;

  font-size:
    clamp(
      2rem,
      4vw,
      3.3rem
    );

  line-height: 1.08;

  letter-spacing: -.035em;

}


.section-heading h3 {

  font-size:
    clamp(
      1.8rem,
      3vw,
      2.5rem
    );

}


.section-heading p {

  margin-top: 16px;

  color:
    var(--text-soft);

}


.section-dark .section-heading p {

  color:
    rgba(
      255,
      255,
      255,
      .86
    );

}


/* =========================================================
   DUAS COLUNAS
   ========================================================= */

.two-col {

  display: grid;

  grid-template-columns:
    .75fr
    1.25fr;

  gap: 70px;

  align-items: start;

}


.about-copy {

  font-size:
    1.05rem;

}


.about-copy p + p {

  margin-top: 24px;

}


/* =========================================================
   POR QUE APROVA
   ========================================================= */

.values-grid {

  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  gap: 24px;

}


.value-card {

  padding: 32px;

  border:
    1px solid var(--border);

  border-radius:
    var(--radius);

  background:
    var(--white);

  box-shadow:
    var(--shadow-sm);

  transition:
    transform .25s ease,
    box-shadow .25s ease;

}


.value-card:hover {

  transform:
    translateY(-6px);

  box-shadow:
    var(--shadow);

}


.value-card .icon {

  width: 52px;

  height: 52px;

  display: grid;

  place-items: center;

  margin-bottom: 22px;

  border-radius:
    15px;

  background:
    var(--green-soft);

  color:
    var(--green-primary);

  font-size:
    1.3rem;

  font-weight: 800;

}


.value-card h3 {

  margin-bottom: 14px;

  font-size:
    1.35rem;

}


.value-card h4 {

  margin-bottom: 14px;

  color:
    var(--green-primary);

  font-size:
    .95rem;

}


.value-card p {

  color:
    var(--text-soft);

}


.value-card li {

  margin-bottom: 10px;

  color:
    var(--text-soft);

}


/* =========================================================
   INVESTIMENTO
   ========================================================= */

.featured-block {
  margin-bottom: 70px;
  padding: 45px;
  border: 1px solid rgba(255, 255, 255, .20);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, .10);
}

.featured-block > .eyebrow {
  display: block;
  text-align: center;
}

.featured-block > h3 {
  text-align: center;
}

.featured-block > p {
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.featured-block h3 {
  margin-bottom: 18px;
  font-size: 2rem;
}

.featured-block > p {
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
  color: rgba(255, 255, 255, .88);
}


.process-grid {

  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  gap: 20px;

  margin-top: 35px;

}


.process-step {

  padding:
    25px;

  border-radius:
    var(--radius);

  background:
    rgba(
      255,
      255,
      255,
      .12
    );

}


.process-step b {

  display: block;

  margin-bottom: 15px;

  font-size:
    1.5rem;

  color:
    #D9F6E3;

}


.process-step h4 {

  margin-bottom: 8px;

}


.process-step p {

  color:
    rgba(
      255,
      255,
      255,
      .78
    );

  font-size:
    .9rem;

}

.section-heading {
  text-align: left;
}

/* =========================================================
   SERVIÇOS
   ========================================================= */

.services-grid {

  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  gap: 22px;

}


.service-card {

  position: relative;

  padding:
    30px;

  min-height:
    260px;

  border:
    1px solid
    rgba(
      255,
      255,
      255,
      .18
    );

  border-radius:
    var(--radius);

  background:
    rgba(
      255,
      255,
      255,
      .10
    );

  transition:
    transform .25s ease,
    background .25s ease;

}


.service-card:hover {

  transform:
    translateY(-5px);

  background:
    rgba(
      255,
      255,
      255,
      .15
    );

}


.service-card > span {

  display: block;

  margin-bottom: 15px;

  color:
    #D9F6E3;

  font-weight:
    800;

}


.service-icon {

  width:
    50px;

  height:
    50px;

  display:
    grid;

  place-items:
    center;

  margin-bottom:
    20px;

  border-radius:
    14px;

  background:
    rgba(
      255,
      255,
      255,
      .15
    );

  color:
    white;

  font-size:
    1.3rem;

}


.service-card h3 {

  margin-bottom:
    12px;

  font-size:
    1.1rem;

}


.service-card p {

  color:
    rgba(
      255,
      255,
      255,
      .80
    );

  font-size:
    .9rem;

}


/* =========================================================
   CONTATO
   ========================================================= */

.contact-section {

  background:
    var(--green-pale);

}


.contact-grid {

  display:
    grid;

  grid-template-columns:
    .8fr
    1.2fr;

  gap:
    70px;

  align-items:
    start;

}


.contact-info h2 {

  margin-bottom:
    20px;

  font-size:
    clamp(
      2rem,
      4vw,
      3.3rem
    );

  line-height:
    1.05;

}


.contact-info > p {

  color:
    var(--text-soft);

}


.contact-items {

  display:
    grid;

  gap:
    14px;

  margin-top:
    35px;

}


.contact-items a {

  display:
    flex;

  flex-direction:
    column;

  padding:
    18px 20px;

  border:
    1px solid var(--border);

  border-radius:
    var(--radius-sm);

  background:
    white;

}


.contact-items strong {

  color:
    var(--green-primary);

}


.contact-items span {

  color:
    var(--text-soft);

}


/* =========================================================
   FORMULÁRIO
   ========================================================= */

.contact-form {

  padding:
    35px;

  border:
    1px solid var(--border);

  border-radius:
    var(--radius-lg);

  background:
    white;

  box-shadow:
    var(--shadow);

}


.form-row {

  display:
    grid;

  grid-template-columns:
    repeat(2, 1fr);

  gap:
    18px;

}


.contact-form label {

  display:
    block;

  margin-bottom:
    18px;

  color:
    var(--text);

  font-size:
    .85rem;

  font-weight:
    700;

}


.contact-form input {

  width:
    100%;

  margin-top:
    8px;

  padding:
    14px 16px;

  border:
    1px solid var(--border);

  border-radius:
    12px;

  outline:
    none;

  background:
    var(--green-pale);

  color:
    var(--text);

  transition:
    border-color .2s ease,
    box-shadow .2s ease;

}


.contact-form input:focus {

  border-color:
    var(--green-secondary);

  box-shadow:
    0 0 0 4px
    rgba(
      63,
      166,
      107,
      .12
    );

}


.form-feedback {

  margin-top:
    15px;

  font-size:
    .85rem;

  color:
    var(--green-primary);

  font-weight:
    600;

}

.form-feedback.show {
  display: block;
}

/* =========================================================
   LOCALIZAÇÃO
   ========================================================= */

.location-section {
  padding: 90px 0;
}

.location-section .section-heading {
  text-align: left;
  margin-bottom: 45px;
}

.location-section .section-heading p {
  max-width: 700px;
  margin: 15px auto 0;
  color: var(--text-soft);
}

.location-map {
  width: 100%;
  max-width: 1180px;
  height: 450px;
  margin: 0 auto;

  overflow: hidden;

  border: 1px solid var(--border);
  border-radius: var(--radius-lg);

  background: var(--green-soft);
  box-shadow: 0 15px 40px rgba(46, 139, 87, .10);
}

.location-map iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}

/* =========================================================
   FOOTER
   ========================================================= */

footer {

  padding:
    65px 0 25px;

  background:
    #DFF2E5;

  color:
    var(--text);

}


.footer-grid {

  display:
    grid;

  grid-template-columns:
    1.4fr
    1fr
    1fr;

  gap:
    50px;

  padding-bottom:
    45px;

}


.footer-brand {

  margin-bottom:
    18px;

}


.footer-grid p {

  max-width:
    350px;

  color:
    var(--text-soft);

}


.footer-grid h4 {

  margin-bottom:
    18px;

  color:
    var(--green-primary);

}


.footer-grid > div:not(:first-child) {

  display:
    flex;

  flex-direction:
    column;

  align-items:
    flex-start;

  gap:
    8px;

}


.footer-grid a {

  color:
    var(--text-soft);

}


.footer-grid a:hover {

  color:
    var(--green-primary);

}


.footer-bottom {

  display:
    flex;

  justify-content:
    space-between;

  gap:
    20px;

  padding-top:
    22px;

  border-top:
    1px solid
    rgba(
      46,
      139,
      87,
      .15
    );

  color:
    var(--text-soft);

  font-size:
    .78rem;

}


/* =========================================================
   WHATSAPP
   ========================================================= */

.whatsapp {

  position:
    fixed;

  right:
    22px;

  bottom:
    22px;

  z-index:
    999;

  display:
    inline-flex;

  align-items:
    center;

  gap:
    9px;

  padding:
    13px 18px;

  border-radius:
    999px;

  background:
    #3FA66B;

  color:
    white;

  font-size:
    .82rem;

  font-weight:
    800;

  box-shadow:
    0 12px 30px
    rgba(
      46,
      139,
      87,
      .25
    );

}


.whatsapp:hover {

  transform:
    translateY(-3px);

}


/* =========================================================
   VOLTAR AO TOPO
   ========================================================= */

.back-to-top {
  position: fixed;
  left: 50%;
  bottom: 82px;
  z-index: 998;

  width: 42px;
  height: 42px;

  display: grid;
  place-items: center;

  border: 1px solid var(--border);
  border-radius: 50%;

  background: white;
  color: var(--green-primary);

  box-shadow: var(--shadow-sm);

  opacity: 0;
  visibility: hidden;

  transform: translateX(-50%);
  transition: .25s ease;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}


/* =========================================================
   ANIMAÇÃO
   ========================================================= */

.reveal {

  opacity:
    0;

  transform:
    translateY(20px);

  transition:
    opacity .6s ease,
    transform .6s ease;

}


.reveal.visible {

  opacity:
    1;

  transform:
    translateY(0);

}


/* =========================================================
   RESPONSIVO
   ========================================================= */

/* TABLETS / NOTEBOOKS */
@media (max-width: 1100px) {

  .nav {
    gap: 20px;
  }

  .nav-links {
    gap: 12px;
  }

  .nav-links a {
    font-size: .75rem;
  }

  .nav-cta {
    display: none;
  }

  .hero-grid {
    gap: 45px;
  }

}


/* TABLET / MOBILE */
@media (max-width: 900px) {

  .nav {
    min-height: 88px;
  }

  .menu-toggle {
    display: block;
    margin-left: auto;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 14px;
    right: 14px;

    display: none;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;

    gap: 0;
    margin-left: 0;
    padding: 10px 20px;

    border: 1px solid var(--border);
    border-radius: 16px;

    background: var(--white);
    box-shadow: var(--shadow);

    z-index: 1001;
  }

  .nav.mobile-open .nav-links {
    display: flex;
  }

  .nav-links a {
    display: block;
    padding: 14px 10px;
    font-size: .95rem;
    border-bottom: 1px solid var(--border);
  }

  .nav-links a:last-child {
    border-bottom: 0;
  }

  .brand-logo {
    width: 210px;
    max-height: 68px;
  }

  .hero-grid,
  .two-col,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 75px;
  }

  .hero-card {
    min-height: 360px;
  }

  .values-grid,
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 768px) {

  .location-section {
    padding: 70px 0;
  }

  .location-map {
    height: 350px;
    border-radius: 20px;
  }

}

/* CELULAR */
@media (max-width: 650px) {

  .container {
    width: min(
      calc(100% - 28px),
      var(--container)
    );
  }

  .nav {
    min-height: 78px;
  }

  .brand-logo {
    width: 185px;
    max-height: 60px;
  }

  .nav-links {
    top: 100%;
    left: 14px;
    right: 14px;
  }

  .section {
    padding: 70px 0;
  }

  .hero {
    padding-top: 65px;
  }

  .hero h1 {
    font-size: 2.7rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .values-grid,
  .services-grid,
  .form-row,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .featured-block,
  .contact-form {
    padding: 25px;
  }

  .dashboard-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
  }

  .whatsapp span {
    display: none;
  }

  .whatsapp {
    width: 50px;
    height: 50px;
    justify-content: center;
    padding: 0;
  }

  .back-to-top {
    bottom: 82px;
  }

}
