/* ==========================================================================
   JOSÉ AQUILINO RONDÓN GONZÁLEZ - ABOGADO LITIGANTE
   Theme: Clean White Prestige & Institutional Navy (Inspired by Gonzalez Páez Abogados)
   Palette: Pure White (#ffffff) + Corporate Navy (#0f2b5c) + Warm Bronze/Gold (#b38e5d)
   Typography: Cinzel & Cormorant Garamond (Headings) + Plus Jakarta Sans (Body)
   100% Self-Contained, Zero External CDN Dependency, Fully Responsive
   ========================================================================== */

/* 1. CSS Reset & Variables */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* Surface Foundations - Clean White & Architectural Tones */
  --bg-white: #ffffff;
  --bg-surface-50: #f8fafc;
  --bg-surface-100: #f1f5f9;
  --bg-surface-200: #e2e8f0;
  --bg-surface-300: #cbd5e1;

  /* Institutional Navy / Deep Slate */
  --navy-950: #07152b;
  --navy-900: #0a1f3d;
  --navy-850: #0f2b5c;
  --navy-800: #143b7d;
  --navy-700: #1d4ed8;
  --navy-600: #2563eb;
  --navy-100: #eff6ff;

  /* Official Logo Crimson & Burgundy Palette */
  --red-logo: #9d0105;
  --red-burgundy: #5d0102;
  --red-vibrant: #c8102e;
  --red-hover: #7a0004;
  --red-50: #fef2f2;
  --red-100: #fee2e2;
  --red-200: #fecaca;
  --red-300: #fca5a5;
  --red-600: #dc2626;
  --red-700: #9d0105;
  --red-800: #7a0004;
  --red-900: #5d0102;

  /* Legacy Gold aliases mapped directly to Logo Red to guarantee zero orange */
  --gold-100: #fef2f2;
  --gold-200: #fee2e2;
  --gold-300: #fecaca;
  --gold-400: #fca5a5;
  --gold-500: #9d0105;
  --gold-600: #7a0004;
  --gold-700: #5d0102;
  --gold-800: #450102;

  /* High Readability Typography Tones */
  --text-primary: #0f172a;    /* Deep Slate / Charcoal */
  --text-secondary: #334155;  /* Balanced Slate */
  --text-muted: #64748b;      /* Subtle Slate */
  --text-light: #94a3b8;      /* Borders / Micro-captions */

  /* Borders & Shadows */
  --border-light: #e2e8f0;
  --border-gold: rgba(157, 1, 5, 0.25);
  --border-red: rgba(157, 1, 5, 0.25);
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.07), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 10px 25px -3px rgba(15, 23, 42, 0.08), 0 4px 6px -4px rgba(15, 23, 42, 0.04);
  --shadow-xl: 0 20px 35px -5px rgba(15, 23, 42, 0.1), 0 8px 10px -6px rgba(15, 23, 42, 0.04);

  /* Fonts */
  --font-serif: 'Cinzel', Georgia, serif;
  --font-cormorant: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}

html {
  scroll-behavior: smooth;
  font-family: var(--font-sans);
  background-color: var(--bg-white);
  color: var(--text-secondary);
  line-height: 1.7;
  -webkit-text-size-adjust: 100%;
}

body {
  background-color: var(--bg-white);
  color: var(--text-secondary);
  overflow-x: hidden;
  min-height: 100vh;
}

/* Global Link Reset - Prevent Default Blue Underlines */
a {
  text-decoration: none !important;
  color: inherit;
}

/* 2. Global SVG Safeguard */
svg {
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
  max-width: 100%;
  max-height: 100%;
}

.w-3\.5 { width: 0.875rem !important; }
.h-3\.5 { height: 0.875rem !important; }
.w-4 { width: 1rem !important; }
.h-4 { height: 1rem !important; }
.w-5 { width: 1.25rem !important; }
.h-5 { height: 1.25rem !important; }
.w-6 { width: 1.5rem !important; }
.h-6 { height: 1.5rem !important; }
.w-7 { width: 1.75rem !important; }
.h-7 { height: 1.75rem !important; }
.w-8 { width: 2rem !important; }
.h-8 { height: 2rem !important; }
.w-10 { width: 2.5rem !important; }
.h-10 { height: 2.5rem !important; }
.w-12 { width: 3rem !important; }
.h-12 { height: 3rem !important; }
.w-14 { width: 3.5rem !important; }
.h-14 { height: 3.5rem !important; }
.w-16 { width: 4rem !important; }
.h-16 { height: 4rem !important; }
.w-full { width: 100% !important; }
.h-full { height: 100% !important; }

/* 3. Typography & Headings */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  color: var(--text-primary);
  letter-spacing: 0.015em;
  font-weight: 700;
  line-height: 1.25;
}

.font-serif { font-family: var(--font-serif) !important; }
.font-cormorant { font-family: var(--font-cormorant) !important; }
.font-sans { font-family: var(--font-sans) !important; }
.font-mono { font-family: var(--font-mono) !important; }

/* 4. Luxury & Corporate Buttons */
.btn-red-primary,
.btn-gold-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background-color: var(--red-logo);
  color: #ffffff !important;
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.75rem 1.75rem;
  border-radius: 4px;
  border: 1px solid var(--red-burgundy);
  box-shadow: 0 4px 14px rgba(157, 1, 5, 0.25);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  text-decoration: none !important;
}

