/* ================================================================
   styles.css — Multiconsultas SAS
   Reemplaza Tailwind CSS CDN con estilos estáticos compilados.
   ================================================================ */

/* ----------------------------------------------------------------
   1. RESET
   ---------------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* ----------------------------------------------------------------
   2. CSS CUSTOM PROPERTIES (design tokens)
   ---------------------------------------------------------------- */
:root {
  --c-primary: #00677d;
  --c-on-primary: #ffffff;
  --c-primary-fixed: #b3ebff;
  --c-primary-fixed-dim: #37d7ff;
  --c-on-primary-fixed: #001f27;
  --c-on-primary-fixed-variant: #004e5f;
  --c-primary-container: #21d4fd;
  --c-on-primary-container: #00586b;
  --c-secondary: #003bd7;
  --c-on-secondary: #ffffff;
  --c-secondary-container: #2453ff;
  --c-on-secondary-container: #e5e6ff;
  --c-secondary-fixed: #dde1ff;
  --c-secondary-fixed-dim: #b9c3ff;
  --c-on-secondary-fixed: #001257;
  --c-on-secondary-fixed-variant: #0034c0;
  --c-tertiary: #805600;
  --c-on-tertiary: #ffffff;
  --c-tertiary-container: #ffb530;
  --c-on-tertiary-container: #6d4900;
  --c-background: #f4fafd;
  --c-on-background: #161d1f;
  --c-surface: #f4fafd;
  --c-on-surface: #161d1f;
  --c-on-surface-variant: #3c494e;
  --c-surface-variant: #dde3e7;
  --c-outline: #6c797e;
  --c-outline-variant: #bbc9ce;
  --c-inverse-surface: #2b3134;
  --c-inverse-on-surface: #ebf2f5;
  --c-inverse-primary: #37d7ff;
  --c-error: #ba1a1a;
  --c-error-container: #ffdad6;

  /* Gradient helpers */
  --tw-gradient-from: transparent;
  --tw-gradient-to: transparent;

  /* Ring helper */
  --tw-ring-color: rgba(33, 212, 253, 0.5);
}

/* ----------------------------------------------------------------
   3. BASE
   ---------------------------------------------------------------- */
html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0;
  font-weight: 400;
  color: var(--c-on-background);
  background-color: var(--c-background);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::selection {
  background-color: var(--c-primary-container);
  color: var(--c-on-primary-container);
}

img,
video {
  max-width: 100%;
  display: block;
}

input,
button,
textarea,
select {
  font: inherit;
}

/* Form reset (replaces @tailwindcss/forms plugin) */
input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
  -webkit-appearance: none;
  appearance: none;
  background-color: #fff;
  border-color: var(--c-outline-variant);
  border-width: 1px;
  border-radius: 0.5rem;
  padding: 0.75rem 1rem;
  width: 100%;
  color: var(--c-on-surface);
  line-height: 1.5;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
textarea:focus {
  outline: none;
  border-color: var(--c-primary-container);
  box-shadow: 0 0 0 2px var(--c-primary-container);
}

/* ----------------------------------------------------------------
   4. CUSTOM COMPONENTS
   ---------------------------------------------------------------- */

/* Hero background */
.hero {
  background: url("assets/hero-bg.png") repeat;
}

/* Glass morphism */
.glass-panel {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(226, 232, 240, 0.5);
}

/* Material Symbols */
.material-symbols-outlined {
  font-variation-settings:
    "FILL" 0,
    "wght" 400,
    "GRAD" 0,
    "opsz" 24;
}

