/**
 * =============================================
 * LESORO Vet - Design System & Theme
 * Veterinaria Digital con IA
 * =============================================
 */

/* ============================================= */
/* CSS VARIABLES - Paleta de Colores del Logo   */
/* ============================================= */
:root {
  /* Colores Principales */
  --lesoro-primary: #00A5A5;
  --lesoro-primary-dark: #008585;
  --lesoro-primary-light: #4DC9C9;
  --lesoro-primary-lighter: #E0F7F7;

  /* Colores Secundarios (marrón/dorado del logo) */
  --lesoro-secondary: #C4883A;
  --lesoro-secondary-dark: #A06A28;
  --lesoro-secondary-light: #D9A55C;
  --lesoro-secondary-lighter: #FDF5EB;

  /* Colores Neutros */
  --lesoro-dark: #1A1A2E;
  --lesoro-gray-900: #1F2937;
  --lesoro-gray-800: #374151;
  --lesoro-gray-700: #4B5563;
  --lesoro-gray-600: #6B7280;
  --lesoro-gray-500: #9CA3AF;
  --lesoro-gray-400: #D1D5DB;
  --lesoro-gray-300: #E5E7EB;
  --lesoro-gray-200: #F3F4F6;
  --lesoro-gray-100: #F9FAFB;
  --lesoro-white: #FFFFFF;

  /* Estados */
  --lesoro-success: #10B981;
  --lesoro-success-light: #D1FAE5;
  --lesoro-warning: #F59E0B;
  --lesoro-warning-light: #FEF3C7;
  --lesoro-error: #EF4444;
  --lesoro-error-light: #FEE2E2;
  --lesoro-info: #3B82F6;
  --lesoro-info-light: #DBEAFE;

  /* Gradientes */
  --lesoro-gradient-primary: linear-gradient(135deg, #00A5A5 0%, #008585 100%);
  --lesoro-gradient-secondary: linear-gradient(135deg, #C4883A 0%, #A06A28 100%);
  --lesoro-gradient-hero: linear-gradient(135deg, #00A5A5 0%, #00C9C9 50%, #00A5A5 100%);
  --lesoro-gradient-warm: linear-gradient(135deg, #C4883A 0%, #D9A55C 100%);
  --lesoro-gradient-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);

  /* Sombras */
  --lesoro-shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.05);
  --lesoro-shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
  --lesoro-shadow-md: 0 4px 12px rgba(0, 0, 0, 0.15);
  --lesoro-shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.2);
  --lesoro-shadow-xl: 0 12px 48px rgba(0, 0, 0, 0.25);
  --lesoro-shadow-primary: 0 4px 14px rgba(0, 165, 165, 0.4);
  --lesoro-shadow-secondary: 0 4px 14px rgba(196, 136, 58, 0.4);

  /* Border Radius */
  --lesoro-radius-sm: 6px;
  --lesoro-radius-md: 10px;
  --lesoro-radius-lg: 16px;
  --lesoro-radius-xl: 24px;
  --lesoro-radius-2xl: 32px;
  --lesoro-radius-full: 9999px;

  /* Tipografía */
  --lesoro-font-primary: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --lesoro-font-secondary: 'Nunito', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Tamaños de fuente */
  --lesoro-text-xs: 0.75rem;
  /* 12px */
  --lesoro-text-sm: 0.875rem;
  /* 14px */
  --lesoro-text-base: 1rem;
  /* 16px */
  --lesoro-text-lg: 1.125rem;
  /* 18px */
  --lesoro-text-xl: 1.25rem;
  /* 20px */
  --lesoro-text-2xl: 1.5rem;
  /* 24px */
  --lesoro-text-3xl: 1.875rem;
  /* 30px */
  --lesoro-text-4xl: 2.25rem;
  /* 36px */
  --lesoro-text-5xl: 3rem;
  /* 48px */

  /* Espaciado */
  --lesoro-space-1: 0.25rem;
  --lesoro-space-2: 0.5rem;
  --lesoro-space-3: 0.75rem;
  --lesoro-space-4: 1rem;
  --lesoro-space-5: 1.25rem;
  --lesoro-space-6: 1.5rem;
  --lesoro-space-8: 2rem;
  --lesoro-space-10: 2.5rem;
  --lesoro-space-12: 3rem;
  --lesoro-space-16: 4rem;
  --lesoro-space-20: 5rem;

  /* Transiciones */
  --lesoro-transition-fast: 150ms ease;
  --lesoro-transition-base: 250ms ease;
  --lesoro-transition-slow: 350ms ease;

  /* Z-index */
  --lesoro-z-dropdown: 1000;
  --lesoro-z-sticky: 1020;
  --lesoro-z-fixed: 1030;
  --lesoro-z-modal-backdrop: 1040;
  --lesoro-z-modal: 1050;
  --lesoro-z-popover: 1060;
  --lesoro-z-tooltip: 1070;

  /* ============================================= */
  /* ALIAS VARIABLES (for landing page compatibility) */
  /* ============================================= */
  --primary: var(--lesoro-primary);
  --primary-dark: var(--lesoro-primary-dark);
  --primary-light: var(--lesoro-primary-lighter);
  --secondary: var(--lesoro-secondary);
  --secondary-dark: var(--lesoro-secondary-dark);
  --secondary-light: var(--lesoro-secondary-light);
  --dark: var(--lesoro-dark);
  --text-secondary: var(--lesoro-gray-600);
  --bg-primary: var(--lesoro-gray-100);
  --bg-secondary: var(--lesoro-gray-200);
}

/* ============================================= */
/* RESET & BASE                                  */
/* ============================================= */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--lesoro-font-primary);
  font-size: var(--lesoro-text-base);
  line-height: 1.6;
  color: var(--lesoro-gray-800);
  background-color: var(--lesoro-gray-100);
}