.btn-red-primary:hover,
.btn-gold-primary:hover {
  background-color: var(--red-hover);
  border-color: var(--red-burgundy);
  color: #ffffff !important;
  box-shadow: 0 6px 20px rgba(157, 1, 5, 0.35);
  transform: translateY(-1px);
}

.btn-red-primary:active,
.btn-gold-primary:active {
  transform: translateY(0);
}

.btn-red-secondary,
.btn-gold-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background-color: var(--red-burgundy);
  color: #ffffff !important;
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.75rem 1.75rem;
  border-radius: 4px;
  border: 1px solid var(--red-logo);
  box-shadow: 0 4px 14px rgba(93, 1, 2, 0.3);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  text-decoration: none !important;
}

.btn-red-secondary:hover,
.btn-gold-secondary:hover {
  background-color: var(--red-logo);
  border-color: var(--red-vibrant);
  box-shadow: 0 6px 20px rgba(157, 1, 5, 0.35);
  transform: translateY(-1px);
}

.btn-translucent-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background-color: #ffffff;
  color: var(--red-logo) !important;
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.75rem 1.75rem;
  border-radius: 4px;
  border: 1.5px solid var(--red-logo);
  box-shadow: var(--shadow-sm);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  text-decoration: none !important;
}

.btn-translucent-secondary:hover {
  background-color: var(--red-logo);
  color: #ffffff !important;
  box-shadow: 0 4px 14px rgba(157, 1, 5, 0.25);
  transform: translateY(-1px);
}

/* 5. Clean Institutional Cards */
.white-card {
  background-color: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
}

.white-card:hover {
  border-color: var(--red-logo);
  box-shadow: var(--shadow-xl);
  transform: translateY(-3px);
}

.service-card {
  display: flex;
  flex-direction: column;
  background-color: #ffffff;
  border: 1px solid var(--border-light);
  border-top: 3px solid var(--red-logo);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.service-card:hover {
  border-top-color: var(--red-vibrant);
  border-color: var(--red-200);
  box-shadow: 0 16px 32px -8px rgba(157, 1, 5, 0.12);
  transform: translateY(-4px);
}

/* Specialty Card — Compact Clickable Link Cards */
.specialty-card {
  display: block;
  text-decoration: none;
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-top: 3px solid #8B1E1E;
  border-radius: 8px;
  padding: 18px 20px 16px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  cursor: pointer;
}

.specialty-card:hover {
  border-top-color: #9d0105;
  border-color: #fca5a5;
  box-shadow: 0 8px 24px -6px rgba(139, 30, 30, 0.15);
  transform: translateY(-3px);
  text-decoration: none;
}

/* Chips: hidden by default, visible on hover */
.specialty-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-bottom: 10px;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 0.2s ease, max-height 0.25s ease;
}

.specialty-card:hover .specialty-chips {
  opacity: 1;
  max-height: 80px;
}

.specialty-chips span {
  padding: 2px 8px;
  background-color: #f1f5f9;
  color: #475569;
  font-size: 10px;
  border-radius: 4px;
  font-weight: 500;
  border: 1px solid #e2e8f0;
}

/* CTA text: hidden by default, appears on hover */
.specialty-cta {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #9d0105;
  opacity: 0;
  transition: opacity 0.2s ease;
  margin-top: 4px;
}

.specialty-card:hover .specialty-cta {
  opacity: 1;
}

/* 6. Real Photo Showcase Cards */
.photo-card {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid var(--border-light);
  background-color: #ffffff;
  box-shadow: var(--shadow-md);
  transition: all 0.35s ease;
}

.photo-card:hover {
  box-shadow: var(--shadow-xl);
  border-color: var(--red-logo);
  transform: translateY(-3px);
}

.photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.photo-card:hover img {
  transform: scale(1.03);
}

/* 7. Form Controls for Clean White Aesthetic */
input[type="text"],
input[type="tel"],
input[type="email"],
select,
textarea {
  background-color: #ffffff !important;
  color: var(--text-primary) !important;
  border: 1.5px solid var(--border-light) !important;
  border-radius: 6px !important;
  font-family: var(--font-sans) !important;
  font-size: 0.875rem !important;
  transition: all 0.2s ease !important;
  outline: none !important;
}

input[type="text"]:focus,
input[type="tel"]:focus,
input[type="email"]:focus,
select:focus,
textarea:focus {
  border-color: var(--red-logo) !important;
  box-shadow: 0 0 0 3px rgba(157, 1, 5, 0.12) !important;
}

/* 8. Floating WhatsApp Action */
.wa-float-btn {
  background-color: #25d366;
  color: #ffffff !important;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 2px solid #ffffff;
}

.wa-float-btn:hover {
  background-color: #20ba5a;
  transform: scale(1.08) translateY(-2px);
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.5);
}

