/* Anticipadas.net — diseño global (includes) */

:root {
  --family-body: "DM Sans", system-ui, sans-serif;
  --family-headings: "Outfit", "DM Sans", sans-serif;
  --family-display: "Outfit", "DM Sans", sans-serif;

  --ink: #0b0712;
  --ink-2: #16101f;
  --paper: #f4f1f8;
  --surface: #ffffff;
  --line: rgba(80, 40, 110, 0.12);
  --muted: #6d6478;
  --lilac: #e9d5ff;

  --color-primary: #c026d3;
  --color-primary-hover: #a21caf;
  --color-primary-hue: #fae8ff;
  --color-primary-rgb: 192, 38, 211;

  --color-secondary: #0b0712;
  --color-secondary-hover: #2a2038;
  --color-secondary-rgb: 11, 7, 18;
  --color-secondary-hue: #ece8f3;

  --color-body: #4b4458;
  --color-headings: #1a1225;
  --color-body-light-2: #ece8f4;
  --color-bg-light: #f7f4fb;
  --color-border: #e8e2f0;

  --logo-size-lg: auto;
  --logo-size-md: auto;
  --logo-size-sm: auto;

  --heading-one: 40px;
  --heading-two: 32px;
  --heading-three: 26px;
  --heading-four: 22px;
  --heading-five: 18px;
  --heading-six: 16px;

  --radius: 16px;
  --radius-sm: 12px;
  --shadow: 0 10px 30px rgba(28, 12, 48, 0.08);
  --header-h: 72px;
  --page-max: 100%;
  --page-pad: 16px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

html,
body {
  margin: 0;
  padding: 0;
}

body.site-body,
body.light-bg {
  font-family: var(--family-body);
  background:
    radial-gradient(circle at 100% -10%, rgba(192, 38, 211, 0.18), transparent 38%),
    radial-gradient(circle at 0% 35%, rgba(168, 85, 247, 0.10), transparent 32%),
    var(--paper);
  color: var(--color-body);
  -webkit-font-smoothing: antialiased;
  width: 100%;
  max-width: 100%;
  min-height: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  min-height: -webkit-fill-available;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
}

body.site-body .container,
body.light-bg .container {
  width: 100%;
  max-width: var(--page-max);
  padding-left: max(var(--page-pad), env(safe-area-inset-left));
  padding-right: max(var(--page-pad), env(safe-area-inset-right));
}

h1, h2, h3, h4, h5, h6,
.section-title h3,
.family-display {
  font-family: var(--family-headings);
  color: var(--color-headings);
  letter-spacing: -0.03em;
}

a {
  color: var(--color-primary);
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

a:hover {
  color: var(--color-primary-hover);
}

img {
  max-width: 100%;
  height: auto;
}

.site-skip {
  position: absolute;
  left: -999px;
  top: 8px;
  z-index: 2000;
  background: var(--ink);
  color: #fff;
  padding: 8px 14px;
  border-radius: 8px;
}

.site-skip:focus {
  left: 8px;
}

/* ---------- Header ---------- */
.andro_header,
.andro_header.style-4,
.andro_header-absolute.site-header,
.site-header {
  position: sticky !important;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  max-width: 100%;
  z-index: 200;
  padding: env(safe-area-inset-top) 0 0;
  background: rgba(11, 7, 18, 0.94);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(192, 38, 211, 0.28);
  transition: box-shadow 0.2s ease, background 0.2s ease;
  flex-shrink: 0;
}

.site-header {
  overflow-x: hidden !important;
  overflow-y: visible !important;
}

.site-header.is-scrolled {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.28);
  background: rgba(11, 7, 18, 0.98);
}

.site-header .andro_header-inner {
  overflow: hidden;
  min-width: 0;
  width: 100%;
}

.site-header .container {
  max-width: var(--page-max);
  width: 100%;
}

.andro_header.style-4 .andro_header-inner,
.site-header .andro_header-inner {
  display: grid !important;
  grid-template-columns: auto 1fr;
  align-items: center;
  min-height: var(--header-h);
  padding: 10px 4px 10px 0;
  position: relative;
  flex-direction: unset;
  justify-content: unset;
  gap: 8px;
}

.site-header-left {
  display: flex;
  align-items: center;
  min-width: 0;
}

.site-header-right {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 6px;
  min-width: 0;
}

.site-header .andro_header-navigation {
  min-width: 0;
  justify-content: flex-end;
}

.site-header .andro_header-navigation > ul {
  display: flex;
  align-items: center;
}

.andro_header.style-4 .andro_header-navigation > ul li:first-child a {
  padding-left: 14px;
}

.site-header .andro_header-logo {
  justify-self: start;
  z-index: 2;
}

.site-header .andro_header-controls {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  overflow: visible;
  flex-shrink: 0;
}

.andro_header-logo a {
  width: auto !important;
  max-width: 168px;
  display: flex;
  align-items: center;
}

.andro_header-logo img {
  max-height: 52px;
  width: auto;
  height: auto;
  display: block;
}

.andro_header-navigation > ul {
  gap: 2px;
}

.andro_header.style-4 .andro_header-navigation > ul li a,
.site-header .andro_header-navigation > ul li a {
  color: #f4eefc;
  padding: 10px 14px;
  font-weight: 600;
  font-size: 14px;
  border-radius: 999px;
}

.site-header .andro_header-navigation > ul li a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.site-menu-btn {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 42px !important;
  height: 42px !important;
  min-width: 42px !important;
  padding: 0 !important;
  margin: 0 !important;
  border: 0 !important;
  border-radius: 12px !important;
  background: rgba(255, 255, 255, 0.08) !important;
  color: #fff !important;
  text-decoration: none;
  box-shadow: none !important;
  text-transform: none !important;
  overflow: visible !important;
}

.site-menu-btn::before {
  display: none !important;
}

.site-menu-btn:hover,
.site-menu-btn[aria-expanded="true"] {
  background: var(--color-primary);
  color: #fff !important;
}

.site-menu-btn i {
  font-size: 18px;
}

.andro_header.style-4 .andro_socials {
  margin: 0 6px 0 0;
}

.site-header .andro_socials li a {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.08);
}

