 /*
Theme Name: (CMB)
*/
    @import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
    @import url('https://fonts.googleapis.com/css2?family=Noto+Serif:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
    @import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
/* Fonte Google - Montserrat */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;700&display=swap');

/* Reset e Configurações Básicas */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'Montserrat', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #fff;
  overflow-x: hidden;
}

/* Container Centralizado */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

/* ======================
   HEADER
====================== */
.header {
  width: 100%;
  padding: 20px 0;
  background-color: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 100;
  transition: all 0.3s ease;
}

.logo {
  height: 60px;
  width: auto;
  display: block;
  margin: 0 auto;
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.05);
}

/* ======================
   HERO SECTION
====================== */
.hero {
  position: relative;
  width: 100%;
  min-height: 610px;
  height: 70vh;
  max-height: 700px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-background {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0.4) 50%,
    transparent 100%
  );
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
  padding: 40px 0;
}

.hero-text {
  max-width: 650px;
  animation: slideInLeft 1s ease;
}

.hero-text h1 {
  color: #fff;
  font-size: clamp(1.75rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 24px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-text p {
  color: #fff;
  font-size: clamp(1rem, 2vw, 1.375rem);
  font-weight: 500;
  margin-bottom: 32px;
  line-height: 1.6;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
}

/* ======================
   BOTÕES
====================== */
.btn {
  padding: 16px 48px!important;
  border: none!important;
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif!important;
  font-size: 1.125rem!important;
  font-weight: 700!important;
  cursor: pointer!important;
  transition: all 0.3s ease!important;
  text-transform: uppercase!important;
  letter-spacing: 0.5px!important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2)!important;
}

.btn-primary {
  background-color: #268C79;
  color: #fff;
}

.btn-primary:hover {
  background-color: #1F7A68;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(38, 140, 121, 0.4);
}

.btn-primary:active {
  transform: translateY(-1px);
}

.btn-submit {
  background-color: #1F4B40;
  color: #fff;
  width: 100%;
  margin-top: 20px;
  height: 4rem;
  border-radius: 31px;
  border: none;
}

.btn-submit:hover {
  background-color: #163931;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(31, 75, 64, 0.4);
}

/* ======================
   SEÇÕES
====================== */
.section-diferenciais,
.section-localizacao,
.section-contato {
  padding: 80px 0;
}

.section-localizacao {
  background-color: #f9f9f9;
}

.section-title {
  color: #268C79;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 48px;
  /* text-align: center; */
  position: relative;
  padding-bottom: 16px;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  /* transform: translateX(-50%); */
  width: 80px;
  height: 4px;
  background-color: #268C79;
  border-radius: 2px;
}

/* ======================
   DIFERENCIAIS GRID
====================== */
.diferenciais-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  justify-content: center;
  padding: 0 20px;
}