/* 9. Utility Badges & Dividers */
.badge-navy {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.85rem;
  border-radius: 9999px;
  background-color: var(--navy-100);
  border: 1px solid rgba(15, 43, 92, 0.15);
  color: var(--navy-850);
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.badge-gold,
.badge-red {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.85rem;
  border-radius: 9999px;
  background-color: var(--red-50);
  border: 1px solid var(--red-200);
  color: var(--red-logo);
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.gold-divider,
.red-divider {
  width: 3.5rem;
  height: 2.5px;
  background: linear-gradient(90deg, var(--red-logo), var(--red-vibrant));
  border-radius: 2px;
}

/* 10. Nav Links */
.nav-link {
  position: relative;
  color: var(--text-secondary);
  font-weight: 600;
  transition: color 0.2s ease;
  text-decoration: none !important;
  white-space: nowrap;
}

.nav-link:hover {
  color: var(--red-logo);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: var(--red-logo);
  transition: width 0.25s ease;
}

.nav-link:hover::after {
  width: 100%;
}

/* Collapsible Consultation Dropdown */
.collapsible-container {
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.collapsible-container.is-collapsed {
  display: none;
  opacity: 0;
  max-height: 0;
}
.collapsible-container.is-expanded {
  display: block;
  opacity: 1;
  max-height: 3000px;
}

.nav-link:hover::after {
  width: 100%;
}

/* Red Header Navigation */
.header-red {
  background-color: var(--red-logo) !important;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2) !important;
  box-shadow: 0 4px 20px rgba(93, 1, 2, 0.25) !important;
}

.header-red .nav-link {
  color: rgba(255, 255, 255, 0.92) !important;
}

.header-red .nav-link:hover {
  color: #ffffff !important;
}

.header-red .nav-link::after {
  background-color: #ffffff !important;
}

/* White CTA Button for Red Header */
.btn-header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background-color: #ffffff !important;
  color: var(--red-logo) !important;
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.65rem 1.4rem;
  border-radius: 4px;
  border: 1px solid #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  transition: all 0.25s ease;
  cursor: pointer;
  text-decoration: none !important;
}

.btn-header-cta:hover {
  background-color: #f8fafc !important;
  color: var(--red-hover) !important;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
  transform: translateY(-1px);
}

/* Hero Section with Lawyer Background */
.hero-justice-section {
  position: relative;
  background-color: #ffffff;
  background-image: url('../../public/images/hero-abogado-bg.png');
  background-repeat: no-repeat;
  background-position: 95% top;
  background-size: auto 100%;
  min-height: 580px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #ffffff 0%, #ffffff 32%, rgba(255,255,255,0.92) 48%, rgba(255,255,255,0.65) 58%, rgba(255,255,255,0.2) 68%, transparent 76%);
  z-index: 1;
}

@media (max-width: 1024px) {
  .hero-justice-section {
    background-image: url('../../public/images/hero-biblioteca-mobile.jpg');
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
    min-height: auto;
  }
  .hero-overlay {
    display: block;
    background: linear-gradient(180deg, rgba(255,255,255,0.78) 0%, rgba(255,255,255,0.68) 50%, rgba(255,255,255,0.60) 100%);
    backdrop-filter: blur(0.5px);
    -webkit-backdrop-filter: blur(0.5px);
  }
}

/* Pill Buttons inspired by example image */
.btn-pill-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background-color: var(--red-logo);
  color: #ffffff !important;
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.875rem 2.25rem;
  border-radius: 9999px;
  border: 1.5px solid var(--red-burgundy);
  box-shadow: 0 4px 15px rgba(157, 1, 5, 0.3);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  text-decoration: none !important;
}

.btn-pill-primary:hover {
  background-color: var(--red-hover);
  border-color: var(--red-burgundy);
  box-shadow: 0 8px 24px rgba(157, 1, 5, 0.4);
  transform: translateY(-2px);
}

.btn-pill-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background-color: rgba(255, 255, 255, 0.88);
  color: var(--red-logo) !important;
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.875rem 2.25rem;
  border-radius: 9999px;
  border: 1.5px solid var(--red-logo);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  text-decoration: none !important;
}

.btn-pill-secondary:hover {
  background-color: #ffffff;
  color: var(--red-hover) !important;
  border-color: var(--red-hover);
  box-shadow: 0 6px 18px rgba(157, 1, 5, 0.18);
  transform: translateY(-2px);
}

/* Floating Lawyer Badge from example image */
.floating-lawyer-badge {
  display: inline-flex;
  align-items: center;
  gap: 1.15rem;
  background-color: #6b0204;
  border-radius: 1.25rem;
  padding: 1rem 1.75rem;
  box-shadow: 0 12px 32px rgba(93, 1, 2, 0.35);
  transition: all 0.3s ease;
  max-width: 100%;
}

.floating-lawyer-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(107, 2, 4, 0.45);
}

/* Red Transit Bar */
.banner-transito-red {
  background: linear-gradient(90deg, #7c0104 0%, #9d0105 50%, #700103 100%) !important;
  border-top: 1px solid rgba(255, 255, 255, 0.15) !important;
  border-bottom: 1px solid rgba(0, 0, 0, 0.25) !important;
  box-shadow: 0 4px 15px rgba(93, 1, 2, 0.2) !important;
}

.btn-transito-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff !important;
  color: var(--red-logo) !important;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  border: 1px solid #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
  transition: all 0.25s ease;
  cursor: pointer;
  text-decoration: none !important;
}

.btn-transito-white:hover {
  background-color: #fef2f2 !important;
  color: var(--red-hover) !important;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.28);
  transform: translateY(-1px);
}

