/* Importação do Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,100..900;1,9..144,100..900&family=Inter:wght@300;400;500;600;700;800&display=swap');

/* Identidade Visual do Acreditar Centro de Tratamento */
:root {
  /* Cores Base - Extraídas da Logo do Acreditar */
  --primary: #1e88e5; /* Azul Royal */
  --primary-foreground: #ffffff;
  --foreground: #0c2340; /* Azul Marinho Escuro */
  --background: #f6f9fc; /* Branco Gelo Moderno */
  
  --card: #ffffff;
  --card-foreground: #0c2340;
  
  --secondary: #eef4fb; /* Azul Gelo Suave */
  --secondary-foreground: #0a2540;
  
  --accent: #dfb15b; /* Champanhe/Dourado */
  --accent-foreground: #0c2340;
  
  --muted: #f1f5f9;
  --muted-foreground: #64748b;
  
  --border: #cbd5e1;
  --input: #cbd5e1;
  --ring: #1e88e5;
  
  --whatsapp: #25d366;
  --whatsapp-foreground: #ffffff;
}

/* Configurações Globais */
html {
  font-family: 'Inter', sans-serif;
  scroll-behavior: smooth;
  color: var(--foreground);
  background-color: var(--background);
}

body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

/* Tipografias Personalizadas */
.font-heading {
  font-family: 'Fraunces', serif;
}

/* Animação do WhatsApp */
@keyframes whatsapp-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
  }
  70% {
    box-shadow: 0 0 0 12px transparent;
  }
  100% {
    box-shadow: 0 0 0 0 transparent;
  }
}

.animate-whatsapp-pulse {
  animation: whatsapp-pulse 2s infinite;
}

/* Transições Suaves */
.transition-all-300 {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.transition-opacity-1000 {
  transition: opacity 1s ease-in-out;
}

/* Esconder barras de rolagem nos modais */
.no-scrollbar::-webkit-scrollbar {
  display: none;
}
.no-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
