/* ===== VARIÁVEIS E RESET - VERDE MILITAR ===== */
:root {
  /* Paleta de verdes militares suaves */
  --cor-primaria: #6B8E5E;
  --cor-primaria-escura: #5A7A4E;
  --cor-primaria-clara: #8FAC82;
  --cor-secundaria: #9BBF8E;
  --cor-terciaria: #D4E6CF;
  --cor-fundo: #F5F8F3;
  --cor-fundo-alt: #E9F0E5;
  --cor-texto: #2C3E2C;
  --cor-texto-claro: #5C735C;
  --cor-branco: #FFFFFF;
  --cor-destaque: #C9B16E;
  --cor-hero: #4D5131;
  
  /* Sombras em tons de verde */
  --sombra-suave: 0 8px 30px rgba(107, 142, 94, 0.08);
  --sombra-media: 0 10px 40px rgba(107, 142, 94, 0.12);
  --sombra-forte: 0 15px 50px rgba(107, 142, 94, 0.15);
  
  /* Transições e bordas */
  --transicao: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
  --borda-arredondada: 20px;
  --borda-arredondada-pequena: 12px;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'Montserrat', sans-serif;
  background-color: var(--cor-fundo);
  color: var(--cor-texto);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ===== CONTAINERS ===== */
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

/* ===== NAVBAR - VERSÃO MELHORADA ===== */
.navbar {
  background-color: rgba(248, 250, 245, 0.98);
  padding: 20px 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px rgba(77, 81, 49, 0.08);
  border-bottom: 1px solid rgba(107, 142, 94, 0.12);
}

.navbar.scrolled {
  padding: 14px 0;
  box-shadow: 0 6px 25px rgba(77, 81, 49, 0.12);
  background-color: rgba(248, 250, 245, 0.98);
  border-bottom-color: rgba(107, 142, 94, 0.15);
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* LOGO - COM ESPECIFICIDADE AUMENTADA */
a.logo .logo-img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  transition: all 0.3s ease;
}

.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}

.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 600;
  color: #4D5131;
  letter-spacing: -0.3px;
  transition: all 0.3s ease;
}

.logo:hover {
  transform: translateY(-2px);
}

.logo:hover .logo-img {
  transform: rotate(10deg) scale(1.05);
}

.logo:hover .logo-text {
  color: #6B8E5E;
}

.logo::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #6B8E5E, #4D5131);
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 1px;
}

.logo:hover::after {
  width: 100%;
}

/* RESTO DO CSS MANTIDO IGUAL... */

/* MENU NAVEGAÇÃO */
.nav-menu {
  display: flex;
  gap: 40px;
  align-items: center;
}

.nav-menu a {
  text-decoration: none;
  color: #2C3E2C;
  font-weight: 500;
  font-size: 15px;
  position: relative;
  transition: all 0.3s ease;
  padding: 10px 0;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 0.2px;
}

.nav-menu a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #6B8E5E, #4D5131);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 1px;
}

.nav-menu a:hover {
  color: #4D5131;
}

.nav-menu a:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-menu a.active {
  color: #4D5131;
  font-weight: 600;
}

.nav-menu a.active::before {
  transform: scaleX(1);
}

/* BOTÃO AGENDAR */
.btn-agendar {
  background: linear-gradient(135deg, #6B8E5E, #5A7A4E);
  color: var(--cor-branco);
  border: none;
  padding: 13px 32px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 12px rgba(107, 142, 94, 0.2);
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  letter-spacing: 0.3px;
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-agendar::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s ease;
  z-index: -1;
}

.btn-agendar:hover {
  background: linear-gradient(135deg, #5A7A4E, #4D5131);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(107, 142, 94, 0.3);
}

.btn-agendar:hover::before {
  left: 100%;
}

.btn-agendar:active {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(107, 142, 94, 0.25);
}

/* MENU MOBILE */
.menu-mobile {
  display: none;
  font-size: 26px;
  cursor: pointer;
  color: #4D5131;
  transition: all 0.3s ease;
  z-index: 1001;
  background: rgba(255, 255, 255, 0.9);
  width: 48px;
  height: 48px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(107, 142, 94, 0.15);
  box-shadow: 0 2px 8px rgba(77, 81, 49, 0.08);
}

.menu-mobile:hover {
  background: rgba(255, 255, 255, 1);
  transform: rotate(90deg);
  border-color: rgba(107, 142, 94, 0.25);
  box-shadow: 0 4px 12px rgba(77, 81, 49, 0.12);
}

/* ===== RESPONSIVIDADE ===== */

/* Tablet (768px - 991px) */
@media (max-width: 991px) {
  .nav-menu {
    gap: 25px;
  }
  
  .nav-menu a {
    font-size: 14px;
  }
  
  .logo-img {
    width: 60px;
    height: 60px;
  }
  
  .logo-text {
    font-size: 21px;
  }
  
  .btn-agendar {
    padding: 11px 24px;
    font-size: 14px;
  }
}

/* Mobile (576px - 767px) */
@media (max-width: 767px) {
  .nav-menu {
    display: none;
  }
  
  .menu-mobile {
    display: flex;
  }
  
  .logo {
    gap: 20px;
  }
  
  .logo-img {
    width: 60px;
    height: 60px;
  }
  
  .logo-text {
    font-size: 19px;
  }
}

/* Mobile pequeno (até 575px) */
@media (max-width: 575px) {
  .navbar {
    padding: 15px 0;
  }
  
  .navbar.scrolled {
    padding: 10px 0;
  }
  
  .logo {
    gap: 10px;
  }
  
  .logo-img {
    width: 60px;
    height: 60px;
  }
  
  .logo-text {
    font-size: 17px;
    letter-spacing: -0.2px;
  }
  
  .menu-mobile {
    width: 44px;
    height: 44px;
    font-size: 22px;
  }
}

/* Para telas muito grandes (desktop grande) */
@media (min-width: 1400px) {
  .logo-img {
    width: 46px;
    height: 46px;
  }
  
  .logo-text {
    font-size: 26px;
  }
}
/* ===== MOBILE MENU MELHORADO ===== */
.mobile-menu {
  position: fixed;
  width: 100%;
  background: rgba(248, 250, 245, 0.98);
  top: 85px;
  left: 0;
  padding: 20px 0 30px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(20px);
  z-index: 999;
  box-shadow: 0 10px 30px rgba(77, 81, 49, 0.15);
  border-top: 1px solid rgba(107, 142, 94, 0.1);
  border-bottom: 1px solid rgba(107, 142, 94, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-20px);
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mobile-menu a {
  display: block;
  padding: 18px 20px;
  text-decoration: none;
  color: #2C3E2C;
  font-size: 17px;
  font-weight: 500;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(107, 142, 94, 0.08);
  font-family: 'Montserrat', sans-serif;
  position: relative;
}

.mobile-menu a:last-child {
  border-bottom: none;
}

.mobile-menu a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, #6B8E5E, #4D5131);
  transform: scaleY(0);
  transition: transform 0.3s ease;
}

.mobile-menu a:hover {
  color: #4D5131;
  background-color: rgba(107, 142, 94, 0.05);
  padding-left: 30px;
}

.mobile-menu a:hover::before {
  transform: scaleY(1);
}

.mobile-menu a.active {
  color: #4D5131;
  font-weight: 600;
  background-color: rgba(107, 142, 94, 0.08);
  padding-left: 30px;
}

.mobile-menu a.active::before {
  transform: scaleY(1);
}

/* Botão mobile menu */
.mobile-menu .btn-agendar {
  margin: 25px auto 10px;
  width: 85%;
  justify-content: center;
  padding: 16px;
  font-size: 16px;
}

/* Indicador de seção ativa */
.nav-indicator {
  position: absolute;
  bottom: -1px;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, #6B8E5E, #4D5131);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 1px;
  z-index: 1;
}

/* Responsividade melhorada */
@media (max-width: 1024px) {
  .nav-menu {
    gap: 30px;
  }
  
  .nav-menu a {
    font-size: 14.5px;
  }
  
  .btn-agendar {
    padding: 12px 28px;
    font-size: 14.5px;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }
  
  .menu-mobile {
    display: flex;
  }
  
  .logo {
    font-size: 24px;
  }
  
  .logo-icon {
    font-size: 22px;
  }
  
  .navbar {
    padding: 18px 0;
  }
  
  .navbar.scrolled {
    padding: 14px 0;
  }
}

@media (max-width: 480px) {
  .logo {
    font-size: 22px;
  }
  
  .logo-icon {
    font-size: 20px;
  }
  
  .menu-mobile {
    width: 44px;
    height: 44px;
    font-size: 24px;
  }
  
  .mobile-menu {
    top: 80px;
  }
}

/* ===== MOBILE MENU ===== */
.mobile-menu {
  position: fixed;
  width: 100%;
  background: rgba(245, 248, 243, 0.98);
  top: 80px;
  left: 0;
  padding: 25px 0;
  text-align: center;
  transition: var(--transicao);
  backdrop-filter: blur(15px);
  z-index: 999;
  box-shadow: 0 15px 30px rgba(107, 142, 94, 0.1);
  border-top: 1px solid rgba(107, 142, 94, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-20px);
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mobile-menu a {
  display: block;
  padding: 18px;
  text-decoration: none;
  color: var(--cor-texto);
  font-size: 18px;
  font-weight: 500;
  transition: var(--transicao);
  border-bottom: 1px solid rgba(107, 142, 94, 0.05);
}

.mobile-menu a:last-child {
  border-bottom: none;
}

.mobile-menu a:hover {
  color: var(--cor-primaria);
  background-color: rgba(107, 142, 94, 0.05);
  padding-left: 30px;
}

/* ===== HERO SECTION - VERSÃO PROFISSIONAL TERAPÊUTICA ===== */
.hero {
  padding-top: 160px;
  padding-bottom: 120px;
  background-color: #4D5131;
  background-image: 
    /* Efeito granular profissional */
    radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.04) 0%, transparent 18%),
    radial-gradient(circle at 90% 80%, rgba(255, 255, 255, 0.03) 0%, transparent 18%),
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 22%),
    /* Textura sutil */
    url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.025' fill-rule='evenodd'/%3E%3C/svg%3E");
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.06) 0%, transparent 70%);
  top: -100px;
  right: -100px;
  opacity: 0.2;
  z-index: 0;
}