/* Leaflet map pin light mode */
.custom-map-pin {
  transition: transform 0.2s ease;
}
.custom-map-pin:hover {
  transform: scale(1.1);
}


/* Hero Lawyer Photo Card (Desktop right side) */
.hero-lawyer-card {
  width: 260px;
  height: 340px;
  border-radius: 1rem;
  overflow: hidden;
  border: 3px solid rgba(157, 1, 5, 0.35);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.28), 0 0 0 1px rgba(255,255,255,0.12);
  position: relative;
  flex-shrink: 0;
}

.hero-lawyer-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.hero-lawyer-card-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(0deg, rgba(93,1,2,0.95) 0%, rgba(93,1,2,0.7) 60%, transparent 100%);
  padding: 1.5rem 1rem 0.875rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}

/* Elegant Experience Badge (Clean Red Rectangle without gold cylinder) */
.experience-pill-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--red-logo); /* Rojo oficial de la web #9d0105 */
  border-radius: 8px;
  padding: 10px 24px;
  box-shadow: 0 4px 14px rgba(157, 1, 5, 0.25);
  max-width: 100%;
}

.experience-pill-inner {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.experience-pill-line {
  width: 32px;
  height: 1.5px;
  background-color: #d4af37;
  display: inline-block;
  opacity: 0.95;
}

.experience-pill-text {
  font-family: 'Cinzel', serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.12em;
  color: #f6d884;
  text-transform: uppercase;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
  white-space: nowrap;
}

@media (max-width: 640px) {
  .experience-pill-badge {
    padding: 8px 18px;
  }
  .experience-pill-inner {
    gap: 10px;
  }
  .experience-pill-text {
    font-size: 13px;
    letter-spacing: 0.08em;
  }
  .experience-pill-line {
    width: 20px;
  }
}

/* Floating WhatsApp Button */
.floating-whatsapp-btn {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background-color: #25d366;
  color: #ffffff !important;
  text-decoration: none !important;
  padding: 0.75rem 1.25rem 0.75rem 1rem;
  border-radius: 9999px;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45), 0 2px 8px rgba(0,0,0,0.18);
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid rgba(255,255,255,0.3);
}

.floating-whatsapp-btn:hover {
  background-color: #1da851;
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 10px 32px rgba(37, 211, 102, 0.55), 0 4px 12px rgba(0,0,0,0.22);
}

.floating-whatsapp-label {
  display: inline-block;
}

@media (max-width: 480px) {
  .floating-whatsapp-btn {
    bottom: 1.25rem;
    right: 1.25rem;
    padding: 0.875rem;
    border-radius: 50%;
  }
  .floating-whatsapp-label {
    display: none;
  }
}


/* Generated Self-Contained Utility System */