.site-user {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff !important;
  font-size: 13px;
  font-weight: 600;
  max-width: 160px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  text-decoration: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.site-user:hover {
  background: rgba(192, 38, 211, 0.35);
  color: #fff !important;
}

.site-user i {
  font-size: 14px;
}

.site-cart-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  position: relative;
  margin-left: 2px;
}

.andro_header-controls > a.andro_header-cart,
.andro_header-cart,
.site-cart-wrap .andro_header-cart {
  width: 40px !important;
  height: 40px !important;
  min-width: 40px !important;
  min-height: 40px !important;
  max-width: 40px !important;
  max-height: 40px !important;
  padding: 0 !important;
  margin: 0 !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: var(--color-primary) !important;
  color: #fff !important;
  line-height: 1 !important;
  position: relative;
  overflow: visible;
  box-shadow: none;
}

.andro_header-controls > a.andro_header-cart::before,
.andro_header-cart::before,
.site-cart-wrap .andro_header-cart::before {
  display: none !important;
  content: none !important;
}

.andro_header-cart i {
  margin: 0 !important;
  font-size: 16px;
  line-height: 1;
  width: auto;
  position: static;
}

.andro_header-cart:hover {
  background: var(--color-primary-hover) !important;
  color: #fff !important;
}

.andro_header.style-4 .andro_header-cart-count,
.andro_header-cart-count,
.site-cart-wrap .andro_header-cart-count {
  top: -5px !important;
  right: -5px !important;
  left: auto !important;
  width: 18px !important;
  height: 18px !important;
  font-size: 10px;
  background: #fff;
  color: var(--ink);
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  padding: 0;
}

/* ---------- Menu modal ---------- */
body.site-menu-open {
  overflow: hidden;
}

.site-menu-modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 9999;
  visibility: hidden;
  pointer-events: none;
}

.site-menu-modal.is-open {
  visibility: visible;
  pointer-events: auto;
}

.site-menu-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(8, 4, 16, 0.62);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  opacity: 0;
  transition: opacity 0.28s ease;
}

.site-menu-modal.is-open .site-menu-overlay {
  opacity: 1;
}