.hero::after {
  content: '';
  position: absolute;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.04) 0%, transparent 70%);
  bottom: -80px;
  left: -80px;
  opacity: 0.15;
  z-index: 0;
}

@keyframes gentlePulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.02);
  }
}

.hero-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 70px;
  position: relative;
  z-index: 1;
}

.hero-text {
  flex: 1;
  min-width: 300px;
  animation: fadeInUp 1.2s ease-out;
}

.hero-text h2 {
  font-family: 'Lora', serif;
  font-size: clamp(2.5rem, 5vw, 3.2rem);
  color: var(--cor-branco);
  margin-bottom: 20px;
  line-height: 1.3;
  font-weight: 600;
  letter-spacing: -0.5px;
}

/* Texto com marca-texto em cor terracota/acolhedora */
.highlight-text {
  color: #D4A76A; /* Terracota suave */
  font-weight: 600;
  position: relative;
  display: inline-block;
  padding: 0 4px;
  font-style: italic;
  font-family: 'Playfair Display', serif;
}

.highlight-text::before {
  content: '';
  position: absolute;
  top: 55%;
  left: 0;
  width: 100%;
  height: 65%;
  background-color: rgba(212, 167, 106, 0.2);
  transform: translateY(-50%);
  z-index: -1;
  border-radius: 2px;
  opacity: 0.8;
}

/* Subtítulo com fonte elegante e séria */
.hero-subtitle {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  color: #E8D8B6; /* Bege claro */
  display: block;
  margin: 15px 0 30px;
  font-weight: 400;
  letter-spacing: 0.5px;
  position: relative;
  padding-bottom: 15px;
}

.hero-subtitle::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, #D4A76A, transparent);
}

.hero-text p {
  margin-top: 25px;
  margin-bottom: 45px;
  font-size: clamp(1rem, 2.2vw, 1.1rem);
  color: rgba(255, 255, 255, 0.9);
  max-width: 520px;
  line-height: 1.8;
  font-weight: 400;
}

/* Frases importantes com estilo acolhedor */
.hero-text p strong {
  color: #E8D8B6;
  font-weight: 500;
  position: relative;
  padding: 0 2px;
  font-style: normal;
}

.hero-text p strong::before {
  content: '';
  position: absolute;
  left: -2px;
  right: -2px;
  bottom: 2px;
  height: 3px;
  background-color: rgba(212, 167, 106, 0.3);
  border-radius: 1px;
  z-index: -1;
}

/* Citação elegante */
.quote-text {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.1rem, 2.3vw, 1.2rem);
  color: #D4A76A;
  font-style: italic;
  display: block;
  margin: 20px 0;
  padding-left: 25px;
  border-left: 3px solid rgba(212, 167, 106, 0.4);
  line-height: 1.7;
}

.hero-btns {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 35px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 17px 38px;
  background: linear-gradient(135deg, #6B8E5E, #5A7A4E);
  color: var(--cor-branco);
  border-radius: 8px; /* Bordas menos arredondadas para ser mais sério */
  text-decoration: none;
  font-size: 17px;
  font-weight: 500;
  transition: all 0.3s ease;
  box-shadow: 
    0 4px 12px rgba(107, 142, 94, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 0.3px;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #5A7A4E, #4E5331);
  transform: translateY(-3px);
  box-shadow: 
    0 8px 20px rgba(107, 142, 94, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
  border-color: rgba(212, 167, 106, 0.3);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 17px 38px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--cor-branco);
  border-radius: 8px;
  text-decoration: none;
  font-size: 17px;
  font-weight: 500;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
  gap: 10px;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 0.3px;
  backdrop-filter: blur(5px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(212, 167, 106, 0.4);
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.hero-img {
  flex: 1;
  min-width: 300px;
  position: relative;
  animation: fadeInRight 1.2s ease-out 0.3s both;
  padding: 25px; /* Espaço para as molduras externas */
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Imagem principal */
.hero-img img {
  width: 100%;
  max-width: 500px;
  border-radius: 15px; /* Bordas moderadamente arredondadas */
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.2),
    0 8px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  z-index: 2;
  border: 8px solid #FFFFFF;
  filter: brightness(1.05) contrast(1.05);
  display: block;
}

/* MOLDURA NO CANTO SUPERIOR DIREITO (por fora) */
.hero-img::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #D4A76A, #B89A5E);
  border-radius: 0 15px 0 40px;
  z-index: 3;
  transform: translate(15px, -15px);
  box-shadow: 
    0 10px 25px rgba(212, 167, 106, 0.4),
    inset 0 2px 5px rgba(255, 255, 255, 0.3);
  transition: all 0.4s ease;
  border: 3px solid rgba(255, 255, 255, 0.8);
}

/* Detalhe decorativo na moldura superior */
.hero-img::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 80px;
  height: 80px;
  background: 
    linear-gradient(135deg, transparent 40%, rgba(255, 255, 255, 0.3) 40%, rgba(255, 255, 255, 0.3) 43%, transparent 43%),
    linear-gradient(135deg, #D4A76A, #B89A5E);
  border-radius: 0 15px 0 40px;
  z-index: 3;
  transform: translate(15px, -15px);
  box-shadow: 
    0 10px 25px rgba(212, 167, 106, 0.4),
    inset 0 2px 5px rgba(255, 255, 255, 0.3);
  transition: all 0.4s ease;
  border: 3px solid rgba(255, 255, 255, 0.8);
}

/* MOLDURA NO CANTO INFERIOR ESQUERDO (por fora) */
.hero-img::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #6B8E5E, #5A7A4E);
  border-radius: 40px 0 15px 0;
  z-index: 3;
  transform: translate(-15px, 15px);
  box-shadow: 
    0 10px 25px rgba(107, 142, 94, 0.4),
    inset 0 2px 5px rgba(255, 255, 255, 0.3);
  transition: all 0.4s ease;
  border: 3px solid rgba(255, 255, 255, 0.8);
}

/* Detalhe decorativo na moldura inferior */
.hero-img::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 60px;
  background: 
    linear-gradient(135deg, transparent 40%, rgba(255, 255, 255, 0.3) 40%, rgba(255, 255, 255, 0.3) 43%, transparent 43%),
    linear-gradient(135deg, #6B8E5E, #5A7A4E);
  border-radius: 40px 0 15px 0;
  z-index: 3;
  transform: translate(-15px, 15px);
  box-shadow: 
    0 10px 25px rgba(107, 142, 94, 0.4),
    inset 0 2px 5px rgba(255, 255, 255, 0.3);
  transition: all 0.4s ease;
  border: 3px solid rgba(255, 255, 255, 0.8);
}

/* Efeito de brilho sutil atrás da imagem */
.hero-img .img-glow {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  height: 90%;
  background: radial-gradient(circle at center, rgba(212, 167, 106, 0.15) 0%, transparent 70%);
  z-index: 1;
  opacity: 0.5;
  filter: blur(10px);
  border-radius: 15px;
  pointer-events: none;
}

/* Efeitos de hover */
.hero-img:hover img {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 
    0 30px 60px rgba(0, 0, 0, 0.3),
    0 15px 35px rgba(0, 0, 0, 0.2),
    inset 0 0 20px rgba(255, 255, 255, 0.1);
  border-color: #FFFFFF;
  filter: brightness(1.08) contrast(1.08);
}

.hero-img:hover::before {
  transform: translate(20px, -20px) rotate(5deg);
  box-shadow: 
    0 15px 35px rgba(212, 167, 106, 0.5),
    inset 0 3px 8px rgba(255, 255, 255, 0.4);
}

.hero-img:hover::after {
  transform: translate(-20px, 20px) rotate(-5deg);
  box-shadow: 
    0 15px 35px rgba(107, 142, 94, 0.5),
    inset 0 3px 8px rgba(255, 255, 255, 0.4);
}

/* Elemento decorativo sutil */
.decorative-line {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 167, 106, 0.4), transparent);
  z-index: 1;
}

