/*
Theme Name: Inside Human Lab Theme
Theme URI: https://insidehumanlab.com
Author: Inside Human Lab
Author URI: https://insidehumanlab.com
Description: Tema WordPress convertido desde el proyecto React/Vite/Tailwind/TypeScript (Lovable). One Page optimizado para Inside Human Lab con Customizer para el Hero.
Version: 1.0.0
Text Domain: inside-human-lab
*/

/* ============================================
   VARIABLES CSS (Exactas de Lovable)
   ============================================ */
:root {
  /* Inside Human Lab Brand Colors */
  --background: 0 0% 98%;
  --foreground: 97 14% 38%;

  --card: 0 0% 100%;
  --card-foreground: 97 14% 38%;

  --popover: 0 0% 100%;
  --popover-foreground: 97 14% 38%;

  /* Primary: #636d51 (verde oliva) */
  --primary: 97 14% 38%;
  --primary-foreground: 0 0% 98%;

  /* Secondary: #b7b48f (beige/arena) */
  --secondary: 54 20% 64%;
  --secondary-foreground: 97 14% 38%;

  /* Accent: #d37c5e (coral/terracota) */
  --accent: 13 57% 60%;
  --accent-foreground: 0 0% 98%;

  --muted: 54 20% 90%;
  --muted-foreground: 97 14% 50%;

  --destructive: 0 84.2% 60.2%;
  --destructive-foreground: 0 0% 98%;

  --border: 54 20% 85%;
  --input: 54 20% 85%;
  --ring: 97 14% 38%;

  --radius: 0.75rem;
}

/* ============================================
   RESET Y BASE
   ============================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  background: hsl(var(--background));
  color: hsl(var(--foreground));
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-feature-settings: 'kern' 1, 'liga' 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  letter-spacing: -0.02em;
}

/* ============================================
   CONTAINER Y LAYOUT
   ============================================ */
.container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (min-width: 640px) {
  .container { max-width: 640px; }
}

@media (min-width: 768px) {
  .container { max-width: 768px; }
}

@media (min-width: 1024px) {
  .container { max-width: 1024px; }
}

@media (min-width: 1280px) {
  .container { max-width: 1120px; }
}

