/* ============================================
   CEVAVI - Design System Mobile-First
   Público: Mulheres 30-60 anos
   Foco: Conversão WhatsApp, leitura rápida
   ============================================ */

/* CSS Variables */
:root {
  /* Cores Principais */
  --pri: #145c42;
  --pri-light: #1a7f5c;
  --pri-dark: #0d3d2c;
  --pri-soft: #e8f5ef;
  --pri-gradient: linear-gradient(135deg, #145c42 0%, #1a7f5c 100%);
  
  /* Cores Neutras */
  --bg: #ffffff;
  --bg-alt: #f8faf9;
  --text: #1a2e28;
  --text-light: #5a6b65;
  --text-muted: #8a9a94;
  --border: #e0ebe5;
  
  /* WhatsApp */
  --whatsapp: #25d366;
  --whatsapp-dark: #128c7e;
  
  /* Telefone */
  --phone: #0066cc;
  
  /* Sombras */
  --shadow-sm: 0 2px 8px rgba(20, 92, 66, 0.08);
  --shadow-md: 0 4px 16px rgba(20, 92, 66, 0.12);
  --shadow-lg: 0 8px 32px rgba(20, 92, 66, 0.16);
  
  /* Espaçamentos */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  
  /* Bordas */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-full: 9999px;
  
  /* Tipografia - Maior para público 30-60 */
  --font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-size-xs: 0.8rem;
  --font-size-sm: 0.9rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.15rem;
  --font-size-xl: 1.35rem;
  --font-size-2xl: 1.6rem;
  --font-size-3xl: 2rem;
  
  /* Layout */
  --max-width: 1200px;
  --header-height: 64px;
  
  /* Transições */
  --transition-fast: 0.15s ease;
  --transition-base: 0.25s ease;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

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

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

/* ============================================
   HEADER - Compacto e Funcional
   ============================================ */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-sm) 0;
  min-height: var(--header-height);
}

.brand {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.logo-ring {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  border: 2px solid var(--pri);
  background: var(--bg);
  flex-shrink: 0;
}

.logo-ring img {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  object-fit: contain;
}

.brand-text h1 {
  font-size: var(--font-size-lg);
  font-weight: 800;
  color: var(--pri);
  line-height: 1.1;
  margin: 0;
}

.brand-text span {
  font-size: var(--font-size-xs);
  color: var(--text-light);
  display: block;
}

.actions {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.address {
  display: none;
  font-size: var(--font-size-sm);
  color: var(--text-light);
}

@media (min-width: 1024px) {
  .address { display: block; }
}

/* Botões */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: 10px 16px;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: var(--font-size-sm);
  transition: all var(--transition-base);
  white-space: nowrap;
}

.btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  flex-shrink: 0;
}

.btn-primary {
  background: var(--pri-gradient);
  color: white;
  box-shadow: var(--shadow-sm);
}

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

.btn-whatsapp {
  background: var(--whatsapp);
  color: white;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp:hover {
  background: var(--whatsapp-dark);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--pri);
  border: 2px solid var(--pri);
}

.btn-outline:hover {
  background: var(--pri);
  color: white;
}

/* Header WhatsApp - Mobile mostra só ícone */
.header-whatsapp .btn-text { display: none; }

@media (min-width: 640px) {
  .header-whatsapp .btn-text { display: inline; }
}

/* Mobile Menu */
.mobile-menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  color: var(--pri);
  font-size: 1.4rem;
}

.mobile-menu-btn:hover {
  background: var(--pri-soft);
}

@media (min-width: 900px) {
  .mobile-menu-btn { display: none; }
}

/* Navigation */
.main-nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
}

.main-nav.open {
  display: block;
  animation: slideDown 0.25s ease;
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

.nav-list {
  display: flex;
  flex-direction: column;
  padding: var(--space-sm) 0;
}

.nav-item a {
  display: block;
  padding: 14px var(--space-lg);
  font-weight: 600;
  font-size: var(--font-size-base);
  color: var(--text);
  border-left: 3px solid transparent;
}

.nav-item a:hover,
.nav-item a.active {
  color: var(--pri);
  background: var(--pri-soft);
  border-left-color: var(--pri);
}

@media (min-width: 900px) {
  .main-nav {
    display: block;
    position: static;
    box-shadow: none;
    border-bottom: none;
  }
  
  .nav-list {
    flex-direction: row;
    justify-content: center;
    gap: 0;
    padding: 0;
  }
  
  .nav-item a {
    padding: var(--space-md) var(--space-sm);
    font-size: var(--font-size-sm);
    border-left: none;
    border-bottom: 3px solid transparent;
  }
  
  .nav-item a:hover,
  .nav-item a.active {
    background: transparent;
    border-bottom-color: var(--pri);
  }
}

/* ============================================
   HERO - Compacto Mobile-First (Tudo visível sem rolar)
   ============================================ */
.hero {
  padding: var(--space-sm) 0 var(--space-md);
  background: linear-gradient(180deg, var(--bg) 0%, var(--pri-soft) 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-sm);
}

.hero-content {
  text-align: center;
  order: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: 4px 10px;
  background: var(--pri-soft);
  color: var(--pri);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-xs);
}

.hero-title {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--pri-dark);
  line-height: 1.15;
  margin-bottom: var(--space-xs);
}

.hero-title span {
  color: var(--pri);
}

.hero-subtitle {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.4;
  margin-bottom: var(--space-sm);
}

/* Benefits em grid compacto 2x2 */
.hero-benefits {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px var(--space-xs);
  margin-bottom: var(--space-sm);
  text-align: left;
}

.hero-benefit {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.75rem;
  color: var(--text);
}

.hero-benefit::before {
  content: '✓';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 14px;
  height: 14px;
  background: var(--pri);
  color: white;
  font-size: 8px;
  font-weight: 700;
  border-radius: var(--radius-full);
  flex-shrink: 0;
}