/* Responsividade */
@media (max-width: 768px) {
  .hero-img {
    padding: 20px;
  }
  
  .hero-img img {
    max-width: 400px;
    margin: 0 auto;
    display: block;
  }
  
  .hero-img::before {
    width: 60px;
    height: 60px;
    transform: translate(10px, -10px);
  }
  
  .hero-img::after {
    width: 50px;
    height: 50px;
    transform: translate(-10px, 10px);
  }
  
  .hero-img:hover::before {
    transform: translate(15px, -15px) rotate(5deg);
  }
  
  .hero-img:hover::after {
    transform: translate(-15px, 15px) rotate(-5deg);
  }
}

@media (max-width: 480px) {
  .hero-img {
    padding: 15px;
  }
  
  .hero-img img {
    max-width: 320px;
    border-width: 6px;
  }
  
  .hero-img::before {
    width: 50px;
    height: 50px;
    transform: translate(8px, -8px);
  }
  
  .hero-img::after {
    width: 40px;
    height: 40px;
    transform: translate(-8px, 8px);
  }
  
  .hero-img:hover::before {
    transform: translate(12px, -12px) rotate(5deg);
  }
  
  .hero-img:hover::after {
    transform: translate(-12px, 12px) rotate(-5deg);
  }
}
/* ADICIONE ESTA LINHA NO HEAD DO HTML PARA A FONTE PLAYFAIR DISPLAY */
/* <link href="https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&display=swap" rel="stylesheet"> */
/* ===== SEÇÕES ===== */
.section-title {
  text-align: center;
  font-size: 42px;
  font-family: 'Lora', serif;
  margin-bottom: 20px;
  color: var(--cor-primaria);
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 25%;
  width: 50%;
  height: 4px;
  background: linear-gradient(90deg, var(--cor-primaria), var(--cor-secundaria));
  border-radius: 2px;
}

.sobre, .contato {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.sobre {
  background-color: var(--cor-branco);
  background-image: 
    radial-gradient(circle at 10% 20%, rgba(155, 191, 142, 0.05) 0%, transparent 20%),
    radial-gradient(circle at 90% 80%, rgba(212, 230, 207, 0.1) 0%, transparent 20%);
}

.contato {
  background-color: var(--cor-fundo-alt);
}

.sobre-text, .contato p {
  text-align: center;
  max-width: 700px;
  margin: 30px auto;
  font-size: 18px;
  color: var(--cor-texto-claro);
  line-height: 1.8;
}

/* ===== CARDS DE SERVIÇOS - VERSÃO LEVE E ELEGANTE ===== */
.servicos {
  background-color: #F9FAF5;
  padding: 100px 0;
  position: relative;
}

.servicos::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 30%, rgba(82, 85, 54, 0.02) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(82, 85, 54, 0.015) 0%, transparent 50%);
  z-index: 0;
}

.section-title {
  text-align: center;
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-family: 'Playfair Display', serif;
  color: #525536;
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
  font-weight: 600;
}

.section-subtitle {
  text-align: center;
  font-size: clamp(1rem, 2vw, 1.1rem);
  color: #6B735C;
  max-width: 700px;
  margin: 0 auto 50px;
  line-height: 1.7;
  font-style: italic;
  font-family: 'Playfair Display', serif;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 60px;
  position: relative;
  z-index: 1;
}

.card {
  background: #FFFFFF;
  padding: 40px 30px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(82, 85, 54, 0.05);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(82, 85, 54, 0.08);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #D4A76A, #8FAC82);
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(82, 85, 54, 0.1);
  border-color: rgba(82, 85, 54, 0.15);
}

.card-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #8FAC82, #6B8E5E);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  color: #FFFFFF;
  font-size: 28px;
  transition: all 0.3s ease;
  position: relative;
  box-shadow: 0 5px 15px rgba(107, 142, 94, 0.15);
}

.card:hover .card-icon {
  transform: scale(1.1);
  background: linear-gradient(135deg, #D4A76A, #8FAC82);
}

.card h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: #525536;
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  position: relative;
  line-height: 1.3;
}

.card p {
  color: #6B735C;
  margin-bottom: 20px;
  line-height: 1.7;
  position: relative;
  flex-grow: 1;
  font-size: 0.95rem;
}

/* Citação em itálico suave */
.card .therapy-quote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: #8FAC82;
  font-size: 1rem;
  margin: 15px 0;
  padding: 12px;
  background: rgba(143, 172, 130, 0.05);
  border-radius: 8px;
  position: relative;
  font-weight: 500;
}

/* Benefícios simples */
.card-benefits {
  text-align: left;
  margin-top: 15px;
  position: relative;
  background: #F9FAF7;
  padding: 15px;
  border-radius: 10px;
  border: 1px solid rgba(82, 85, 54, 0.06);
}

.card-benefits li {
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #6B735C;
  font-size: 0.9rem;
  line-height: 1.5;
}

.card-benefits i {
  color: #8FAC82;
  font-size: 12px;
  margin-top: 3px;
  flex-shrink: 0;
}

.card-link {
  color: #525536;
  text-decoration: none;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  position: relative;
  margin-top: 20px;
  padding: 10px 20px;
  background: rgba(143, 172, 130, 0.1);
  border-radius: 6px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  border: 1px solid rgba(143, 172, 130, 0.2);
}

.card-link:hover {
  gap: 12px;
  color: #525536;
  background: rgba(143, 172, 130, 0.15);
  border-color: rgba(143, 172, 130, 0.3);
  transform: translateY(-2px);
}

/* Elemento decorativo sutil */
.card-decoration {
  position: absolute;
  width: 30px;
  height: 30px;
  background: rgba(143, 172, 130, 0.08);
  border-radius: 50%;
  z-index: 0;
  top: 15px;
  right: 15px;
}

/* Número do card (opcional) */
.card-number {
  position: absolute;
  top: 20px;
  left: 20px;
  font-family: 'Playfair Display', serif;
  font-size: 14px;
  color: rgba(82, 85, 54, 0.3);
  font-weight: 600;
}

/* Responsividade */
@media (max-width: 1200px) {
  .cards {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
  }
}

@media (max-width: 768px) {
  .servicos {
    padding: 80px 0;
  }
  
  .cards {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 40px auto 0;
    gap: 20px;
  }
  
  .card {
    padding: 35px 25px;
  }
  
  .card-icon {
    width: 65px;
    height: 65px;
    font-size: 26px;
  }
}

