﻿*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  transition: none !important;
  animation: none !important;
}

html,
body {
  font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background-color: #ffffff;
  color: #333333;
}

:root {
  --brand-green: #1b7f4f;
  --brand-green-light: #26c07b;
}

/* Layout base */

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 16px;
}

/* HEADER */

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  z-index: 1000;
  box-shadow: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.header.header-floating {
  background-color: rgba(255, 255, 255, 0.98);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
}

.logo {
  display: flex;
  align-items: center;
}

.logo-image {
  height: 64px;
  width: auto;
  display: block;
}

.logo-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  color: #ffffff;
  border: 2px solid #ffffff;
  padding: 6px 10px;
  border-radius: 4px;
}

.nav a {
  color: var(--brand-green);
  text-decoration: none;
  margin-left: 24px;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.nav a:hover {
  color: var(--brand-green-light);
}

/* HERO */

.hero {
  position: relative;
  height: 80vh;
  min-height: 480px;
  margin-top: 56px;
  /* compensar header fixo */
  overflow: hidden;
  background-color: #111;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("img/hero.jpg");
  background-size: cover;
  background-position: center;
  filter: brightness(0.7);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      rgba(0, 0, 0, 0.4),
      rgba(0, 0, 0, 0.7));
}

.hero-content {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 16px;
  color: #ffffff;
}

.hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-divider {
  width: 120px;
  height: 8px;
  background-color: #f4e0b5;
  margin: 20px 0;
}

.hero p {
  max-width: 460px;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* SEÃ‡Ã•ES GENÃ‰RICAS */

.section {
  padding: 72px 0;
}

.section-home {
  background-color: #ffffff;
}

.section-grid {
  display: grid;
  grid-template-columns: 1.1fr 1.1fr;
  gap: 40px;
  align-items: center;
}

.section-image img {
  width: 100%;
  border-radius: 4px;
  display: block;
  object-fit: cover;
}

.section-content h2 {
  font-size: 1.6rem;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.section-line {
  width: 220px;
  height: 6px;
  background-color: #1f6060;
  margin-bottom: 24px;
}

.section-line-secondary {
  background-color: #f2a22f;
}

.section-content p {
  font-size: 0.95rem;
  line-height: 1.6;
}

/* IMPACTO INTRO */

.section-impacto-intro {
  background-color: #f7f7f7;
}

/* IMPACTO CARDS */

.section-impacto-cards {
  background-color: #ffffff;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.card {
  background-color: #f7f7f7;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
}

.card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.card h3 {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 16px 16px 0;
}

.card p {
  font-size: 0.9rem;
  line-height: 1.5;
  padding: 10px 16px 18px;
}

/* CERTIFICAÃ‡ÃƒO */

.section-certificacao {
  background-color: #f7f7f7;
}

.section-header-center {
  text-align: center;
  margin-bottom: 32px;
}

.section-header-center h2 {
  text-transform: uppercase;
  font-size: 1.6rem;
}

.section-header-center .section-line {
  margin: 16px auto 0;
}

.cert-text {
  max-width: 720px;
  margin: 0 auto 32px;
  text-align: center;
  font-size: 0.95rem;
  line-height: 1.6;
}

.cert-logos {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.cert-logo-card {
  background-color: #ffffff;
  padding: 24px;
  border-radius: 4px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
  text-align: center;
}

.fake-logo {
  display: inline-flex;
  padding: 10px 18px;
  border-radius: 999px;
  border: 2px solid #1f6060;
  font-weight: 600;
  margin-bottom: 12px;
}

/* OUTROS PROJETOS HERO */

.section-outros-hero {
  position: relative;
  color: #ffffff;
  padding: 96px 0;
  overflow: hidden;
}

.outros-bg {
  position: absolute;
  inset: 0;
  background-image: url("img/outros-hero.jpg");
  background-size: cover;
  background-position: center;
  filter: brightness(0.65);
}

.outros-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      rgba(0, 0, 0, 0.4),
      rgba(0, 0, 0, 0.8));
}

.outros-hero-content {
  position: relative;
  max-width: 720px;
}

.outros-hero-content h2 {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 1.6rem;
  margin-bottom: 16px;
}

.outros-hero-content p {
  font-size: 0.95rem;
  line-height: 1.6;
}

/* OUTROS PROJETOS LISTA */

.section-outros-lista {
  background-color: #ffffff;
}

.outros-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.outro-card {
  background-color: #f7f7f7;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
}

.outro-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.outro-body {
  padding: 18px 18px 20px;
}

.outro-body h3 {
  font-size: 1.05rem;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.outro-pill {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  background-color: #1f6060;
  color: #ffffff;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

/* CTA FINAL */

.section-cta {
  position: relative;
  color: #ffffff;
  padding: 96px 0;
  text-align: center;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background-image: url("img/cta.jpg");
  background-size: cover;
  background-position: center;
  filter: brightness(0.65);
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      rgba(0, 0, 0, 0.2),
      rgba(0, 0, 0, 0.75));
}

.cta-content {
  position: relative;
  max-width: 720px;
}

.cta-content p {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  margin-bottom: 12px;
}

.cta-content h2 {
  font-size: 1.6rem;
  margin-bottom: 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 26px;
  border-radius: 999px;
  border: none;
  background-color: #7ec5c0;
  color: #083536;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
  cursor: pointer;
  transition: transform 0.1s ease, box-shadow 0.1s ease, opacity 0.15s ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
  opacity: 0.9;
}

/* CONTATO */

.section-contato {
  background-color: #ffffff;
}

.contato-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 40px;
  align-items: flex-start;
}

.contato-info p {
  margin-bottom: 4px;
  font-size: 0.95rem;
}

.contato-info a {
  color: #1f6060;
  text-decoration: none;
}

.contato-info a:hover {
  text-decoration: underline;
}

.contato-form {
  background-color: #f7f7f7;
  padding: 24px;
  border-radius: 4px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 4px;
  border: 1px solid #cccccc;
  font-size: 0.9rem;
  font-family: inherit;
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #1f6060;
  box-shadow: 0 0 0 1px rgba(31, 96, 96, 0.18);
}

/* FOOTER */

.footer {
  background: #edf7ee;
  color: var(--brand-green);
  padding: 5px 0;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0;
  font-size: 0.85rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-logo-image {
  height: 140px;
  width: auto;
  display: block;
}

.footer-copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: var(--brand-green);
}

.footer-text {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.footer p {
  margin: 0;
  color: var(--brand-green);
}

.footer-slogan {
  font-weight: 600;
}

.footer-rights {
  font-size: 0.78rem;
  opacity: 0.8;
}

.footer-credit {
  font-size: 0.75rem;
  opacity: 0.75;
  margin-top: 0;
}

.footer .footer-link {
  color: var(--brand-green);
  font-weight: 600;
  text-decoration: none;
}

.footer .footer-link:hover {
  color: var(--brand-green-light);
}

.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  z-index: 1200;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
  color: #ffffff;
}

.whatsapp-float img {
  width: 32px;
  height: 32px;
}

.whatsapp-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.35);
}