.site-menu-panel {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  height: 100dvh;
  width: min(390px, 100%);
  max-width: 100%;
  background:
    radial-gradient(circle at 100% 0%, rgba(192, 38, 211, 0.22), transparent 42%),
    linear-gradient(180deg, #17111f 0%, #0b0712 100%);
  color: #fff;
  transform: translateX(104%);
  transition: transform 0.34s cubic-bezier(0.22, 0.61, 0.36, 1);
  overflow-y: auto;
  padding: max(20px, env(safe-area-inset-top)) max(18px, env(safe-area-inset-right)) max(36px, env(safe-area-inset-bottom)) 18px;
  box-shadow: -24px 0 60px rgba(0, 0, 0, 0.45);
}

.site-menu-modal.is-open .site-menu-panel {
  transform: translateX(0);
}

.site-menu-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.site-menu-brand img {
  max-height: 40px;
  width: auto;
  display: block;
}

.site-menu-close {
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.site-menu-close:hover {
  background: var(--color-primary);
}

.site-menu-user {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  margin-bottom: 18px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.site-menu-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary);
  color: #fff;
  flex-shrink: 0;
}

.site-menu-user small {
  display: block;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #b9adc8;
}

.site-menu-user strong {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}

.site-menu-nav {
  display: grid;
  gap: 8px;
}

.site-menu-label {
  display: block;
  margin: 10px 4px 2px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #9b8fb0;
}

.site-menu-nav a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 14px;
  border-radius: 14px;
  color: #f6f1ff !important;
  text-decoration: none;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: background 0.2s ease, transform 0.2s ease;
}

.site-menu-nav a i {
  width: 18px;
  text-align: center;
  color: #e879f9;
}

.site-menu-nav a em {
  margin-left: auto;
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  font-style: normal;
  font-size: 11px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.site-menu-nav a:hover {
  background: rgba(192, 38, 211, 0.22);
  transform: translateX(-2px);
  color: #fff !important;
}

.site-menu-nav a.is-accent {
  background: var(--color-primary);
  border-color: transparent;
}

.site-menu-nav a.is-accent i,
.site-menu-nav a.is-accent:hover {
  color: #fff !important;
}

.site-menu-nav a.is-danger {
  color: #ffb4c4 !important;
}

.site-menu-nav a.is-danger i {
  color: #ff8aa3;
}

/* ---------- Aside (legacy, unused) ---------- */
.andro_aside {
  display: none !important;
}

.andro_aside-overlay {
  display: none !important;
}

/* ---------- Page hero / crumbs ---------- */
.site-hero {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: 380px;
  margin: 0;
  padding: 0;
  display: block;
  color: #fff;
  overflow: hidden;
  background: #0b0712;
  flex-shrink: 0;
}

.site-hero-producer {
  height: 420px;
}

.site-hero-photo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: cover;
  display: block;
  border: 0;
  z-index: 0;
}

.site-hero-shade {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background:
    linear-gradient(115deg, rgba(88, 28, 135, 0.45) 0%, rgba(192, 38, 211, 0.22) 42%, rgba(11, 7, 18, 0.15) 70%),
    linear-gradient(180deg, rgba(11, 7, 18, 0.18) 0%, rgba(11, 7, 18, 0.35) 48%, rgba(11, 7, 18, 0.92) 100%);
}

.site-hero-glow {
  position: absolute;
  left: -12%;
  bottom: -30%;
  width: 70%;
  height: 70%;
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(circle, rgba(217, 70, 239, 0.38) 0%, rgba(192, 38, 211, 0.08) 42%, transparent 70%);
}

.site-hero::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 4px;
  z-index: 3;
  background: linear-gradient(90deg, #d946ef, #c026d3 40%, #7c3aed 100%);
}

.site-hero-img {
  display: none !important;
}

.site-hero::after {
  display: none;
}

.site-hero .container,
.site-hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--page-max);
  height: 100%;
  display: flex;
  align-items: flex-end;
  padding-bottom: 42px;
}

.site-hero-copy {
  max-width: 640px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  backdrop-filter: none;
  border: 0;
  box-shadow: none;
}

.site-hero h1 {
  color: #fff;
  font-size: clamp(26px, 4vw, 44px);
  margin: 0 0 10px;
  font-weight: 700;
  line-height: 1.12;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
}

.site-hero p {
  margin: 0;
  max-width: 520px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 16px;
  line-height: 1.45;
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
}

.site-hero-media {
  display: none;
}

.site-hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 12px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(192, 38, 211, 0.28);
  border: 1px solid rgba(232, 121, 249, 0.45);
  color: #f5d0fe;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.site-hero .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 0;
  color: #fff;
}