/* Gradient text */
.gradient-text {
  background: linear-gradient(90deg, #2152ff 0%, #21d4fd 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Gradient button */
.gradient-btn {
  background: linear-gradient(90deg, #2152ff 0%, #21d4fd 100%);
  text-decoration: none;
}

/* Card hover */
.card-hover {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.card-hover:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow:
    0 20px 25px -5px rgb(0 0 0 / 0.1),
    0 8px 10px -6px rgb(0 0 0 / 0.1);
}

/* Button hover */
.btn-hover {
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.btn-hover:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 15px -3px rgba(33, 82, 255, 0.3);
}

/* Dot pattern decoration */
.dot-pattern {
  background-image: radial-gradient(#6c797e 1.5px, transparent 1.5px);
  background-size: 16px 16px;
}

/* Decorative arrow */
.styled-arrow {
  width: 60px;
  height: 60px;
  opacity: 0.1;
  transform: rotate(-45deg);
}

/* Logo carousel */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.animate-scroll {
  animation: scroll 30s linear infinite;
}
.logo-carousel-container {
  mask-image: linear-gradient(
    to right,
    transparent,
    black 10%,
    black 90%,
    transparent
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent,
    black 10%,
    black 90%,
    transparent
  );
}
.logo-carousel-container img {
  width: 9rem !important;
  height: 9rem !important;
  object-fit: contain !important;
  max-width: none !important;
}

/* WhatsApp float button */
.whatsapp-float {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 9999px;
  background: #25d366;
  color: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 16px 30px rgba(37, 211, 102, 0.25);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
  z-index: 60;
  text-decoration: none;
}
.whatsapp-float:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 36px rgba(37, 211, 102, 0.3);
}
.whatsapp-float img {
  width: 1.8rem;
  height: 1.8rem;
  object-fit: contain;
}

/* ----------------------------------------------------------------
   5. TYPOGRAPHY SCALE
   ---------------------------------------------------------------- */

/* Custom scale from config */
.text-h1 {
  font-size: 40px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  font-weight: 700;
}
.text-h2 {
  font-size: 32px;
  line-height: 1.3;
  letter-spacing: -0.01em;
  font-weight: 600;
}
.text-h3 {
  font-size: 24px;
  line-height: 1.4;
  letter-spacing: 0;
  font-weight: 600;
}
.text-body-lg {
  font-size: 18px;
  line-height: 1.6;
  letter-spacing: 0;
  font-weight: 400;
}
.text-body-md {
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0;
  font-weight: 400;
}
.text-body-sm {
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0.01em;
  font-weight: 400;
}
.text-label-caps {
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.05em;
  font-weight: 600;
}

/* Font families */
.font-h1,
.font-h2,
.font-h3 {
  font-family: "Manrope", sans-serif;
}
.font-body-md {
  font-family: "Inter", sans-serif;
}

/* font-['Manrope'] used on nav & footer */
.font-\[\'Manrope\'\] {
  font-family: "Manrope", sans-serif;
}

/* Standard sizes */
.text-xs {
  font-size: 0.75rem;
  line-height: 1rem;
}
.text-sm {
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.text-xl {
  font-size: 1.25rem;
  line-height: 1.75rem;
}
.text-3xl {
  font-size: 1.875rem;
  line-height: 2.25rem;
}
.text-4xl {
  font-size: 2.25rem;
  line-height: 2.5rem;
}
.text-5xl {
  font-size: 3rem;
  line-height: 1;
}
.text-8xl {
  font-size: 6rem;
  line-height: 1;
}
.text-9xl {
  font-size: 8rem;
  line-height: 1;
}
.text-\[160px\] {
  font-size: 160px;
}

/* Font weights */
.font-medium {
  font-weight: 500;
}
.font-bold {
  font-weight: 700;
}
.font-extrabold {
  font-weight: 800;
}
.font-black {
  font-weight: 900;
}

/* Text modifiers */
.uppercase {
  text-transform: uppercase;
}
.text-center {
  text-align: center;
}
.leading-tight {
  line-height: 1.25;
}
.tracking-tight {
  letter-spacing: -0.025em;
}
.tracking-wider {
  letter-spacing: 0.05em;
}
.tracking-\[0\.2em\] {
  letter-spacing: 0.2em;
}
.whitespace-nowrap {
  white-space: nowrap;
}
.antialiased {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ----------------------------------------------------------------
   6. COLOR — TEXT
   ---------------------------------------------------------------- */
.text-white {
  color: #ffffff;
}
.text-white\/70 {
  color: rgba(255, 255, 255, 0.7);
}
.text-white\/80 {
  color: rgba(255, 255, 255, 0.8);
}
.text-on-background {
  color: var(--c-on-background);
}
.text-on-surface {
  color: var(--c-on-surface);
}
.text-on-surface-variant {
  color: var(--c-on-surface-variant);
}
.text-primary {
  color: var(--c-primary);
}
.text-on-primary {
  color: var(--c-on-primary);
}
.text-on-primary-fixed-variant {
  color: var(--c-on-primary-fixed-variant);
}
.text-primary-container {
  color: var(--c-primary-container);
}
.text-secondary {
  color: var(--c-secondary);
}
.text-on-secondary {
  color: var(--c-on-secondary);
}
.text-primary\/10 {
  color: rgba(0, 103, 125, 0.1);
}
.text-secondary\/10 {
  color: rgba(0, 59, 215, 0.1);
}
.text-slate-400 {
  color: #94a3b8;
}
.text-slate-500 {
  color: #64748b;
}
.text-slate-600 {
  color: #475569;
}
.text-slate-900 {
  color: #0f172a;
}
.text-emerald-400 {
  color: #34d399;
}

/* ----------------------------------------------------------------
   7. COLOR — BACKGROUND
   ---------------------------------------------------------------- */
.bg-background {
  background-color: var(--c-background);
  margin: 0;
}
.bg-white {
  background-color: #ffffff;
}
.bg-white\/5 {
  background-color: rgba(255, 255, 255, 0.05);
}
.bg-white\/80 {
  background-color: rgba(255, 255, 255, 0.8);
}
.bg-primary-fixed {
  background-color: var(--c-primary-fixed);
}
.bg-primary-fixed-dim\/30 {
  background-color: rgba(55, 215, 255, 0.3);
}
.bg-primary-container {
  background-color: var(--c-primary-container);
}
.bg-primary-container\/20 {
  background-color: rgba(33, 212, 253, 0.2);
}
.bg-secondary-container {
  background-color: var(--c-secondary-container);
}
.bg-secondary-fixed-dim\/30 {
  background-color: rgba(185, 195, 255, 0.3);
}
.bg-tertiary-container {
  background-color: var(--c-tertiary-container);
}
.bg-slate-50 {
  background-color: #f8fafc;
}
.bg-slate-700 {
  background-color: #334155;
}
.bg-slate-800\/50 {
  background-color: rgba(30, 41, 59, 0.5);
}
.bg-slate-900 {
  background-color: #0f172a;
}
.bg-\[\#5a6b7b42\] {
  background-color: rgba(90, 107, 123, 0.259);
}

/* Gradients */
.bg-gradient-to-br {
  background-image: linear-gradient(
    to bottom right,
    var(--tw-gradient-from),
    var(--tw-gradient-to)
  );
}
.bg-gradient-to-t {
  background-image: linear-gradient(
    to top,
    var(--tw-gradient-from),
    var(--tw-gradient-to)
  );
}
.from-white {
  --tw-gradient-from: #ffffff;
}
.from-secondary {
  --tw-gradient-from: #003bd7;
}
.from-slate-950 {
  --tw-gradient-from: #020617;
}
.to-transparent {
  --tw-gradient-to: transparent;
}
.to-primary-container\/5 {
  --tw-gradient-to: rgba(33, 212, 253, 0.05);
}
.to-secondary-container\/5 {
  --tw-gradient-to: rgba(36, 83, 255, 0.05);
}
.to-secondary\/50 {
  --tw-gradient-to: rgba(0, 59, 215, 0.5);
}

/* ----------------------------------------------------------------
   8. COLOR — BORDER
   ---------------------------------------------------------------- */
.border-white {
  border-color: #ffffff;
}
.border-outline-variant {
  border-color: var(--c-outline-variant);
}
.border-outline-variant\/30 {
  border-color: rgba(187, 201, 206, 0.3);
}
.border-primary-container {
  border-color: var(--c-primary-container);
}
.border-primary-container\/20 {
  border-color: rgba(33, 212, 253, 0.2);
}
.border-white\/10 {
  border-color: rgba(255, 255, 255, 0.1);
}
.border-slate-100 {
  border-color: #f1f5f9;
}
.border-slate-200 {
  border-color: #e2e8f0;
}
.border-slate-200\/50 {
  border-color: rgba(226, 232, 240, 0.5);
}
.border-slate-700 {
  border-color: #334155;
}

/* ----------------------------------------------------------------
   9. BORDERS & RADIUS
   ---------------------------------------------------------------- */
.border {
  border-width: 1px;
  border-style: solid;
}
.border-2 {
  border-width: 2px;
  border-style: solid;
}
.border-b {
  border-bottom-width: 1px;
  border-bottom-style: solid;
}
.border-t {
  border-top-width: 1px;
  border-top-style: solid;
}
.border-y {
  border-top-width: 1px;
  border-top-style: solid;
  border-bottom-width: 1px;
  border-bottom-style: solid;
}

.rounded {
  border-radius: 0.25rem;
}
.rounded-lg {
  border-radius: 0.5rem;
}
.rounded-xl {
  border-radius: 0.75rem;
}
.rounded-2xl {
  border-radius: 1rem;
}
.rounded-3xl {
  border-radius: 1.5rem;
}
.rounded-full {
  border-radius: 9999px;
}
.rounded-\[40px\] {
  border-radius: 40px;
}

/* ----------------------------------------------------------------
   10. DISPLAY & VISIBILITY
   ---------------------------------------------------------------- */
.block {
  display: block;
}
.inline-block {
  display: inline-block;
}
.inline-flex {
  display: inline-flex;
}
.flex {
  display: flex;
}
.grid {
  display: grid;
}
.hidden {
  display: none;
}

/* ----------------------------------------------------------------
   11. FLEXBOX
   ---------------------------------------------------------------- */
.flex-col {
  flex-direction: column;
}
.flex-row {
  flex-direction: row;
}
.flex-wrap {
  flex-wrap: wrap;
}
.flex-1 {
  flex: 1 1 0%;
}
.flex-grow {
  flex-grow: 1;
}
.shrink-0 {
  flex-shrink: 0;
}
.items-start {
  align-items: flex-start;
}
.items-center {
  align-items: center;
}
.justify-center {
  justify-content: center;
}
.justify-between {
  justify-content: space-between;
}
.justify-end {
  justify-content: flex-end;
}

/* ----------------------------------------------------------------
   12. GRID
   ---------------------------------------------------------------- */
.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}
.grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.col-span-2 {
  grid-column: span 2 / span 2;
}

/* ----------------------------------------------------------------
   13. GAP & SPACE
   ---------------------------------------------------------------- */
.gap-1 {
  gap: 0.25rem;
}
.gap-2 {
  gap: 0.5rem;
}
.gap-3 {
  gap: 0.75rem;
}
.gap-4 {
  gap: 1rem;
}
.gap-6 {
  gap: 1.5rem;
}
.gap-8 {
  gap: 2rem;
}
.gap-12 {
  gap: 3rem;
}
.gap-16 {
  gap: 4rem;
}
.gap-24 {
  gap: 6rem;
}

.space-x-6 > * + * {
  margin-left: 1.5rem;
}
.space-x-8 > * + * {
  margin-left: 2rem;
}
.space-y-4 > * + * {
  margin-top: 1rem;
}
.space-y-6 > * + * {
  margin-top: 1.5rem;
}
.space-y-8 > * + * {
  margin-top: 2rem;
}

/* ----------------------------------------------------------------
   14. SIZING
   ---------------------------------------------------------------- */
.w-full {
  width: 100%;
}
.w-max {
  width: max-content;
}
.w-3\/4 {
  width: 75%;
}
.w-1\/2 {
  width: 50%;
}
.w-1\/3 {
  width: 33.333333%;
}
.w-2\/3 {
  width: 66.666667%;
}
.w-12 {
  width: 3rem;
}
.w-14 {
  width: 3.5rem;
}
.w-16 {
  width: 4rem;
}
.w-24 {
  width: 6rem;
}
.w-96 {
  width: 24rem;
}

.h-full {
  height: 100%;
}
.h-2 {
  height: 0.5rem;
}
.h-12 {
  height: 3rem;
}
.h-14 {
  height: 3.5rem;
}
.h-16 {
  height: 4rem;
}
.h-20 {
  height: 5rem;
}
.h-24 {
  height: 6rem;
}
.h-64 {
  height: 16rem;
}
.h-96 {
  height: 24rem;
}
.h-\[60vh\] {
  height: 60vh;
}
.h-\[100\%\] {
  height: 100%;
}

.min-w-full {
  min-width: 100%;
}
.min-h-\[300px\] {
  min-height: 300px;
}

.max-w-xl {
  max-width: 36rem;
}
.max-w-2xl {
  max-width: 42rem;
}
.max-w-7xl {
  max-width: 80rem;
}

/* ----------------------------------------------------------------
   15. MARGIN
   ---------------------------------------------------------------- */
.mx-auto {
  margin-left: auto;
  margin-right: auto;
}
.mb-2 {
  margin-bottom: 0.5rem;
}
.mb-4 {
  margin-bottom: 1rem;
}
.mb-6 {
  margin-bottom: 1.5rem;
}
.mb-8 {
  margin-bottom: 2rem;
}
.mb-10 {
  margin-bottom: 2.5rem;
}
.mb-12 {
  margin-bottom: 3rem;
}
.mb-16 {
  margin-bottom: 4rem;
}
.mt-4 {
  margin-top: 1rem;
}
.mt-12 {
  margin-top: 3rem;
}
.mr-\[1rem\] {
  margin-right: 1rem;
}

/* ----------------------------------------------------------------
   16. PADDING
   ---------------------------------------------------------------- */
.p-4 {
  padding: 1rem;
}
.p-6 {
  padding: 1.5rem;
}
.p-8 {
  padding: 2rem;
}
.p-10 {
  padding: 2.5rem;
}
.p-12 {
  padding: 3rem;
}
.p-20 {
  padding: 5rem;
}
.px-3 {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}
.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}
.px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.px-8 {
  padding-left: 2rem;
  padding-right: 2rem;
}
.py-1 {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}
.py-2\.5 {
  padding-top: 0.625rem;
  padding-bottom: 0.625rem;
}
.py-3 {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}
.py-4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.py-12 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.py-16 {
  padding-top: 4rem;
  padding-bottom: 4rem;
}
.py-24 {
  padding-top: 6rem;
  padding-bottom: 6rem;
}
.pt-20 {
  padding-top: 5rem;
}

/* ----------------------------------------------------------------
   17. POSITIONING
   ---------------------------------------------------------------- */
.static {
  position: static;
}
.relative {
  position: relative;
}
.absolute {
  position: absolute;
}
.fixed {
  position: fixed;
}

.top-0 {
  top: 0;
}
.bottom-0 {
  bottom: 0;
}
.left-0 {
  left: 0;
}
.right-0 {
  right: 0;
}
.bottom-4 {
  bottom: 1rem;
}
.right-4 {
  right: 1rem;
}
.-top-4 {
  top: -1rem;
}
.-left-4 {
  left: -1rem;
}
.-bottom-4 {
  bottom: -1rem;
}
.-right-4 {
  right: -1rem;
}
.-top-24 {
  top: -6rem;
}
.-right-24 {
  right: -6rem;
}
.-bottom-6 {
  bottom: -1.5rem;
}
.-left-6 {
  left: -1.5rem;
}

.z-0 {
  z-index: 0;
}
.z-10 {
  z-index: 10;
}
.z-50 {
  z-index: 50;
}

/* ----------------------------------------------------------------
   18. OVERFLOW
   ---------------------------------------------------------------- */
.overflow-hidden {
  overflow: hidden;
}
.overflow-x-hidden {
  overflow-x: hidden;
}

/* ----------------------------------------------------------------
   19. EFFECTS — SHADOW, BLUR, FILTER
   ---------------------------------------------------------------- */
.shadow-sm {
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}
.shadow-lg {
  box-shadow:
    0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -4px rgba(0, 0, 0, 0.1);
}
.shadow-xl {
  box-shadow:
    0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 8px 10px -6px rgba(0, 0, 0, 0.1);
}
.shadow-2xl {
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}
.shadow-inner {
  box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.05);
}

.blur-3xl {
  filter: blur(64px);
}
.backdrop-blur-xl {
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}
.backdrop-blur-sm {
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.opacity-10 {
  opacity: 0.1;
}
.opacity-20 {
  opacity: 0.2;
}
.opacity-30 {
  opacity: 0.3;
}
.opacity-70 {
  opacity: 0.7;
}
.opacity-90 {
  opacity: 0.9;
}

.grayscale {
  filter: grayscale(100%);
}

/* ----------------------------------------------------------------
   20. TRANSFORMS & TRANSITIONS
   ---------------------------------------------------------------- */
.rotate-\[-45deg\] {
  transform: rotate(-45deg);
}

.transition-all {
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.transition-opacity {
  transition-property: opacity;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.transition-colors {
  transition-property:
    color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.transition-transform {
  transition-property: transform;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.duration-200 {
  transition-duration: 200ms;
}
.duration-300 {
  transition-duration: 300ms;
}
.duration-1000 {
  transition-duration: 1000ms;
}

/* ----------------------------------------------------------------
   21. MEDIA & OBJECT
   ---------------------------------------------------------------- */
.object-contain {
  object-fit: contain;
}
.object-cover {
  object-fit: cover;
}
.aspect-video {
  aspect-ratio: 16 / 9;
}
.outline-none {
  outline: 2px solid transparent;
  outline-offset: 2px;
}

/* ----------------------------------------------------------------
   22. INTERACTIVE STATES
   ---------------------------------------------------------------- */

/* Hover — colors */
.hover\:text-\[\#2152ff\]:hover {
  color: #2152ff;
}
.hover\:text-slate-900:hover {
  color: #0f172a;
}
.hover\:underline:hover {
  text-decoration: underline;
}
.hover\:opacity-100:hover {
  opacity: 1;
}
.hover\:grayscale-0:hover {
  filter: grayscale(0%);
}
.hover\:border-primary\/40:hover {
  border-color: rgba(0, 103, 125, 0.4);
}
.hover\:border-secondary\/40:hover {
  border-color: rgba(0, 59, 215, 0.4);
}

/* Active */
.active\:scale-95:active {
  transform: scale(0.95);
}

/* Focus */
.focus\:ring-primary-container:focus {
  --tw-ring-color: var(--c-primary-container);
}
.focus\:ring-2:focus {
  box-shadow: 0 0 0 2px var(--tw-ring-color);
}
.focus\:border-primary-container:focus {
  border-color: var(--c-primary-container);
}

/* Group hover */
.group:hover .group-hover\:translate-x-1 {
  transform: translateX(0.25rem);
}

a {
  text-decoration: none;
}

/* ----------------------------------------------------------------
   23. RESPONSIVE — md (768px)
   ---------------------------------------------------------------- */
@media (min-width: 768px) {
  .md\:flex {
    display: flex;
  }
  .md\:hidden {
    display: none;
  }
  .md\:flex-row {
    flex-direction: row;
  }
  .md\:w-1\/2 {
    width: 50%;
  }
  .md\:h-16 {
    height: 4rem;
  }
  .md\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .md\:col-span-2 {
    grid-column: span 2 / span 2;
  }
  .md\:space-y-0 > * + * {
    margin-top: 0;
  }
  .md\:p-12 {
    padding: 3rem;
  }
}

/* ----------------------------------------------------------------
   24. RESPONSIVE — lg (1024px)
   ---------------------------------------------------------------- */
@media (min-width: 1024px) {
  .lg\:flex {
    display: flex;
  }
  .lg\:flex-row {
    flex-direction: row;
  }
  .lg\:w-1\/2 {
    width: 50%;
  }
  .lg\:w-1\/3 {
    width: 33.333333%;
  }
  .lg\:w-2\/3 {
    width: 66.666667%;
  }
  .lg\:py-24 {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
  .lg\:h-\[60vh\] {
    height: 60vh;
  }
  .lg\:p-20 {
    padding: 5rem;
  }
}
