/* ===================== VARIÁVEIS ===================== */
:root {
  --verde:        #93c157;
  --verde-escuro: #7fae45;
  --verde-texto:  #6e9b3e;
  --rosa:         #f4a9b8;
  --rosa-texto:   #e58aa0;
  --creme:        #fbf1e2;
  --branco:       #ffffff;
  --texto:        #4a4a4a;
  --radius:       16px;
  --sombra:       0 8px 24px rgba(0, 0, 0, 0.08);
  --fonte:        'Poppins', 'Segoe UI', system-ui, sans-serif;
}

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

body {
  font-family: var(--fonte);
  color: var(--texto);
  line-height: 1.6;
  background: var(--branco);
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

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

/* ===================== TÍTULOS DE SEÇÃO ===================== */
.section-title {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--verde-texto);
  margin-bottom: 40px;
}
.section-title--light  { color: var(--branco); }
.section-title--left   { text-align: left; margin-bottom: 8px; }
.section-title--center { text-align: center; margin-bottom: 8px; }

/* ===================== HEADER ===================== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--branco);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 14px;
  padding-bottom: 14px;
}
.logo__img { height: 46px; width: auto; }

.nav__list { display: flex; gap: 28px; }
.nav__list a {
  font-weight: 500;
  color: var(--texto);
  transition: color 0.2s;
}
.nav__list a:hover { color: var(--verde); }

.header__social { display: flex; gap: 12px; align-items: center; }
.social-icon {
  width: 30px; height: 30px;
  display: grid; place-items: center;
  transition: transform 0.2s;
}
.social-icon:hover { transform: translateY(-2px); }
.social-icon img { width: 100%; height: 100%; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  width: 26px; height: 3px;
  background: var(--verde);
  border-radius: 3px;
}

/* ===================== HERO ===================== */
.hero {
  position: relative;
  background: var(--creme);
}
.hero__slides { overflow: hidden; }
.hero__slide { display: none; }
.hero__slide.is-active { display: block; }
.hero__slide img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}
.hero__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 44px; height: 44px;
  border: none;
  background: rgba(255, 255, 255, 0.6);
  color: var(--texto);
  font-size: 2rem;
  line-height: 1;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.2s;
}
.hero__arrow:hover { background: rgba(255, 255, 255, 0.9); }
.hero__arrow--prev { left: 20px; }
.hero__arrow--next { right: 20px; }

.hero__dots {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  gap: 10px;
}
.hero__dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  border: none;
  padding: 0;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.6);
  transition: background 0.2s, transform 0.2s;
}
.hero__dot:hover { background: rgba(255, 255, 255, 0.9); }
.hero__dot.is-active {
  background: var(--verde);
  transform: scale(1.15);
}

/* ===================== QUEM SOMOS ===================== */
.quem-somos {
  background: var(--verde);
  color: var(--branco);
  padding: 60px 0;
  text-align: left;
}
.quem-somos__text {
  max-width: none;
  margin: 0;
}
.quem-somos__text p { margin-bottom: 18px; }

/* Missão / Visão / Valores */
.mvv {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  margin-top: 32px;
  margin-bottom: -60px;
  padding: 32px 0 60px;
  background: var(--verde-escuro);
  box-shadow: 0 0 0 100vmax var(--verde-escuro);
  clip-path: inset(0 -100vmax);
  color: var(--creme);
}
.mvv__item h3 {
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 14px;
}
.mvv__item p {
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ===================== SERVIÇOS ===================== */
.servicos {
  background: var(--creme);
  padding: 70px 0;
}
.servicos__lista {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px 40px;
  max-width: 920px;
  margin: 0 auto;
}
.servico-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.servico-item__icon {
  height: 30px;
  width: auto;
  flex-shrink: 0;
  margin-top: 2px;
}
.servico-item__nome {
  display: block;
  color: var(--verde-texto);
  font-weight: 600;
  font-size: 1.05rem;
  line-height: 1.35;
}
.servico-item__desc {
  margin-top: 5px;
  color: var(--texto);
  font-size: 0.82rem;
  line-height: 1.45;
}

/* ===================== EQUIPE ===================== */
.equipe {
  background: var(--rosa);
  padding: 70px 0;
}
.equipe__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}
.card-equipe {
  flex: 0 1 250px;
  background: #fbf6ee;
  border-radius: var(--radius);
  box-shadow: var(--sombra);
  padding: 28px 24px;
}
.card-equipe__foto {
  width: 140px;
  margin: 0 auto 20px;
}
.card-equipe__foto img {
  width: 100%;
  height: auto;
  display: block;
}
.card-equipe h3 {
  color: var(--rosa-texto);
  text-align: center;
  font-size: 1.15rem;
  margin-bottom: 16px;
}
.card-equipe p { font-size: 0.9rem; margin-bottom: 12px; }
.card-equipe strong { color: var(--texto); }