.max-w-sm { max-width: 24rem; }
.max-w-lg { max-width: 32rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-5xl { max-width: 64rem; }
.max-w-6xl { max-width: 72rem; }
.max-w-7xl { max-width: 80rem; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* ============================================
   POSITIONING
   ============================================ */
.relative { position: relative; }
.absolute { position: absolute; }
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
.pointer-events-none { pointer-events: none; }
.overflow-hidden { overflow: hidden; }
.overflow-x-hidden { overflow-x: hidden; }

/* ============================================
   FLEXBOX
   ============================================ */
.flex { display: flex; }
.inline-flex { display: inline-flex; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.items-end { align-items: flex-end; }
.items-stretch { align-items: stretch; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.justify-start { justify-content: flex-start; }
.flex-col { flex-direction: column; }
.flex-row { flex-direction: row; }
.flex-1 { flex: 1 1 0%; }
.flex-shrink-0 { flex-shrink: 0; }

/* ============================================
   GRID
   ============================================ */
.grid { display: grid; }
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }

/* ============================================
   SPACING
   ============================================ */
.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; }

.p-1 { padding: 0.25rem; }
.p-3 { padding: 0.75rem; }
.p-4 { padding: 1rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.pt-6 { padding-top: 1.5rem; }
.pt-8 { padding-top: 2rem; }
.pt-12 { padding-top: 3rem; }
.pb-6 { padding-bottom: 1.5rem; }

.mb-3 { margin-bottom: 0.75rem; }
.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; }
.mb-20 { margin-bottom: 5rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-12 { margin-top: 3rem; }

.min-h-screen { min-height: 100vh; }
.min-h-[90vh] { min-height: 90vh; }
.min-h-[180px] { min-height: 180px; }
.min-h-[200px] { min-height: 200px; }
.min-h-[320px] { min-height: 320px; }

/* ============================================
   DISPLAY
   ============================================ */
.block { display: block; }
.hidden { display: none; }
.inline-block { display: inline-block; }

/* ============================================
   TYPOGRAPHY
   ============================================ */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.text-xs { font-size: 0.75rem; line-height: 1rem; }
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.text-base { font-size: 1rem; line-height: 1.5rem; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.text-2xl { font-size: 1.5rem; line-height: 2rem; }
.text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
.text-5xl { font-size: 3rem; line-height: 1.1; }
.text-6xl { font-size: 3.75rem; line-height: 1.05; }
.text-7xl { font-size: 4.5rem; line-height: 1.03; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.uppercase { text-transform: uppercase; }
.tracking-wider { letter-spacing: 0.08em; }
.leading-tight { line-height: 1.15; }
.leading-relaxed { line-height: 1.625; }
.italic { font-style: italic; }
.break-words { overflow-wrap: break-word; }

/* ============================================
   COLORS
   ============================================ */
.text-foreground { color: hsl(var(--foreground)); }
.text-primary { color: hsl(var(--primary)); }
.text-primary-foreground { color: hsl(var(--primary-foreground)); }
.text-muted-foreground { color: hsl(var(--muted-foreground)); }
.text-accent { color: hsl(var(--accent)); }
.text-inherit { color: inherit; }
.text-gray-800 { color: rgb(31 41 55); }

.bg-background { background-color: hsl(var(--background)); }
.bg-primary { background-color: hsl(var(--primary)); }
.bg-secondary { background-color: hsl(var(--secondary)); }
.bg-accent { background-color: hsl(var(--accent)); }
.bg-card { background-color: hsl(var(--card)); }

/* ============================================
   OPACITY
   ============================================ */
.opacity-20 { opacity: 0.2; }
.opacity-25 { opacity: 0.25; }
.opacity-30 { opacity: 0.3; }
.opacity-75 { opacity: 0.75; }
.opacity-90 { opacity: 0.9; }

/* ============================================
   BORDERS
   ============================================ */
.border { border: 1px solid hsl(var(--border)); }
.border-2 { border: 2px solid hsl(var(--border)); }
.border-4 { border: 4px solid hsl(var(--border)); }
.border-t { border-top: 1px solid hsl(var(--border)); }
.border-primary { border-color: hsl(var(--primary)); }
.border-accent { border-color: hsl(var(--accent)); }

/* ============================================
   BORDER RADIUS
   ============================================ */
.rounded-full { border-radius: 9999px; }
.rounded-lg { border-radius: 0.5rem; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-3xl { border-radius: 1.5rem; }
.rounded-br-lg { border-bottom-right-radius: 0.5rem; }
.rounded-[60%_40%_30%_70%/60%_30%_70%_40%] { 
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; 
}
.rounded-[40%_60%_70%_30%/40%_60%_30%_70%] { 
  border-radius: 40% 60% 70% 30% / 40% 60% 30% 70%; 
}

/* ============================================
   SHADOWS
   ============================================ */
.shadow-sm { box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); }
.shadow-lg { box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1); }
.shadow-xl { box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1); }
.shadow-2xl { box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2); }

/* ============================================
   TRANSITIONS
   ============================================ */
.transition-all { transition: all 0.3s ease; }
.transition-colors { transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease; }
.transition-transform { transition: transform 0.2s ease; }
.transition-opacity { transition: opacity 0.3s ease; }
.duration-200 { transition-duration: 0.2s; }
.duration-300 { transition-duration: 0.3s; }

/* ============================================
   SIZING
   ============================================ */
.w-4 { width: 1rem; }
.w-6 { width: 1.5rem; }
.w-8 { width: 2rem; }
.w-10 { width: 2.5rem; }
.w-12 { width: 3rem; }
.w-16 { width: 4rem; }
.w-20 { width: 5rem; }
.w-28 { width: 7rem; }
.w-32 { width: 8rem; }
.w-36 { width: 9rem; }
.w-40 { width: 10rem; }
.w-48 { width: 12rem; }
.h-4 { height: 1rem; }
.h-6 { height: 1.5rem; }
.h-8 { height: 2rem; }
.h-10 { height: 2.5rem; }
.h-12 { height: 3rem; }
.h-16 { height: 4rem; }
.h-20 { height: 5rem; }
.h-28 { height: 7rem; }
.h-32 { height: 8rem; }
.h-36 { height: 9rem; }
.h-40 { height: 10rem; }
.h-48 { height: 12rem; }

/* ============================================
   ASPECT RATIO
   ============================================ */
.aspect-square { position: relative; }
.aspect-square::before { content: ""; display: block; padding-bottom: 100%; }

/* ============================================
   SPACE UTILITIES
   ============================================ */
.space-y-1 > * + * { margin-top: 0.25rem; }
.space-y-2 > * + * { margin-top: 0.5rem; }
.space-y-3 > * + * { margin-top: 0.75rem; }
.space-y-4 > * + * { margin-top: 1rem; }
.space-y-6 > * + * { margin-top: 1.5rem; }
.space-y-8 > * + * { margin-top: 2rem; }

/* ============================================
   BOTONES Y COMPONENTES (Exactos de Lovable)
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  padding: 0.875rem 1.25rem;
  border-radius: 0.375rem;
  border: 1px solid hsl(var(--primary));
  text-decoration: none;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
  line-height: 1.5rem;
  white-space: nowrap;
  ring-offset-background: hsl(var(--background));
  focus-visible: outline-none;
  focus-visible: ring-2;
  focus-visible: ring-ring;
  focus-visible: ring-offset-2;
  disabled: pointer-events-none;
  disabled: opacity-50;
}

.btn:hover {
  background: hsl(var(--accent));
  transform: translateY(-1px);
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: transparent;
  color: hsl(var(--primary));
  padding: 0.875rem 1.25rem;
  border-radius: 0.375rem;
  border: 2px solid hsl(var(--primary));
  text-decoration: none;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
  line-height: 1.5rem;
  white-space: nowrap;
}

.btn-outline:hover {
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  transform: translateY(-1px);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

/* ============================================
   CARDS Y EFECTOS HOVER (Exactos de Lovable)
   ============================================ */
.card {
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  padding: 1.5rem;
  color: hsl(var(--card-foreground));
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.card:hover {
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.card.border-2 {
  border: 2px solid hsl(var(--border));
}

.card.border-2:hover {
  border-color: hsl(var(--accent));
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1);
}

/* ============================================
   GRADIENTES Y FONDOS (Exactos de Lovable)
   ============================================ */
.bg-gradient-to-br {
  background-image: linear-gradient(to bottom right, hsl(var(--secondary)), hsl(var(--background)));
}

.from-secondary\/30 {
  background-image: linear-gradient(to bottom right, hsl(var(--secondary) / 0.3), hsl(var(--background)));
}

.from-primary\/5 {
  background-image: linear-gradient(to bottom right, hsl(var(--primary) / 0.05), hsl(var(--background)));
}

.to-primary\/20 {
  background-image: linear-gradient(to bottom right, hsl(var(--background)), hsl(var(--primary) / 0.2));
}

.to-accent\/5 {
  background-image: linear-gradient(to bottom right, hsl(var(--background)), hsl(var(--accent) / 0.05));
}

/* ============================================
   FILTROS Y EFECTOS (Exactos de Lovable)
   ============================================ */
.blur-xl { filter: blur(24px); }
.blur-2xl { filter: blur(40px); }
.backdrop-blur-sm { backdrop-filter: blur(4px); }

/* ============================================
   ANIMACIONES (Exactas de Lovable)
   ============================================ */
@keyframes fade-in {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

@keyframes accordion-down {
  from { height: 0; }
  to { height: var(--radix-accordion-content-height); }
}

@keyframes accordion-up {
  from { height: var(--radix-accordion-content-height); }
  to { height: 0; }
}

.animate-fade-in {
  animation: fade-in 0.6s ease-out;
}

.animate-pulse {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.animate-accordion-down {
  animation: accordion-down 0.2s ease-out;
}

.animate-accordion-up {
  animation: accordion-up 0.2s ease-out;
}

/* ============================================
   HOVER EFFECTS ESPECÍFICOS (Exactos de Lovable)
   ============================================ */
.hover\:border-accent:hover {
  border-color: hsl(var(--accent));
}

.hover\:shadow-lg:hover {
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.hover\:shadow-xl:hover {
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1);
}

.hover\:-translate-y-1:hover {
  transform: translateY(-0.25rem);
}

.hover\:opacity-100:hover {
  opacity: 1;
}

.hover\:no-underline:hover {
  text-decoration: none;
}

.group:hover .group-hover\:bg-accent\/20 {
  background-color: hsl(var(--accent) / 0.2);
}

.group:hover .group-hover\:translate-x-1 {
  transform: translateX(0.25rem);
}

/* ============================================
   CAROUSEL STYLES (Exactos de Lovable)
   ============================================ */
.carousel {
  position: relative;
  overflow: hidden;
}

.carousel-content {
  display: flex;
  transition: transform 0.3s ease;
}

.carousel-item {
  flex: 0 0 100%;
  min-width: 0;
}

.carousel-controls {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}

.carousel-prev,
.carousel-next {
  background: hsl(var(--accent));
  color: white;
  border: none;
  border-radius: 50%;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1.2rem;
  font-weight: bold;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.carousel-prev:hover,
.carousel-next:hover {
  background: hsl(var(--accent) / 0.9);
  transform: scale(1.1);
}

/* ============================================
   ARROW ICON (Exacto de Lovable)
   ============================================ */
.arrow-right {
  width: 0;
  height: 0;
  border-left: 8px solid hsl(var(--primary));
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
}

/* ============================================
   SECTIONS ESPECÍFICAS (Exactas de Lovable)
   ============================================ */
.section {
  padding: 5rem 1rem;
}

.section-title {
  font-size: 2.25rem;
  line-height: 1.15;
  color: hsl(var(--primary));
  font-weight: 700;
  text-align: center;
  margin: 0 0 2rem;
}

/* ============================================
   NAVIGATION (Exacta de Lovable)
   ============================================ */
.site-nav a {
  color: hsl(var(--foreground));
  text-decoration: none;
  padding: 0.5rem 0;
  transition: color 0.3s ease;
  font-weight: 500;
}

.site-nav a:hover {
  color: hsl(var(--primary));
}

/* ============================================
   FOOTER (Exacto de Lovable)
   ============================================ */
.footer {
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
}

.footer a {
  color: hsl(var(--primary-foreground));
  opacity: 0.9;
  transition: opacity 0.3s ease;
  text-decoration: none;
}

.footer a:hover {
  opacity: 1;
}

/* ============================================
   PROSE (Exacto de Lovable)
   ============================================ */
.prose {
  max-width: 65ch;
  line-height: 1.7;
}

.prose h1,
.prose h2,
.prose h3,
.prose h4,
.prose h5,
.prose h6 {
  font-weight: 600;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.prose p {
  margin-bottom: 1rem;
}

.prose a {
  color: hsl(var(--primary));
  text-decoration: underline;
  transition: color 0.3s ease;
}

.prose a:hover {
  text-decoration: none;
  color: hsl(var(--accent));
}

/* ============================================
   CURSOR (Exacto de Lovable)
   ============================================ */
.cursor-pointer {
  cursor: pointer;
}

/* ============================================
   DETAILS/SUMMARY (FAQ) - Exacto de Lovable
   ============================================ */
details {
  cursor: pointer;
}

summary {
  list-style: none;
  cursor: pointer;
}

summary::-webkit-details-marker {
  display: none;
}

/* ============================================
   ACCORDION (Exacto de Lovable)
   ============================================ */
.accordion {
  border-bottom: 1px solid hsl(var(--border));
}

.accordion-trigger {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  font-weight: 500;
  transition: all 0.3s ease;
  text-align: left;
}

.accordion-trigger:hover {
  text-decoration: underline;
}

.accordion-trigger[data-state="open"] > svg {
  transform: rotate(180deg);
}

.accordion-content {
  overflow: hidden;
  font-size: 0.875rem;
  transition: all 0.3s ease;
}

.accordion-content[data-state="closed"] {
  animation: accordion-up 0.2s ease-out;
}

.accordion-content[data-state="open"] {
  animation: accordion-down 0.2s ease-out;
}

.accordion-content > div {
  padding-bottom: 1rem;
  padding-top: 0;
}

/* ============================================
   UTILIDADES ADICIONALES (Exactas de Lovable)
   ============================================ */
.bg-accent\/10 { background-color: hsl(var(--accent) / 0.1); }
.bg-accent\/20 { background-color: hsl(var(--accent) / 0.2); }
.bg-accent\/25 { background-color: hsl(var(--accent) / 0.25); }
.bg-accent\/30 { background-color: hsl(var(--accent) / 0.3); }
.bg-primary\/20 { background-color: hsl(var(--primary) / 0.2); }
.bg-primary\/30 { background-color: hsl(var(--primary) / 0.3); }
.bg-primary\/40 { background-color: hsl(var(--primary) / 0.4); }
.bg-secondary\/20 { background-color: hsl(var(--secondary) / 0.2); }
.bg-secondary\/30 { background-color: hsl(var(--secondary) / 0.3); }
.bg-secondary\/40 { background-color: hsl(var(--secondary) / 0.4); }
.bg-secondary\/50 { background-color: hsl(var(--secondary) / 0.5); }

.border-primary\/30 { border-color: hsl(var(--primary) / 0.3); }
.border-primary-foreground\/20 { border-color: hsl(var(--primary-foreground) / 0.2); }

.text-accent\/30 { color: hsl(var(--accent) / 0.3); }

.bg-background\/50 { background-color: hsl(var(--background) / 0.5); }

/* ============================================
   RESPONSIVE ESPECÍFICO (Exacto de Lovable)
   ============================================ */
@media (min-width: 640px) {
  .sm\:p-8 { padding: 2rem; }
  .sm\:text-base { font-size: 1rem; line-height: 1.5rem; }
  .sm\:text-xl { font-size: 1.25rem; line-height: 1.75rem; }
  .sm\:text-sm { font-size: 0.875rem; line-height: 1.25rem; }
  .sm\:flex-row { flex-direction: row; }
  .sm\:py-5 { padding-top: 1.25rem; padding-bottom: 1.25rem; }
}

@media (min-width: 768px) {
  .md\:text-5xl { font-size: 3rem; line-height: 1.1; }
  .md\:text-6xl { font-size: 3.75rem; line-height: 1.05; }
  .md\:flex-row { flex-direction: row; }
  .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .md\:gap-8 { gap: 2rem; }
  .md\:block { display: block; }
  .md\:hidden { display: none; }
  .md\:py-5 { padding-top: 1.25rem; padding-bottom: 1.25rem; }
}

@media (min-width: 1024px) {
  .lg\:hidden { display: none; }
  .lg\:grid-cols-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .lg\:grid-cols-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .lg\:flex-row { display: flex; flex-direction: row; }
  .lg\:gap-16 { gap: 4rem; }
  .lg\:pr-8 { padding-right: 2rem; }
}

/* ============================================
   ESPECÍFICO PARA LAYOUTS (Exacto de Lovable)
   ============================================ */
.hidden.md\:flex {
  display: none;
}

@media (min-width: 768px) {
  .hidden.md\:flex {
    display: flex;
  }
}

.hidden.lg\:grid {
  display: none;
}

@media (min-width: 1024px) {
  .hidden.lg\:grid {
    display: grid;
  }
}

.block.md\:hidden {
  display: block;
}

@media (min-width: 768px) {
  .block.md\:hidden {
    display: none;
  }
}

.block.lg\:hidden {
  display: block;
}

@media (min-width: 1024px) {
  .block.lg\:hidden {
    display: none;
  }
}

/* ============================================
   ESPECÍFICO PARA CAROUSEL (Exacto de Lovable)
   ============================================ */
.carousel-container {
  position: relative;
}

.carousel-container .carousel {
  position: relative;
  overflow: hidden;
}

.carousel-container .carousel-content {
  display: flex;
  transition: transform 0.3s ease;
}

.carousel-container .carousel-item {
  flex: 0 0 100%;
  min-width: 0;
}

.carousel-container .carousel-controls {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}

/* ============================================
   ESPECÍFICO PARA FAQ (Exacto de Lovable)
   ============================================ */
.faq-mobile {
  display: block;
}

@media (min-width: 768px) {
  .faq-mobile {
    display: none;
  }
}

.faq-desktop {
  display: none;
}

@media (min-width: 768px) {
  .faq-desktop {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
  }
}

/* ============================================
   ESPECÍFICO PARA PROMISES (Exacto de Lovable)
   ============================================ */
.promises-mobile {
  display: block;
}

@media (min-width: 768px) {
  .promises-mobile {
    display: none;
  }
}

.promises-desktop {
  display: none;
}

@media (min-width: 768px) {
  .promises-desktop {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
  }
}

.promises-desktop .promise-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.5rem 2rem;
  background: hsl(var(--card));
  border-radius: 0.5rem;
  border: 2px solid hsl(var(--border));
  transition: all 0.3s ease;
  min-height: 280px;
  width: 100%;
  max-width: 350px;
}

@media (min-width: 768px) {
  .promises-desktop .promise-item {
    width: calc(33.333% - 1rem);
  }
}

.promises-desktop .promise-item:hover {
  border-color: hsl(var(--accent));
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

/* ============================================
   UTILIDADES ESPECÍFICAS DE LOVABLE
   ============================================ */
.ml-1 { margin-left: 0.25rem; }
.ml-2 { margin-left: 0.5rem; }
.mx-2 { margin-left: 0.5rem; margin-right: 0.5rem; }
.-ml-12 { margin-left: -3rem; }
.ml-12 { margin-left: 3rem; }
.-top-8 { top: -2rem; }
.-right-8 { right: -2rem; }
.-bottom-12 { bottom: -3rem; }
.-left-12 { left: -3rem; }
.top-1\/3 { top: 33.333333%; }
.left-1\/4 { left: 25%; }
.bottom-1\/3 { bottom: 33.333333%; }
.right-1\/3 { right: 33.333333%; }
.top-1\/2 { top: 50%; }
.left-1\/3 { left: 33.333333%; }
.right-1\/4 { right: 25%; }
.bottom-1\/4 { bottom: 25%; }
.right-1\/3 { right: 33.333333%; }

/* ============================================
   ESPECÍFICO PARA ELEMENTOS DECORATIVOS
   ============================================ */
.absolute.top-20.left-10 { top: 5rem; left: 2.5rem; }
.absolute.top-32.right-20 { top: 8rem; right: 5rem; }
.absolute.bottom-40.left-32 { bottom: 10rem; left: 8rem; }
.absolute.top-1\/3.left-1\/4 { top: 33.333333%; left: 25%; }
.absolute.bottom-1\/3.right-1\/3 { bottom: 33.333333%; right: 33.333333%; }
.absolute.-top-8.-right-8 { top: -2rem; right: -2rem; }
.absolute.-bottom-12.-left-12 { bottom: -3rem; left: -3rem; }
.absolute.top-0.right-1\/4 { top: 0; right: 25%; }
.absolute.top-20.right-20 { top: 5rem; right: 5rem; }
.absolute.bottom-32.left-10 { bottom: 8rem; left: 2.5rem; }
.absolute.top-1\/2.right-1\/3 { top: 50%; right: 33.333333%; }
.absolute.top-32.right-20 { top: 8rem; right: 5rem; }
.absolute.bottom-40.left-20 { bottom: 10rem; left: 5rem; }
.absolute.top-1\/2.left-1\/3 { top: 50%; left: 33.333333%; }
.absolute.top-20.left-10 { top: 5rem; left: 2.5rem; }
.absolute.top-40.right-20 { top: 10rem; right: 5rem; }
.absolute.bottom-32.left-1\/4 { bottom: 8rem; left: 25%; }
.absolute.bottom-20.right-1\/3 { bottom: 5rem; right: 33.333333%; }

/* ============================================
   ESPECÍFICO PARA GRADIENTES COMPLEJOS
   ============================================ */
.bg-gradient-to-br.from-secondary\/30.via-background.to-primary\/20 {
  background-image: linear-gradient(to bottom right, 
    hsl(var(--secondary) / 0.3), 
    hsl(var(--background)), 
    hsl(var(--primary) / 0.2)
  );
}

.bg-gradient-to-br.from-primary\/5.to-accent\/5 {
  background-image: linear-gradient(to bottom right, 
    hsl(var(--primary) / 0.05), 
    hsl(var(--accent) / 0.05)
  );
}

.bg-gradient-to-br.from-primary.to-accent {
  background-image: linear-gradient(to bottom right, 
    hsl(var(--primary)), 
    hsl(var(--accent))
  );
}

/* ============================================
   ESPECÍFICO PARA BORDES COMPLEJOS
   ============================================ */
.border-t-8.border-t-transparent.border-l-12.border-l-primary.border-b-8.border-b-transparent {
  border-top: 8px solid transparent;
  border-left: 12px solid hsl(var(--primary));
  border-bottom: 8px solid transparent;
}

/* ============================================
   ESPECÍFICO PARA Z-INDEX
   ============================================ */
.relative.z-10 { position: relative; z-index: 10; }

/* ============================================
   ESPECÍFICO PARA OVERFLOW
   ============================================ */
.overflow-x-clip { overflow-x: clip; }

/* ============================================
   ESPECÍFICO PARA FLEX SHRINK
   ============================================ */
.shrink-0 { flex-shrink: 0; }

/* ============================================
   ESPECÍFICO PARA MIN WIDTH
   ============================================ */
.min-w-0 { min-width: 0; }

/* ============================================
   ESPECÍFICO PARA BASIS
   ============================================ */
.basis-full { flex-basis: 100%; }

/* ============================================
   ESPECÍFICO PARA PL Y PT
   ============================================ */
.pl-4 { padding-left: 1rem; }
.pt-4 { padding-top: 1rem; }

/* ============================================
   ESPECÍFICO PARA MARGIN NEGATIVO
   ============================================ */
.-ml-4 { margin-left: -1rem; }
.-mt-4 { margin-top: -1rem; }

/* ============================================
   ESPECÍFICO PARA MAX WIDTH CON CALC
   ============================================ */
.max-w-\[calc\(33\.333\%-1rem\)\] { max-width: calc(33.333% - 1rem); }

/* ============================================
   ESPECÍFICO PARA WIDTH CON CALC
   ============================================ */
.w-\[calc\(33\.333\%-1rem\)\] { width: calc(33.333% - 1rem); }

/* ============================================
   ESPECÍFICO PARA HOVER EN GRUPOS
   ============================================ */
.group:hover .group-hover\:bg-accent\/20 {
  background-color: hsl(var(--accent) / 0.2);
}

.group:hover .group-hover\:translate-x-1 {
  transform: translateX(0.25rem);
}

/* ============================================
   ESPECÍFICO PARA FOCUS VISIBLE
   ============================================ */
.focus-visible\:outline-none:focus-visible {
  outline: none;
}

.focus-visible\:ring-2:focus-visible {
  box-shadow: 0 0 0 2px hsl(var(--ring));
}

.focus-visible\:ring-ring:focus-visible {
  box-shadow: 0 0 0 2px hsl(var(--ring));
}

.focus-visible\:ring-offset-2:focus-visible {
  box-shadow: 0 0 0 2px hsl(var(--ring)), 0 0 0 4px hsl(var(--background));
}

/* ============================================
   ESPECÍFICO PARA DISABLED
   ============================================ */
.disabled\:pointer-events-none:disabled {
  pointer-events: none;
}

.disabled\:opacity-50:disabled {
  opacity: 0.5;
}

/* ============================================
   ESPECÍFICO PARA RING OFFSET
   ============================================ */
.ring-offset-background {
  --tw-ring-offset-color: hsl(var(--background));
}

/* ============================================
   ESPECÍFICO PARA WHITESPACE
   ============================================ */
.whitespace-nowrap {
  white-space: nowrap;
}

/* ============================================
   ESPECÍFICO PARA SCREEN READER
   ============================================ */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ============================================
   ESPECÍFICO PARA ROTATE
   ============================================ */
.rotate-90 {
  transform: rotate(90deg);
}

.rotate-180 {
  transform: rotate(180deg);
}

/* ============================================
   ESPECÍFICO PARA SCALE
   ============================================ */
.hover\:scale-110:hover {
  transform: scale(1.1);
}

/* ============================================
   ESPECÍFICO PARA TRANSFORM
   ============================================ */
.-translate-x-1\/2 {
  transform: translateX(-50%);
}

.-translate-y-1\/2 {
  transform: translateY(-50%);
}

/* ============================================
   ESPECÍFICO PARA POSITIONING ABSOLUTE
   ============================================ */
.absolute.-bottom-16 {
  bottom: -4rem;
}

.absolute.left-1\/2 {
  left: 50%;
}

/* ============================================
   ESPECÍFICO PARA BORDER NONE
   ============================================ */
.border-none {
  border: none;
}

/* ============================================
   ESPECÍFICO PARA LIST STYLE
   ============================================ */
.list-none {
  list-style: none;
}