@media (max-width: 480px) {
  .servicos {
    padding: 60px 0;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .section-subtitle {
    font-size: 1rem;
    margin-bottom: 40px;
  }
  
  .card {
    padding: 30px 20px;
  }
  
  .card h3 {
    font-size: 1.3rem;
  }
  
  .card p {
    font-size: 0.9rem;
  }
}
/* ===== SEÇÃO ATENDIMENTO - DESIGN PROFISSIONAL ===== */
.atendimento-section {
  background: linear-gradient(145deg, #F9FAF5 0%, #F0F2EC 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.atendimento-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 30%, rgba(130, 150, 100, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(180, 160, 110, 0.02) 0%, transparent 50%);
  z-index: 0;
}

.atendimento-section .section-title {
  text-align: center;
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-family: 'Playfair Display', serif;
  color: #525536;
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
  font-weight: 600;
}

.atendimento-section .section-subtitle {
  text-align: center;
  font-size: clamp(1rem, 2vw, 1.1rem);
  color: #6B735C;
  max-width: 700px;
  margin: 0 auto 60px;
  line-height: 1.7;
  font-style: italic;
  font-family: 'Playfair Display', serif;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.atendimento-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  margin-top: 60px;
  position: relative;
  z-index: 1;
}

.atendimento-card {
  background: #FFFFFF;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(82, 85, 54, 0.08);
  transition: all 0.4s ease;
  position: relative;
  border: 1px solid rgba(82, 85, 54, 0.1);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.atendimento-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(82, 85, 54, 0.12);
  border-color: rgba(212, 167, 106, 0.2);
}

.card-header {
  position: relative;
  overflow: hidden;
  height: 200px;
}

.card-header img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.atendimento-card:hover .card-header img {
  transform: scale(1.05);
}

.card-header-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(77, 81, 49, 0.1), rgba(77, 81, 49, 0.3));
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-icon-container {
  width: 70px;
  height: 70px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #525536;
  font-size: 28px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.card-content {
  padding: 30px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.card-content h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #525536;
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  line-height: 1.3;
}

.card-content .local-info {
  color: #8FAC82;
  font-weight: 600;
  margin-bottom: 20px;
  font-size: 1rem;
  line-height: 1.5;
  font-family: 'Montserrat', sans-serif;
}

.card-content p {
  color: #6B735C;
  line-height: 1.7;
  margin-bottom: 25px;
  font-size: 0.95rem;
  flex-grow: 1;
}

.card-content .destaque {
  font-style: italic;
  color: #8FAC82;
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  margin: 15px 0;
  padding: 12px;
  background: rgba(143, 172, 130, 0.05);
  border-radius: 8px;
  border-left: 3px solid #8FAC82;
}

.card-link {
  color: #525536;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s ease;
  padding: 12px 24px;
  background: rgba(143, 172, 130, 0.1);
  border-radius: 8px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  border: 1px solid rgba(143, 172, 130, 0.2);
  margin-top: auto;
  align-self: flex-start;
}

.card-link:hover {
  gap: 15px;
  color: #FFFFFF;
  background: linear-gradient(135deg, #8FAC82, #6B8E5E);
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(143, 172, 130, 0.2);
}

/* Espaço de atendimento */
.espaco-atendimento {
  max-width: 900px;
  margin: 70px auto 0;
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 0 20px;
}

.espaco-atendimento h3 {
  font-size: 1.8rem;
  color: #525536;
  margin-bottom: 25px;
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  position: relative;
  display: inline-block;
}

.espaco-atendimento h3::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #D4A76A, #8FAC82);
  border-radius: 2px;
}

.espaco-atendimento p {
  font-size: 1.1rem;
  color: #6B735C;
  line-height: 1.8;
  margin-bottom: 25px;
}

.espaco-atendimento .quote {
  font-style: italic;
  color: #525536;
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  margin: 30px auto;
  padding: 25px;
  max-width: 700px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 12px;
  border: 1px solid rgba(212, 167, 106, 0.2);
  position: relative;
}

.espaco-atendimento .quote::before {
  content: '"';
  position: absolute;
  top: 10px;
  left: 20px;
  font-size: 32px;
  color: #D4A76A;
  font-family: serif;
  opacity: 0.5;
}

.espaco-atendimento .quote::after {
  content: '"';
  position: absolute;
  bottom: 10px;
  right: 20px;
  font-size: 32px;
  color: #D4A76A;
  font-family: serif;
  opacity: 0.5;
}

/* Botão centralizado */
.atendimento-btn {
  text-align: center;
  margin-top: 50px;
  position: relative;
  z-index: 1;
}

.atendimento-btn .btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 40px;
  background: linear-gradient(135deg, #8FAC82, #6B8E5E);
  color: #FFFFFF;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(143, 172, 130, 0.2);
  gap: 12px;
  border: none;
  font-family: 'Montserrat', sans-serif;
}

.atendimento-btn .btn-primary:hover {
  background: linear-gradient(135deg, #6B8E5E, #525536);
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(143, 172, 130, 0.3);
}

/* Elementos decorativos */
.atendimento-decoration {
  position: absolute;
  width: 40px;
  height: 40px;
  background: rgba(143, 172, 130, 0.08);
  border-radius: 50%;
  z-index: 0;
}

.atendimento-decoration:nth-child(1) { top: 15%; left: 10%; }
.atendimento-decoration:nth-child(2) { top: 25%; right: 15%; }
.atendimento-decoration:nth-child(3) { bottom: 20%; left: 20%; }

/* Responsividade */
@media (max-width: 1200px) {
  .atendimento-cards {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .atendimento-section {
    padding: 80px 0;
  }
  
  .atendimento-cards {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 50px auto 0;
    gap: 30px;
  }
  
  .card-header {
    height: 180px;
  }
  
  .card-content {
    padding: 25px;
  }
  
  .card-content h3 {
    font-size: 1.4rem;
  }
}

@media (max-width: 480px) {
  .atendimento-section {
    padding: 60px 0;
  }
  
  .atendimento-section .section-title {
    font-size: 1.8rem;
  }
  
  .atendimento-section .section-subtitle {
    font-size: 1rem;
    margin-bottom: 40px;
  }
  
  .card-header {
    height: 160px;
  }
  
  .card-content {
    padding: 20px;
  }
  
  .card-content h3 {
    font-size: 1.3rem;
  }
  
  .espaco-atendimento h3 {
    font-size: 1.5rem;
  }
  
  .espaco-atendimento p {
    font-size: 1rem;
  }
  
  .espaco-atendimento .quote {
    font-size: 1.1rem;
    padding: 20px;
  }
}

/* ===== FOOTER ===== */
.footer {
  text-align: center;
  padding: 50px 25px;
  background: linear-gradient(135deg, var(--cor-primaria) 0%, var(--cor-primaria-escura) 100%);
  margin-top: 40px;
  color: var(--cor-branco);
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
  opacity: 0.1;
}

.footer-content {
  position: relative;
  z-index: 1;
}

.footer-logo {
  font-family: 'Lora', serif;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--cor-branco);
}

.footer-text {
  max-width: 600px;
  margin: 0 auto 30px;
  font-size: 16px;
  opacity: 0.9;
}

.footer-contact {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
}

.contact-item i {
  font-size: 18px;
  color: var(--cor-terciaria);
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
}

.social-icon {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cor-branco);
  font-size: 18px;
  transition: var(--transicao);
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-icon:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-5px);
  border-color: var(--cor-terciaria);
}

.copyright {
  font-size: 14px;
  opacity: 0.7;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* ===== ANIMAÇÕES ===== */
@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

.floating {
  animation: float 5s ease-in-out infinite;
}

/* Elementos flutuantes decorativos */
.floating-leaf {
  position: absolute;
  font-size: 24px;
  color: var(--cor-primaria-clara);
  opacity: 0.3;
  z-index: 0;
  animation: float 6s ease-in-out infinite;
}

/* ===== ANIMAÇÕES DE ENTRADA ===== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.stagger-item {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.stagger-item.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVIDADE ===== */
@media (max-width: 1200px) {
  .hero-text h2 {
    font-size: 42px;
  }
  
  .section-title {
    font-size: 38px;
  }
}

@media (max-width: 992px) {
  .hero-text h2 {
    font-size: 38px;
  }
  
  .section-title {
    font-size: 34px;
  }
  
  .contact-form {
    padding: 40px 30px;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }
  
  .menu-mobile {
    display: block;
  }
  
  .hero {
    padding-top: 140px;
    padding-bottom: 80px;
  }
  
  .hero-content {
    flex-direction: column-reverse;
    text-align: center;
    gap: 40px;
  }
  
  .hero-text {
    text-align: center;
  }
  
  .hero-text p {
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-btns {
    justify-content: center;
  }
  
  .hero-text h2 {
    font-size: 32px;
  }
  
  .section-title {
    font-size: 30px;
  }
  
  .sobre, .contato, .servicos {
    padding: 80px 0;
  }
  
  .btn-primary, .btn-secondary {
    padding: 14px 30px;
    font-size: 16px;
  }
  
  .footer {
    padding: 40px 20px;
  }
  
  .footer-contact {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  
  .contact-form {
    padding: 30px 20px;
  }
}

@media (max-width: 576px) {
  .hero-text h2 {
    font-size: 28px;
  }
  
  .section-title {
    font-size: 26px;
  }
  
  .card {
    padding: 30px 20px;
  }
  
  .hero-img img {
    max-width: 100%;
  }
  
  .btn-primary, .btn-secondary {
    width: 100%;
    justify-content: center;
  }
  
  .hero-btns {
    flex-direction: column;
    width: 100%;
  }
}

@media (max-width: 400px) {
  .hero-text h2 {
    font-size: 24px;
  }
  
  .section-title {
    font-size: 22px;
  }
  
  .container {
    width: 95%;
    padding: 0 15px;
  }
  
  .cards {
    grid-template-columns: 1fr;
  }
}
/* ===== SEÇÃO DIFERENCIAIS - VERSÃO ESCURA COM GRANULADO ===== */
.diferenciais-section {
  background-color: #4A4F30;
  background-image: 
    /* Efeito granular sutil */
    radial-gradient(circle at 15% 25%, rgba(255, 255, 255, 0.04) 0%, transparent 18%),
    radial-gradient(circle at 85% 75%, rgba(255, 255, 255, 0.03) 0%, transparent 18%),
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 22%),
    /* Textura de papel sutil */
    url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.02' fill-rule='evenodd'/%3E%3C/svg%3E");
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.diferenciais-section::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.06) 0%, transparent 70%);
  top: -100px;
  right: -100px;
  opacity: 0.2;
  z-index: 0;
  animation: floatGlow 15s ease-in-out infinite alternate;
}

.diferenciais-section::after {
  content: '';
  position: absolute;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.04) 0%, transparent 70%);
  bottom: -80px;
  left: -80px;
  opacity: 0.15;
  z-index: 0;
  animation: floatGlow 20s ease-in-out infinite alternate-reverse;
}