/* CTA Grande e Visível */
.hero-cta {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.hero-cta .btn {
  padding: 12px var(--space-md);
  font-size: var(--font-size-sm);
  border-radius: var(--radius-md);
}

.hero-cta .btn-whatsapp {
  font-size: var(--font-size-base);
  padding: 14px var(--space-lg);
}

.hero-image {
  order: 1;
  width: 100%;
}

.hero-image-inner {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 16/9;
  border: 2px solid var(--pri);
  max-height: 220px;
  width: 100%;
}

.hero-image-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Hero mobile - imagem centralizada */
@media (max-width: 767px) {
  .hero .container {
    padding-left: var(--space-sm);
    padding-right: var(--space-sm);
  }
  
  .hero-grid {
    padding: 0;
  }
  
  .hero-image {
    width: 100%;
    margin: 0 auto;
  }
  
  .hero-image-inner {
    border-radius: var(--radius-md);
    max-height: none;
    aspect-ratio: 16/10;
  }
  
  .hero-content {
    padding: 0 var(--space-sm);
  }
}

@media (min-width: 768px) {
  .hero {
    padding: var(--space-xl) 0 var(--space-2xl);
  }
  
  .hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: center;
  }
  
  .hero-content {
    text-align: left;
    order: 1;
  }
  
  .hero-badge {
    font-size: var(--font-size-xs);
    padding: 6px 14px;
    margin-bottom: var(--space-md);
  }
  
  .hero-title {
    font-size: var(--font-size-3xl);
    margin-bottom: var(--space-sm);
  }
  
  .hero-subtitle {
    font-size: var(--font-size-base);
    margin-bottom: var(--space-md);
  }
  
  .hero-benefits {
    gap: var(--space-xs) var(--space-md);
    margin-bottom: var(--space-lg);
  }
  
  .hero-benefit {
    font-size: var(--font-size-sm);
    gap: 6px;
  }
  
  .hero-benefit::before {
    width: 18px;
    height: 18px;
    font-size: 10px;
  }
  
  .hero-cta {
    flex-direction: row;
    gap: var(--space-sm);
  }
  
  .hero-cta .btn {
    padding: 14px var(--space-lg);
    font-size: var(--font-size-base);
  }
  
  .hero-cta .btn-whatsapp {
    font-size: var(--font-size-lg);
    padding: 16px var(--space-xl);
  }
  
  .hero-image {
    order: 2;
  }
  
  .hero-image-inner {
    aspect-ratio: 1/1;
    max-height: none;
    border-width: 3px;
    border-radius: var(--radius-xl);
  }
}

/* ============================================
   SECTIONS - Base (Compacto no Mobile)
   ============================================ */
.section {
  padding: var(--space-md) 0;
}

.section-alt {
  background: var(--bg-alt);
}

.section-head {
  text-align: center;
  margin-bottom: var(--space-sm);
}

.section-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--pri-dark);
  margin-bottom: 2px;
}

.section-subtitle {
  font-size: 0.75rem;
  color: var(--text-light);
  max-width: 500px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .section {
    padding: var(--space-2xl) 0;
  }
  
  .section-head {
    margin-bottom: var(--space-lg);
  }
  
  .section-title {
    font-size: var(--font-size-2xl);
    margin-bottom: var(--space-xs);
  }
  
  .section-subtitle {
    font-size: var(--font-size-sm);
  }
}

/* ============================================
   CONVÊNIOS - Grid 2 colunas Mobile, 3 Desktop
   ============================================ */
.convenio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.convenio-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 12px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: all var(--transition-base);
  min-height: 100px;
}

.diferencial-card:hover {
  border-color: var(--pri);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.diferencial-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--pri-soft);
  color: var(--pri);
  font-size: 1.1rem;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}

.diferencial-text h3 {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 1px;
  line-height: 1.15;
}

.diferencial-text p {
  font-size: 0.65rem;
  color: var(--text-light);
  line-height: 1.3;
  margin: 0;
}

@media (min-width: 768px) {
  .diferenciais-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
  }
  
  .diferencial-card {
    padding: var(--space-lg);
  }
  
  .diferencial-icon {
    width: 48px;
    height: 48px;
    font-size: 1.5rem;
  }
  
  .diferencial-text h3 {
    font-size: var(--font-size-base);
  }
  
  .diferencial-text p {
    font-size: var(--font-size-sm);
  }
}

/* ============================================
   ESTRUTURA - Grid 3x4 Mobile (Compacto)
   ============================================ */
.estrutura-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}

.estrutura-item {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  aspect-ratio: 1/1;
}

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

.estrutura-item:hover img {
  transform: scale(1.05);
}

.estrutura-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 4px 6px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent);
  color: white;
  font-size: 0.6rem;
  font-weight: 600;
}

.estrutura-cta {
  text-align: center;
  margin-top: var(--space-sm);
}

@media (min-width: 640px) {
  .estrutura-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-sm);
  }
  
  .estrutura-label {
    font-size: var(--font-size-xs);
    padding: var(--space-sm);
  }
  
  .estrutura-label {
    font-size: var(--font-size-sm);
    padding: var(--space-md);
  }
}

@media (min-width: 1024px) {
  .estrutura-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ============================================
   CONVÊNIOS - Grid 4 colunas Mobile (Compacto)
   ============================================ */
.convenio-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
}

.convenio-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  padding: 6px 4px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 6px;
  transition: all var(--transition-base);
  min-height: 60px;
}

.convenio-item:hover {
  border-color: var(--pri);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.convenio-item img {
  max-width: 80px;
  max-height: 40px;
  object-fit: contain;
}

.convenio-item span {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text);
  text-align: center;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .convenio-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  
  .convenio-item {
    padding: 24px 20px;
    min-height: 130px;
  }
  
  .convenio-item img {
    max-width: 120px;
    max-height: 50px;
  }
  
  .convenio-item span {
    font-size: 0.9rem;
  }
}

/* ============================================
   ATIVIDADES - Cards Compactos 2 colunas
   ============================================ */
.atividades-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-sm);
}

.atividade-card {
  display: flex;
  flex-direction: column;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition-base);
}

.atividade-card:hover {
  border-color: var(--pri);
  box-shadow: var(--shadow-sm);
}

.atividade-thumb {
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
}

.atividade-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.atividade-info {
  padding: var(--space-sm);
}

.atividade-info h3 {
  font-size: var(--font-size-sm);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 2px;
  line-height: 1.2;
}