/* ============================================= */
/* TYPOGRAPHY                                    */
/* ============================================= */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--lesoro-font-primary);
  font-weight: 700;
  line-height: 1.3;
  color: var(--lesoro-dark);
}

h1 {
  font-size: var(--lesoro-text-4xl);
}

h2 {
  font-size: var(--lesoro-text-3xl);
}

h3 {
  font-size: var(--lesoro-text-2xl);
}

h4 {
  font-size: var(--lesoro-text-xl);
}

h5 {
  font-size: var(--lesoro-text-lg);
}

h6 {
  font-size: var(--lesoro-text-base);
}

p {
  margin-bottom: var(--lesoro-space-4);
  color: var(--lesoro-gray-700);
}

a {
  color: var(--lesoro-primary);
  text-decoration: none;
  transition: color var(--lesoro-transition-fast);
}

a:hover {
  color: var(--lesoro-primary-dark);
}

/* ============================================= */
/* BUTTONS                                       */
/* ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--lesoro-space-2);
  padding: var(--lesoro-space-3) var(--lesoro-space-6);
  font-family: var(--lesoro-font-primary);
  font-size: var(--lesoro-text-base);
  font-weight: 600;
  line-height: 1.5;
  text-align: center;
  text-decoration: none;
  border: 2px solid transparent;
  border-radius: var(--lesoro-radius-lg);
  cursor: pointer;
  transition: all var(--lesoro-transition-base);
  white-space: nowrap;
}

.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Primary Button */
.btn-primary {
  background: var(--lesoro-gradient-primary);
  color: var(--lesoro-white);
  box-shadow: var(--lesoro-shadow-primary);
}

.btn-primary:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 165, 165, 0.5);
}

.btn-primary:active {
  transform: translateY(0);
}

/* Secondary Button */
.btn-secondary {
  background: var(--lesoro-gradient-secondary);
  color: var(--lesoro-white);
  box-shadow: var(--lesoro-shadow-secondary);
}

.btn-secondary:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(196, 136, 58, 0.5);
}

/* Outline Button */
.btn-outline {
  background: transparent;
  color: var(--lesoro-primary);
  border-color: var(--lesoro-primary);
}

.btn-outline:hover:not(:disabled) {
  background: var(--lesoro-primary);
  color: var(--lesoro-white);
}

/* Ghost Button */
.btn-ghost {
  background: transparent;
  color: var(--lesoro-gray-700);
}

.btn-ghost:hover:not(:disabled) {
  background: var(--lesoro-gray-200);
}

/* Button Sizes */
.btn-sm {
  padding: var(--lesoro-space-2) var(--lesoro-space-4);
  font-size: var(--lesoro-text-sm);
  border-radius: var(--lesoro-radius-md);
}

.btn-lg {
  padding: var(--lesoro-space-4) var(--lesoro-space-8);
  font-size: var(--lesoro-text-lg);
  border-radius: var(--lesoro-radius-xl);
}

.btn-block {
  width: 100%;
}

/* ============================================= */
/* FORMS                                         */
/* ============================================= */
.form-group {
  margin-bottom: var(--lesoro-space-5);
}

