/* =============================================
   CLÍNICA FLORESCER — Design System
   Versão: 2.0 | Baseado no escopo Figma Make
   ============================================= */

/* --- FONTES --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

/* --- VARIÁVEIS --- */
:root {
  --primary: #1FB6E8;
  --primary-dark: #1BA5D3;
  --primary-light: #E8F7FC;
  --green-wa: #25D366;
  --green-wa-dark: #20BD5A;
  --white: #FFFFFF;
  --bg-light: #FAFAFA;
  --text-main: #111827;
  --text-muted: #6B7280;
  --text-light: #9CA3AF;
  --border: #E5E7EB;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.10), 0 2px 6px rgba(0,0,0,0.06);
  --shadow-lg: 0 10px 30px rgba(0,0,0,0.12);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 9999px;
  --max-width: 1280px;
  --transition: 0.2s ease;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* --- RESET --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background-color: var(--bg-light);
  color: var(--text-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-md);
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul { list-style: none; }

/* --- LAYOUT --- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 5rem 0;
}

.section-white { background-color: var(--white); }
.section-light { background-color: var(--bg-light); }

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

/* --- TIPOGRAFIA --- */
.section-badge {
  display: inline-block;
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--primary);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-title-dark {
  color: var(--text-main);
}

.section-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.7;
}

/* --- BOTÕES --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 2rem;
  border-radius: var(--radius-full);
  font-family: var(--font);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--white);
}
.btn-primary:hover {
  background-color: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background-color: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-outline:hover {
  background-color: var(--primary);
  color: var(--white);
}

.btn-white {
  background-color: var(--white);
  color: var(--primary);
}
.btn-white:hover {
  background-color: #f3f4f6;
}

.btn-white-outline {
  background-color: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-white-outline:hover {
  background-color: var(--white);
  color: var(--primary);
}

.btn-green {
  background-color: var(--green-wa);
  color: var(--white);
}
.btn-green:hover {
  background-color: var(--green-wa-dark);
  transform: translateY(-1px);
}

.btn-gray {
  background-color: #F3F4F6;
  color: var(--text-main);
}
.btn-gray:hover {
  background-color: #E5E7EB;
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

/* --- HEADER / NAV --- */
.site-header {
  background-color: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.site-logo {
  height: 80px;
  width: 80px;
  object-fit: cover;
  border-radius: 0%;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--transition);
}
.nav-link:hover,
.nav-link.active {
  color: var(--primary);
  font-weight: 600;
}

/* Dropdown Para Empresas */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-btn {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font);
  transition: color var(--transition);
}
.nav-dropdown-btn:hover,
.nav-dropdown-btn.active {
  color: var(--primary);
  font-weight: 600;
}

.dropdown-arrow {
  width: 16px;
  height: 16px;
  transition: transform var(--transition);
}

.nav-dropdown.open .dropdown-arrow {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 0.75rem);
  left: 0;
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  min-width: 220px;
  padding: 0.5rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.2s ease;
  z-index: 200;
}

.nav-dropdown.open .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  display: block;
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
  transition: all var(--transition);
}
.dropdown-item:hover {
  background-color: var(--primary-light);
  color: var(--primary);
}

/* Mobile Menu Button */
.menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
  color: var(--text-main);
}

.menu-btn svg {
  width: 24px;
  height: 24px;
  display: block;
}

/* Mobile Nav */
.mobile-nav {
  display: none;
  flex-direction: column;
  padding: 1rem 2rem 1.5rem;
  gap: 0.25rem;
  border-top: 1px solid var(--border);
  background-color: var(--white);
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav-link {
  padding: 0.75rem 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-main);
  border-bottom: 1px solid var(--border);
}
.mobile-nav-link:last-child {
  border-bottom: none;
}
.mobile-nav-link:hover {
  color: var(--primary);
}

.mobile-nav-sub {
  padding-left: 1rem;
}

.mobile-nav-sublabel {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.5rem 0 0.25rem;
}

.mobile-nav-cta {
  margin-top: 0.75rem;
  text-align: center;
}