.atividade-info p {
  font-size: var(--font-size-xs);
  color: var(--text-light);
  line-height: 1.4;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (min-width: 640px) {
  .atividades-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .atividades-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
  }
  
  .atividade-info {
    padding: var(--space-md);
  }
  
  .atividade-info h3 {
    font-size: var(--font-size-base);
  }
  
  .atividade-info p {
    font-size: var(--font-size-sm);
  }
}

/* ============================================
   PROFISSIONAIS - Grid Ultra Compacto Mobile
   ============================================ */
.profissionais-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px;
}

.prof-card {
  background: var(--pri);
  border-radius: 8px;
  padding: 8px 6px;
  text-align: center;
  color: white;
  transition: all var(--transition-base);
}

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

.prof-photo {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  overflow: hidden;
  margin: 0 auto 4px;
  border: 2px solid white;
}

.prof-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.prof-card h3 {
  font-size: 0.65rem;
  font-weight: 700;
  margin-bottom: 1px;
  line-height: 1.15;
}

.prof-card .role {
  font-size: 0.55rem;
  opacity: 0.9;
  line-height: 1.2;
}

@media (min-width: 480px) {
  .profissionais-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 768px) {
  .profissionais-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
  }
  
  .prof-photo {
    width: 80px;
    height: 80px;
  }
  
  .prof-card h3 {
    font-size: var(--font-size-base);
  }
}

@media (min-width: 1024px) {
  .profissionais-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

/* Prof Card com Bio Expansível */
.prof-card {
  cursor: default;
  position: relative;
  overflow: hidden;
}

.prof-card .bio {
  display: block;
  font-size: var(--font-size-xs);
  opacity: 0.95;
  margin-top: var(--space-sm);
  padding-top: var(--space-sm);
  border-top: 1px solid rgba(255,255,255,0.3);
  line-height: 1.4;
  text-align: left;
}

/* Cards de profissionais - todos verdes */
.prof-card {
  background: var(--pri) !important;
  color: white !important;
}

.prof-card h3 {
  color: white !important;
}

.prof-card .role {
  color: rgba(255,255,255,0.9) !important;
}

/* Bio oculta por padrão */
.prof-card .bio {
  display: none;
  color: rgba(255,255,255,0.95) !important;
}

/* Bio visível apenas nos cards com classe 'expanded' (médicos) */
.prof-card.expanded .bio {
  display: block !important;
  color: rgba(255,255,255,0.95) !important;
}

@media (min-width: 768px) {
  .prof-card .bio {
    font-size: var(--font-size-sm);
  }
}

/* ============================================
   FAQ - Accordion Compacto
   ============================================ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-xs);
  overflow: hidden;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: var(--space-md);
  background: var(--bg);
  font-size: var(--font-size-sm);
  font-weight: 600;
  color: var(--text);
  text-align: left;
}

.faq-question:hover {
  background: var(--pri-soft);
  color: var(--pri);
}
/* Removido - usando span.faq-icon no HTML */

.faq-answer {
  display: none;
  padding: 0 var(--space-md) var(--space-md);
  font-size: var(--font-size-sm);
  color: var(--text-light);
  line-height: 1.5;
}

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

/* ============================================
   CTA SECTION - Conversão
   ============================================ */
.cta-section {
  background: var(--pri-gradient);
  padding: var(--space-xl) 0;
  text-align: center;
  color: white;
}

.cta-title {
  font-size: var(--font-size-xl);
  font-weight: 800;
  margin-bottom: var(--space-xs);
}

.cta-subtitle {
  font-size: var(--font-size-sm);
  opacity: 0.9;
  margin-bottom: var(--space-lg);
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  justify-content: center;
  align-items: center;
}

.cta-buttons .btn {
  padding: 14px var(--space-xl);
  font-size: var(--font-size-base);
  min-width: 200px;
}

.btn-white {
  background: white;
  color: var(--pri);
}

.btn-white:hover {
  background: var(--pri-soft);
}

@media (min-width: 640px) {
  .cta-buttons {
    flex-direction: row;
  }
  
  .cta-title {
    font-size: var(--font-size-2xl);
  }
}

/* ============================================
   FOOTER - Compacto
   ============================================ */
.site-footer {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  padding: var(--space-lg) 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
}

.footer-logo-ring {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  border: 2px solid var(--pri);
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-logo-ring img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.footer-brand-text {
  display: flex;
  flex-direction: column;
}

.footer-brand-name {
  font-size: var(--font-size-base);
  font-weight: 800;
  color: var(--pri);
}

.footer-brand-sub {
  font-size: var(--font-size-xs);
  color: var(--text-light);
}

.footer-text {
  font-size: var(--font-size-sm);
  color: var(--text-light);
  line-height: 1.5;
  margin-bottom: var(--space-md);
}

.footer-actions {
  display: flex;
  gap: var(--space-sm);
}

.footer-actions .btn {
  flex: 1;
  justify-content: center;
  padding: 12px var(--space-md);
}

.footer-title {
  font-size: var(--font-size-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: var(--space-xs);
}

.footer-info {
  font-size: var(--font-size-sm);
  color: var(--text);
  line-height: 1.5;
  margin-bottom: var(--space-sm);
}

.footer-info a {
  color: var(--pri);
  font-weight: 600;
}

.footer-map-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
}

.footer-map-card iframe {
  width: 100%;
  height: 150px;
  border: 0;
  display: block;
}

.footer-bottom {
  text-align: center;
  margin-top: var(--space-lg);
  padding-top: var(--space-md);
  border-top: 1px solid var(--border);
  font-size: var(--font-size-xs);
  color: var(--text-muted);
  line-height: 1.5;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: var(--space-xl);
  }
  
  .footer-actions .btn {
    flex: none;
  }
}

/* ============================================
   FLOATING BUTTONS - WhatsApp Destacado
   ============================================ */
.floating-buttons {
  position: fixed;
  bottom: var(--space-md);
  right: var(--space-md);
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.float-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  color: white;
  box-shadow: var(--shadow-lg);
  transition: all var(--transition-base);
  position: relative;
}

.float-btn svg {
  fill: currentColor;
  flex-shrink: 0;
}

.float-btn:hover {
  transform: scale(1.1);
}

/* WhatsApp - Grande e Pulsante */
.float-whatsapp {
  width: 60px;
  height: 60px;
  background: var(--whatsapp);
  animation: pulse-whatsapp 2s infinite;
}

.float-whatsapp svg {
  width: 32px;
  height: 32px;
}

.float-whatsapp:hover {
  background: var(--whatsapp-dark);
  animation: none;
}

/* Telefone - Menor */
.float-phone {
  width: 48px;
  height: 48px;
  background: var(--phone);
}

.float-phone svg {
  width: 24px;
  height: 24px;
}

.float-phone:hover {
  background: #004da6;
}

@keyframes pulse-whatsapp {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); }
  70% { box-shadow: 0 0 0 18px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Label no hover */
.float-btn[data-label]::before {
  content: attr(data-label);
  position: absolute;
  right: calc(100% + 8px);
  padding: 6px 10px;
  background: var(--text);
  color: white;
  font-size: var(--font-size-xs);
  font-weight: 600;
  white-space: nowrap;
  border-radius: var(--radius-sm);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-fast);
}