.site-hero-btn-ghost {
  background: rgba(255, 255, 255, 0.12) !important;
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #fff !important;
}

.site-hero-btn-ghost:hover {
  background: rgba(192, 38, 211, 0.45) !important;
  color: #fff !important;
}

.site-crumb {
  width: 100%;
  max-width: 100%;
  flex-shrink: 0;
  background: transparent;
  padding: 18px 0 0;
}

.site-crumb .container {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--muted);
}

.site-crumb a {
  color: var(--muted);
  text-decoration: none;
}

.site-crumb a:hover {
  color: var(--color-primary);
}

.site-crumb strong {
  color: var(--color-headings);
  font-weight: 600;
}

.andro_subheader {
  display: none;
}

/* ---------- Main ---------- */
.site-main,
.site-main.section,
.site-main.section.md,
.section.md {
  width: 100%;
  max-width: 100%;
  flex: 1 1 auto;
  padding: 18px 0 64px;
  background: transparent;
}

.site-main.white-bg,
.white-bg,
.section.white-bg {
  background: transparent;
}

select option {
  background: #fff;
  color: var(--color-headings);
}

.site-main > .container > .section {
  padding-top: 0;
  padding-bottom: 0;
}

.site-header img,
.site-footer img,
.site-menu-brand img {
  max-height: 52px !important;
  height: auto !important;
  width: auto;
}

.section-title {
  max-width: 720px;
  margin: 0 auto 18px;
}

.section-title h3,
.section-title h3.text-uppercase {
  font-size: clamp(1.45rem, 3vw, 2rem);
  text-transform: none !important;
  margin: 0 0 8px;
  line-height: 1.2;
}

.section-title h3 span,
.section-title .fw-400 {
  font-weight: 500;
  color: var(--color-primary);
}

.section-title .family-display,
.section-title span.family-display {
  font-size: clamp(1.6rem, 4vw, 2.4rem) !important;
  font-family: var(--family-headings) !important;
  font-weight: 700 !important;
}

.section-title p {
  font-size: 16px;
  color: var(--muted);
  margin: 0;
}

/* ---------- Home strip ---------- */
.home-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  background: linear-gradient(135deg, #fae8ff 0%, #fff 55%);
  border: 1px solid rgba(192, 38, 211, 0.18);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 14px 18px;
  margin: 0 0 20px;
}

.home-strip strong {
  display: block;
  color: var(--color-headings);
  font-family: var(--family-headings);
  font-size: 15px;
}

.home-strip span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  margin-top: 2px;
}

.home-strip a {
  white-space: nowrap;
  font-weight: 600;
  font-size: 14px;
  color: #fff;
  background: var(--color-primary);
  border-radius: 10px;
  padding: 10px 16px;
  text-decoration: none;
}

.home-strip a:hover {
  background: var(--color-primary-hover);
  color: #fff;
}

.home-pitch,
.home-pitch-steps,
.home-pitch-cta,
.home-pitch-intro {
  display: none;
}

.producer-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 0 0 18px;
}

