/**
 * Estilos mínimos para landings SEO (agencia-modelos, etc.).
 * Sustituye cdn.tailwindcss.com: menos bytes, sin JS, sin bloqueo por compilador en runtime.
 */
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  color-scheme: dark;
  background: #000;
}
body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.5;
}
a {
  color: inherit;
  text-decoration: none;
}
img,
picture {
  max-width: 100%;
  display: block;
}
strong {
  font-weight: 700;
}

/* —— Utilidades usadas en seo_render.py (nombres tipo Tailwind) —— */
.min-h-screen {
  min-height: 100vh;
}
.bg-\[\#121212\] {
  background-color: #121212;
}
.text-white {
  color: #fff;
}
.border-b {
  border-bottom-width: 1px;
  border-bottom-style: solid;
}
.border-t {
  border-top-width: 1px;
  border-top-style: solid;
}
.border {
  border-width: 1px;
  border-style: solid;
}
.border-white\/10 {
  border-color: rgba(255, 255, 255, 0.1);
}
.border-white\/5 {
  border-color: rgba(255, 255, 255, 0.05);
}
.border-gray-600 {
  border-color: #4b5563;
}
.border-gray-700 {
  border-color: #374151;
}
.py-4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.py-5 {
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}
.py-8 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.py-12 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}
.p-6 {
  padding: 1.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-6 {
  margin-bottom: 1.5rem;
}
.mb-8 {
  margin-bottom: 2rem;
}
.mb-10 {
  margin-bottom: 2.5rem;
}
.mb-12 {
  margin-bottom: 3rem;
}
.mb-24 {
  margin-bottom: 6rem;
}
.mt-6 {
  margin-top: 1.5rem;
}
.mt-8 {
  margin-top: 2rem;
}
.mt-12 {
  margin-top: 3rem;
}
.mt-16 {
  margin-top: 4rem;
}
.mx-auto {
  margin-left: auto;
  margin-right: auto;
}
.max-w-2xl {
  max-width: 42rem;
}
.max-w-4xl {
  max-width: 56rem;
}
.max-w-5xl {
  max-width: 64rem;
}
.max-w-none {
  max-width: none;
}
.flex {
  display: flex;
}
.grid {
  display: grid;
}
.grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.gap-4 {
  gap: 1rem;
}
.items-center {
  align-items: center;
}
.justify-between {
  justify-content: space-between;
}
.hidden {
  display: none !important;
}
.block {
  display: block;
}
.h-full {
  height: 100%;
}
.w-full {
  width: 100%;
}
.overflow-hidden {
  overflow: hidden;
}
.rounded-2xl {
  border-radius: 1rem;
}
.rounded-3xl {
  border-radius: 1.5rem;
}
.rounded-xl {
  border-radius: 0.75rem;
}
.text-center {
  text-align: center;
}
.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;
}
.font-bold {
  font-weight: 700;
}
.font-semibold {
  font-weight: 600;
}
.uppercase {
  text-transform: uppercase;
}
.tracking-tight {
  letter-spacing: -0.025em;
}
.tracking-widest {
  letter-spacing: 0.1em;
}
.leading-relaxed {
  line-height: 1.625;
}
.list-inside {
  list-style-position: inside;
}
.list-disc {
  list-style-type: disc;
}
.text-gray-100 {
  color: #f3f4f6;
}
.text-gray-200 {
  color: #e5e7eb;
}
.text-gray-300 {
  color: #d1d5db;
}
.text-gray-400 {
  color: #9ca3af;
}
.text-pink-400 {
  color: #f472b6;
}
.text-pink-500 {
  color: #ec4899;
}
.text-red-400 {
  color: #f87171;
}
.bg-black\/30 {
  background-color: rgba(0, 0, 0, 0.3);
}
.bg-black\/40 {
  background-color: rgba(0, 0, 0, 0.4);
}
.bg-gray-800\/50 {
  background-color: rgba(31, 41, 55, 0.5);
}
.bg-pink-600 {
  background-color: #db2777;
}
.shadow-xl {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.35), 0 8px 10px -6px rgba(0, 0, 0, 0.35);
}
.shadow-lg {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.35), 0 4px 6px -4px rgba(0, 0, 0, 0.35);
}
.outline-none {
  outline: 2px solid transparent;
  outline-offset: 2px;
}
.transition {
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.hover\:bg-pink-700:hover {
  background-color: #be185d;
}
.hover\:text-pink-500:hover {
  color: #ec4899;
}
.hover\:text-pink-300:hover {
  color: #f9a8d4;
}
.hover\:underline:hover {
  text-decoration: underline;
}
.focus\:border-pink-500:focus {
  border-color: #ec4899;
}
.focus\:ring-1.focus\:ring-pink-500:focus {
  outline: none;
  box-shadow: 0 0 0 1px #ec4899;
}
.px-4.py-3 {
  padding: 0.75rem 1rem;
}
button[type="submit"] {
  border: none;
  cursor: pointer;
}
select {
  cursor: pointer;
}
.aspect-\[16\/9\] {
  aspect-ratio: 16 / 9;
}
.object-cover {
  object-fit: cover;
}
.pt-8 {
  padding-top: 2rem;
}

/* space-y-* */
.space-y-1 > * + * {
  margin-top: 0.25rem;
}
.space-y-2 > * + * {
  margin-top: 0.5rem;
}
.space-y-4 > * + * {
  margin-top: 1rem;
}
.space-y-6 > * + * {
  margin-top: 1.5rem;
}

.placeholder-gray-500::placeholder {
  color: #6b7280;
}

@media (min-width: 768px) {
  .md\:text-4xl {
    font-size: 2.25rem;
    line-height: 2.5rem;
  }
}

/* Bloque tipo Tailwind Typography mínimo */
.prose.prose-invert {
  color: #d1d5db;
}
.prose.prose-invert p {
  margin: 0;
}

/* Contenido con HTML seguro (p. ej. <strong> en intros) */
.text-gray-300 strong {
  color: #fff;
  font-weight: 700;
}