.float-btn:hover::before {
  opacity: 1;
  visibility: visible;
}

@media (min-width: 768px) {
  .floating-buttons {
    right: var(--space-lg);
    bottom: var(--space-lg);
  }
  
  .float-whatsapp {
    width: 68px;
    height: 68px;
  }
  
  .float-whatsapp svg {
    width: 36px;
    height: 36px;
  }
  
  .float-phone {
    width: 52px;
    height: 52px;
  }
}

/* ============================================
   INSTAGRAM - Grid Compacto
   ============================================ */
.instagram-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xs);
}

.instagram-item {
  aspect-ratio: 1/1;
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.instagram-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.instagram-item:hover img {
  transform: scale(1.08);
}

@media (min-width: 640px) {
  .instagram-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-sm);
  }
}

@media (min-width: 1024px) {
  .instagram-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

/* ============================================
   FORMS
   ============================================ */
.form-group {
  margin-bottom: var(--space-md);
}

.form-label {
  display: block;
  font-size: var(--font-size-sm);
  font-weight: 600;
  color: var(--text);
  margin-bottom: var(--space-xs);
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 14px var(--space-md);
  font-size: var(--font-size-base);
  color: var(--text);
  background: var(--bg);
  border: 2px solid var(--border);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--pri);
  box-shadow: 0 0 0 3px var(--pri-soft);
}

.form-textarea {
  min-height: 100px;
  resize: vertical;
}

/* ============================================
   UTILITIES
   ============================================ */
.text-center { text-align: center; }
.text-primary { color: var(--pri); }
.text-muted { color: var(--text-muted); }
.bg-alt { background: var(--bg-alt); }

.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }

.hidden { display: none !important; }

@media (max-width: 767px) {
  .hidden-mobile { display: none !important; }
}

@media (min-width: 768px) {
  .hidden-desktop { display: none !important; }
}

/* ============================================
   SCROLLBAR
   ============================================ */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-alt);
}

::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--text-muted);
}

/* ============================================
   PRINT
   ============================================ */
@media print {
  .floating-buttons,
  .mobile-menu-btn,
  .main-nav {
    display: none !important;
  }
  
  header {
    position: static;
  }
}


/* ============================================
   ESTRUTURA EXPANDIDA - Grid de Fotos
   ============================================ */
.estrutura-grid-full {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}

.estrutura-grid-full .estrutura-item {
  aspect-ratio: 1/1;
  border-radius: 6px;
}

.estrutura-grid-full .estrutura-label {
  font-size: 0.55rem;
  padding: 3px 4px;
}

@media (min-width: 768px) {
  .estrutura-grid-full {
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
  }
}

@media (min-width: 1024px) {
  .estrutura-grid-full {
    grid-template-columns: repeat(6, 1fr);
  }
}

/* ============================================
   INCLUSO / NÃO INCLUSO - Detalhado
   ============================================ */
.incluso-detalhado {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}

@media (min-width: 768px) {
  .incluso-detalhado {
    grid-template-columns: repeat(3, 1fr);
  }
}

.incluso-bloco {
  background: var(--bg);
  border: 1px solid #d9f0e3;
  border-radius: 8px;
  padding: 10px;
  box-shadow: var(--shadow-sm);
}

.incluso-bloco-header {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 6px;
  color: var(--pri);
}

.incluso-bloco-icon {
  font-size: 1.1rem;
}

.incluso-bloco-header h3 {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text);
  margin: 0;
}

.incluso-lista {
  padding-left: 16px;
  margin: 0;
}

.incluso-lista li {
  position: relative;
  margin-bottom: 3px;
  font-size: 0.7rem;
  color: var(--text-light);
  line-height: 1.35;
  list-style: none;
}

.incluso-lista li::before {
  content: "✓";
  position: absolute;
  left: -14px;
  color: var(--pri);
  font-weight: bold;
  font-size: 0.65rem;
}

/* Não Incluso */
.nao-incluso-detalhado {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}

@media (min-width: 768px) {
  .nao-incluso-detalhado {
    grid-template-columns: repeat(3, 1fr);
  }
}

.nao-incluso-bloco {
  background: var(--bg);
  border: 1px solid #ffd6d6;
  border-radius: 8px;
  padding: 10px;
  box-shadow: var(--shadow-sm);
}

.nao-incluso-header {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 6px;
  color: #d4380d;
}

.nao-incluso-icon {
  font-size: 1.1rem;
}

.nao-incluso-header h3 {
  font-size: 0.8rem;
  font-weight: 700;
  color: #7a1111;
  margin: 0;
}

.nao-incluso-lista {
  padding-left: 16px;
  margin: 0;
}

.nao-incluso-lista li {
  position: relative;
  margin-bottom: 3px;
  font-size: 0.7rem;
  color: #5b4b4b;
  line-height: 1.35;
  list-style: none;
}

.nao-incluso-lista li::before {
  content: "✕";
  position: absolute;
  left: -14px;
  color: #d4380d;
  font-weight: bold;
  font-size: 0.65rem;
}

/* ============================================
   VALORES - Card Particular e Avisos
   ============================================ */
.valores-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  margin-bottom: var(--space-lg);
}