.producer-steps article {
  background: linear-gradient(180deg, #fae8ff 0%, #fff 42%);
  border: 1px solid rgba(192, 38, 211, 0.16);
  border-radius: 20px;
  padding: 22px 20px;
  box-shadow: var(--shadow);
}

.producer-steps em {
  display: block;
  font-style: normal;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.08em;
  color: var(--color-primary);
  margin-bottom: 10px;
}

.producer-steps h3 {
  margin: 0 0 8px;
  font-size: 18px;
  color: var(--color-headings);
}

.producer-steps p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.producer-cta {
  text-align: center;
  background:
    radial-gradient(circle at 100% 0%, rgba(192, 38, 211, 0.28), transparent 46%),
    linear-gradient(180deg, #1a1225 0%, #0b0712 100%);
  border: 1px solid rgba(192, 38, 211, 0.28);
  border-radius: 20px;
  padding: 28px 22px;
  box-shadow: var(--shadow);
  color: #f5d0fe;
}

.producer-cta h3 {
  margin: 0 0 6px;
  color: #fff;
}

.producer-cta p {
  margin: 0 0 16px;
  color: rgba(255, 255, 255, 0.78);
}

.producer-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.producer-cta-actions .button {
  margin: 0;
}

.producer-cta-login {
  background: rgba(255, 255, 255, 0.12) !important;
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #fff !important;
}

.producer-cta-login:hover {
  background: rgba(192, 38, 211, 0.45) !important;
  color: #fff !important;
}

@media (max-width: 767px) {
  :root {
    --page-max: 100%;
    --page-pad: 16px;
    --header-h: 64px;
  }

  html,
  body,
  body.site-body,
  body.light-bg {
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: hidden;
  }

  body.site-body .container,
  body.light-bg .container,
  .site-header .container,
  .site-footer .container,
  .site-hero .container,
  .site-hero-inner,
  .site-crumb .container,
  .site-main > .container {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: max(16px, env(safe-area-inset-left)) !important;
    padding-right: max(16px, env(safe-area-inset-right)) !important;
    margin-left: 0;
    margin-right: 0;
  }

  .site-header,
  .site-hero,
  .site-crumb,
  .site-main,
  .site-footer {
    width: 100% !important;
    max-width: 100% !important;
  }

  .site-hero,
  .site-hero.site-hero-producer {
    width: 100% !important;
    height: calc(100vh - 64px) !important;
    height: calc(100dvh - 64px) !important;
    min-height: 240px !important;
    max-height: none !important;
  }

  .site-hero-producer {
    min-height: 240px !important;
  }

  .site-hero-inner,
  .site-hero .container {
    padding-bottom: 24px;
  }

  .site-hero-copy,
  .site-hero p {
    max-width: 100%;
  }

  .producer-steps {
    grid-template-columns: 1fr;
  }

  img,
  video,
  iframe,
  input,
  select,
  textarea,
  .form-control,
  .button,
  table {
    max-width: 100%;
  }

  input,
  select,
  textarea,
  .form-control {
    font-size: 16px !important;
  }

  .row {
    max-width: 100%;
  }

  .col-lg-4,
  .row > [class*="col-"] {
    width: 100%;
    max-width: 100%;
  }
}

/* ---------- Buttons ---------- */
.button,
button.button,
input[type="submit"],
input[type="button"] {
  border-radius: var(--radius-sm);
  text-transform: none;
  letter-spacing: 0;
  font-weight: 600;
  font-size: 15px;
  padding: 12px 22px;
  min-width: 0;
  box-shadow: none;
  background: linear-gradient(135deg, #d946ef, #a21caf);
}

.button.primary::before,
.button.secondary::before {
  display: none;
}

.button:hover,
.button:focus,
button:hover,
input[type="submit"]:hover {
  background: linear-gradient(135deg, #e879f9, #86198f);
  transform: translateY(-1px);
  color: #fff;
}

.button.secondary {
  background: var(--ink);
}

.button.outline {
  background: transparent;
  color: var(--color-headings);
  border: 1px solid var(--color-border);
}

/* ---------- Forms ---------- */
input[type="text"],
input[type="email"],
input[type="password"],
input[type="tel"],
input[type="url"],
input[type="search"],
input[type="number"],
select,
textarea,
.form-control {
  height: 48px;
  border-radius: var(--radius-sm);
  background: var(--surface);
  border: 1px solid var(--color-border);
  padding: 10px 16px;
  font-size: 15px;
  color: var(--color-headings);
  box-shadow: none;
}

textarea,
textarea.form-control {
  height: auto;
  min-height: 120px;
  border-radius: var(--radius-sm);
}

.form-control:focus,
input:focus,
select:focus,
textarea:focus {
  background: #fff;
  border-color: var(--color-primary);
  color: var(--color-headings);
  box-shadow: 0 0 0 4px rgba(192, 38, 211, 0.16);
}

#formSearch {
  background:
    linear-gradient(180deg, rgba(250, 232, 255, 0.7) 0%, #fff 38%);
  border: 1px solid rgba(192, 38, 211, 0.18);
  border-radius: 20px;
  padding: 18px 18px 22px;
  box-shadow: var(--shadow);
  margin-bottom: 8px;
}

#formSearch .button {
  margin-bottom: 10px;
}

#formLogin,
#formRegister,
#formContact-me {
  background: var(--surface);
  border: 1px solid var(--color-border);
  border-radius: 20px;
  padding: 28px 20px 32px;
  box-shadow: var(--shadow);
  margin: 0 auto 12px;
}

#formLogin,
.site-auth-form {
  max-width: 420px;
  width: 100%;
  padding: 28px 24px 24px;
}

.site-auth-head {
  text-align: center;
  margin-bottom: 22px;
}

.site-auth-head h3 {
  margin: 0 0 6px;
  font-size: 28px;
  color: var(--color-headings);
}

.site-auth-head p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.site-auth-field {
  display: block;
  margin: 0 0 14px;
}

.site-auth-field span {
  display: block;
  margin-bottom: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-headings);
}

.site-auth-form .form-control {
  width: 100%;
  height: 50px;
}

.site-auth-form .button {
  width: 100%;
  margin-top: 6px;
  height: 50px;
}

.site-auth-links {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 16px;
  font-size: 14px;
  font-weight: 600;
}

#formLogin .row,
#formRegister .row {
  justify-content: center;
}