.-skew-x-12 { transform: skewX(-12deg) !important; }
.absolute { position: absolute !important; }
.backdrop-blur-sm { backdrop-filter: blur(4px) !important; }
.bg-red-50, .bg-amber-50 { background-color: #fef2f2 !important; }
.bg-red-500\/20, .bg-amber-500\/20 { background-color: rgba(157, 1, 5, 0.15) !important; }
.bg-red-600, .bg-red-700, .bg-amber-600 { background-color: #9d0105 !important; }
.bg-blue-100 { background-color: #dbeafe !important; }
.bg-blue-50 { background-color: #eff6ff !important; }
.bg-blue-900 { background-color: #1e3a8a !important; }
.bg-blue-950 { background-color: #0f2b5c !important; }
.bg-emerald-400 { background-color: #34d399 !important; }
.bg-emerald-50 { background-color: #ecfdf5 !important; }
.bg-emerald-600 { background-color: #059669 !important; }
.bg-slate-100 { background-color: #f1f5f9 !important; }
.bg-slate-200 { background-color: #e2e8f0 !important; }
.bg-slate-50 { background-color: #f8fafc !important; }
.bg-slate-50\/80 { background-color: rgba(248, 250, 252, 0.8) !important; }
.bg-slate-800 { background-color: #1e293b !important; }
.bg-slate-900 { background-color: #0f172a !important; }
.bg-slate-950\/75 { background-color: rgba(2, 6, 23, 0.75) !important; }
.bg-slate-950\/80 { background-color: rgba(2, 6, 23, 0.8) !important; }
.bg-white { background-color: #ffffff !important; }
.block { display: block !important; }
.border { border-width: 1px !important; border-style: solid !important; border-color: #e2e8f0; }
.border-2 { border-width: 2px !important; border-style: solid !important; border-color: #e2e8f0; }
.border-red-200, .border-amber-200 { border-color: #fecaca !important; }
.border-red-400\/40, .border-amber-400\/40 { border-color: rgba(220, 38, 38, 0.4) !important; }
.border-red-600\/40, .border-amber-600\/40 { border-color: rgba(157, 1, 5, 0.4) !important; }
.border-b { border-bottom-width: 1px !important; border-bottom-style: solid !important; border-bottom-color: #e2e8f0; }
.border-blue-200 { border-color: #bfdbfe !important; }
.border-blue-900 { border-color: #1e3a8a !important; }
.border-emerald-200 { border-color: #a7f3d0 !important; }
.border-emerald-300 { border-color: #6ee7b7 !important; }
.border-slate-100 { border-color: #f1f5f9 !important; }
.border-slate-200 { border-color: #e2e8f0 !important; }
.border-slate-300 { border-color: #cbd5e1 !important; }
.border-slate-800 { border-color: #1e293b !important; }
.border-t { border-top-width: 1px !important; border-top-style: solid !important; border-top-color: #e2e8f0; }
.bottom-3 { bottom: 0.75rem !important; }
.bottom-6 { bottom: 1.5rem !important; }
.fixed { position: fixed !important; }
.flex { display: flex !important; }
.flex-1 { flex: 1 1 0% !important; }
.flex-col { flex-direction: column !important; }
.flex-wrap { flex-wrap: wrap !important; }
.font-bold { font-weight: 700 !important; }
.font-extrabold { font-weight: 800 !important; }
.font-medium { font-weight: 500 !important; }
.font-normal { font-weight: 400 !important; }
.font-semibold { font-weight: 600 !important; }
.gap-1 { gap: 0.25rem !important; }
.gap-1\.5 { gap: 0.375rem !important; }
.gap-10 { gap: 2.5rem !important; }
.gap-12 { gap: 3.0rem !important; }
.gap-2 { gap: 0.5rem !important; }
.gap-3 { gap: 0.75rem !important; }
.gap-3\.5 { gap: 0.875rem !important; }
.gap-4 { gap: 1.0rem !important; }
.gap-6 { gap: 1.5rem !important; }
.gap-8 { gap: 2.0rem !important; }
.grid { display: grid !important; }
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)) !important; }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
.h-1\.5 { height: 0.375rem !important; }
.h-10 { height: 2.5rem !important; }
.h-12 { height: 3rem !important; }
.h-14 { height: 3.5rem !important; }
.h-2 { height: 0.5rem !important; }
.h-2\.5 { height: 0.625rem !important; }
.h-20 { height: 5rem !important; }
.h-4 { height: 1rem !important; }
.h-5 { height: 1.25rem !important; }
.h-6 { height: 1.5rem !important; }
.h-64 { height: 16rem !important; }
.h-7 { height: 1.75rem !important; }
.h-8 { height: 2rem !important; }
.h-auto { height: auto !important; }
.h-full { height: 100% !important; }
.hidden { display: none !important; }
.inline { display: inline !important; }
.inline-block { display: inline-block !important; }
.inline-flex { display: inline-flex !important; }
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; !important; }
.italic { font-style: italic !important; }
.items-center { align-items: center !important; }
.items-start { align-items: flex-start !important; }
.items-stretch { align-items: stretch !important; }
.justify-between { justify-content: space-between !important; }
.justify-center { justify-content: center !important; }
.left-3 { left: 0.75rem !important; }
.max-h-\[460px\] { max-height: 460px !important; }
.max-w-2xl { max-width: 42rem !important; }
.max-w-3xl { max-width: 48rem !important; }
.max-w-7xl { max-width: 80rem !important; }
.max-w-lg { max-width: 32rem !important; }
.max-w-md { max-width: 28rem !important; }
.mb-1 { margin-bottom: 0.25rem !important; }
.mb-10 { margin-bottom: 2.5rem !important; }
.mb-16 { margin-bottom: 4.0rem !important; }
.mb-2 { margin-bottom: 0.5rem !important; }
.mb-3 { margin-bottom: 0.75rem !important; }
.mb-4 { margin-bottom: 1.0rem !important; }
.mb-6 { margin-bottom: 1.5rem !important; }
.mb-8 { margin-bottom: 2.0rem !important; }
.min-h-\[380px\] { min-height: 380px !important; }
.min-h-\[420px\] { min-height: 420px !important; }
.ml-1 { margin-left: 0.25rem !important; }
.mt-0\.5 { margin-top: 0.125rem !important; }
.mt-1 { margin-top: 0.25rem !important; }
.mt-2 { margin-top: 0.5rem !important; }
.mt-3 { margin-top: 0.75rem !important; }
.mt-4 { margin-top: 1.0rem !important; }
.mt-6 { margin-top: 1.5rem !important; }
.mt-8 { margin-top: 2.0rem !important; }
.mx-auto { margin-left: auto !important; margin-right: auto !important; }
.object-cover { object-fit: cover !important; }
.overflow-hidden { overflow: hidden !important; }
.p-1 { padding: 0.25rem !important; }
.p-1\.5 { padding: 0.375rem !important; }
.p-2 { padding: 0.5rem !important; }
.p-2\.5 { padding: 0.625rem !important; }
.p-3 { padding: 0.75rem !important; }
.p-4 { padding: 1.0rem !important; }
.p-6 { padding: 1.5rem !important; }
.p-8 { padding: 2.0rem !important; }
.pb-1\.5 { padding-bottom: 0.375rem !important; }
.pb-12 { padding-bottom: 3.0rem !important; }
.pb-2 { padding-bottom: 0.5rem !important; }
.pointer-events-none { pointer-events: none !important; }
.pr-6 { padding-right: 1.5rem !important; }
.pt-1 { padding-top: 0.25rem !important; }
.pt-16 { padding-top: 4.0rem !important; }
.pt-2 { padding-top: 0.5rem !important; }
.pt-3 { padding-top: 0.75rem !important; }
.pt-4 { padding-top: 1.0rem !important; }
.pt-5 { padding-top: 1.25rem !important; }
.pt-6 { padding-top: 1.5rem !important; }
.pt-8 { padding-top: 2.0rem !important; }
.px-3 { padding-left: 0.75rem !important; padding-right: 0.75rem !important; }
.px-3\.5 { padding-left: 0.875rem !important; padding-right: 0.875rem !important; }
.px-4 { padding-left: 1.0rem !important; padding-right: 1.0rem !important; }
.px-5 { padding-left: 1.25rem !important; padding-right: 1.25rem !important; }
.px-6 { padding-left: 1.5rem !important; padding-right: 1.5rem !important; }
.py-1 { padding-top: 0.25rem !important; padding-bottom: 0.25rem !important; }
.py-1\.5 { padding-top: 0.375rem !important; padding-bottom: 0.375rem !important; }
.py-16 { padding-top: 4.0rem !important; padding-bottom: 4.0rem !important; }
.py-2 { padding-top: 0.5rem !important; padding-bottom: 0.5rem !important; }
.py-2\.5 { padding-top: 0.625rem !important; padding-bottom: 0.625rem !important; }
.py-20 { padding-top: 5.0rem !important; padding-bottom: 5.0rem !important; }
.py-3 { padding-top: 0.75rem !important; padding-bottom: 0.75rem !important; }
.py-6 { padding-top: 1.5rem !important; padding-bottom: 1.5rem !important; }
.relative { position: relative !important; }
.right-0 { right: 0 !important; }
.right-4 { right: 1rem !important; }
.right-6 { right: 1.5rem !important; }
.rounded { border-radius: 0.25rem !important; }
.rounded-full { border-radius: 9999px !important; }
.rounded-lg { border-radius: 0.5rem !important; }
.rounded-xl { border-radius: 0.75rem !important; }
.shadow-2xl { box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important; }
.shadow-lg { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1) !important; }
.shadow-md { box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1) !important; }
.shadow-sm { box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05) !important; }
.shadow-xl { box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1) !important; }
.shrink-0 { flex-shrink: 0 !important; }
.space-x-2 > :not([hidden]) ~ :not([hidden]) { margin-left: 0.5rem !important; }
.space-x-4 > :not([hidden]) ~ :not([hidden]) { margin-left: 1.0rem !important; }
.space-x-7 > :not([hidden]) ~ :not([hidden]) { margin-left: 1.75rem !important; }
.space-y-1 > :not([hidden]) ~ :not([hidden]) { margin-top: 0.25rem !important; }
.space-y-2 > :not([hidden]) ~ :not([hidden]) { margin-top: 0.5rem !important; }
.space-y-2\.5 > :not([hidden]) ~ :not([hidden]) { margin-top: 0.625rem !important; }
.space-y-3 > :not([hidden]) ~ :not([hidden]) { margin-top: 0.75rem !important; }
.space-y-4 > :not([hidden]) ~ :not([hidden]) { margin-top: 1.0rem !important; }
.space-y-6 > :not([hidden]) ~ :not([hidden]) { margin-top: 1.5rem !important; }
.sticky { position: sticky !important; }
.text-2xl { font-size: 1.5rem !important; line-height: 2rem !important; }
.text-3xl { font-size: 1.875rem !important; line-height: 2.25rem !important; }
.text-\[10px\] { font-size: 10px !important; }
.text-\[11px\] { font-size: 11px !important; }
.text-red-400, .text-amber-400 { color: #ef4444 !important; }
.text-red-700, .text-amber-700 { color: #9d0105 !important; }
.text-red-800, .text-amber-800 { color: #7a0004 !important; }
.text-base { font-size: 1rem !important; line-height: 1.5rem !important; }
.text-blue-900 { color: #1e3a8a !important; }
.text-blue-950 { color: #0f2b5c !important; }
.text-center { text-align: center !important; }
.text-emerald-400 { color: #34d399 !important; }
.text-emerald-600 { color: #059669 !important; }
.text-emerald-700 { color: #047857 !important; }
.text-emerald-950 { color: #022c22 !important; }
.text-left { text-align: left !important; }
.text-lg { font-size: 1.125rem !important; line-height: 1.75rem !important; }
.text-slate-300 { color: #cbd5e1 !important; }
.text-slate-400 { color: #94a3b8 !important; }
.text-slate-500 { color: #64748b !important; }
.text-slate-600 { color: #475569 !important; }
.text-slate-700 { color: #334155 !important; }
.text-slate-800 { color: #1e293b !important; }
.text-slate-900 { color: #0f172a !important; }
.text-sm { font-size: 0.875rem !important; line-height: 1.25rem !important; }
.text-white { color: #ffffff !important; }
.text-xl { font-size: 1.25rem !important; line-height: 1.75rem !important; }
.text-xs { font-size: 0.75rem !important; line-height: 1rem !important; }
.top-0 { top: 0 !important; }
.top-4 { top: 1rem !important; }
.tracking-tight { letter-spacing: -0.025em !important; }
.tracking-wide { letter-spacing: 0.025em !important; }
.tracking-wider { letter-spacing: 0.05em !important; }
.tracking-widest { letter-spacing: 0.1em !important; }
.uppercase { text-transform: uppercase !important; }
.w-1\.5 { width: 0.375rem !important; }
.w-1\/3 { width: 33.333333% !important; }
.w-10 { width: 2.5rem !important; }
.w-12 { width: 3rem !important; }
.w-14 { width: 3.5rem !important; }
.w-2 { width: 0.5rem !important; }
.w-2\.5 { width: 0.625rem !important; }
.w-4 { width: 1rem !important; }
.w-5 { width: 1.25rem !important; }
.w-6 { width: 1.5rem !important; }
.w-7 { width: 1.75rem !important; }
.w-8 { width: 2rem !important; }
.w-full { width: 100% !important; }
.whitespace-nowrap { white-space: nowrap !important; }
.z-0 { z-index: 0 !important; }
.z-10 { z-index: 10 !important; }
.z-40 { z-index: 40 !important; }
.z-50 { z-index: 50 !important; }
.hover\:bg-emerald-700:hover { background-color: #047857 !important; }
.hover\:bg-slate-100:hover { background-color: #f1f5f9 !important; }
.hover\:border-blue-400:hover { border-color: #60a5fa !important; }
.hover\:border-emerald-400:hover { border-color: #34d399 !important; }
.hover\:text-red-400:hover, .hover\:text-amber-400:hover { color: #fca5a5 !important; }
.hover\:text-red-600:hover, .hover\:text-amber-600:hover { color: #dc2626 !important; }
.hover\:text-blue-900:hover { color: #1e3a8a !important; }
.hover\:text-blue-950:hover { color: #0f2b5c !important; }
.hover\:text-slate-800:hover { color: #1e293b !important; }
.hover\:text-white:hover { color: #ffffff !important; }
.hover\:underline:hover { text-decoration: underline !important; }

@media (min-width: 640px) {

.sm\:flex { display: flex !important; }
.sm\:flex-row { flex-direction: row !important; }
.sm\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
.sm\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)) !important; }
.sm\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)) !important; }
.sm\:inline { display: inline !important; }
.sm\:items-center { align-items: center !important; }
.sm\:p-10 { padding: 2.5rem !important; }
.sm\:p-8 { padding: 2.0rem !important; }
.sm\:px-6 { padding-left: 1.5rem !important; padding-right: 1.5rem !important; }
.sm\:py-24 { padding-top: 6.0rem !important; padding-bottom: 6.0rem !important; }
.sm\:text-4xl { font-size: 2.25rem !important; line-height: 2.5rem !important; }
.sm\:text-5xl { font-size: 3rem !important; line-height: 1 !important; }
.sm\:text-base { font-size: 1rem !important; line-height: 1.5rem !important; }
.sm\:text-lg { font-size: 1.125rem !important; line-height: 1.75rem !important; }
.sm\:text-sm { font-size: 0.875rem !important; line-height: 1.25rem !important; }
.sm\:w-auto { width: auto !important; }
}


@media (min-width: 768px) {

.md\:flex-row { flex-direction: row !important; }
.md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
.md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)) !important; }
.md\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)) !important; }
.md\:inline { display: inline !important; }
.md\:text-left { text-align: left !important; }
}


@media (min-width: 1024px) {

.lg\:col-span-2 { grid-column: span 2 / span 2 !important; }
.lg\:col-span-5 { grid-column: span 5 / span 5 !important; }
.lg\:col-span-7 { grid-column: span 7 / span 7 !important; }
.lg\:flex { display: flex !important; }
.lg\:grid-cols-12 { grid-template-columns: repeat(12, minmax(0, 1fr)) !important; }
.lg\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)) !important; }
.lg\:hidden { display: none !important; }
.lg\:inline { display: inline !important; }
.lg\:px-8 { padding-left: 2.0rem !important; padding-right: 2.0rem !important; }
.lg\:text-5xl { font-size: 3rem !important; line-height: 1 !important; }
}

/* Additional Specific Utility Definitions */
.border-y { border-top-width: 1px !important; border-bottom-width: 1px !important; border-style: solid; }
.cursor-pointer { cursor: pointer !important; }
.duration-300 { transition-duration: 300ms !important; }
.transition-all { transition-property: all !important; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important; transition-duration: 200ms !important; }
.transition-colors { transition-property: color, background-color, border-color, text-decoration-color, fill, stroke !important; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important; transition-duration: 150ms !important; }
.focus\:outline-none:focus { outline: 2px solid transparent !important; outline-offset: 2px !important; }

.leading-\[1\.15\] { line-height: 1.15 !important; }
.leading-snug { line-height: 1.375 !important; }
.leading-relaxed { line-height: 1.625 !important; }

.group:hover .group-hover\:bg-slate-800 { background-color: #1e293b !important; }
.group:hover .group-hover\:text-blue-900 { color: #1e3a8a !important; }
.group:hover .group-hover\:text-blue-950 { color: #0f2b5c !important; }

.hover\:bg-emerald-700:hover { background-color: #047857 !important; }
.hover\:bg-slate-100:hover { background-color: #f1f5f9 !important; }
.hover\:border-blue-400:hover { border-color: #60a5fa !important; }
.hover\:border-emerald-400:hover { border-color: #34d399 !important; }
.hover\:text-red-400:hover, .hover\:text-amber-400:hover { color: #fca5a5 !important; }
.hover\:text-red-600:hover, .hover\:text-amber-600:hover { color: #dc2626 !important; }
.hover\:text-blue-900:hover { color: #1e3a8a !important; }
.hover\:text-blue-950:hover { color: #0f2b5c !important; }
.hover\:text-slate-800:hover { color: #1e293b !important; }
.hover\:text-white:hover { color: #ffffff !important; }
.hover\:underline:hover { text-decoration: underline !important; }

.text-\[10px\] { font-size: 10px !important; line-height: 14px !important; }
.text-\[11px\] { font-size: 11px !important; line-height: 16px !important; }
.text-emerald-900 { color: #064e3b !important; }

.bg-red-500\/20, .bg-amber-500\/20 { background-color: rgba(157, 1, 5, 0.15) !important; }
.bg-slate-50\/80 { background-color: rgba(248, 250, 252, 0.8) !important; }
.bg-slate-950\/75 { background-color: rgba(2, 6, 23, 0.75) !important; }
.bg-slate-950\/80 { background-color: rgba(2, 6, 23, 0.8) !important; }

.border-red-400\/40, .border-amber-400\/40 { border-color: rgba(220, 38, 38, 0.4) !important; }
.border-red-600\/40, .border-amber-600\/40 { border-color: rgba(157, 1, 5, 0.4) !important; }

.w-1\.5 { width: 0.375rem !important; }
.h-1\.5 { height: 0.375rem !important; }
.w-2\.5 { width: 0.625rem !important; }
.h-2\.5 { height: 0.625rem !important; }
.w-3\.5 { width: 0.875rem !important; }
.h-3\.5 { height: 0.875rem !important; }
.w-1\/3 { width: 33.333333% !important; }

.gap-1\.5 { gap: 0.375rem !important; }
.gap-3\.5 { gap: 0.875rem !important; }

.p-1\.5 { padding: 0.375rem !important; }
.p-2\.5 { padding: 0.625rem !important; }
.px-3\.5 { padding-left: 0.875rem !important; padding-right: 0.875rem !important; }
.py-1\.5 { padding-top: 0.375rem !important; padding-bottom: 0.375rem !important; }
.py-2\.5 { padding-top: 0.625rem !important; padding-bottom: 0.625rem !important; }
.pb-1\.5 { padding-bottom: 0.375rem !important; }
.mt-0\.5 { margin-top: 0.125rem !important; }
.space-y-2\.5 > :not([hidden]) ~ :not([hidden]) { margin-top: 0.625rem !important; }

.min-h-\[380px\] { min-height: 380px !important; }
.min-h-\[420px\] { min-height: 420px !important; }
.max-h-\[460px\] { max-height: 460px !important; }

.origin-top-right { transform-origin: top right !important; }

@media (min-width: 640px) {
  .sm\:flex { display: flex !important; }
  .sm\:flex-row { flex-direction: row !important; }
  .sm\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
  .sm\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)) !important; }
  .sm\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)) !important; }
  .sm\:inline { display: inline !important; }
  .sm\:items-center { align-items: center !important; }
  .sm\:p-8 { padding: 2rem !important; }
  .sm\:p-10 { padding: 2.5rem !important; }
  .sm\:px-6 { padding-left: 1.5rem !important; padding-right: 1.5rem !important; }
  .sm\:py-24 { padding-top: 6rem !important; padding-bottom: 6rem !important; }
  .sm\:text-sm { font-size: 0.875rem !important; line-height: 1.25rem !important; }
  .sm\:text-base { font-size: 1rem !important; line-height: 1.5rem !important; }
  .sm\:text-lg { font-size: 1.125rem !important; line-height: 1.75rem !important; }
  .sm\:text-4xl { font-size: 2.25rem !important; line-height: 2.5rem !important; }
  .sm\:text-5xl { font-size: 3rem !important; line-height: 1 !important; }
  .sm\:w-auto { width: auto !important; }
}

@media (min-width: 768px) {
  .md\:flex-row { flex-direction: row !important; }
  .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
  .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)) !important; }
  .md\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)) !important; }
  .md\:inline { display: inline !important; }
  .md\:text-left { text-align: left !important; }
}

@media (min-width: 1024px) {
  .lg\:flex { display: flex !important; }
  .lg\:hidden { display: none !important; }
  .lg\:inline { display: inline !important; }
  .lg\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)) !important; }
  .lg\:grid-cols-5 { grid-template-columns: repeat(5, minmax(0, 1fr)) !important; }
  .lg\:grid-cols-12 { grid-template-columns: repeat(12, minmax(0, 1fr)) !important; }
  .lg\:col-span-2 { grid-column: span 2 / span 2 !important; }
  .lg\:col-span-5 { grid-column: span 5 / span 5 !important; }
  .lg\:col-span-7 { grid-column: span 7 / span 7 !important; }
  .lg\:px-8 { padding-left: 2rem !important; padding-right: 2rem !important; }
  .lg\:text-5xl { font-size: 3rem !important; line-height: 1 !important; }
}

.antialiased { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
.scroll-smooth { scroll-behavior: smooth; }
::selection { background-color: #fee2e2; color: #7f1d1d; }
::-moz-selection { background-color: #fee2e2; color: #7f1d1d; }