/* PARCEIROS */

.section-parceiros {
  background-color: #ffffff;
}

.parceiros-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 48px;
}

.parceiro-card {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  max-width: 360px;
  min-height: 220px;
  margin: 0 auto;
}

.parceiro-card img {
  display: block;
  width: min(260px, 80%);
  height: auto;
  margin: 0 auto;
}

/* RESPONSIVO */

@media (max-width: 900px) {
  .header-inner {
    padding: 12px 16px;
  }

  /* Hamburger Menu */
  .hamburger {
    display: block;
    cursor: pointer;
    background: none;
    border: none;
    z-index: 1100;
  }

  .hamburger .bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: var(--brand-green);
    transition: all 0.3s ease-in-out;
    border-radius: 2px;
  }

  /* AnimaÃ§Ã£o do Hamburger */
  .hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  /* Nav Mobile */
  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    max-width: 300px;
    height: 100vh;
    background-color: rgba(255, 255, 255, 0.97);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: right 0.3s ease-in-out;
    box-shadow: -2px 0 18px rgba(0, 0, 0, 0.15);
    z-index: 1050;
    padding-top: 60px;
  }

  .nav.active {
    right: 0;
  }

  .nav a {
    margin: 20px 0;
    font-size: 1.1rem;
    display: block;
  }

  .section-grid,
  .cards-grid,
  .cert-logos,
  .outros-grid,
  .contato-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 56px 0;
  }

  .hero {
    height: 70vh;
  }
}

@media (min-width: 901px) {
  .hamburger {
    display: none;
  }
}

@media (max-width: 600px) {
  .btn {
    width: 100%;
    justify-content: center;
  }

  .section {
    padding: 48px 0;
  }

  .parceiro-card img {
    max-width: 180px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer p {
    margin: 0;
  }
}