/* ---------- Tables ---------- */
table {
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

table th {
  background: var(--ink);
  color: #fff;
  font-size: 12px;
  letter-spacing: 0.06em;
  padding: 14px 16px;
}

table td {
  background: #fff;
  border-color: #eeeaf3;
  color: var(--color-headings);
  padding: 14px 16px;
  font-weight: 500;
}

/* ---------- Event cards ---------- */
.andro_show.style-2 {
  background: var(--surface);
  border: 1px solid var(--color-border);
  border-top: 3px solid var(--color-primary);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
  margin: 0 0 24px;
  height: 100%;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.andro_show.style-2:hover {
  transform: translateY(-5px);
  border-color: rgba(192, 38, 211, 0.45);
  box-shadow: 0 18px 40px rgba(192, 38, 211, 0.18);
}

.andro_show.style-2 .andro_show-img,
.andro_show.style-2 .andro_show-img.box,
.andro_show.style-2 .box {
  height: auto !important;
  border-radius: 0 !important;
  overflow: hidden;
  background: #0b0712;
}

.andro_show.style-2 .andro_show-img img,
.andro_show.style-2 .andro_img-cover {
  width: 100% !important;
  height: auto !important;
  max-height: none !important;
  object-fit: contain;
  transform: none !important;
  display: block;
}

.andro_show.style-2:hover .andro_show-img img {
  transform: none !important;
}

.andro_show.style-2 .andro_show-content {
  padding: 16px 18px 18px;
}

.andro_show.style-2 .andro_show-content > h5 {
  font-family: var(--family-headings);
  font-size: 17px;
  line-height: 1.3;
  margin: 0 0 6px !important;
}

.andro_show.style-2 .andro_show-content > h5 a {
  color: var(--color-headings);
  text-decoration: none;
}

.andro_show.style-2 .andro_show-content > h5 a:hover {
  color: var(--color-primary);
}

.andro_show.style-2 .andro_show-date,
.andro_show.style-2 .andro_show-date.family-display {
  font-family: var(--family-body) !important;
  font-size: 13px !important;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin: 0 0 6px !important;
  color: var(--color-primary) !important;
}

.andro_show.style-2 .andro_show-content > span {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
}

.row > [class*="col-"] > .andro_show.style-2 {
  display: flex;
  flex-direction: column;
}

/* ---------- Event detail ---------- */
.andro_show-d-img > a img {
  border-radius: 20px;
  width: 100%;
  height: auto;
  object-fit: contain;
  box-shadow: var(--shadow);
}

.andro_show-d-date {
  border-radius: 14px;
  overflow: hidden;
}

.andro_show-d-header h2,
.andro_show-d-name h2 {
  font-family: var(--family-headings);
  letter-spacing: -0.03em;
}

.andro_show-d-content-wrap {
  margin-top: 36px;
}

.andro_show-d-section {
  background: var(--surface);
  border: 1px solid var(--color-border);
  border-radius: 18px;
  padding: 22px;
  box-shadow: var(--shadow);
  margin-bottom: 18px;
}

.andro_show-d-section h4 {
  font-family: var(--family-headings);
  font-size: 18px;
  margin-bottom: 12px;
}

.andro_event {
  background: var(--surface);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 14px 16px;
  gap: 16px;
  box-shadow: none;
}

.andro_event + .andro_event {
  margin-top: 12px;
}

.andro_event-date {
  width: 72px;
  min-width: 72px;
  height: 72px;
  margin-right: 0;
  border-radius: 14px;
  background: var(--ink);
  color: #fff;
}

.andro_event-date b {
  color: #e879f9;
  font-size: 26px;
}

.andro_event-date span {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.andro_event-body h5 {
  font-family: var(--family-headings);
  margin-bottom: 4px;
}

.andro_event-controls .form-control {
  min-width: 120px;
  height: 44px;
  appearance: auto;
}

.andro_event-controls .button {
  margin-top: 8px;
}

/* ---------- Footer ---------- */
.andro_footer,
.andro_footer.style-4,
.site-footer {
  width: 100%;
  max-width: 100%;
  flex-shrink: 0;
  background: var(--ink) !important;
  color: rgba(255, 255, 255, 0.72);
  padding: 56px 0 max(28px, env(safe-area-inset-bottom)) !important;
  text-align: left;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
}

.site-footer a:hover {
  color: #e879f9;
}

.site-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 36px;
}

.site-footer-brand img {
  max-height: 52px;
  width: auto;
  margin-bottom: 12px;
}

.site-footer-brand p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  max-width: 280px;
}

.site-footer h6 {
  color: #fff;
  font-family: var(--family-headings);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0 0 14px;
}

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer ul li + li {
  margin-top: 8px;
}

.site-footer ul li a {
  font-size: 14px;
}

.site-footer-copy {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 13px;
}

.andro_footer.style-4 .andro_footer-socials {
  justify-content: flex-start;
  margin: 12px 0 0;
}

.andro_footer.style-4 .andro_footer-socials li a {
  font-family: var(--family-body);
  font-size: 14px;
  padding: 0;
  color: #fff;
}

/* ---------- WhatsApp ---------- */
a.whatsapp,
.whatsapp {
  position: fixed;
  width: 58px;
  height: 58px;
  bottom: max(22px, env(safe-area-inset-bottom));
  right: max(22px, env(safe-area-inset-right));
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 90;
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.4);
}