@media (min-width: 768px) {
  .valores-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.valores-card-particular {
  background: linear-gradient(135deg, #0f8b4c, #15a86a);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  color: white;
  box-shadow: 0 16px 50px rgba(15, 139, 76, 0.35);
  position: relative;
  overflow: hidden;
}

.valores-card-particular::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 50%;
}

.valores-badge {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  background: rgba(255, 255, 255, 0.25);
  color: white;
  padding: 6px 12px;
  border-radius: var(--radius-full);
  font-size: var(--font-size-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 2;
}

.valores-icon {
  font-size: 2.5rem;
  margin-bottom: var(--space-sm);
  position: relative;
  z-index: 1;
}

.valores-card-particular h3 {
  font-size: var(--font-size-xl);
  margin: 0 0 var(--space-md) 0;
  font-weight: 800;
  position: relative;
  z-index: 1;
}

.valores-card-particular p {
  font-size: var(--font-size-base);
  line-height: 1.6;
  margin: 0 0 var(--space-sm) 0;
  opacity: 0.95;
  position: relative;
  z-index: 1;
}

.valores-destaque {
  font-size: var(--font-size-sm) !important;
  margin-bottom: var(--space-lg) !important;
  opacity: 0.9 !important;
}

.valores-card-particular .btn-white {
  background: white;
  color: #0f8b4c;
  border: none;
  padding: 14px 24px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: var(--font-size-base);
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  transition: var(--transition-base);
  position: relative;
  z-index: 1;
}

.valores-card-particular .btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}

.valores-card-particular .btn-white svg {
  width: 20px;
  height: 20px;
  fill: #0f8b4c;
}

/* Avisos */
.valores-aviso {
  background: #ffe6e6;
  border: 2px solid #ffb3b3;
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
  align-self: start;
}

.valores-aviso-header {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

.valores-aviso-icon {
  font-size: 1.8rem;
}

.valores-aviso h4 {
  font-size: var(--font-size-base);
  color: #cc0000;
  margin: 0;
  font-weight: 800;
  text-transform: uppercase;
}

.valores-aviso ul {
  margin: 0;
  padding-left: var(--space-lg);
}

.valores-aviso li {
  margin-bottom: var(--space-sm);
  font-size: var(--font-size-sm);
  color: #aa0000;
  line-height: 1.6;
  font-weight: 600;
}

/* ============================================
   EQUIPE - Categorias
   ============================================ */
.equipe-categoria {
  font-size: var(--font-size-lg);
  color: var(--pri);
  margin: var(--space-xl) 0 var(--space-md) 0;
  padding-bottom: var(--space-sm);
  border-bottom: 2px solid var(--pri-soft);
  font-weight: 700;
}

.equipe-categoria:first-of-type {
  margin-top: 0;
}

/* ============================================
   INFO CARDS - Ouvidoria e Empregos
   ============================================ */
.info-cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

@media (min-width: 768px) {
  .info-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.info-card {
  background: var(--bg);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-md);
  border-top: 4px solid var(--pri);
}

.info-card.empregos {
  border-top-color: #1d4ed8;
}

.info-card h3 {
  font-size: var(--font-size-sm);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-xs);
  color: var(--pri);
}

.info-card.empregos h3 {
  color: #1d4ed8;
}

.info-card h4 {
  font-size: var(--font-size-lg);
  color: var(--text);
  margin-bottom: var(--space-sm);
  font-weight: 700;
}

.info-card p {
  font-size: var(--font-size-sm);
  color: var(--text-light);
  margin-bottom: var(--space-sm);
  line-height: 1.6;
}

.info-card-sub {
  font-size: var(--font-size-xs) !important;
  color: var(--text-muted) !important;
  margin-bottom: var(--space-lg) !important;
}

.btn-ouvidoria {
  background: linear-gradient(135deg, #059669, #16a34a);
  color: white !important;
  padding: 12px 24px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: var(--font-size-sm);
  display: inline-block;
  box-shadow: 0 8px 18px rgba(22, 163, 74, 0.35);
  transition: var(--transition-base);
}

.btn-ouvidoria:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(22, 163, 74, 0.4);
}

.btn-empregos {
  background: linear-gradient(135deg, #1d4ed8, #2563eb);
  color: white !important;
  padding: 12px 24px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: var(--font-size-sm);
  display: inline-block;
  box-shadow: 0 8px 18px rgba(37, 99, 235, 0.35);
  transition: var(--transition-base);
}

.btn-empregos:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(37, 99, 235, 0.4);
}

/* ============================================
   WIDGET CONTAINER
   ============================================ */
.widget-container {
  background: var(--bg-alt);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  border: 1px solid var(--border);
}

/* ============================================
   CTA SECTION - Botão Outline Branco
   ============================================ */
.btn-outline-white {
  background: transparent;
  color: white;
  border: 2px solid white;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: var(--font-size-base);
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  transition: var(--transition-base);
}

.btn-outline-white:hover {
  background: white;
  color: var(--pri);
}

.btn-outline-white svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}


/* ============================================
   PÁGINAS INTERNAS - ESTILOS ADICIONAIS
   ============================================ */