/* --- HERO --- */
.hero {
  background-color: var(--white);
  padding: 4rem 0;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-title {
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 800;
  color: var(--text-main);
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.hero-title .highlight {
  color: var(--primary);
}

.hero-text {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 1rem;
}

.hero-text:last-of-type {
  margin-bottom: 2rem;
}

.hero-img-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.hero-img-wrap img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 0;
}

/* Hero interno (subpáginas) */
.hero-inner-page {
  background-color: var(--white);
  padding: 4rem 0 3rem;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.hero-inner-page .section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 500;
  margin-bottom: 1rem;
}

/* --- CARDS GRID --- */
.cards-grid {
  display: grid;
  gap: 1.5rem;
}

.cards-grid-4 { grid-template-columns: repeat(4, 1fr); }
.cards-grid-3 { grid-template-columns: repeat(3, 1fr); }
.cards-grid-2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  transition: box-shadow var(--transition), transform var(--transition);
}

.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.card-icon {
  width: 3.5rem;
  height: 3.5rem;
  background-color: var(--primary-light);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}

.card-icon svg {
  width: 1.75rem;
  height: 1.75rem;
  color: var(--primary);
  stroke: var(--primary);
}

.card-emoji {
  font-size: 2.25rem;
  margin-bottom: 0.75rem;
  line-height: 1;
}

.card-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.6rem;
}

.card-title-primary {
  color: var(--primary);
}

.card-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.card-link {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary);
}
.card-link:hover {
  text-decoration: underline;
}

/* Card centralizado */
.card-center {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Card com borda de destaque */
.card-featured {
  border-color: var(--primary);
  border-width: 2px;
  box-shadow: var(--shadow-md);
  transform: scale(1.03);
}

.card-featured:hover {
  transform: scale(1.03) translateY(-2px);
}

.badge-popular {
  display: inline-block;
  background-color: var(--primary);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  margin-bottom: 0.75rem;
}

/* --- STATS --- */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-icon {
  width: 5rem;
  height: 5rem;
  background-color: var(--primary-light);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.stat-icon svg {
  width: 2.5rem;
  height: 2.5rem;
  color: var(--primary);
  stroke: var(--primary);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 0.375rem;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* --- DEPOIMENTOS --- */
.testimonial-card {
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.testimonial-avatar {
  width: 3rem;
  height: 3rem;
  border-radius: var(--radius-full);
  object-fit: cover;
  flex-shrink: 0;
}

.testimonial-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-main);
}

.stars {
  display: flex;
  gap: 2px;
  margin-top: 2px;
}

.star {
  width: 14px;
  height: 14px;
  fill: #FFC107;
  color: #FFC107;
}

.testimonial-text {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 0.75rem;
}

.testimonial-date {
  font-size: 0.75rem;
  color: var(--text-light);
}

/* --- FAQ --- */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background-color: var(--white);
  border: none;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 14px rgba(0,0,0,0.03);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  text-align: left;
  gap: 1rem;
  transition: background-color var(--transition);
}

.faq-question:hover {
  background-color: #F9FAFB;
}

.faq-icon {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  flex-shrink: 0;
  transition: transform var(--transition);
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  display: none;
  padding: 0 1.5rem 1.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.75;
}

.faq-item.open .faq-answer {
  display: block;
}

/* --- TIMELINE --- */
.timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background-color: var(--primary);
  transform: translateX(-50%);
}

.timeline-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 20px;
  height: 20px;
  background-color: var(--white);
  border: 4px solid var(--primary);
  border-radius: var(--radius-full);
  transform: translate(-50%, -50%);
  z-index: 2;
}

.timeline-content {
  /* esquerda */
}

.timeline-item:nth-child(even) .timeline-content {
  order: 2;
}

.timeline-item:nth-child(even) .timeline-img {
  order: 1;
}

.timeline-year {
  display: inline-block;
  background-color: var(--primary);
  color: var(--white);
  font-size: 1.125rem;
  font-weight: 700;
  padding: 0.375rem 1.25rem;
  border-radius: var(--radius-full);
  margin-bottom: 1rem;
}

.timeline-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.75rem;
}

.timeline-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.75;
}

.timeline-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.timeline-img img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 0;
}