.diferencial-card {
  background: linear-gradient(135deg, #268C79 0%, #1F7A68 100%);
  padding: 40px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 280px;
  flex: 0 0 calc(33.333% - 16px);
  max-width: 360px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(38, 140, 121, 0.2);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

/* Tablet - 2 cards por linha */
@media (max-width: 1024px) {
  .diferencial-card {
    flex: 0 0 calc(50% - 12px);
  }
}

/* Mobile - 1 card por linha */
@media (max-width: 768px) {
  .diferencial-card {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

.diferencial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, transparent 0%, rgba(255, 255, 255, 0.1) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.diferencial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(38, 140, 121, 0.3);
}

.diferencial-card:hover::before {
  opacity: 1;
}

.card-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 24px;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
  transition: transform 0.3s ease;
}

.diferencial-card:hover .card-icon {
  transform: scale(1.1) rotateY(10deg);
}

.diferencial-card p {
  color: #fff;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.5;
  position: relative;
  z-index: 1;
}

/* ======================
   LOCALIZAÇÃO
====================== */
.localizacao-info {
  margin-bottom: 40px;
  text-align: center;
}

.localizacao-info h3 {
  color: #6E6E70;
  font-size: clamp(1.125rem, 2.5vw, 1.375rem);
  font-weight: 400;
  line-height: 1.7;
  max-width: 900px;
  text-align: left;
  /* margin: 0 auto; */
}

.localizacao-info strong {
  font-weight: 700;
  color: #268C79;
}

.localizacao-map {
  margin-bottom: 56px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  transition: transform 0.3s ease;
}

.localizacao-map:hover {
  transform: scale(1.02);
}

.localizacao-map img {
  width: 100%;
  height: auto;
  display: block;
}

.referencias h4 {
  color: #268C79;
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  font-weight: 700;
  margin-bottom: 32px;
  text-align: left;
}

.referencias-grid {
  display: grid;
  /* grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); */
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  /* max-width: 900px; */
  margin: 0 auto;
}

.ref-card {
  border: 2px solid #268C79;
  background-color: #fff;
  padding: 20px 24px;
  border-radius: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.ref-card:hover {
  background-color: #268C79;
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(38, 140, 121, 0.25);
}

.ref-card p {
  color: #268C79;
  text-align: center;
  font-size: 1.125rem;
  line-height: 1.4;
  transition: color 0.3s ease;
}

.ref-card:hover p {
  color: #fff;
}

.ref-card strong {
  font-weight: 700;
}

/* ======================
   FORMULÁRIO DE CONTATO
====================== */
.contato-subtitle {
  color: #6E6E70;
  font-size: clamp(1.125rem, 2.5vw, 1.375rem);
  margin-bottom: 48px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  line-height: 1.6;
}

.contato-subtitle strong {
  font-weight: 700;
  color: #268C79;
}

.contato-content {
  display: flex;
  justify-content: center;
  align-items: center;
}

.wpcf7-form {
  background: linear-gradient(135deg, #268C79 0%, #1F7A68 100%);
  border-radius: 24px;
  padding: 48px 40px;
  max-width: 600px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-shadow: 0 12px 40px rgba(38, 140, 121, 0.25);
  animation: fadeInUp 0.8s ease;
}

.form-input {
  background-color: #fff;
  border: 2px solid transparent;
  padding: 16px 24px;
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  color: #333;
  margin-top: 20px;
  width: 100%;
  transition: all 0.3s ease;
}

.form-input::placeholder {
  color: #A9A9A9;
}

.form-input:focus {
  outline: none;
  border-color: #1F4B40;
  box-shadow: 0 0 0 3px rgba(31, 75, 64, 0.1);
  background-color: #f8f8f8;
}

.form-group {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 0 8px;
}
.wpcf7-not-valid-tip{
  display: none!important;
}
.form-checkbox {
  width: 20px;
  height: 20px;
  min-width: 20px;
  margin-top: 2px;
  cursor: pointer;
  accent-color: #1F4B40;
}
.wpcf7-list-item{
  margin-top: 20px!important;
}
.consent-label,.wpcf7-list-item-label {
  color: #fff;
  font-size: 0.875rem;
  line-height: 1.5;
  cursor: pointer;
  user-select: none;
}

/* ======================
   FOOTER
====================== */
.footer {
  background: linear-gradient(135deg, #268C79 0%, #1F7A68 100%);
  color: #fff;
  padding: 80px 20px;
  text-align: center;
}

.footer h2 {
  font-size: clamp(1.5rem, 3.5vw, 2.75rem);
  font-weight: 700;
  margin-bottom: 24px;
  line-height: 1.3;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.footer p {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 400;
  opacity: 0.95;
}

/* ======================
   ANIMAÇÕES
====================== */
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Classes de animação */
.fade-in {
  animation: fadeIn 1s ease;
}

.fade-in-delay {
  animation: fadeIn 1s ease 0.3s both;
}

.fade-in-delay-2 {
  animation: fadeIn 1s ease 0.6s both;
}

.card-animate {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.card-animate.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ======================
   RESPONSIVIDADE
====================== */

/* Tablets */
@media (max-width: 1024px) {
  .hero {
    height: 60vh;
  }
  
  .diferenciais-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  
  .referencias-grid {
    /* grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); */
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 768px) {
  .header {
    padding: 16px 0;
  }
  
  .logo {
    height: 50px;
  }
  
  .hero {
    height: 500px;
    min-height: 500px;
  }
  
  .hero-overlay {
    background: linear-gradient(
      180deg,
      transparent 0%,
      rgba(0, 0, 0, 0.5) 30%,
      rgba(0, 0, 0, 0.8) 100%
    );
  }
  
  .hero-content {
    padding: 20px 0;
    display: flex;
    align-items: flex-end;
    min-height: 100%;
  }
  
  .hero-text {
    max-width: 100%;
    padding-bottom: 40px;
  }
  
  .section-diferenciais,
  .section-localizacao,
  .section-contato {
    padding: 60px 0;
  }
  
  .section-title {
    margin-bottom: 40px;
  }
  
  .diferenciais-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .diferencial-card {
    min-height: 240px;
    padding: 32px 20px;
  }
  
  .referencias-grid {
    grid-template-columns: 1fr;
  }
  
  .wpcf7-form {
    padding: 32px 24px;
  }
  
  .btn {
    padding: 14px 32px;
    font-size: 1rem;
  }
  
  .footer {
    padding: 60px 20px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }
  
  .hero {
    height: 450px;
    min-height: 450px;
  }
  
  .diferencial-card {
    min-height: 220px;
  }
  
  .card-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 20px;
  }
  
  .diferencial-card p {
    font-size: 1rem;
  }
  
  .wpcf7-form {
    padding: 28px 20px;
    gap: 16px;
  }
}

/* Modo de alto contraste e acessibilidade */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