.form-label {
  display: block;
  margin-bottom: var(--lesoro-space-2);
  font-size: var(--lesoro-text-sm);
  font-weight: 600;
  color: var(--lesoro-gray-700);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: var(--lesoro-space-3) var(--lesoro-space-4);
  font-family: var(--lesoro-font-primary);
  font-size: var(--lesoro-text-base);
  color: var(--lesoro-gray-800);
  background-color: var(--lesoro-white);
  border: 2px solid var(--lesoro-gray-300);
  border-radius: var(--lesoro-radius-md);
  transition: all var(--lesoro-transition-fast);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--lesoro-primary);
  box-shadow: 0 0 0 3px rgba(0, 165, 165, 0.15);
}

.form-input::placeholder {
  color: var(--lesoro-gray-500);
}

.form-input.is-error {
  border-color: var(--lesoro-error);
}

.form-input.is-success {
  border-color: var(--lesoro-success);
}

.form-error {
  margin-top: var(--lesoro-space-1);
  font-size: var(--lesoro-text-sm);
  color: var(--lesoro-error);
}

.form-hint {
  margin-top: var(--lesoro-space-1);
  font-size: var(--lesoro-text-sm);
  color: var(--lesoro-gray-600);
}

/* ============================================= */
/* CARDS                                         */
/* ============================================= */
.card {
  background: var(--lesoro-white);
  border-radius: var(--lesoro-radius-lg);
  box-shadow: var(--lesoro-shadow-sm);
  overflow: hidden;
  transition: all var(--lesoro-transition-base);
}

.card:hover {
  box-shadow: var(--lesoro-shadow-md);
  transform: translateY(-2px);
}

.card-header {
  padding: var(--lesoro-space-5) var(--lesoro-space-6);
  border-bottom: 1px solid var(--lesoro-gray-200);
}

.card-body {
  padding: var(--lesoro-space-6);
}

.card-footer {
  padding: var(--lesoro-space-4) var(--lesoro-space-6);
  background: var(--lesoro-gray-100);
  border-top: 1px solid var(--lesoro-gray-200);
}

/* ============================================= */
/* PET CARDS (Especial para mascotas)            */
/* ============================================= */
.pet-card {
  background: var(--lesoro-white);
  border-radius: var(--lesoro-radius-xl);
  padding: var(--lesoro-space-6);
  box-shadow: var(--lesoro-shadow-sm);
  border: 2px solid transparent;
  transition: all var(--lesoro-transition-base);
  cursor: pointer;
}

.pet-card:hover {
  border-color: var(--lesoro-primary-light);
  box-shadow: var(--lesoro-shadow-md);
  transform: translateY(-4px);
}

.pet-card.active {
  border-color: var(--lesoro-primary);
  background: var(--lesoro-primary-lighter);
}

.pet-avatar {
  width: 80px;
  height: 80px;
  border-radius: var(--lesoro-radius-full);
  object-fit: cover;
  border: 3px solid var(--lesoro-primary-light);
}

.pet-avatar-placeholder {
  width: 80px;
  height: 80px;
  border-radius: var(--lesoro-radius-full);
  background: var(--lesoro-gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--lesoro-white);
}

.pet-species-icon {
  font-size: 1.5rem;
}

.pet-species-perro::before {
  content: '🐕';
}

.pet-species-gato::before {
  content: '🐱';
}

.pet-species-ave::before {
  content: '🐦';
}

.pet-species-reptil::before {
  content: '🦎';
}

.pet-species-roedor::before {
  content: '🐹';
}

.pet-species-pez::before {
  content: '🐠';
}

.pet-species-otro::before {
  content: '🐾';
}

/* ============================================= */
/* BADGES                                        */
/* ============================================= */
.badge {
  display: inline-flex;
  align-items: center;
  padding: var(--lesoro-space-1) var(--lesoro-space-3);
  font-size: var(--lesoro-text-xs);
  font-weight: 600;
  border-radius: var(--lesoro-radius-full);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.badge-primary {
  background: var(--lesoro-primary-lighter);
  color: var(--lesoro-primary-dark);
}

.badge-secondary {
  background: var(--lesoro-secondary-lighter);
  color: var(--lesoro-secondary-dark);
}

.badge-success {
  background: var(--lesoro-success-light);
  color: var(--lesoro-success);
}

.badge-warning {
  background: var(--lesoro-warning-light);
  color: var(--lesoro-warning);
}

.badge-error {
  background: var(--lesoro-error-light);
  color: var(--lesoro-error);
}

/* ============================================= */
/* ALERTS                                        */
/* ============================================= */
.alert {
  padding: var(--lesoro-space-4) var(--lesoro-space-5);
  border-radius: var(--lesoro-radius-md);
  margin-bottom: var(--lesoro-space-4);
  display: flex;
  align-items: flex-start;
  gap: var(--lesoro-space-3);
}

.alert-icon {
  font-size: 1.25rem;
  flex-shrink: 0;
}

.alert-success {
  background: var(--lesoro-success-light);
  color: var(--lesoro-success);
  border-left: 4px solid var(--lesoro-success);
}

.alert-warning {
  background: var(--lesoro-warning-light);
  color: #92400E;
  border-left: 4px solid var(--lesoro-warning);
}

.alert-error {
  background: var(--lesoro-error-light);
  color: var(--lesoro-error);
  border-left: 4px solid var(--lesoro-error);
}

.alert-info {
  background: var(--lesoro-info-light);
  color: #1E40AF;
  border-left: 4px solid var(--lesoro-info);
}

/* ============================================= */
/* NAVBAR                                        */
/* ============================================= */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 70px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--lesoro-shadow-sm);
  z-index: var(--lesoro-z-fixed);
  display: flex;
  align-items: center;
  padding: 0 var(--lesoro-space-6);
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: var(--lesoro-space-3);
  font-weight: 700;
  font-size: var(--lesoro-text-xl);
  color: var(--lesoro-primary);
}