/* --- PILARES MVV --- */
.mvv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.mvv-card {
  border: 2px solid var(--primary);
  border-radius: var(--radius-lg);
  padding: 2rem;
  background-color: var(--white);
}

.mvv-card-title {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1rem;
}

.mvv-values {
  background-color: var(--primary-light);
  border-radius: var(--radius-lg);
  padding: 2rem;
}

.mvv-values-title {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1.25rem;
}

.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.value-item {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.875rem;
  color: var(--text-main);
}

.value-check {
  width: 18px;
  height: 18px;
  color: var(--primary);
  stroke: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
}

/* --- FORMAÇÃO --- */
.formacao-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.formacao-item {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.875rem;
  color: var(--text-main);
}

/* --- GALERIA FOTOS --- */
.photos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.photo-item {
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.photo-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  transition: transform 0.4s ease;
}

.photo-item:hover img {
  transform: scale(1.06);
}

/* --- TAGS DEMANDAS --- */
.tags-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.625rem;
}

.tag {
  display: inline-block;
  background-color: var(--primary-light);
  color: var(--primary);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-full);
  transition: all var(--transition);
}

.tag:hover {
  background-color: var(--primary);
  color: var(--white);
}

/* --- CTA BANNER --- */
.cta-banner {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: var(--radius-xl);
  padding: 4rem 3rem;
  text-align: center;
  color: var(--white);
}

.cta-banner-title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 1rem;
}

.cta-banner-text {
  font-size: 1rem;
  opacity: 0.95;
  max-width: 560px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

/* --- INFO BOX (highlight colorido) --- */
.info-box {
  background-color: var(--primary-light);
  border-radius: var(--radius-lg);
  padding: 2rem;
}

.info-box-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.625rem;
}

.info-box-text {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

/* --- CHECKLIST --- */
.checklist {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.checklist-item {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.875rem;
  color: var(--text-main);
}

.checklist-item svg {
  width: 18px;
  height: 18px;
  color: var(--primary);
  stroke: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
}

/* --- PASSOS PROCESSO --- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
  position: relative;
}

.step-number {
  width: 3.5rem;
  height: 3.5rem;
  background-color: var(--primary);
  color: var(--white);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 800;
  margin: 0 auto 1rem;
}

.step-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.625rem;
}

.step-text {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* --- PREÇOS LOCAÇÃO --- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.75rem;
  align-items: start;
}

.pricing-card {
  background-color: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem 0.75rem;
  transition: all var(--transition);
}

.pricing-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}

.pricing-card-featured {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
  transform: scale(1.04);
}

.pricing-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.5rem;
}

.pricing-price {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 0.25rem;
}

.pricing-price span {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
}

.pricing-note {
  font-size: 0.75rem;
  color: var(--text-light);
  margin-bottom: 0.75rem;
}

.pricing-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  line-height: 1.5;
}

/* --- PREÇOS LOCAÇÃO 5 ITEMS --- */
.pricing-flex-5 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  align-items: stretch;
}
.simple-pricing {
  flex: 1 1 180px;
  max-width: 250px;
  text-align: center;
  padding: 2rem 1.25rem;
  border-radius: 12px;
}
.simple-pricing .pricing-title {
  font-size: 1.1rem;
  color: var(--text-main);
  margin-bottom: 1.5rem;
  font-weight: 700;
}
.simple-pricing .pricing-price {
  font-size: 2.25rem;
  margin-bottom: 2rem;
  color: var(--primary-dark);
}
.simple-pricing.pricing-card-featured {
  position: relative;
  border-color: var(--primary);
  background: var(--white);
  padding-top: 2.5rem;
  transform: scale(1.05);
}
.simple-pricing .badge-popular {
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 20px;
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.75rem;
}

.pricing-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--text-main);
  line-height: 1.5;
}

.pricing-feature svg {
  width: 16px;
  height: 16px;
  color: var(--primary);
  stroke: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
}

/* --- FORMULÁRIO CONTATO --- */
.form-group {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 0.5rem;
}

.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: var(--font);
  font-size: 0.9rem;
  color: var(--text-main);
  background-color: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(31, 182, 232, 0.15);
}

