:root {
  --bg-light:   #f5f0f1;
  --azul:       #768b96;
  --marrom:     #846662;
  --whatsapp:   #25D366;
  --font:       'Montserrat', sans-serif;
}

* {
  margin: 0; padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font);
  background: var(--bg-light);
  color: #333;
  line-height: 1.5;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
}

/* CONTAINER EM FULLWIDTH */
.container {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}

/* BOTÕES — verde WhatsApp */
.btn {
  display: inline-block;
  padding: .75rem 1.5rem;
  background: var(--whatsapp);
  color: #fff;
  font-weight: 600;
  border-radius: 4px;
  transition: background .3s ease;
}
.btn:hover {
  background: #1EBE56;
}

/* HERO */
.hero {
  display: flex;
  flex-wrap: wrap;
}
.hero-text {
  background: var(--azul);
  color: #fff;
  padding: 2rem;
  flex: 1 1 320px;
}
.hero-text .logo {
  max-width: 180px;
  margin-bottom: 1rem;
}
.hero-text h1 {
  font-size: 2rem;
  margin-bottom: .5rem;
}
.hero-text p {
  margin-bottom: 1.5rem;
}
.hero-image {
  flex: 1 1 320px;
  overflow: hidden;
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* FEATURES — maior altura + hover */
.features {
  display: flex;
  flex-wrap: wrap;
}
.feature {
  flex: 1 1 33%;
  min-height: 400px;
  background-size: cover;
  background-position: center;
  position: relative;
  color: #fff;
  transition: transform .3s ease;
}
.feature::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
}
.feature h3,
.feature p {
  position: relative;
  padding: 1rem;
}
.feature h3 {
  font-size: 1.25rem;
  margin-bottom: .5rem;
}
.feature:hover {
  transform: scale(1.03);
  z-index: 1;
}

/* BENEFITS — ícones e texto centralizados */
.benefits {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
  padding: 2rem 1rem;
  gap: 1rem;
}
.benefit {
  flex: 1 1 30%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.benefit img {
  width: 48px;
  margin-bottom: .75rem;
}
.benefit h4 {
  margin-bottom: .5rem;
  font-weight: 600;
}

/* CTA do meio */
.cta-middle {
  text-align: center;
  padding: 2rem 0;
}

/* GALLERY + hover */
.gallery {
  padding: 2rem 1rem;
  text-align: center;
}
.gallery h2 {
  margin-bottom: 1.5rem;
}
.grid-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
}
.grid-gallery img {
  cursor: pointer;
  transition: transform .3s ease, opacity .3s ease;
}
.grid-gallery img:hover {
  transform: scale(1.05);
  opacity: 0.9;
}

/* MODAL */
.modal {
  display: none;
  position: fixed;
  z-index: 999;
  padding-top: 60px;
  left: 0; top: 0;
  width: 100%; height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.8);
}
.modal-content {
  margin: auto;
  display: block;
  max-width: 90%;
  max-height: 80%;
  animation: zoomIn .3s ease;
}
@keyframes zoomIn {
  from { transform: scale(0.7); opacity: 0; }
  to   { transform: scale(1);   opacity: 1; }
}
.modal-close {
  position: absolute;
  top: 20px; right: 35px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  transition: color .2s ease;
}
.modal-close:hover {
  color: #ddd;
}

/* PROCESS (IMAGEM INSTITUCIONAL) */
.process {
  display: flex;
  flex-wrap: wrap;
  background: var(--marrom);
  color: #fff;
}
.process-text {
  flex: 1 1 300px;
  padding: 2rem;
}
.process-text small {
  text-transform: uppercase;
  opacity: .8;
}
.process-text h2 {
  margin: 1rem 0;
}
.process-text p {
  margin-bottom: 1rem;
}
.process-media {
  flex: 1 1 300px;
  padding: 2rem;
}
.process-media img {
  width: 100%;
  height: auto;
  border-radius: 4px;
}

/* FINAL CTA */
.final-cta {
  background: var(--azul);
  color: #fff;
  text-align: center;
  padding: 2rem 1rem;
}
.final-cta h2 {
  font-size: 1.5rem;
  line-height: 1.3;
}

/* FOOTER */
footer {
  background: #fff;
  padding: 2rem 1rem;
  text-align: center;
}
footer img {
  max-width: 140px;
  margin: 0 auto 1rem;
  display: block;
}
footer p {
  font-size: .95rem;
  color: #555;
  margin-bottom: 1rem;
}
footer .map {
  margin: 0 auto;
  max-width: 100%;
}
footer .map iframe {
  border: 0;
  border-radius: 4px;
  width: 100%;
  height: 200px;
}

/* RESPONSIVO */
@media (max-width: 600px) {
  .feature {
    min-height: 250px;
  }
}