.navbar-brand img {
  height: 45px;
  width: auto;
}

.navbar-nav {
  display: flex;
  align-items: center;
  gap: var(--lesoro-space-6);
  margin-left: auto;
  list-style: none;
}

.nav-link {
  font-weight: 500;
  color: var(--lesoro-gray-700);
  padding: var(--lesoro-space-2) var(--lesoro-space-4);
  border-radius: var(--lesoro-radius-md);
  transition: all var(--lesoro-transition-fast);
}

.nav-link:hover,
.nav-link.active {
  color: var(--lesoro-primary);
  background: var(--lesoro-primary-lighter);
}

/* ============================================= */
/* HERO SECTION                                  */
/* ============================================= */
.hero {
  min-height: 100vh;
  padding-top: 70px;
  background: var(--lesoro-gradient-hero);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 150px;
  background: linear-gradient(to top, var(--lesoro-gray-100), transparent);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
  color: var(--lesoro-white);
}

.hero-title {
  font-size: var(--lesoro-text-5xl);
  color: var(--lesoro-white);
  margin-bottom: var(--lesoro-space-4);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
  font-size: var(--lesoro-text-xl);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--lesoro-space-8);
}

/* ============================================= */
/* CHAT VETERINARIO                              */
/* ============================================= */
.chat-container {
  max-width: 900px;
  margin: 0 auto;
  height: 100vh;
  display: flex;
  flex-direction: column;
  /* padding-top eliminado - el header del chat ya maneja el espacio */
}

.chat-header {
  padding: var(--lesoro-space-4) var(--lesoro-space-6);
  background: var(--lesoro-white);
  border-bottom: 1px solid var(--lesoro-gray-200);
  display: flex;
  align-items: center;
  gap: var(--lesoro-space-4);
}

.chat-pet-selector {
  display: flex;
  align-items: center;
  gap: var(--lesoro-space-3);
  padding: var(--lesoro-space-2) var(--lesoro-space-4);
  background: var(--lesoro-gray-100);
  border-radius: var(--lesoro-radius-full);
  cursor: pointer;
  transition: all var(--lesoro-transition-fast);
}

.chat-pet-selector:hover {
  background: var(--lesoro-primary-lighter);
}

.chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: var(--lesoro-space-6);
  background: var(--lesoro-gray-100);
}

.chat-message {
  max-width: 80%;
  margin-bottom: var(--lesoro-space-4);
  padding: var(--lesoro-space-4) var(--lesoro-space-5);
  border-radius: var(--lesoro-radius-lg);
  animation: messageSlide 0.3s ease;
}