/* Page Hero */
.page-hero {
  background: linear-gradient(135deg, var(--pri) 0%, #0d3d2a 100%);
  color: white;
  padding: 60px 0 40px;
  text-align: center;
}

.page-hero h1 {
  font-size: 1.8rem;
  margin-bottom: 8px;
}

.page-hero p {
  font-size: 1rem;
  opacity: 0.9;
}

@media (min-width: 768px) {
  .page-hero {
    padding: 80px 0 60px;
  }
  .page-hero h1 {
    font-size: 2.5rem;
  }
}

/* Steps Grid */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

@media (min-width: 768px) {
  .steps-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
}

.step-card {
  background: white;
  border-radius: 12px;
  padding: 16px;
  box-shadow: var(--shadow-sm);
  text-align: center;
}

.step-num {
  width: 32px;
  height: 32px;
  background: var(--pri);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin: 0 auto 10px;
}

.step-card h3 {
  font-size: 0.9rem;
  margin-bottom: 6px;
  color: var(--text);
}

.step-card p {
  font-size: 0.8rem;
  color: var(--text-light);
  line-height: 1.4;
}

/* Cards Grid 2 e 3 colunas */
.cards-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.cards-grid-3 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

@media (min-width: 768px) {
  .cards-grid-3 {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}

.info-card {
  background: white;
  border-radius: 12px;
  padding: 16px;
  box-shadow: var(--shadow-sm);
}

.info-card h3 {
  font-size: 0.95rem;
  margin-bottom: 8px;
  color: var(--text);
}

.info-card p {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.5;
}

.info-icon {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

/* Estrutura Gallery */
.estrutura-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

@media (min-width: 768px) {
  .estrutura-gallery {
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }
}

.estrutura-item-full {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.estrutura-item-full img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.estrutura-item-full .estrutura-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  color: white;
  padding: 20px 8px 8px;
  font-size: 0.75rem;
  font-weight: 600;
}

/* Profissionais Grid */
.prof-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

@media (min-width: 768px) {
  .prof-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
}

/* Prof cards - estilos removidos para manter verde */

/* Valores */
.valor-card-destaque {
  background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
  border: 2px solid var(--pri);
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  margin-bottom: 20px;
}

.valor-badge {
  background: var(--pri);
  color: white;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
}

.valor-card-destaque h3 {
  font-size: 1.3rem;
  margin: 12px 0 8px;
}

.valor-lista {
  list-style: none;
  padding: 0;
  margin: 16px 0;
  text-align: left;
  display: inline-block;
}

.valor-lista li {
  font-size: 0.9rem;
  margin-bottom: 6px;
  color: var(--text);
}

.aviso-box {
  background: #fff3e0;
  border-left: 4px solid #ff9800;
  padding: 16px;
  border-radius: 8px;
}

.aviso-box h4 {
  margin: 0 0 8px;
  font-size: 1rem;
}

.aviso-box ul {
  margin: 0;
  padding-left: 20px;
}

.aviso-box li {
  font-size: 0.9rem;
  margin-bottom: 4px;
}

/* Listas Incluso/Não Incluso */
.lista-incluso, .lista-nao-incluso {
  list-style: none;
  padding: 0;
  margin: 0;
}

.lista-incluso li, .lista-nao-incluso li {
  font-size: 0.8rem;
  padding: 4px 0;
  padding-left: 18px;
  position: relative;
}

.lista-incluso li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--pri);
  font-weight: bold;
}

.lista-nao-incluso li::before {
  content: "✕";
  position: absolute;
  left: 0;
  color: #d32f2f;
  font-weight: bold;
}

.card-nao-incluso {
  border: 1px solid #ffcdd2;
  background: #fff5f5;
}

/* Convênios */
.convenio-obs {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: 16px;
}

/* Currículo Box */
.curriculo-box {
  background: white;
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  box-shadow: var(--shadow-md);
  max-width: 500px;
  margin: 0 auto;
}

.email-destaque, .telefone-destaque {
  display: block;
  font-size: 1.3rem;
  color: var(--pri);
  font-weight: 700;
  margin: 12px 0;
}

.curriculo-obs {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-top: 16px;
}

/* Ouvidoria */
.ouvidoria-contato {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 600px;
  margin: 0 auto;
}

.contato-box {
  background: white;
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.contato-box h3 {
  margin-bottom: 8px;
}

.contato-box p {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-top: 8px;
}

/* FAQ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  border-radius: 10px;
  margin-bottom: 10px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.faq-item summary {
  padding: 16px;
  font-weight: 600;
  cursor: pointer;
  font-size: 0.95rem;
  color: var(--text);
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

/* Removido - usando span.faq-icon no HTML */

.faq-item p {
  padding: 0 16px 16px;
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
}


/* ============================================
   CORREÇÕES - Ícones e Imagens
   ============================================ */

/* Corrigir ícone gigante nas páginas internas */
.section-icon,
.section-head .section-icon {
  width: 56px !important;
  height: 56px !important;
  max-width: 56px !important;
  max-height: 56px !important;
  margin: 0 auto 12px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: var(--pri-soft) !important;
  border-radius: 50% !important;
  padding: 12px !important;
}

.section-icon svg,
.icon-badge {
  width: 28px !important;
  height: 28px !important;
  max-width: 28px !important;
  max-height: 28px !important;
  fill: var(--pri) !important;
  color: var(--pri) !important;
}

/* Centralizar imagens na página inicial */
.hero-image,
.hero-image-inner {
  margin: 0 auto;
  display: block;
}

.hero-image-inner img {
  margin: 0 auto;
  display: block;
  width: 100%;
  max-width: 100%;
  object-position: center center;
}

/* Corrigir SVGs grandes em seções */
.section-head svg,
.equipe-grid svg,
section svg:not(.btn svg):not(.float-btn svg):not(.header-whatsapp svg) {
  max-width: 64px;
  max-height: 64px;
}

/* Ícones dentro de cards devem ser menores */
.card svg,
.info-card svg,
.diferencial-card svg {
  width: 32px;
  height: 32px;
  max-width: 32px;
  max-height: 32px;
}


/* ============================================
   BOTÕES FLUTUANTES - Páginas Internas
   ============================================ */
.phone-float, .whatsapp-float {
  position: fixed;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  color: white;
  box-shadow: var(--shadow-lg);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  width: 56px;
  height: 56px;
}

.phone-float {
  bottom: 80px;
  right: var(--space-md);
  background: var(--phone);
}

.whatsapp-float {
  bottom: var(--space-md);
  right: var(--space-md);
  background: var(--whatsapp);
  animation: pulse-whatsapp 2s infinite;
}

.phone-float svg, .whatsapp-float svg {
  width: 28px;
  height: 28px;
  fill: white;
}

.phone-float:hover, .whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}

@media (min-width: 768px) {
  .phone-float, .whatsapp-float {
    right: var(--space-lg);
    width: 64px;
    height: 64px;
  }
  
  .phone-float {
    bottom: 100px;
  }
  
  .whatsapp-float {
    bottom: var(--space-lg);
  }
  
  .phone-float svg, .whatsapp-float svg {
    width: 32px;
    height: 32px;
  }
}

/* ============================================
   INCLUSO/NÃO INCLUSO - Largura Desktop
   ============================================ */
@media (min-width: 992px) {
  .incluso-detalhado,
  .nao-incluso-detalhado {
    max-width: 1000px;
    margin: 0 auto;
  }
  
  /* CTA "Precisa de ajuda" - largura controlada */
  .estrutura-cta,
  .cta-section,
  .section .btn-primary {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* ============================================
   ÍCONES DAS SEÇÕES - Adequados por página
   ============================================ */
.section-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto var(--space-md);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--pri-soft);
  border-radius: var(--radius-full);
  color: var(--pri);
}

.section-icon svg,
.section-icon .icon-badge {
  width: 24px;
  height: 24px;
}

/* Ícone específico para estrutura - prédio */
.icon-estrutura {
  width: 24px;
  height: 24px;
}



/* =====================================================
   CORREÇÕES MOBILE - HERO IMAGE E HEADER/FOOTER
   ===================================================== */

@media (max-width: 768px) {
  .hero-image-inner {
    width: 100% !important;
    max-width: 100% !important;
    min-height: 300px;        /* teste 280–320px até sumir a barra */
    /* max-height: 430px;  <- remova esta linha */
    border-radius: var(--radius-md) !important;
    margin: 0 auto !important;
    overflow: hidden !important;
  }

  .hero-image-inner img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center center !important;
    display: block !important;
  }
}


  .hero-image-inner img {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    object-fit: cover !important;
    object-position: center center !important;
    display: block !important;
  }
}