.form-control::placeholder {
  color: var(--text-light);
}

textarea.form-control {
  resize: none;
}

/* --- CONTATO INFO --- */
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-icon-wrap {
  width: 3rem;
  height: 3rem;
  background-color: var(--primary-light);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon-wrap svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--primary);
  stroke: var(--primary);
}

.contact-item-label {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.25rem;
}

.contact-item-value {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* --- MAPA --- */
.map-embed {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.map-embed iframe {
  display: block;
  width: 100%;
  border: none;
}

/* --- LOCALIZAÇÃO --- */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

/* --- WHATSAPP FLOAT --- */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 3.5rem;
  height: 3.5rem;
  background-color: var(--green-wa);
  color: var(--white);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.5);
  z-index: 999;
  transition: all var(--transition);
}

.whatsapp-float:hover {
  background-color: var(--green-wa-dark);
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-float svg {
  width: 1.625rem;
  height: 1.625rem;
}

/* --- FOOTER --- */
.site-footer {
  background-color: var(--white);
  border-top: 1px solid var(--border);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.footer-logo {
  height: 130px;
  width: 130px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 1rem;
}

.footer-tagline {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.footer-col-title {
  font-size: 0.825rem;
  font-weight: 700;
  color: var(--text-main);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 1rem;
}

.footer-nav-link {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
  transition: color var(--transition);
}
.footer-nav-link:hover {
  color: var(--primary);
}

.footer-contact-item {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 0.375rem;
  line-height: 1.5;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-light);
}

/* --- PERFIL (Quem Somos) --- */
.profile-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 3rem;
  align-items: start;
}

.profile-card {
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}

.profile-img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: var(--radius-md);
  margin-bottom: 1.25rem;
}

.profile-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.375rem;
}

.profile-role {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0.25rem;
}

.profile-sub {
  font-size: 0.825rem;
  color: var(--text-muted);
}

/* Texto de história */
.prose p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.prose strong {
  color: var(--text-main);
  font-weight: 700;
}

/* --- EMPRESAS Tags segmentos --- */
.segment-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* --- UTIL --- */
.text-center { text-align: center; }
.text-primary { color: var(--primary); }
.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-12 { margin-top: 3rem; }
.mt-16 { margin-top: 4rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.space-y-4 > * + * { margin-top: 1rem; }
.space-y-6 > * + * { margin-top: 1.5rem; }
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }

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

@media (max-width: 1100px) {
  .cards-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .timeline::before { display: none; }
  .timeline-item { grid-template-columns: 1fr; gap: 1.5rem; }
  .timeline-item::before { display: none; }
  .timeline-item:nth-child(even) .timeline-content { order: 0; }
  .timeline-item:nth-child(even) .timeline-img { order: 0; }
}

@media (max-width: 900px) {
  .cards-grid-3 { grid-template-columns: repeat(2, 1fr); }
  .cards-grid-2 { grid-template-columns: 1fr; }
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-inner .btn-group { justify-content: center; }
  .hero-img-wrap { max-width: 480px; margin: 0 auto; }
  .profile-grid { grid-template-columns: 1fr; }
  .profile-card { max-width: 340px; margin: 0 auto; }
  .mvv-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .formacao-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .pricing-card-featured { transform: none; }
  .photos-grid { grid-template-columns: repeat(2, 1fr); }
  .location-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .site-nav,
  .header-cta { display: none; }
  .menu-btn { display: flex; }
  .container { padding: 0 1.25rem; }
  .section { padding: 3.5rem 0; }
  .hero { padding: 2.5rem 0; }
  .hero-title { font-size: 1.875rem; }
  .cards-grid-4,
  .cards-grid-3 { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .steps-grid { grid-template-columns: 1fr; }
  .cta-banner { padding: 2.5rem 1.5rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .btn-group { flex-direction: column; align-items: stretch; }
  .btn-group .btn { text-align: center; }
  .faq-list { max-width: 100%; }
  .pricing-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .photos-grid { grid-template-columns: 1fr 1fr; }
  .hero-title { font-size: 1.625rem; }
  .section-title { font-size: 1.5rem; }
}