@keyframes messageSlide {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.chat-message.user {
  margin-left: auto;
  background: var(--lesoro-gradient-primary);
  color: var(--lesoro-white);
  border-bottom-right-radius: var(--lesoro-radius-sm);
}

.chat-message.assistant {
  background: var(--lesoro-white);
  color: var(--lesoro-gray-800);
  border-bottom-left-radius: var(--lesoro-radius-sm);
  box-shadow: var(--lesoro-shadow-xs);
}

.chat-input-container {
  padding: var(--lesoro-space-4) var(--lesoro-space-6);
  background: var(--lesoro-white);
  border-top: 1px solid var(--lesoro-gray-200);
}

.chat-input-wrapper {
  display: flex;
  align-items: center;
  gap: var(--lesoro-space-3);
  padding: var(--lesoro-space-3);
  background: var(--lesoro-gray-100);
  border-radius: var(--lesoro-radius-xl);
  border: 2px solid transparent;
  transition: all var(--lesoro-transition-fast);
}

.chat-input-wrapper:focus-within {
  background: var(--lesoro-white);
  border-color: var(--lesoro-primary);
}

.chat-input {
  flex: 1;
  border: none;
  background: transparent;
  font-size: var(--lesoro-text-base);
  padding: var(--lesoro-space-2);
  outline: none;
}

.chat-send-btn {
  width: 44px;
  height: 44px;
  border-radius: var(--lesoro-radius-full);
  background: var(--lesoro-gradient-primary);
  color: var(--lesoro-white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--lesoro-transition-fast);
}

.chat-send-btn:hover {
  transform: scale(1.05);
  box-shadow: var(--lesoro-shadow-primary);
}

.chat-limit-indicator {
  text-align: center;
  font-size: var(--lesoro-text-sm);
  color: var(--lesoro-gray-600);
  padding: var(--lesoro-space-2);
}

.chat-limit-indicator.warning {
  color: var(--lesoro-warning);
}

.chat-limit-indicator.danger {
  color: var(--lesoro-error);
}

/* ============================================= */
/* FOOTER                                        */
/* ============================================= */
.footer {
  background: var(--lesoro-dark);
  color: var(--lesoro-gray-400);
  padding: var(--lesoro-space-16) var(--lesoro-space-6) var(--lesoro-space-8);
}

.footer-brand {
  color: var(--lesoro-white);
  font-size: var(--lesoro-text-2xl);
  font-weight: 700;
  margin-bottom: var(--lesoro-space-4);
}

.footer-links {
  list-style: none;
}

.footer-links a {
  color: var(--lesoro-gray-400);
  transition: color var(--lesoro-transition-fast);
}

.footer-links a:hover {
  color: var(--lesoro-primary-light);
}

.footer-social {
  display: flex;
  gap: var(--lesoro-space-4);
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: var(--lesoro-radius-full);
  background: var(--lesoro-gray-800);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--lesoro-gray-400);
  transition: all var(--lesoro-transition-fast);
}

.footer-social a:hover {
  background: var(--lesoro-primary);
  color: var(--lesoro-white);
}

/* ============================================= */
/* UTILITIES                                     */
/* ============================================= */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--lesoro-space-6);
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.text-primary {
  color: var(--lesoro-primary);
}

.text-secondary {
  color: var(--lesoro-secondary);
}

.text-success {
  color: var(--lesoro-success);
}

.text-warning {
  color: var(--lesoro-warning);
}

.text-error {
  color: var(--lesoro-error);
}

.text-muted {
  color: var(--lesoro-gray-600);
}

.bg-primary {
  background-color: var(--lesoro-primary);
}

.bg-secondary {
  background-color: var(--lesoro-secondary);
}

.bg-white {
  background-color: var(--lesoro-white);
}

.bg-light {
  background-color: var(--lesoro-gray-100);
}

.mt-4 {
  margin-top: var(--lesoro-space-4);
}

.mt-8 {
  margin-top: var(--lesoro-space-8);
}

.mb-4 {
  margin-bottom: var(--lesoro-space-4);
}

.mb-8 {
  margin-bottom: var(--lesoro-space-8);
}

.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.items-center {
  align-items: center;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.gap-2 {
  gap: var(--lesoro-space-2);
}

.gap-4 {
  gap: var(--lesoro-space-4);
}

.gap-6 {
  gap: var(--lesoro-space-6);
}

.hidden {
  display: none !important;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* ============================================= */
/* RESPONSIVE                                    */
/* ============================================= */
@media (max-width: 768px) {
  :root {
    --lesoro-text-4xl: 2rem;
    --lesoro-text-5xl: 2.5rem;
  }

  .navbar-nav {
    display: none;
    /* Hamburger menu needed */
  }

  .hero-content {
    text-align: center;
    padding: var(--lesoro-space-6);
  }

  .chat-message {
    max-width: 90%;
  }

  .container {
    padding: 0 var(--lesoro-space-4);
  }
}

/* ============================================= */
/* ANIMATIONS                                    */
/* ============================================= */
@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }
}

@keyframes bounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.animate-fade {
  animation: fadeIn 0.5s ease;
}

.animate-slide-up {
  animation: slideUp 0.5s ease;
}

.animate-pulse {
  animation: pulse 2s infinite;
}

.animate-bounce {
  animation: bounce 1s infinite;
}

/* Loading spinner */
.spinner {
  width: 40px;
  height: 40px;
  border: 3px solid var(--lesoro-gray-300);
  border-top-color: var(--lesoro-primary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}