:root {
  --green-dark: #00773b;
  --green-primary: #009354;
  --green-light: #93cd3d;
  --green-icon: #078148;
  --green-btn: #61ce70;
  --green-btn-hover: #259b34;
  --red-cta: #ff2933;
  --red-cta-hover: #ab0b13;
  --gray-bg: #f0f0f5;
  --gray-dark: #333333;
  --gray-medium: #606060;
  --gray-border: #bbbbc0;
  --white: #ffffff;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Roboto", sans-serif;
  color: var(--gray-dark);
  line-height: 1.5;
}

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

ul {
  list-style: none;
}

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

/* ========== TOP BAR ========== */

.top-bar {
  background-color: var(--green-dark);
  padding: 8px 0;
}

.top-bar__inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 0 1rem;
}

.top-bar__label {
  color: var(--white);
  font-size: 22px;
  font-weight: 600;
}

.top-bar__phone-group {
  display: flex;
  align-items: center;
  gap: 10px;
}

.top-bar__phone-icon {
  display: flex;
  align-items: center;
}

.top-bar__phone-icon svg {
  width: 22px;
  height: 22px;
}

.top-bar__number {
  color: var(--white);
  font-size: 22px;
  font-weight: 600;
}

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

.site-header {
  background-color: var(--green-primary);
  position: sticky;
  top: 0;
  z-index: 100;
}

.site-header__inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 1rem;
}

.site-header__logo img {
  height: 60px;
  width: auto;
}

.nav-menu {
  display: flex;
  gap: 8px;
}

.nav-menu a {
  color: var(--white);
  font-size: 20px;
  font-weight: 500;
  padding: 10px 15px;
  border-radius: 4px;
  transition: color 0.3s;
}

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

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.hamburger span {
  display: block;
  width: 28px;
  height: 3px;
  background-color: var(--white);
  margin: 5px 0;
  border-radius: 2px;
  transition: all 0.3s;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}

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

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

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