.whatsapp img {
  width: 30px;
  height: 30px;
  display: block;
}

.whatsapp::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.45);
  animation: waPulse 2s ease-out infinite;
}

@keyframes waPulse {
  from { transform: scale(1); opacity: 0.8; }
  to { transform: scale(1.25); opacity: 0; }
}

/* ---------- Misc ---------- */
.ticket {
  background: #fff;
}

center {
  display: block;
}

@media (max-width: 1100px) {
  .andro_header-navigation > ul li.site-desk,
  .andro_header.style-4 .andro_header-navigation > ul li.site-desk,
  .andro_header.style-4 .andro_header-navigation > ul li.site-desk:first-child {
    display: none !important;
  }
}

@media (max-width: 991px) {
  .site-footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .home-strip {
    padding: 12px 14px;
  }

  .home-strip a {
    width: 100%;
    text-align: center;
  }

  .andro_event {
    flex-wrap: wrap;
  }

  .andro_event-content {
    flex-wrap: wrap;
    gap: 12px;
    width: 100%;
  }

  .site-user span {
    display: none;
  }

  .site-user {
    width: 42px;
    height: 42px;
    padding: 0;
    justify-content: center;
    max-width: none;
  }

  .andro_show.style-2 .andro_show-img.box {
    height: auto !important;
  }

  .site-main.section.md,
  .section.md {
    padding: 20px 0 56px;
  }
}

@media (max-width: 575px) {
  :root {
    --page-pad: 14px;
    --header-h: 60px;
  }

  .site-footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .andro_header-logo img {
    max-height: 42px;
  }

  .site-menu-btn span {
    display: none;
  }

  .site-header .andro_socials {
    display: none;
  }

  .site-hero,
  .site-hero.site-hero-producer {
    height: calc(100vh - 60px) !important;
    height: calc(100dvh - 60px) !important;
    min-height: 240px !important;
    max-height: none !important;
  }

  .site-hero-copy {
    padding: 0;
    max-width: 100%;
  }

  .site-hero-actions {
    width: 100%;
  }

  .site-hero-actions .button {
    flex: 1 1 140px;
  }

  .site-hero h1 {
    font-size: 22px;
  }

  .site-hero p {
    font-size: 14px;
    max-width: 100%;
  }

  #formSearch {
    padding: 14px 12px 6px;
  }

  .whatsapp {
    width: 52px;
    height: 52px;
    right: max(14px, env(safe-area-inset-right));
    bottom: max(14px, env(safe-area-inset-bottom));
  }

  .site-main.section.md,
  .section.md,
  .site-main {
    padding: 16px 0 48px;
  }
}