/* Header mobile - compacto e bem formatado */
@media (max-width: 768px) {
  header .topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    gap: 8px;
  }
  
  header .brand {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    flex-shrink: 0;
  }
  
  header .brand .logo-ring {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--pri);
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
  }
  
  header .brand .logo-ring img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  
  header .brand-text h1 {
    font-size: 1.1rem !important;
    margin: 0 !important;
    color: var(--pri) !important;
    font-weight: 800 !important;
    line-height: 1.1 !important;
  }
  
  header .brand-text span {
    font-size: 0.7rem !important;
    color: var(--muted) !important;
    display: block !important;
  }
  
  header .actions {
    display: flex;
    align-items: center;
    gap: 8px;
  }
  
  header .actions .address {
    display: none !important;
  }
  
  header .btn-whatsapp.header-whatsapp {
    display: flex !important;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    font-size: 0.8rem;
    border-radius: 20px;
    background: var(--pri);
    color: #fff;
    text-decoration: none;
    white-space: nowrap;
  }
  
  header .btn-whatsapp.header-whatsapp svg {
    width: 16px;
    height: 16px;
    fill: #fff;
  }
  
  header .btn-whatsapp.header-whatsapp .btn-text {
    display: inline !important;
  }
  
  header .mobile-menu-btn {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
    background: transparent;
    border: 2px solid var(--pri);
    border-radius: 8px;
    color: var(--pri);
    cursor: pointer;
  }
}

/* Footer mobile - layout em coluna */
@media (max-width: 768px) {
  .site-footer {
    padding: 40px 0 20px;
  }
  
  .site-footer .footer-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 30px;
  }
  
  .site-footer .footer-brand-box {
    text-align: center;
  }
  
  .site-footer .footer-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 16px;
  }
  
  .site-footer .footer-logo-ring {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--pri);
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
  }
  
  .site-footer .footer-logo-ring img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  
  .site-footer .footer-brand-text {
    text-align: left;
  }
  
  .site-footer .footer-brand-name {
    display: block;
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--pri);
  }
  
  .site-footer .footer-brand-sub {
    display: block;
    font-size: 0.85rem;
    color: var(--muted);
  }
  
  .site-footer .footer-text {
    font-size: 0.9rem;
    color: var(--text);
    line-height: 1.5;
    margin-bottom: 20px;
  }
  
  .site-footer .footer-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .site-footer .footer-actions .btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.95rem;
  }
  
  .site-footer .footer-actions .btn-primary {
    background: var(--pri);
    color: #fff;
  }
  
  .site-footer .footer-actions .btn-whatsapp {
    background: #25D366;
    color: #fff;
  }
  
  .site-footer .footer-actions .btn svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
  }
  
  .site-footer .footer-contact-box {
    text-align: center;
  }
  
  .site-footer .footer-title {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--pri);
    margin-bottom: 8px;
    font-weight: 700;
  }
  
  .site-footer .footer-info {
    font-size: 0.95rem;
    color: var(--text);
    line-height: 1.6;
    margin-bottom: 20px;
  }
  
  .site-footer .footer-info a {
    color: var(--pri);
    text-decoration: none;
  }
  
  .site-footer .footer-map-block {
    text-align: center;
  }
  
  .site-footer .footer-map-card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  }
  
  .site-footer .footer-map-card iframe {
    width: 100%;
    height: 200px;
    border: none;
  }
  
  .site-footer .footer-bottom {
    text-align: center;
    padding-top: 20px;
    margin-top: 30px;
    border-top: 1px solid var(--border);
    font-size: 0.8rem;
    color: var(--muted);
    line-height: 1.6;
  }
}

/* Botões flutuantes - garantir que apareçam corretamente */
.floating-buttons {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 9999;
}

.float-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  transition: transform 0.2s, box-shadow 0.2s;
}

.float-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.float-btn svg {
  width: 28px;
  height: 28px;
  fill: #fff;
}

.float-phone {
  background: var(--pri);
}

.float-whatsapp {
  background: #25D366;
}

@media (max-width: 768px) {
  .floating-buttons {
    bottom: 16px;
    right: 16px;
    gap: 10px;
  }
  
  .float-btn {
    width: 50px;
    height: 50px;
  }
  
  .float-btn svg {
    width: 24px;
    height: 24px;
  }
}


/* ============================================
   PÁGINA PROFISSIONAIS - REDESIGN
   ============================================ */

/* Destaques (RT) - Cards maiores e mais destacados */
.equipe-featured {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 40px;
}

@media (min-width: 768px) {
  .equipe-featured {
    grid-template-columns: repeat(3, 1fr);
  }
}

