/*
Theme Name: Monica Lins
Theme URI: https://monicalinscoach.com.br
Author: PepperWeb
Description: Tema WordPress do site institucional da Monica Lins — Coach Comportamental e Consultoria Empresarial. Design system espelhado do protótipo React (client/src/pages/monica-lins), usando Tailwind CDN e Vanilla JS no lugar de Framer Motion.
Version: 1.0.0
Requires at least: 6.0
Requires PHP: 7.4
Text Domain: monica-lins
*/

/* Estilos Globais e Componentes Reutilizáveis (extraídos de home.css do React) */
body {
  font-family: 'Montserrat', 'Poppins', sans-serif;
  color: #2b2b33;
  overflow-x: hidden;
}

.site-nav {
  background: white;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.site-nav a.nav-link {
  color: #55555f;
  font-weight: 500;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.site-nav a.nav-link:hover {
  color: #8f5c68;
}

.hero-section {
  position: relative;
  min-height: 82vh;
  display: flex;
  overflow: hidden;
}

.hero-mobile-photo {
  object-fit: cover !important;
  object-position: top center !important;
}

.hero-mobile-pad {
  padding-top: clamp(220px, 42vh, 340px) !important;
  padding-bottom: 56px !important;
}

@media (min-width: 768px) {
  .hero-mobile-pad {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
}

@media (min-width: 768px) {
  .hero-cliente-final-pad {
    padding-top: 72px !important;
    padding-bottom: 72px !important;
  }
}

@media (min-width: 768px) {
  .hero-perfil-comportamental-pad {
    padding-top: 72px !important;
    padding-bottom: 72px !important;
  }
}

.btn-hero-cta {
  background: linear-gradient(135deg, #b17c88, #8f5c68);
  color: white;
  padding: 1rem 2.5rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.03em;
  display: inline-block;
  transition: all 0.3s ease;
}

.btn-hero-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(143, 92, 104, 0.4);
}

.problem-card {
  background: white;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  padding: 44px 22px 26px;
  position: relative;
  margin-top: 34px;
  text-align: center;
  border-top: 4px solid #8f5c68;
  height: 100%;
}

.problem-card-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  position: absolute;
  top: -32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #b17c88, #8f5c68);
  box-shadow: 0 6px 16px rgba(143, 92, 104, 0.35);
  border: 4px solid white;
}

.problem-card h3 {
  color: #0f2745;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.4;
  min-height: 48px;
}

.problem-card p {
  color: #666;
  font-size: 0.88rem;
  line-height: 1.6;
}

.solutions-section {
  background: linear-gradient(180deg, #0a1930 0%, #0f2745 55%, #16304f 100%);
  position: relative;
  overflow: hidden;
}

.solutions-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 90% 0%, rgba(169, 112, 124, 0.18) 0%, transparent 45%),
                     radial-gradient(circle at 0% 100%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.service-card {
  background: #eef0f2;
  border-radius: 14px;
  padding: 2rem 1.75rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.service-card h3 {
  color: #0f2745;
  font-weight: 800;
  letter-spacing: 0.03em;
  margin-bottom: 0.85rem;
}

.service-card p {
  color: #55555f;
  font-size: 0.9rem;
  line-height: 1.6;
  flex-grow: 1;
  margin-bottom: 1.5rem;
}

.btn-rose {
  background: linear-gradient(135deg, #b17c88, #8f5c68);
  color: white;
  padding: 0.75rem 2rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  display: inline-block;
  transition: all 0.3s ease;
}

.btn-rose:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(143, 92, 104, 0.4);
}

.btn-navy {
  background: #0f2745;
  color: white;
  padding: 1rem 2rem;
  border-radius: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
  transition: background 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-navy:hover {
  background: #16304f;
}

.credentials-box {
  background: #0f2745;
  color: white;
}

.contact-gradient {
  background: linear-gradient(180deg, #c7c6cb 0%, #af7a86 55%, #8f5c68 100%);
}

.field-input {
  border: 1px solid #d8d8dc;
  border-radius: 10px;
  padding: 0.9rem 1.1rem;
  width: 100%;
  background: white;
  font-size: 0.9rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.field-input.has-icon {
  padding-left: 2.75rem;
}

.field-input:focus {
  outline: none;
  border-color: #8f5c68;
  box-shadow: 0 0 0 3px rgba(143, 92, 104, 0.15);
}

.client-badge {
  background: #111318;
  border-radius: 14px;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: transform 0.3s ease;
  overflow: hidden;
}

.client-badge:hover {
  transform: scale(1.05);
}

/* Animações Nativas (Intersection Observer, substitui Framer Motion) */
.fade-in-up, .fade-in-left, .fade-in-right, .stagger-item {
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.js-hidden.fade-in-up, .js-hidden.stagger-item {
  opacity: 0;
  transform: translateY(40px);
}
.js-hidden.fade-in-left {
  opacity: 0;
  transform: translateX(-40px);
}
.js-hidden.fade-in-right {
  opacity: 0;
  transform: translateX(40px);
}
.js-visible.fade-in-up, .js-visible.fade-in-left, .js-visible.fade-in-right, .js-visible.stagger-item {
  opacity: 1;
  transform: translate(0, 0);
}
