@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600&family=Inter:wght@300;400;500&display=swap');

:root {
  --bg: #f5f1e8;
  --verde: #4a6f3d;
  --marrom: #6b4f3a;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--marrom);
}

/* CONTAINER */
.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

.header {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 999;
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(10px);
}

.nav {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px;
}

.logo img {
  height: 50px;
}


/* BOTÃO */
.btn-primary {
  background: var(--verde);
  color: #fff;
  padding: 10px 20px;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.hero {
  position: relative;
  background: url('imagens/servico.png') center/cover no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.6),
    rgba(0,0,0,0.3)
  );
}



.hero-content {
  position: relative;
  max-width: 600px;
  color: #fff;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 55px;
  margin-bottom: 20px;
}

.hero h1 span {
  color: #a8c59a;
}

.hero p {
  margin-bottom: 25px;
}

/* SERVICES */
.services {
  padding: 100px 20px;
  text-align: center;
}

.services h2 {
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  margin-bottom: 10px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 40px;
}

.service-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  transition: 0.4s;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.service-card:hover {
  transform: translateY(-10px);
}

.service-img {
  height: 220px;
  background-size: cover;
  position: relative;
}

.service-img .overlay {
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
}

.content {
  position: absolute;
  bottom: 15px;
  left: 15px;
  color: #fff;
}

/* COBERTURA */
.area {
  padding: 100px 20px;
  text-align: center;
}

.cards-area {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-top: 30px;
}

.card {
  background: #fff;
  padding: 15px 25px;
  border-radius: 25px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

/* BUSINESS */
.business {
  padding: 100px 20px;
  text-align: center;
}

.business-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 40px;
}

.business-card {
  background: #fff;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: 0.3s;
}

.business-card:hover {
  transform: translateY(-10px);
}

/* FORM APP */
.form-app {
  max-width: 420px;
  margin: auto;
  background: #ffffff;
  padding: 40px;
  border-radius: 30px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

/* FIELD */
.field {
  position: relative;
  margin-bottom: 25px;
}

/* INPUT */
.field input,
.field textarea,
.field select {
  width: 100%;
  padding: 16px;
  border-radius: 12px;
  border: 1px solid #ddd;
  outline: none;
  background: #f9f9f9;
  transition: 0.3s;
  font-size: 14px;
}

/* LABEL */
.field label {
  position: absolute;
  left: 15px;
  top: 16px;
  color: #888;
  font-size: 14px;
  transition: 0.3s;
  background: #fff;
  padding: 0 5px;
}

/* ANIMAÇÃO LABEL */
.field input:focus + label,
.field input:valid + label,
.field textarea:focus + label,
.field textarea:valid + label,
.field select:focus + label,
.field select:valid + label {
  top: -8px;
  font-size: 12px;
  color: var(--verde);
}

/* FOCO */
.field input:focus,
.field textarea:focus,
.field select:focus {
  border: 1px solid var(--verde);
  box-shadow: 0 0 0 4px rgba(74,111,61,0.1);
}

/* BOTÃO APP */
.btn-app {
  width: 100%;
  padding: 16px;
  border: none;
  border-radius: 15px;
  background: linear-gradient(135deg, #4a6f3d, #6fa55c);
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
  position: relative;
  overflow: hidden;
}

/* HOVER */
.btn-app:hover {
  transform: translateY(-2px);
}

/* LOADING */
.btn-app.loading {
  pointer-events: none;
  opacity: 0.7;
}

.btn-app.loading span {
  visibility: hidden;
}

.btn-app.loading::after {
  content: "";
  width: 20px;
  height: 20px;
  border: 3px solid #fff;
  border-top: 3px solid transparent;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: spin 1s linear infinite;
}

/* ANIMAÇÃO SPIN */
@keyframes spin {
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* STATUS */
#statusMsg {
  margin-top: 15px;
  font-size: 14px;
  color: var(--verde);
}

/* WHATS */
.whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: var(--verde);
  color: #fff;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

/* ANIMAÇÃO */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: 0.8s;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* TÍTULO */
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  margin-bottom: 50px;
  text-align: center;
}

/* GRID */
.business-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

/* CARD BASE */
.business-card {
  padding: 40px;     
  width: 280px;
  border-radius: 25px;
  text-align: left;
  transition: 0.4s;
  position: relative;
  overflow: hidden;
}

/* SERVIÇOS (VERDE) */
.business-card.service {
  background: linear-gradient(135deg, #4a6f3d, #3d5c32);
  color: #fff;
}

/* PRODUTOS (CREME PREMIUM) */
.business-card.product {
  background: #fff;
  border: 1px solid #e5e0d6;
}

/* HOVER */
.business-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

/* ÍCONE */
.icon {
  font-size: 30px;
  margin-bottom: 15px;
}

/* TÍTULO */
.business-card h3 {
  font-size: 24px;
  margin-bottom: 10px;
  font-family: 'Playfair Display', serif;
}

/* TEXTO */
.business-card p {
  margin-bottom: 25px;
  line-height: 1.5;
}

/* BOTÃO SECUNDÁRIO */
.btn-secondary {
  background: transparent;
  border: 2px solid var(--verde);
  color: var(--verde);
  padding: 10px 20px;
  border-radius: 25px;
  text-decoration: none;
  transition: 0.3s;
}

.btn-secondary:hover {
  background: var(--verde);
  color: #fff;
}

/* SOBRE */
.about {
  padding: 120px 20px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  align-items: center;
}

/* TEXTO */
.about-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  margin-bottom: 20px;
}

.about-text p {
  margin-bottom: 15px;
  line-height: 1.6;
}

/* IMAGEM */
.about-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
  transition: 0.4s;
}