/* ===================== INSTAGRAM ===================== */
.instagram {
  background: var(--creme);
  padding: 60px 0;
}
.instagram__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.instagram__item {
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
}
.instagram__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.instagram__item:hover img { transform: scale(1.05); }
.instagram__cta { text-align: center; margin-top: 32px; }

/* ===================== BOTÕES ===================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: 500;
  font-size: 0.95rem;
  cursor: pointer;
  transition: opacity 0.2s, background 0.2s, color 0.2s;
}
.btn--green {
  background: var(--verde);
  color: var(--branco);
  border: none;
}
.btn--green:hover { background: var(--verde-escuro); }
.btn__icon { width: 18px; height: 18px; }
.btn--outline {
  background: transparent;
  color: var(--branco);
  border: 2px solid var(--branco);
}
.btn--outline:hover { background: var(--branco); color: var(--verde); }

/* ===================== CONTATO ===================== */
.contato {
  background: var(--verde);
  color: var(--branco);
  padding: 60px 0;
  text-align: center;
}
.contato__endereco { font-weight: 500; margin-bottom: 6px; }
.contato__lead { margin-bottom: 32px; }
.contato__cta { margin-top: 8px; }

.btn--whatsapp {
  background: #25d366;
  color: var(--branco);
  border: none;
  font-size: 1.05rem;
  padding: 16px 34px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}
.btn--whatsapp:hover { background: #1ebe57; }

.form { max-width: 100%; }
.form__group { margin-bottom: 20px; }
.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form label {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 8px;
}
.form input,
.form select,
.form textarea {
  width: 100%;
  padding: 14px 16px;
  border: none;
  border-radius: 10px;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--texto);
  background: var(--branco);
  resize: vertical;
}
.form input:focus,
.form select:focus,
.form textarea:focus {
  outline: 2px solid var(--verde-escuro);
}
.form__actions { text-align: right; }

/* ===================== FOOTER ===================== */
.footer {
  background: var(--branco);
  padding: 30px 0;
  text-align: center;
}
.footer__logo { height: 54px; width: auto; margin: 0 auto; }

/* ===================== BOTÃO FLUTUANTE WHATSAPP ===================== */
.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 999;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  background: #25d366;
  border-radius: 50%;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s, box-shadow 0.2s;
  animation: whatsapp-pulse 2.4s ease-out infinite;
}
.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.3);
}
@keyframes whatsapp-pulse {
  0%   { box-shadow: 0 6px 18px rgba(0,0,0,.25), 0 0 0 0 rgba(37,211,102,.5); }
  70%  { box-shadow: 0 6px 18px rgba(0,0,0,.25), 0 0 0 16px rgba(37,211,102,0); }
  100% { box-shadow: 0 6px 18px rgba(0,0,0,.25), 0 0 0 0 rgba(37,211,102,0); }
}

/* ===================== RESPONSIVO ===================== */
@media (max-width: 900px) {
  .servicos__lista { grid-template-columns: repeat(2, 1fr); }
  .instagram__grid{ grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 720px) {
  .nav, .header__social { display: none; }
  .nav-toggle { display: flex; }

  .nav.is-open {
    display: block;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--branco);
    box-shadow: var(--sombra);
    padding: 20px 24px;
  }
  .nav.is-open .nav__list { flex-direction: column; gap: 16px; }

  .section-title { font-size: 1.8rem; }
  .hero__slide img { height: 260px; }

  .servicos__lista { grid-template-columns: repeat(2, 1fr); gap: 20px 24px; }
  .mvv            { grid-template-columns: 1fr; gap: 28px; margin-top: 36px; }
  .card-equipe    { flex-basis: 100%; max-width: 340px; }
  .instagram__grid{ grid-template-columns: repeat(3, 1fr); }
  .form__row      { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .servicos__lista { grid-template-columns: 1fr; }
}
