/* ===== SANTA ISABEL 3 — Tailwind utility classes (minimal, page-specific) ===== */
/* Replaces cdn.tailwindcss.com runtime for this single page. No redesign. */

/* --- Reset & Base --- */
*, ::before, ::after { box-sizing: border-box; border-width: 0; border-style: solid; }
html { -webkit-text-size-adjust: 100%; tab-size: 4; line-height: 1.15; }
body { margin: 0; }
a { color: inherit; text-decoration: inherit; }
img, video { display: block; max-width: 100%; }
button, input, select { font-family: inherit; font-size: 100%; line-height: inherit; margin: 0; padding: 0; color: inherit; }
button { cursor: pointer; text-transform: none; }
ul, ol { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4, p { margin: 0; }
details summary { cursor: pointer; }
details summary::-webkit-details-marker { display: none; }

/* --- Display --- */
.hidden { display: none; }
.block { display: block; }
.inline-block { display: inline-block; }
.flex { display: flex; }
.inline-flex { display: inline-flex; }
.grid { display: grid; }

/* --- Position --- */
.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
.top-0 { top: 0; }
.top-3 { top: 0.75rem; }
.top-8 { top: 2rem; }
.top-1\/2 { top: 50%; }
.right-0 { right: 0; }
.left-0 { left: 0; }
.left-1\/2 { left: 50%; }
.left-6 { left: 1.5rem; }
.bottom-0 { bottom: 0; }
.bottom-8 { bottom: 2rem; }

.-top-3 { top: -0.75rem; }

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

/* --- Flexbox --- */
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.flex-1 { flex: 1 1 0%; }
.items-start { align-items: flex-start; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.shrink-0 { flex-shrink: 0; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-16 { gap: 4rem; }

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

/* --- Sizing --- */
.w-full { width: 100%; }
.w-auto { width: auto; }
.w-1\/3 { width: 33.333333%; }
.w-5 { width: 1.25rem; }
.w-6 { width: 1.5rem; }
.w-7 { width: 1.75rem; }
.w-14 { width: 3.5rem; }
.w-16 { width: 4rem; }

.h-full { height: 100%; }
.h-auto { height: auto; }
.h-5 { height: 1.25rem; }
.h-6 { height: 1.5rem; }
.h-7 { height: 1.75rem; }
.h-10 { height: 2.5rem; }
.h-14 { height: 3.5rem; }
.h-16 { height: 4rem; }
.h-48 { height: 12rem; }
.h-56 { height: 14rem; }

.min-h-screen { min-height: 100vh; }

/* --- Max Width --- */
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-7xl { max-width: 80rem; }

/* --- Spacing (margin) --- */
.mx-auto { margin-left: auto; margin-right: auto; }
.mt-0\.5 { margin-top: 0.125rem; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mt-5 { margin-top: 1.25rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-10 { margin-top: 2.5rem; }
.mt-12 { margin-top: 3rem; }
.mt-14 { margin-top: 3.5rem; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-5 { margin-bottom: 1.25rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-12 { margin-bottom: 3rem; }

/* --- Spacing (padding) --- */
.p-5 { padding: 1.25rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-5 { padding-left: 1.25rem; padding-right: 1.25rem; }
.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-3\.5 { padding-top: 0.875rem; padding-bottom: 0.875rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.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-8 { padding-top: 2rem; }
.pt-24 { padding-top: 6rem; }
.pb-5 { padding-bottom: 1.25rem; }
.pb-20 { padding-bottom: 5rem; }

/* --- Space between (flex/grid children) --- */
.space-y-3 > :not([hidden]) ~ :not([hidden]) { margin-top: 0.75rem; }
.space-y-5 > :not([hidden]) ~ :not([hidden]) { margin-top: 1.25rem; }

/* --- Typography --- */
.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-3xl { font-size: 1.875rem; line-height: 2.25rem; }
.text-4xl { font-size: 2.25rem; line-height: 2.5rem; }

.font-bold { font-weight: 700; }
.font-semibold { font-weight: 600; }
.uppercase { text-transform: uppercase; }
.leading-tight { line-height: 1.25; }
.leading-relaxed { line-height: 1.625; }
.tracking-wider { letter-spacing: 0.05em; }
.tracking-\[\.2em\] { letter-spacing: 0.2em; }
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.text-white { color: #fff; }
.text-white\/40 { color: rgba(255,255,255,.4); }
.text-white\/50 { color: rgba(255,255,255,.5); }
.text-white\/70 { color: rgba(255,255,255,.7); }
.text-white\/80 { color: rgba(255,255,255,.8); }
.text-dourado\/60 { color: rgba(232,185,97,.6); }
.text-oliva-medio\/60 { color: rgba(91,87,50,.6); }
.text-oliva-medio\/70 { color: rgba(91,87,50,.7); }
.text-red-500 { color: #ef4444; }

/* --- Background --- */
.bg-white { background-color: #fff; }
.bg-oliva\/95 { background-color: rgba(54,54,35,.95); }
.bg-\[#2F2F23\] { background-color: #2F2F23; }

/* --- Border --- */
.border { border-width: 1px; }
.border-2 { border-width: 2px; }
.border-t { border-top-width: 1px; }
.border-white\/10 { border-color: rgba(255,255,255,.1); }
.border-\[#807E60\]\/20 { border-color: rgba(128,126,96,.2); }
.border-\[#807E60\]\/30 { border-color: rgba(128,126,96,.3); }

/* --- Border Radius --- */
.rounded { border-radius: 0.25rem; }
.rounded-md { border-radius: 0.375rem; }
.rounded-lg { border-radius: 0.5rem; }
.rounded-xl { border-radius: 0.75rem; }

/* --- Overflow --- */
.overflow-hidden { overflow: hidden; }

/* --- Object Fit --- */
.object-cover { object-fit: cover; }
.object-\[center_35\%\] { object-position: center 35%; }

/* --- Opacity --- */
.opacity-5 { opacity: 0.05; }

/* --- Shadow --- */
.shadow-sm { box-shadow: 0 1px 2px 0 rgba(0,0,0,.05); }
.shadow-lg { box-shadow: 0 10px 15px -3px rgba(0,0,0,.1), 0 4px 6px -4px rgba(0,0,0,.1); }
.shadow-2xl { box-shadow: 0 25px 50px -12px rgba(0,0,0,.25); }

/* --- Transform --- */
.-translate-x-1\/2 { transform: translateX(-50%); }

/* --- Transitions --- */
.transition-all { transition-property: all; transition-timing-function: cubic-bezier(.4,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(.4,0,.2,1); transition-duration: 150ms; }
.transition-transform { transition-property: transform; transition-timing-function: cubic-bezier(.4,0,.2,1); transition-duration: 150ms; }
.duration-300 { transition-duration: 300ms; }
.duration-500 { transition-duration: 500ms; }

/* --- SVG --- */
.fill-none { fill: none; }
.stroke-current { stroke: currentColor; }

/* --- Cursor --- */
.cursor-pointer { cursor: pointer; }

/* --- Effects --- */
.backdrop-blur { backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); }

/* --- Group Hover --- */
.group:hover .group-hover\:scale-105 { transform: scale(1.05); }

/* --- Responsive: sm (640px+) --- */
@media (min-width: 640px) {
  .sm\:flex-row { flex-direction: row; }
  .sm\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sm\:col-span-2 { grid-column: span 2 / span 2; }
  .sm\:px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
  .sm\:text-xl { font-size: 1.25rem; line-height: 1.75rem; }
  .sm\:text-5xl { font-size: 3rem; line-height: 1; }
}

/* --- Responsive: md (768px+) --- */
@media (min-width: 768px) {
  .md\:flex { display: flex; }
  .md\:hidden { display: none; }
  .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .md\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .md\:flex-row { flex-direction: row; }
  .md\:object-center { object-position: center; }
  .md\:text-right { text-align: right; }
}

/* --- Responsive: lg (1024px+) --- */
@media (min-width: 1024px) {
  .lg\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .lg\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .lg\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .lg\:h-12 { height: 3rem; }
  .lg\:h-20 { height: 5rem; }
  .lg\:px-8 { padding-left: 2rem; padding-right: 2rem; }
  .lg\:py-28 { padding-top: 7rem; padding-bottom: 7rem; }
  .lg\:text-5xl { font-size: 3rem; line-height: 1; }
  .lg\:text-7xl { font-size: 4.5rem; line-height: 1; }
}

/* --- Inline SVG icon container (for w-6 h-6 inside a tag) --- */
svg.w-5, svg.w-6, svg.w-7 { display: inline; vertical-align: middle; }
a svg { display: inline; }

/* --- List none for FAQ summaries --- */
.list-none { list-style-type: none; }
[&::-webkit-details-marker]:hidden::-webkit-details-marker { display: none; }

/* --- Misc helper (brightness + invert for logo on dark bg) --- */
.brightness-0 { filter: brightness(0); }
.invert { filter: invert(1); }
