/* ===== RESET ===== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  font-family: 'Open Sans', sans-serif;
  scroll-behavior: smooth;
}

/* ===== HERO SECTION ===== */
.hero-image-wrap {
  position: relative;
  width: 100%;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 20px 0;
}

.hero-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
  transition: transform 0.3s ease;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  width: 90%;
  max-width: 1200px;
  color: #fff;
}

.hero-row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
}

.hero-left {
  flex: 1 1 450px;
}

.hero-logo img {
  width: 180px;
  height: auto;
  margin-bottom: 10px;
}

.hero-left h1 {
  font-weight: 700;
  font-size: 3rem;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-left p {
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 500px;
}

.hero-right {
  flex: 1 1 400px;
  display: flex;
  justify-content: center;
}

/* FORM WRAPPER */
.form-wrapper {
  width: 100%;
  max-width: 500px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 24px;
  padding: 30px 25px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
  backdrop-filter: blur(6px);
  box-sizing: border-box;
}

/* FIELDS */
.wpforms-field input,
.wpforms-field textarea,
.wpforms-field select {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid #ccc;
  font-size: 15px;
  margin-bottom: 10px;
}

.wpforms-submit {
  width: 100%;
  background: #80c242 !important;
  color: #fff !important;
  border: none;
  border-radius: 12px;
  padding: 14px 0;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s;
}

.wpforms-submit:hover {
  background: #6da336 !important;
  transform: translateY(-2px);
}

/* ===== GREEN ROW ===== */
.green-row {
  position: relative;
  width: 100%;
  min-height: 500px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 2rem 1rem;
  background-color: #80c242;
  overflow: hidden;
}

.green-row .hero-video {
  width: 100%;
  max-width: 75%;
  max-height: 60%;
  object-fit: contain;
  display: block;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.green-row-text {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 1000px;
  color: #fff;
  padding: 0 10px;
}

.green-row-text h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.green-row-text p {
  font-size: 1.1rem;
  line-height: 1.6;
}

/* ===== SERVICES ROW ===== */
.services-row {
  background-color: #f5f5f5;
  padding: 4rem 1rem;
}

.services-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.service-card {
  background-color: #ffffff;
  padding: 2rem;
  text-align: center;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.service-card img {
  width: 60px;
  height: 60px;
  margin-bottom: 1rem;
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: #80c242;
}

.service-card p {
  font-size: 1rem;
  color: #7f7f7f;
  line-height: 1.5;
}

/* ===== PARTNERS ROW ===== */
.partners-row {
  width: 100%;
  background-color: #ffffff;
  padding: 4rem 1rem;
  overflow: hidden;
}

.partners-title {
  font-size: 2rem;
  text-align: center;
  color: #333;
  margin-bottom: 2rem;
}

.partners-slider {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.partners-track {
  display: flex;
  width: calc(200%);
  animation: slide 20s linear infinite;
}

.partner-logo {
  flex: 0 0 auto;
  width: 150px;
  margin: 0 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.partner-logo img {
  max-width: 100%;
  max-height: 80px;
  object-fit: contain;
}

@keyframes slide {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== CUSTOM GALLERY ===== */
.custom-gallery-row,
.custom-gallery-row .foogallery-wrapper {
  background-color: #e6e8e8 !important;
  padding: 4rem 1rem;
  box-sizing: border-box;
  text-align: center;
}

.custom-gallery-row .foogallery-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

/* ===== RESPONSIVE MOBILE / TABLET ===== */
@media (max-width: 991px) {
  .hero-left h1 { font-size: 2.4rem; }
  .hero-left p { font-size: 1rem; }
  .hero-logo img { width: 150px; }

  .services-container { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  /* HERO SECTION MOBILE */
  .hero-row {
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
  }
  .hero-left, .hero-right {
    flex: 1 1 100% !important;
    max-width: 100% !important;
    width: 100% !important;
    text-align: center;
    padding: 0 !important;
  }
  .hero-right { order: 2; }
  .hero-left { order: 1; }
  .form-wrapper {
    width: 90% !important;
    max-width: 450px !important;
    padding: 20px !important;
    margin: 0 auto !important;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
  }
  .hero-image-wrap {
    min-height: auto !important;
    height: auto !important;
    padding: 40px 0 !important;
  }
  .hero-bg-image { height: 100% !important; min-height: 300px; }

  /* GREEN ROW MOBILE */
  .green-row .hero-video { width: 100%; max-width: 100%; }

  /* PARTNERS MOBILE */
  .partner-logo { width: 120px; margin: 0 1rem; }
  .partner-logo img { max-height: 70px; }
}

/* ===== GREEN ROW 3 COLUNAS ===== */
.green-row-3cols {
  background-color: #000; /* fundo preto */
  color: #fff;
  padding: 4rem 1rem;
}

.green-row-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 2rem;
}

.green-col {
  flex: 1 1 300px; /* largura mínima de 300px */
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

/* Títulos e textos */
.white-title {
  color: #fff;
  font-size: 1.8rem;
  font-weight: 700;
}

.yellow-text {
  color: #f6c119;
  font-size: 1.1rem;
  line-height: 1.5;
}

.white-text {
  color: #fff;
  font-size: 1.1rem;
  line-height: 1.5;
}

/* Espaçamento interno das colunas */
.green-col p, .green-col h3 {
  margin: 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
  .green-row-container {
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .green-row-container {
    flex-direction: column;
    align-items: center;
  }

  .green-col {
    width: 100%;
  }
}

/* ===== SERVICES ROW MODERNA 2 COLUNAS ===== */
.services-row {
  background-color: #f5f5f5;
  padding: 4rem 1rem;
}

.services-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 2rem;
}

.services-col {
  flex: 1 1 500px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.services-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #333;
}

.services-subtitle {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.5;
}

/* MAPA */
.map-container iframe {
  width: 100%;
  height: 300px;
  border: 0;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.map-container iframe:hover {
  transform: scale(1.02);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
  .services-col {
    flex: 1 1 100%;
  }
}

@media (max-width: 768px) {
  .services-row {
    padding: 2rem 1rem;
  }

  .services-col {
    width: 100%;
  }

  .map-container iframe {
    height: 250px;
  }
}

/* ===== FOOTER SIMPLES PRETO + AMARELO ===== */
.lostbox-footer-simple {
  background-color: #000; /* fundo preto */
  color: #f6c119;         /* letra amarela */
  text-align: center;      /* centralizado */
  padding: 2rem 1rem;     /* espaçamento */
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
  box-sizing: border-box;
}

.lostbox-footer-simple p {
  margin: 0;
  line-height: 1.5;
}