.pro-card-featured {
  background: linear-gradient(135deg, var(--pri) 0%, var(--pri-dark) 100%);
  border-radius: 16px;
  padding: 24px;
  color: white;
  box-shadow: 0 8px 24px rgba(20, 92, 66, 0.25);
}

.pro-card-featured .pro-photo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(255,255,255,0.3);
  margin-bottom: 16px;
}

.pro-card-featured .pro-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pro-card-featured .pro-name {
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.pro-card-featured .pro-role {
  font-size: 0.85rem;
  opacity: 0.9;
  margin-bottom: 12px;
}

.pro-card-featured .pro-body p {
  font-size: 0.9rem;
  line-height: 1.5;
  opacity: 0.95;
}

/* Layout de colunas para equipe */
.equipe-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

@media (min-width: 992px) {
  .equipe-layout {
    grid-template-columns: 2fr 1fr;
  }
}

.equipe-group-title {
  font-size: 1.3rem;
  color: var(--pri);
  margin-bottom: 8px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--pri-soft);
}

.equipe-group-sub {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 24px;
}

.equipe-subtitle {
  font-size: 1rem;
  color: var(--text);
  margin: 24px 0 16px;
  padding-left: 12px;
  border-left: 3px solid var(--pri);
}

/* Cards de profissionais regulares */
.pro-card {
  background: white;
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  border: 1px solid var(--border);
  transition: all 0.2s;
}

.pro-card:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  border-color: var(--pri-light);
}

.pro-inner {
  display: flex;
  flex-direction: column;
}

.pro-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.pro-card .pro-photo {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid var(--pri-soft);
}

.pro-card .pro-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pro-info {
  flex: 1;
}

.pro-card .pro-name {
  font-size: 0.95rem;
  color: var(--text);
  margin-bottom: 2px;
}

.pro-card .pro-role {
  font-size: 0.8rem;
  color: var(--pri);
}

.pro-body p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.5;
  margin: 0;
}

/* Cards compactos para equipe de apoio */
.equipe-col:last-child .pro-card {
  padding: 12px;
}

.equipe-col:last-child .pro-photo {
  width: 44px;
  height: 44px;
}

.equipe-col:last-child .pro-name {
  font-size: 0.9rem;
}

.equipe-col:last-child .pro-body p {
  font-size: 0.8rem;
}

/* Mobile - cards mais compactos */
@media (max-width: 767px) {
  .pro-card-featured {
    padding: 20px;
  }
  
  .pro-card-featured .pro-photo {
    width: 64px;
    height: 64px;
  }
  
  .pro-card {
    padding: 12px;
  }
  
  .pro-card .pro-photo {
    width: 48px;
    height: 48px;
  }
  
  .pro-card .pro-name {
    font-size: 0.9rem;
  }
  
  .pro-body p {
    font-size: 0.8rem;
  }
}

/* =====================================================
   CORREÇÕES FINAIS - AJUSTES FINOS
   ===================================================== */

/* Cards diferenciais desktop - layout em grid com cards visíveis */
@media (min-width: 768px) {
  .diferenciais-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: var(--space-md) !important;
  }
  
  .diferencial-card {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    padding: var(--space-lg) !important;
    background: var(--bg) !important;
    border: 1px solid var(--border) !important;
    border-radius: var(--radius-md) !important;
    min-height: 150px !important;
  }
  
  .diferencial-icon {
    width: 56px !important;
    height: 56px !important;
    font-size: 1.8rem !important;
    margin-bottom: var(--space-sm) !important;
    background: var(--pri-soft) !important;
    border-radius: var(--radius-sm) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
  
  .diferencial-text h3 {
    font-size: 1rem !important;
    font-weight: 700 !important;
    margin-bottom: 4px !important;
  }
  
  .diferencial-text p {
    font-size: 0.875rem !important;
    line-height: 1.4 !important;
  }
}

/* Convênios desktop - cards maiores com imagens e fontes maiores */
@media (min-width: 768px) {
  .convenio-grid {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: var(--space-md) !important;
  }
  
  .convenio-item {
    padding: var(--space-lg) !important;
    min-height: 140px !important;
  }
  
  .convenio-item img {
    max-height: 70px !important;
    width: auto !important;
    max-width: 140px !important;
  }
  
  .convenio-item span {
    font-size: 1rem !important;
    font-weight: 600 !important;
    margin-top: var(--space-xs) !important;
  }
}

/* Incluso/Não Incluso - largura ajustada no desktop */
@media (min-width: 768px) {
  .incluso-detalhado,
  .nao-incluso-detalhado {
    max-width: 100% !important;
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: var(--space-md) !important;
  }
  
  .incluso-card,
  .nao-incluso-card {
    max-width: none !important;
    width: 100% !important;
  }
}

/* Ícones melhores para Consultas e Atividades (substituir X) */
.incluso-card:nth-child(2) .incluso-icon::before {
  content: "🩺" !important;
}

.incluso-card:nth-child(3) .incluso-icon::before {
  content: "🎯" !important;
}



/* CORREÇÃO FINAL - Hero mobile centralizado */
@media (max-width: 768px) {
  .hero {
    padding: 0 !important;
  }
  
  .hero .container {
    padding: 0 !important;
    max-width: 100% !important;
  }
  
  .hero-image {
    width: 100vw !important;
    max-width: 100vw !important;
    margin-left: calc(-50vw + 50%) !important;
    margin-right: calc(-50vw + 50%) !important;
  }
  
  .hero-image-inner {
    width: 100% !important;
    border-radius: 0 !important;
    border-left: none !important;
    border-right: none !important;
  }
  
  .hero-image-inner img {
    width: 100% !important;
    height: auto !important;
    object-fit: cover !important;
    object-position: center center !important;
  }
}


/* =====================================================
   DIFERENCIAIS - Mobile: 2 colunas x 2 linhas
   ===================================================== */
.diferenciais-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.diferencial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 12px 8px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  min-height: auto;
}

.diferencial-icon {
  width: 36px;
  height: 36px;
  font-size: 1.2rem;
  margin-bottom: 6px;
}

.diferencial-text h3 {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 2px;
  line-height: 1.2;
}

.diferencial-text p {
  font-size: 0.68rem;
  color: var(--text-light);
  line-height: 1.3;
  margin: 0;
}