.about-image img:hover {
  transform: scale(1.03);
}

/* CARDS */
.about-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-top: 30px;
}

.mini-card {
  background: #fff;
  padding: 20px;
  border-radius: 15px;
  transition: 0.3s;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.mini-card:hover {
  transform: translateY(-5px);
}

.mini-card span {
  font-size: 20px;
  display: block;
  margin-bottom: 5px;
}

.mini-card h4 {
  margin-bottom: 5px;
}

section {
  padding: 140px 20px;
}

.btn-primary {
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.reveal {
  opacity: 0;
  transform: translateY(60px);
  transition: 1s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* SEÇÃO */
.coverage {
  padding: 140px 20px;
}

/* TOPO */
.coverage-top {
  max-width: 600px;
  margin-bottom: 60px;
}

.coverage-top h2 {
  font-size: 38px;
  font-family: 'Playfair Display', serif;
  margin: 10px 0;
}

.coverage-top p {
  color: #777;
}

/* WRAPPER */
.coverage-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

/* LISTA DE CIDADES */
.coverage-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.city {
  padding: 18px;
  border-radius: 15px;
  background: #fff;
  text-align: center;
  font-weight: 500;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  transition: 0.3s;
}

.city:hover {
  transform: translateY(-5px);
}

/* BLOCO DESTAQUE */
.coverage-highlight {
  background: linear-gradient(135deg, #3f5c3a, #6f8f67);
  color: #fff;
  padding: 40px;
  border-radius: 25px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.coverage-highlight h3 {
  font-size: 26px;
  margin-bottom: 15px;
  font-family: 'Playfair Display', serif;
}

.coverage-highlight p {
  margin-bottom: 25px;
  line-height: 1.6;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========================= */
/* 📱 MOBILE GERAL */
/* ========================= */
@media (max-width: 768px) {

  section {
    padding: 80px 20px;
  }

  h1 {
    font-size: 34px !important;
  }

  h2 {
    font-size: 28px !important;
  }

  p {
    font-size: 14px;
  }

  /* HEADER */
  .nav {
    flex-direction: column;
    gap: 8px;
  }

  nav ul {
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }


  .hero {
    height: auto;
    padding: 120px 20px;
  }

  .hero-content {
    margin: 0;
    text-align: center;
  }

 
  .about-grid {
    grid-template-columns: 1fr;
  }

 
  .services-grid {
    grid-template-columns: 1fr;
  }

 
  .business-grid {
    grid-template-columns: 1fr;
  }

  
  .coverage-wrapper {
    grid-template-columns: 1fr;
  }

  .coverage-list {
    grid-template-columns: 1fr;
  }

  .form-app {
    padding: 25px;
  }


  .btn-primary {
    width: 100%;
    text-align: center;
  }

}


.header {
  position: fixed;
  width: 100%;
  top: 0;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(10px);
  z-index: 999;
}


.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
}


nav ul {
  display: flex;
  gap: 20px;
  list-style: none;
}


.menu-toggle {
  display: none;
  font-size: 26px;
  cursor: pointer;
}


@media (max-width: 768px) {

  .menu-toggle {
    display: block;
  }

  nav {
    position: absolute;
    top: 70px;
    right: 0;
    width: 100%;
    background: #f4f1ea;
    transform: translateY(-200%);
    transition: 0.4s ease;
  }

  nav.active {
    transform: translateY(0);
  }

  nav ul {
    flex-direction: column;
    padding: 20px;
    gap: 15px;
    text-align: center;
  }

  nav ul li a {
    font-size: 18px;
  }

}

p {
  line-height: 1.6;
}


.footer {
  background: #2f2f2f;
  color: #ddd;
  padding: 60px 20px 20px;
}


.footer-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: auto;
}


.footer-col h3,
.footer-col h4 {
  margin-bottom: 15px;
  color: #fff;
}

.footer-col p {
  margin-bottom: 8px;
  font-size: 14px;
}


.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 40px;
  padding-top: 15px;
  text-align: center;
  font-size: 13px;
  color: #aaa;
}


@media (max-width: 768px) {

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

}


.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;

  width: 60px;
  height: 60px;

  background: #25D366;
  color: #fff;

  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 28px;
  text-decoration: none;

  box-shadow: 0 10px 25px rgba(0,0,0,0.2);

  z-index: 999;
  transition: 0.3s;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}


.whatsapp-float {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37,211,102,0.6);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37,211,102,0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37,211,102,0);
  }
}
.whatsapp-float img {
  width: 30px;
  height: 30px;
}