@keyframes floatGlow {
  0% {
    transform: translate(0, 0) scale(1);
    opacity: 0.15;
  }
  50% {
    transform: translate(30px, 40px) scale(1.1);
    opacity: 0.25;
  }
  100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.15;
  }
}

.diferenciais-section .section-title {
  text-align: center;
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-family: 'Playfair Display', serif;
  color: #FFFFFF;
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
  font-weight: 600;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.diferenciais-section .section-subtitle {
  text-align: center;
  font-size: clamp(1rem, 2vw, 1.1rem);
  color: rgba(255, 255, 255, 0.85);
  max-width: 700px;
  margin: 0 auto 60px;
  line-height: 1.7;
  font-style: italic;
  font-family: 'Playfair Display', serif;
  padding: 0 20px;
  position: relative;
  z-index: 1;
  font-weight: 400;
}

.diferenciais-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 60px;
  position: relative;
  z-index: 1;
}

.diferencial-card {
  background: rgba(255, 255, 255, 0.95);
  padding: 40px 30px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 
    0 8px 25px rgba(0, 0, 0, 0.1),
    0 4px 15px rgba(0, 0, 0, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  backdrop-filter: blur(10px);
}

.diferencial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #D4A76A, #8FAC82);
  opacity: 0.9;
  z-index: 2;
}

.diferencial-card::after {
  content: '';
  position: absolute;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, rgba(212, 167, 106, 0.1), rgba(143, 172, 130, 0.05));
  border-radius: 50%;
  bottom: -40px;
  right: -40px;
  z-index: 0;
  transition: all 0.5s ease;
}

.diferencial-card:hover {
  transform: translateY(-10px);
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.15),
    0 10px 25px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  border-color: rgba(212, 167, 106, 0.3);
}

.diferencial-card:hover::after {
  transform: scale(1.8);
  opacity: 0.1;
}

.diferencial-icon {
  width: 75px;
  height: 75px;
  background: linear-gradient(135deg, #8FAC82, #6B8E5E);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  color: #FFFFFF;
  font-size: 30px;
  transition: all 0.4s ease;
  position: relative;
  z-index: 1;
  box-shadow: 
    0 8px 20px rgba(107, 142, 94, 0.2),
    inset 0 2px 4px rgba(255, 255, 255, 0.3);
}

.diferencial-card:hover .diferencial-icon {
  transform: translateY(-5px) scale(1.1);
  background: linear-gradient(135deg, #D4A76A, #8FAC82);
  box-shadow: 
    0 12px 25px rgba(212, 167, 106, 0.3),
    inset 0 2px 4px rgba(255, 255, 255, 0.4);
}

.diferencial-card h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: #4A4F30;
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  position: relative;
  z-index: 1;
  line-height: 1.3;
}

.diferencial-card p {
  color: #5C6454;
  line-height: 1.7;
  position: relative;
  z-index: 1;
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* Texto da seção diferenciais */
.diferenciais-text {
  max-width: 800px;
  margin: 70px auto 0;
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 0 20px;
}

.diferenciais-text p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
  margin-bottom: 25px;
}

.diferenciais-text p:first-child {
  font-style: italic;
  color: #FFFFFF;
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  position: relative;
  padding: 25px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  border-left: 3px solid #D4A76A;
  backdrop-filter: blur(5px);
}

.diferenciais-text p:first-child::before {
  content: '"';
  position: absolute;
  top: 15px;
  left: 20px;
  font-size: 28px;
  color: #D4A76A;
  font-family: serif;
  opacity: 0.8;
}

.diferenciais-text p:first-child::after {
  content: '"';
  position: absolute;
  bottom: 15px;
  right: 20px;
  font-size: 28px;
  color: #D4A76A;
  font-family: serif;
  opacity: 0.8;
}

/* Botão centralizado */
.diferenciais-btn {
  text-align: center;
  margin-top: 50px;
  position: relative;
  z-index: 1;
}

.diferenciais-btn .btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 40px;
  background: linear-gradient(135deg, #D4A76A, #B89A5E);
  color: #FFFFFF;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 
    0 8px 20px rgba(212, 167, 106, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  gap: 12px;
  border: none;
  font-family: 'Montserrat', sans-serif;
  position: relative;
  overflow: hidden;
}

.diferenciais-btn .btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.7s ease;
}

.diferenciais-btn .btn-primary:hover {
  background: linear-gradient(135deg, #B89A5E, #9C7F42);
  transform: translateY(-3px);
  box-shadow: 
    0 12px 25px rgba(212, 167, 106, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.diferenciais-btn .btn-primary:hover::before {
  left: 100%;
}

/* Elemento decorativo granulado */
.granular-dots {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.15;
  background-image: 
    radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.3) 1px, transparent 1px),
    radial-gradient(circle at 30% 40%, rgba(255, 255, 255, 0.2) 1px, transparent 1px),
    radial-gradient(circle at 50% 60%, rgba(255, 255, 255, 0.25) 1px, transparent 1px),
    radial-gradient(circle at 70% 80%, rgba(255, 255, 255, 0.2) 1px, transparent 1px),
    radial-gradient(circle at 90% 10%, rgba(255, 255, 255, 0.3) 1px, transparent 1px);
  background-size: 50px 50px, 60px 60px, 70px 70px, 80px 80px, 90px 90px;
  animation: moveGranular 30s linear infinite;
}

@keyframes moveGranular {
  0% {
    background-position: 0 0, 0 0, 0 0, 0 0, 0 0;
  }
  100% {
    background-position: 50px 50px, 60px 60px, 70px 70px, 80px 80px, 90px 90px;
  }
}

/* Responsividade */
@media (max-width: 1024px) {
  .diferenciais-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
}

@media (max-width: 768px) {
  .diferenciais-section {
    padding: 80px 0;
  }
  
  .diferenciais-cards {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 50px auto 0;
    gap: 20px;
  }
  
  .diferencial-card {
    padding: 35px 25px;
  }
  
  .diferencial-icon {
    width: 70px;
    height: 70px;
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  .diferenciais-section {
    padding: 60px 0;
  }
  
  .diferenciais-section .section-title {
    font-size: 1.8rem;
  }
  
  .diferenciais-section .section-subtitle {
    font-size: 1rem;
    margin-bottom: 40px;
  }
  
  .diferencial-card {
    padding: 30px 20px;
  }
  
  .diferencial-card h3 {
    font-size: 1.2rem;
  }
  
  .diferenciais-text p {
    font-size: 1rem;
  }
  
  .diferenciais-text p:first-child {
    font-size: 1.1rem;
    padding: 20px;
  }
}
/* ===== SEÇÃO SOBRE MIM - VERSÃO ELEGANTE ===== */
.sobre-section {
  background-color: #4A4F30;
  background-image: 
    /* Efeito granular refinado */
    radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.04) 0%, transparent 20%),
    radial-gradient(circle at 90% 80%, rgba(255, 255, 255, 0.03) 0%, transparent 20%),
    radial-gradient(circle at 40% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 25%),
    radial-gradient(circle at 60% 30%, rgba(255, 255, 255, 0.02) 0%, transparent 18%),
    /* Textura sutil */
    url("data:image/svg+xml,%3Csvg width='120' height='120' viewBox='0 0 120 120' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.015' fill-rule='evenodd'/%3E%3C/svg%3E");
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.sobre-section::before {
  content: '';
  position: absolute;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
  top: -80px;
  right: -80px;
  opacity: 0.2;
  z-index: 0;
  animation: subtleFloat 20s ease-in-out infinite;
}

.sobre-section::after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.03) 0%, transparent 70%);
  bottom: -60px;
  left: -60px;
  opacity: 0.15;
  z-index: 0;
  animation: subtleFloat 25s ease-in-out infinite reverse;
}