.hero {
  background-image: url("/wp-content/uploads/2021/11/home.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 200px 1rem 350px;
  text-align: left;
}

.hero__inner {
  max-width: 1140px;
  margin: 0 auto;
}

.hero__title {
  color: var(--white);
  font-size: 64px;
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 30px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.hero__cta {
  display: inline-block;
  background-color: var(--red-cta);
  color: var(--white);
  font-size: 20px;
  font-weight: 600;
  padding: 15px 40px;
  border-radius: 4px;
  transition: background 0.3s;
}

.hero__cta:hover {
  background-color: var(--red-cta-hover);
}

/* ========== DIFERENCIAIS ========== */

.diferenciais {
  background-color: var(--white);
  padding: 0 1rem;
  margin-top: -80px;
  position: relative;
  z-index: 10;
}

.diferenciais__inner {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.diferencial-card {
  background-color: var(--green-primary);
  border-radius: 8px;
  padding: 35px 20px;
  text-align: center;
  color: var(--white);
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s, box-shadow 0.3s;
}

.diferencial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.diferencial-card__icon {
  margin-bottom: 16px;
}

.diferencial-card__icon svg {
  width: 104px;
  height: 104px;
}

.diferencial-card__title {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 8px;
}

.diferencial-card__line {
  width: 50%;
  height: 3px;
  background-color: var(--green-light);
  margin: 0 auto 12px;
}

.diferencial-card__text {
  font-size: 16px;
  font-weight: 400;
  opacity: 0.9;
}

/* ========== SERVICOS ========== */

.servicos {
  background-color: var(--white);
  padding: 60px 1rem;
}

.servicos__inner {
  max-width: 1140px;
  margin: 0 auto;
}

.servicos__title {
  font-size: 48px;
  font-weight: 600;
  color: var(--gray-dark);
  text-align: center;
  margin-bottom: 40px;
}

.servicos__content {
  display: flex;
  align-items: center;
  gap: 40px;
}

.servicos__list {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.servico-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.servico-item__number svg {
  width: 75px;
  height: 75px;
  flex-shrink: 0;
}

.servico-item__content h3 {
  font-size: 24px;
  font-weight: 600;
  color: var(--green-icon);
  margin-bottom: 4px;
}

.servico-item__content p {
  font-size: 18px;
  font-weight: 400;
  color: var(--gray-medium);
}

.servicos__image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.servicos__image img {
  max-width: 100%;
  height: auto;
}

/* ========== FEEDBACKS (usa carousel.css + script.js existentes) ========== */

/* ========== PARCEIROS ========== */

.parceiros {
  background-color: var(--white);
  padding: 40px 1rem;
}

.parceiros__title {
  font-size: 48px;
  font-weight: 600;
  color: var(--gray-dark);
  text-align: center;
  margin-bottom: 30px;
}

.parceiros__logos {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

.parceiros__logos img {
  height: 80px;
  width: auto;
  object-fit: contain;
  opacity: 0.85;
  transition: opacity 0.3s;
}

.parceiros__logos img:hover {
  opacity: 1;
}

/* ========== A LIFE ========== */

.about {
  background: linear-gradient(160deg, var(--green-light) 0%, var(--green-primary) 40%);
  padding: 60px 1rem;
}

.about__inner {
  max-width: 1140px;
  margin: 0 auto;
  text-align: center;
}

.about__title {
  font-size: 48px;
  font-weight: 600;
  color: var(--gray-bg);
  margin-bottom: 20px;
}

.about__text {
  font-size: 18px;
  font-weight: 400;
  color: var(--gray-bg);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.7;
}

.about__text strong {
  font-weight: 700;
}

/* ========== GALERIA ========== */

.galeria {
  background-color: var(--white);
  padding: 60px 0;
}

.galeria__title {
  font-size: 48px;
  font-weight: 600;
  color: var(--gray-dark);
  text-align: center;
  margin-bottom: 30px;
  padding: 0 1rem;
}

.galeria__carousel {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.galeria__track {
  display: flex;
  transition: transform 0.5s ease;
}

.galeria__slide {
  min-width: calc(100% / 3);
  flex-shrink: 0;
  padding: 0 4px;
}

.galeria__slide img {
  width: 100%;
  height: 376px;
  object-fit: cover;
  border-radius: 4px;
}

.galeria__controls {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.4);
  color: var(--white);
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
  z-index: 5;
}

.galeria__controls:hover {
  background: rgba(0, 0, 0, 0.7);
}

.galeria__prev {
  left: 12px;
}

.galeria__next {
  right: 12px;
}

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

.contato {
  background-color: var(--gray-bg);
  padding: 60px 1rem;
}

.contato__inner {
  max-width: 1140px;
  margin: 0 auto;
}

.contato__title {
  font-size: 48px;
  font-weight: 600;
  color: var(--gray-dark);
  text-align: center;
  margin-bottom: 40px;
}

.contato__body {
  display: flex;
  gap: 4rem;
}

.contato__left,
.contato__right {
  flex: 1;
}

.contato__form-title {
  font-size: 24px;
  font-weight: 500;
  color: var(--gray-medium);
  margin-bottom: 16px;
}

.contato__form label {
  display: block;
  color: var(--gray-medium);
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 4px;
  margin-top: 12px;
}

.contato__form input[type="text"],
.contato__form input[type="email"],
.contato__form textarea {
  width: 100%;
  margin-top: 4px;
  padding: 10px 12px;
  background-color: var(--gray-bg);
  border: 1.5px solid var(--gray-border);
  border-radius: 4px;
  font-family: inherit;
  font-size: 16px;
}

.contato__form textarea {
  min-height: 150px;
  max-height: 150px;
  resize: vertical;
}

.contato__form-submit {
  font-size: 20px;
  font-weight: 500;
  margin-top: 24px;
  padding: 10px 60px;
  background-color: var(--green-btn);
  color: var(--gray-bg);
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.3s;
}

.contato__form-submit:hover {
  background-color: var(--green-btn-hover);
  color: var(--white);
}

.contato__whatsapp-title {
  font-size: 24px;
  font-weight: 500;
  color: var(--gray-medium);
  max-width: 380px;
  margin-bottom: 24px;
}

.contato__whatsapp-buttons {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contato__whatsapp-buttons a {
  display: block;
  background-color: var(--green-btn);
  color: var(--white);
  font-size: 20px;
  font-weight: 500;
  padding: 15px 40px;
  border-radius: 6px;
  text-align: center;
  max-width: 400px;
  transition: background 0.3s;
}

.contato__whatsapp-buttons a:hover {
  background-color: var(--green-btn-hover);
}

/* ========== MISSAO / VISAO / VALORES ========== */

.mvv {
  background-color: var(--white);
  padding: 60px 1rem;
}

.mvv__inner {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.mvv-card {
  background-color: var(--green-primary);
  border-radius: 8px;
  padding: 35px 24px;
  text-align: center;
  color: var(--white);
}

.mvv-card__icon {
  margin-bottom: 12px;
}

.mvv-card__icon img {
  height: 50px;
  width: auto;
  margin: 0 auto;
}

.mvv-card__title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 12px;
}

.mvv-card__text {
  font-size: 16px;
  line-height: 1.6;
}

.mvv-card__text ul {
  text-align: left;
  padding-left: 20px;
  list-style: disc;
}

.mvv-card__text ul li {
  margin-bottom: 4px;
}

/* ========== PRONTO ATENDIMENTO 24H ========== */

.pronto-atendimento {
  background-color: var(--gray-bg);
  padding: 60px 1rem;
}

.pronto-atendimento__inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.pronto-atendimento__text h2 {
  font-size: 36px;
  font-weight: 600;
  color: var(--gray-dark);
  margin-bottom: 12px;
}

.pronto-atendimento__text p {
  font-size: 18px;
  color: var(--gray-medium);
}

.pronto-atendimento__icon img {
  width: 184px;
  height: 184px;
}

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

.site-footer {
  background-color: var(--green-dark);
  color: var(--white);
  padding: 40px 1rem 0;
}

.site-footer__inner {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 30px;
}

.footer-col__logo img {
  width: 70%;
  max-width: 250px;
  margin-bottom: 12px;
}

.footer-col__cnpj {
  font-size: 16px;
  font-weight: 300;
  margin-bottom: 12px;
}

.footer-col__flags {
  display: flex;
  gap: 12px;
}

.footer-col__flags img {
  height: 40px;
  width: auto;
}

.footer-col h3 {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 12px;
}

.footer-col__phone {
  font-size: 18px;
  font-weight: 300;
  margin-bottom: 16px;
}

.footer-col__address {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.6;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-nav a {
  font-size: 18px;
  font-weight: 300;
  transition: color 0.3s;
}

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

.footer-col__instagram {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
}

.footer-col__instagram svg {
  width: 35px;
  height: 35px;
  fill: var(--white);
  transition: fill 0.3s;
}

.footer-col__instagram:hover svg {
  fill: var(--green-light);
}

.footer-col__instagram span {
  font-size: 16px;
  font-weight: 300;
}

.site-footer__copyright {
  background-color: rgba(0, 0, 0, 0.15);
  text-align: center;
  padding: 14px 1rem;
  font-size: 14px;
}

.site-footer__copyright a {
  color: var(--white);
  transition: opacity 0.3s;
}

.site-footer__copyright a:hover {
  opacity: 0.8;
}

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

@media (max-width: 1024px) {
  .hero {
    padding: 100px 1rem 200px;
  }

  .hero__title {
    font-size: 42px;
  }

  .diferenciais {
    margin-top: -50px;
  }

  .servicos__title,
  .parceiros__title,
  .about__title,
  .galeria__title,
  .contato__title {
    font-size: 42px;
  }

  .galeria__slide {
    min-width: 50%;
  }
}

@media (max-width: 767px) {
  .top-bar {
    display: none;
  }

  .site-header__logo img {
    height: 45px;
  }

  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--green-primary);
    flex-direction: column;
    padding: 16px;
    gap: 0;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-menu a {
    font-size: 18px;
    padding: 12px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .hamburger {
    display: block;
  }

  .hero {
    padding: 120px 1rem 260px;
    text-align: center;
  }

  .hero__title {
    font-size: 32px;
  }

  .hero__cta {
    font-size: 18px;
    padding: 12px 30px;
  }

  .diferenciais {
    margin-top: -60px;
  }

  .diferenciais__inner {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .servicos__title,
  .parceiros__title,
  .about__title,
  .galeria__title,
  .contato__title {
    font-size: 32px;
  }

  .servicos__content {
    flex-direction: column;
  }

  .servicos__image {
    display: none;
  }

  .servico-item__content h3 {
    font-size: 20px;
  }

  .parceiros__logos {
    gap: 30px;
  }

  .parceiros__logos img {
    height: 60px;
  }

  .about__text {
    font-size: 16px;
  }

  .galeria__slide {
    min-width: 100%;
  }

  .galeria__slide img {
    height: 250px;
  }

  .contato__body {
    flex-direction: column;
    gap: 2rem;
  }

  .contato__whatsapp-title {
    text-align: center;
    max-width: unset;
  }

  .contato__whatsapp-buttons a {
    max-width: unset;
  }

  .contato__form-submit {
    width: 100%;
  }

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

  .pronto-atendimento__inner {
    flex-direction: column;
    text-align: center;
  }

  .pronto-atendimento__text h2 {
    font-size: 28px;
  }

  .site-footer__inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 30px;
  }

  .footer-col__logo img {
    margin: 0 auto 12px;
  }

  .footer-col__flags {
    justify-content: center;
  }

  .footer-col__instagram {
    justify-content: center;
  }

  .site-footer__copyright {
    font-size: 12px;
  }
}