@keyframes subtleFloat {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(20px, 30px) scale(1.1);
  }
}

.sobre-section .section-title {
  text-align: center;
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-family: 'Playfair Display', serif;
  color: #FFFFFF;
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
  font-weight: 600;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.sobre-section .section-subtitle {
  text-align: center;
  font-size: clamp(1rem, 2vw, 1.1rem);
  color: rgba(255, 255, 255, 0.85);
  max-width: 700px;
  margin: 0 auto 60px;
  line-height: 1.7;
  font-style: italic;
  font-family: 'Playfair Display', serif;
  padding: 0 20px;
  position: relative;
  z-index: 1;
  font-weight: 400;
}

.sobre-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 60px;
  position: relative;
  z-index: 1;
}

.sobre-imagem {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  border: 8px solid rgba(255, 255, 255, 0.1);
  transition: all 0.5s ease;
  height: 500px;
}

.sobre-imagem img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.sobre-imagem:hover {
  border-color: rgba(212, 167, 106, 0.3);
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.sobre-imagem:hover img {
  transform: scale(1.05);
}

.sobre-imagem::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(77, 81, 49, 0.1), rgba(212, 167, 106, 0.05));
  z-index: 1;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.sobre-imagem:hover::before {
  opacity: 1;
}

.sobre-imagem::after {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #D4A76A, #B89A5E);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  z-index: 2;
  box-shadow: 0 8px 20px rgba(212, 167, 106, 0.3);
  animation: gentlePulse 3s ease-in-out infinite;
}

@keyframes gentlePulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.9;
  }
  50% {
    transform: scale(1.1);
    opacity: 1;
  }
}

.sobre-texto {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  line-height: 1.8;
  position: relative;
  z-index: 1;
}

.sobre-intro {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: #FFFFFF;
  margin-bottom: 30px;
  font-weight: 600;
  line-height: 1.4;
}

.sobre-destaque {
  color: #D4A76A;
  font-style: italic;
  font-weight: 500;
}

.sobre-trajetoria {
  font-size: 1.1rem;
  margin-bottom: 25px;
  position: relative;
  padding-left: 25px;
  border-left: 3px solid rgba(212, 167, 106, 0.3);
}

/* Citações elegantes */
.sobre-citacao {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.3rem;
  color: #E8D8B6;
  margin: 30px 0;
  padding: 25px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  border-left: 4px solid #D4A76A;
  position: relative;
  backdrop-filter: blur(5px);
}

.sobre-citacao::before {
  content: '"';
  position: absolute;
  top: 15px;
  left: 20px;
  font-size: 36px;
  color: #D4A76A;
  font-family: serif;
  opacity: 0.5;
}

.sobre-citacao::after {
  content: '"';
  position: absolute;
  bottom: 15px;
  right: 20px;
  font-size: 36px;
  color: #D4A76A;
  font-family: serif;
  opacity: 0.5;
}

/* Lista de qualidades */
.sobre-qualidades {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 40px 0;
}

.qualidade-item {
  background: rgba(255, 255, 255, 0.05);
  padding: 20px;
  border-radius: 10px;
  border: 1px solid rgba(212, 167, 106, 0.1);
  transition: all 0.3s ease;
}

.qualidade-item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(212, 167, 106, 0.3);
  transform: translateY(-5px);
}

.qualidade-item i {
  color: #D4A76A;
  font-size: 20px;
  margin-bottom: 10px;
  display: block;
}

.qualidade-item span {
  color: #FFFFFF;
  font-weight: 600;
  font-size: 0.9rem;
}

/* Botão centralizado */
.sobre-btn {
  text-align: center;
  margin-top: 60px;
  position: relative;
  z-index: 1;
}

.sobre-btn .btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 40px;
  background: linear-gradient(135deg, #D4A76A, #B89A5E);
  color: #FFFFFF;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 
    0 8px 20px rgba(212, 167, 106, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  gap: 12px;
  border: none;
  font-family: 'Montserrat', sans-serif;
  position: relative;
  overflow: hidden;
}

.sobre-btn .btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.7s ease;
}

.sobre-btn .btn-primary:hover {
  background: linear-gradient(135deg, #B89A5E, #9C7F42);
  transform: translateY(-3px);
  box-shadow: 
    0 12px 25px rgba(212, 167, 106, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.sobre-btn .btn-primary:hover::before {
  left: 100%;
}

/* Elemento decorativo granulado */
.sobre-granulado {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.1;
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.4) 1px, transparent 1px),
    radial-gradient(circle at 40% 50%, rgba(255, 255, 255, 0.3) 1px, transparent 1px),
    radial-gradient(circle at 60% 70%, rgba(255, 255, 255, 0.2) 1px, transparent 1px);
  background-size: 80px 80px, 100px 100px, 120px 120px;
  animation: moveGranular 40s linear infinite;
}

@keyframes moveGranular {
  0% {
    background-position: 0 0, 0 0, 0 0;
  }
  100% {
    background-position: 80px 80px, 100px 100px, 120px 120px;
  }
}

/* Responsividade */
@media (max-width: 1024px) {
  .sobre-content {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .sobre-imagem {
    height: 400px;
    max-width: 500px;
    margin: 0 auto;
  }
  
  .sobre-qualidades {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .sobre-section {
    padding: 80px 0;
  }
  
  .sobre-imagem {
    height: 350px;
  }
  
  .sobre-intro {
    font-size: 1.5rem;
  }
  
  .sobre-citacao {
    font-size: 1.1rem;
    padding: 20px;
  }
  
  .sobre-qualidades {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .sobre-section {
    padding: 60px 0;
  }
  
  .sobre-section .section-title {
    font-size: 1.8rem;
  }
  
  .sobre-section .section-subtitle {
    font-size: 1rem;
    margin-bottom: 40px;
  }
  
  .sobre-imagem {
    height: 300px;
  }
  
  .sobre-intro {
    font-size: 1.3rem;
  }
  
  .sobre-texto {
    font-size: 1rem;
  }
  
  .sobre-citacao {
    font-size: 1rem;
    padding: 15px;
  }
}
/* ===== SEÇÃO PERGUNTAS FREQUENTES - FAQ INTERATIVO ===== */
.faq-section {
  background: linear-gradient(145deg, #F9FAF5 0%, #F0F2EC 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.faq-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 30%, rgba(130, 150, 100, 0.02) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(180, 160, 110, 0.01) 0%, transparent 50%);
  z-index: 0;
}

.faq-section .section-title {
  text-align: center;
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-family: 'Playfair Display', serif;
  color: #525536;
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
  font-weight: 600;
}

.faq-section .section-subtitle {
  text-align: center;
  font-size: clamp(1rem, 2vw, 1.1rem);
  color: #6B735C;
  max-width: 700px;
  margin: 0 auto 60px;
  line-height: 1.7;
  font-style: italic;
  font-family: 'Playfair Display', serif;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.faq-item {
  background: #FFFFFF;
  border-radius: 12px;
  margin-bottom: 20px;
  box-shadow: 0 5px 20px rgba(82, 85, 54, 0.05);
  border: 1px solid rgba(82, 85, 54, 0.08);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item.active {
  box-shadow: 0 10px 30px rgba(82, 85, 54, 0.1);
  border-color: rgba(212, 167, 106, 0.2);
}

.faq-question {
  padding: 25px 30px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #FFFFFF;
  transition: all 0.3s ease;
  position: relative;
}

.faq-question:hover {
  background: rgba(143, 172, 130, 0.03);
}

.faq-question h3 {
  font-size: 1.2rem;
  color: #525536;
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  margin: 0;
  padding-right: 40px;
  line-height: 1.4;
}

.faq-icon {
  width: 40px;
  height: 40px;
  background: rgba(143, 172, 130, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8FAC82;
  font-size: 14px;
  transition: all 0.3s ease;
  flex-shrink: 0;
  position: absolute;
  right: 25px;
}

.faq-item.active .faq-icon {
  background: linear-gradient(135deg, #8FAC82, #6B8E5E);
  color: #FFFFFF;
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  background: #FFFFFF;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-content {
  padding: 0 30px 30px;
  color: #6B735C;
  line-height: 1.7;
  font-size: 1rem;
}

.faq-content p {
  margin-bottom: 15px;
}

.faq-content p:last-child {
  margin-bottom: 0;
}

/* Destaque em respostas */
.faq-destaque {
  font-style: italic;
  color: #8FAC82;
  font-family: 'Playfair Display', serif;
  padding: 15px;
  background: rgba(143, 172, 130, 0.05);
  border-radius: 8px;
  margin: 15px 0;
  border-left: 3px solid #8FAC82;
  position: relative;
}

.faq-destaque::before {
  content: '"';
  position: absolute;
  top: 5px;
  left: 10px;
  font-size: 20px;
  color: #8FAC82;
  font-family: serif;
}

.faq-destaque::after {
  content: '"';
  position: absolute;
  bottom: 5px;
  right: 10px;
  font-size: 20px;
  color: #8FAC82;
  font-family: serif;
}

/* Lista dentro das respostas */
.faq-lista {
  margin: 15px 0;
  padding-left: 20px;
}

.faq-lista li {
  margin-bottom: 10px;
  color: #6B735C;
  position: relative;
  padding-left: 25px;
}

.faq-lista li::before {
  content: '•';
  color: #8FAC82;
  font-size: 20px;
  position: absolute;
  left: 0;
  top: -2px;
}

/* Número da pergunta */
.faq-number {
  position: absolute;
  left: 30px;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  background: rgba(143, 172, 130, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8FAC82;
  font-weight: 600;
  font-size: 14px;
  font-family: 'Montserrat', sans-serif;
}

.faq-question {
  padding-left: 70px;
}

/* Elementos decorativos */
.faq-decoration {
  position: absolute;
  width: 30px;
  height: 30px;
  background: rgba(143, 172, 130, 0.08);
  border-radius: 50%;
  z-index: 0;
}

.faq-decoration:nth-child(1) { top: 15%; left: 10%; }
.faq-decoration:nth-child(2) { top: 25%; right: 15%; }
.faq-decoration:nth-child(3) { bottom: 20%; left: 20%; }

/* Botão FAQ */
.faq-btn {
  text-align: center;
  margin-top: 60px;
  position: relative;
  z-index: 1;
}

.faq-btn .btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 40px;
  background: linear-gradient(135deg, #8FAC82, #6B8E5E);
  color: #FFFFFF;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(143, 172, 130, 0.2);
  gap: 12px;
  border: none;
  font-family: 'Montserrat', sans-serif;
}

.faq-btn .btn-primary:hover {
  background: linear-gradient(135deg, #6B8E5E, #525536);
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(143, 172, 130, 0.3);
}

/* Mensagem no final */
.faq-message {
  text-align: center;
  margin-top: 40px;
  font-style: italic;
  color: #6B735C;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  padding: 20px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 10px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  border: 1px solid rgba(212, 167, 106, 0.1);
}

/* Responsividade */
@media (max-width: 768px) {
  .faq-section {
    padding: 80px 0;
  }
  
  .faq-question {
    padding: 20px 60px 20px 70px;
  }
  
  .faq-question h3 {
    font-size: 1.1rem;
  }
  
  .faq-content {
    padding: 0 20px 20px;
  }
  
  .faq-icon {
    right: 20px;
  }
  
  .faq-number {
    left: 20px;
  }
}

@media (max-width: 480px) {
  .faq-section {
    padding: 60px 0;
  }
  
  .faq-section .section-title {
    font-size: 1.8rem;
  }
  
  .faq-section .section-subtitle {
    font-size: 1rem;
    margin-bottom: 40px;
  }
  
  .faq-question {
    padding: 15px 55px 15px 60px;
  }
  
  .faq-question h3 {
    font-size: 1rem;
  }
  
  .faq-number {
    width: 25px;
    height: 25px;
    font-size: 12px;
    left: 15px;
  }
  
  .faq-content {
    font-size: 0.95rem;
  }
  
  .faq-message {
    font-size: 1rem;
    padding: 15px;
  }
}
/* ===== SEÇÃO CONTATO - FORMULÁRIO PARA WHATSAPP ===== */
.contato-section {
  background-color: #4A4F30;
  background-image: 
    /* Efeito granular refinado */
    radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.04) 0%, transparent 20%),
    radial-gradient(circle at 90% 80%, rgba(255, 255, 255, 0.03) 0%, transparent 20%),
    radial-gradient(circle at 40% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 25%),
    radial-gradient(circle at 60% 30%, rgba(255, 255, 255, 0.02) 0%, transparent 18%),
    /* Textura sutil */
    url("data:image/svg+xml,%3Csvg width='120' height='120' viewBox='0 0 120 120' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.015' fill-rule='evenodd'/%3E%3C/svg%3E");
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.contato-section::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.06) 0%, transparent 70%);
  top: -100px;
  left: -100px;
  opacity: 0.15;
  z-index: 0;
  animation: floatContact 25s ease-in-out infinite alternate;
}

.contato-section::after {
  content: '';
  position: absolute;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.04) 0%, transparent 70%);
  bottom: -80px;
  right: -80px;
  opacity: 0.1;
  z-index: 0;
  animation: floatContact 30s ease-in-out infinite alternate-reverse;
}

@keyframes floatContact {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(30px, 40px) scale(1.1);
  }
}

.contato-section .section-title {
  text-align: center;
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-family: 'Playfair Display', serif;
  color: #FFFFFF;
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
  font-weight: 600;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.contato-section .section-subtitle {
  text-align: center;
  font-size: clamp(1rem, 2vw, 1.1rem);
  color: rgba(255, 255, 255, 0.85);
  max-width: 700px;
  margin: 0 auto 60px;
  line-height: 1.7;
  font-style: italic;
  font-family: 'Playfair Display', serif;
  padding: 0 20px;
  position: relative;
  z-index: 1;
  font-weight: 400;
}

/* WhatsApp Botão Principal */
.whatsapp-main {
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}

.whatsapp-btn-main {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 45px;
  background: linear-gradient(135deg, #25D366, #1EBE5D);
  color: #FFFFFF;
  border-radius: 10px;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 
    0 10px 25px rgba(37, 211, 102, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  gap: 15px;
  border: none;
  font-family: 'Montserrat', sans-serif;
  position: relative;
  overflow: hidden;
}

.whatsapp-btn-main::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.7s ease;
}

.whatsapp-btn-main:hover {
  background: linear-gradient(135deg, #1EBE5D, #169C4A);
  transform: translateY(-5px) scale(1.05);
  box-shadow: 
    0 15px 35px rgba(37, 211, 102, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.whatsapp-btn-main:hover::before {
  left: 100%;
}

.whatsapp-btn-main i {
  font-size: 1.3rem;
}

/* Formulário de Contato */
.contato-form-container {
  max-width: 700px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.95);
  padding: 50px;
  border-radius: 20px;
  box-shadow: 
    0 20px 50px rgba(0, 0, 0, 0.15),
    0 10px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  z-index: 1;
  backdrop-filter: blur(10px);
}

.contato-form-container::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, #D4A76A, #8FAC82, #D4A76A);
  border-radius: 22px;
  z-index: -1;
  opacity: 0.3;
}

.form-header {
  text-align: center;
  margin-bottom: 40px;
}

.form-header h3 {
  font-size: 1.5rem;
  color: #4A4F30;
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  margin-bottom: 10px;
}

.form-header p {
  color: #6B735C;
  font-size: 0.95rem;
  line-height: 1.6;
}

.form-group {
  margin-bottom: 25px;
  position: relative;
}

.form-group label {
  display: block;
  margin-bottom: 10px;
  font-weight: 600;
  color: #4A4F30;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
}

.form-group label::after {
  content: ' *';
  color: #D4A76A;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 16px 20px;
  border: 2px solid rgba(77, 81, 49, 0.1);
  border-radius: 10px;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: #FFFFFF;
  color: #4A4F30;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #8FAC82;
  box-shadow: 
    0 0 0 3px rgba(143, 172, 130, 0.2),
    0 5px 15px rgba(0, 0, 0, 0.05);
  background: #FFFFFF;
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
  line-height: 1.6;
}

.form-group .form-icon {
  position: absolute;
  right: 20px;
  top: 45px;
  color: #8FAC82;
  font-size: 18px;
  pointer-events: none;
}

/* Botão de Enviar */
.form-submit {
  text-align: center;
  margin-top: 40px;
}

.btn-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 18px;
  background: linear-gradient(135deg, #8FAC82, #6B8E5E);
  color: #FFFFFF;
  border-radius: 10px;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 
    0 8px 20px rgba(143, 172, 130, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  gap: 15px;
  border: none;
  font-family: 'Montserrat', sans-serif;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn-submit::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.7s ease;
}

.btn-submit:hover {
  background: linear-gradient(135deg, #6B8E5E, #4A4F30);
  transform: translateY(-3px);
  box-shadow: 
    0 12px 25px rgba(143, 172, 130, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.btn-submit:hover::before {
  left: 100%;
}

.btn-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none !important;
}

/* Informações de contato */
.contato-info {
  text-align: center;
  margin-top: 50px;
  position: relative;
  z-index: 1;
  padding: 30px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.contato-info h4 {
  color: #FFFFFF;
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  margin-bottom: 20px;
  font-weight: 600;
}

.contato-items {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.contato-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
}

.contato-item i {
  color: #D4A76A;
  font-size: 1.2rem;
}

/* Mensagem de confirmação */
.confirmation-message {
  text-align: center;
  margin-top: 30px;
  padding: 20px;
  background: rgba(212, 167, 106, 0.1);
  border-radius: 10px;
  border: 1px solid rgba(212, 167, 106, 0.2);
  color: #E8D8B6;
  font-size: 0.9rem;
  line-height: 1.6;
}

/* Elementos decorativos */
.contato-decoration {
  position: absolute;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  z-index: 0;
  animation: floatElement 20s ease-in-out infinite;
}

.contato-decoration:nth-child(1) { top: 15%; left: 10%; animation-delay: 0s; }
.contato-decoration:nth-child(2) { top: 25%; right: 15%; animation-delay: 5s; }
.contato-decoration:nth-child(3) { bottom: 30%; left: 20%; animation-delay: 10s; }

@keyframes floatElement {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }
  25% {
    transform: translate(20px, 30px) rotate(90deg);
  }
  50% {
    transform: translate(-10px, 40px) rotate(180deg);
  }
  75% {
    transform: translate(30px, -20px) rotate(270deg);
  }
}

/* Responsividade */
@media (max-width: 768px) {
  .contato-section {
    padding: 80px 0;
  }
  
  .contato-form-container {
    padding: 30px;
    margin: 0 20px;
  }
  
  .whatsapp-btn-main {
    padding: 16px 35px;
    font-size: 1rem;
  }
  
  .contato-items {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .contato-section {
    padding: 60px 0;
  }
  
  .contato-section .section-title {
    font-size: 1.8rem;
  }
  
  .contato-section .section-subtitle {
    font-size: 1rem;
    margin-bottom: 40px;
  }
  
  .contato-form-container {
    padding: 25px 20px;
  }
  
  .form-header h3 {
    font-size: 1.3rem;
  }
  
  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 14px 16px;
    font-size: 0.95rem;
  }
  
  .btn-submit {
    padding: 16px;
    font-size: 1rem;
  }
}
/* ===== FOOTER ELEGANTE - VERSÃO COORDENADA ===== */
.footer {
  background-color: #4A4F30;
  background-image: 
    /* Efeito granular refinado */
    radial-gradient(circle at 10% 10%, rgba(255, 255, 255, 0.04) 0%, transparent 15%),
    radial-gradient(circle at 90% 90%, rgba(255, 255, 255, 0.03) 0%, transparent 15%),
    radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 20%),
    radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.02) 0%, transparent 15%),
    /* Textura sutil */
    url("data:image/svg+xml,%3Csvg width='120' height='120' viewBox='0 0 120 120' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.015' fill-rule='evenodd'/%3E%3C/svg%3E");
  padding: 80px 0 40px;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer::before {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.04) 0%, transparent 70%);
  top: -100px;
  right: -50px;
  opacity: 0.2;
  z-index: 0;
  animation: subtleFloat 25s ease-in-out infinite;
}

.footer::after {
  content: '';
  position: absolute;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.03) 0%, transparent 70%);
  bottom: -40px;
  left: -40px;
  opacity: 0.15;
  z-index: 0;
  animation: subtleFloat 30s ease-in-out infinite reverse;
}

.footer-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 2.5rem);
  color: #FFFFFF;
  margin-bottom: 20px;
  font-weight: 600;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: relative;
  display: inline-block;
}

.footer-logo::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #D4A76A, transparent);
}

.footer-text {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  font-family: 'Playfair Display', serif;
  font-style: italic;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 40px;
  align-items: center;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  transition: all 0.3s ease;
  padding: 10px 20px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  max-width: 400px;
  width: 100%;
  justify-content: center;
}

.contact-item:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(212, 167, 106, 0.2);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-item i {
  color: #D4A76A;
  font-size: 1.1rem;
  width: 24px;
  text-align: center;
}

.contact-item span {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  font-family: 'Montserrat', sans-serif;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  color: #D4A76A;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  border: 1px solid rgba(212, 167, 106, 0.1);
  position: relative;
  overflow: hidden;
}

.social-icon::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(212, 167, 106, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.social-icon:hover {
  background: rgba(212, 167, 106, 0.1);
  color: #FFFFFF;
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(212, 167, 106, 0.2);
  border-color: rgba(212, 167, 106, 0.3);
}

.social-icon:hover::before {
  opacity: 1;
}

.social-icon i {
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
}

.copyright {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  line-height: 1.6;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-family: 'Montserrat', sans-serif;
  max-width: 600px;
  margin: 0 auto;
}

.copyright br {
  display: block;
  margin: 5px 0;
}

/* Elemento decorativo granulado */
.footer-granulado {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.08;
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.4) 1px, transparent 1px),
    radial-gradient(circle at 40% 50%, rgba(255, 255, 255, 0.3) 1px, transparent 1px),
    radial-gradient(circle at 60% 70%, rgba(255, 255, 255, 0.2) 1px, transparent 1px);
  background-size: 60px 60px, 80px 80px, 100px 100px;
  animation: moveGranular 50s linear infinite;
}

/* Animações reutilizadas da seção sobre */
@keyframes subtleFloat {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(20px, 30px) scale(1.1);
  }
}

@keyframes moveGranular {
  0% {
    background-position: 0 0, 0 0, 0 0;
  }
  100% {
    background-position: 60px 60px, 80px 80px, 100px 100px;
  }
}

/* Responsividade */
@media (max-width: 768px) {
  .footer {
    padding: 60px 0 30px;
  }
  
  .footer-contact {
    gap: 12px;
  }
  
  .contact-item {
    padding: 8px 15px;
    font-size: 0.95rem;
  }
  
  .footer-social {
    gap: 15px;
  }
  
  .social-icon {
    width: 45px;
    height: 45px;
    font-size: 1.1rem;
  }
  
  .copyright {
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .footer {
    padding: 50px 0 25px;
  }
  
  .footer-logo {
    font-size: 1.8rem;
  }
  
  .footer-text {
    font-size: 1rem;
    margin-bottom: 30px;
  }
  
  .contact-item {
    padding: 8px 12px;
    font-size: 0.9rem;
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }
  
  .contact-item i {
    font-size: 1rem;
  }
  
  .footer-social {
    gap: 12px;
  }
  
  .social-icon {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  
  .copyright {
    font-size: 0.8rem;
  }
}

/* Estilos para a classe .container (se ainda não existir) */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}