:root {
  --violet: #6b5acd;
  --violet-dark: #31276f;
  --violet-ink: #20184d;
  --aqua: #90eaff;
  --mint: #14c678;
  --gold: #ffd92e;
  --orange: #ff9f1c;
  --red: #ff412d;
  --ink: #151321;
  --paper: #fffaf2;
  --soft: #f4f0ff;
  --line: rgba(32, 24, 77, 0.16);
  --shadow: 0 24px 80px rgba(49, 39, 111, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@keyframes playerReveal {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes playerGlow {
  0%,
  100% {
    box-shadow: 0 24px 80px rgba(49, 39, 111, 0.18);
  }

  50% {
    box-shadow: 0 28px 90px rgba(107, 90, 205, 0.3);
  }
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 58px);
  background: rgba(255, 250, 242, 0.86);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  box-shadow: 0 8px 24px rgba(107, 90, 205, 0.26);
  overflow: hidden;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.nav a {
  padding: 8px 11px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 700;
}

.nav a:hover,
.nav a:focus-visible {
  background: var(--soft);
  outline: none;
}

.hero {
  min-height: auto;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.78fr);
  align-items: center;
  gap: clamp(32px, 6vw, 88px);
  padding: clamp(28px, 4.5vw, 58px) clamp(18px, 5vw, 72px) clamp(34px, 5vw, 64px);
  background:
    radial-gradient(circle at 12% 20%, rgba(144, 234, 255, 0.42), transparent 28%),
    linear-gradient(135deg, #fffaf2 0%, #f3efff 58%, #e8fbff 100%);
}

.hero-copy {
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--violet-dark);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  color: var(--violet-ink);
  font-size: clamp(2.6rem, 7vw, 6.8rem);
  line-height: 0.94;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  color: var(--violet-ink);
  font-size: clamp(2rem, 4.2vw, 4.2rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  color: var(--violet-ink);
  font-size: 1.08rem;
}

.hero-text {
  max-width: 660px;
  margin: 18px 0 0;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 900;
}

.button.primary {
  color: white;
  background: var(--violet-dark);
}

.button.secondary {
  color: var(--violet-dark);
  background: white;
  border: 1px solid var(--line);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  outline: none;
}

.player-panel {
  position: relative;
  display: grid;
  gap: 14px;
  padding: clamp(18px, 3vw, 28px);
  color: white;
  background:
    radial-gradient(circle at 84% 18%, rgba(144, 234, 255, 0.38), transparent 26%),
    linear-gradient(160deg, var(--violet) 0%, var(--violet-dark) 100%);
  border-radius: 8px;
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(18px) scale(0.98);
  animation: playerReveal 760ms ease-out 180ms forwards, playerGlow 5s ease-in-out 1.1s infinite;
}

.player-panel::after {
  content: "";
  width: 52%;
  height: 8px;
  display: block;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--red), var(--orange), var(--gold), var(--mint), #22c8d8, #004c8f, #64236d);
}

.player-logo {
  width: min(190px, 56vw);
  margin-inline: auto;
  border-radius: 50%;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.2);
}

.player-panel h2 {
  color: white;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
}

.player-kicker {
  margin: 0 0 4px;
  color: var(--aqua);
  font-weight: 900;
}

iframe {
  border: 0;
  border-radius: 12px;
}

.marquee-band {
  padding: 20px clamp(18px, 5vw, 72px);
  color: var(--violet-dark);
  background: var(--aqua);
}

.marquee-band p {
  max-width: 1120px;
  margin: 0 auto;
  font-size: clamp(1.3rem, 3vw, 2.4rem);
  font-weight: 900;
  text-align: center;
}

.split-section,
.seo-section,
.stats-section,
.gallery-section,
.support-section,
.contact-section {
  padding: clamp(56px, 8vw, 110px) clamp(18px, 5vw, 72px);
}

.split-section,
.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: start;
}

.section-copy {
  display: grid;
  gap: 18px;
  font-size: clamp(1.05rem, 1.8vw, 1.28rem);
}

.section-copy p,
.vision-card p {
  margin: 0;
}

.seo-section {
  background: linear-gradient(180deg, #fff 0%, var(--soft) 100%);
}

.seo-copy {
  max-width: 900px;
}

.seo-copy p:not(.eyebrow) {
  margin: 20px 0 0;
  font-size: clamp(1.06rem, 1.8vw, 1.26rem);
}

.seo-copy .button {
  margin-top: 26px;
}

.section-heading {
  max-width: 860px;
  margin-bottom: 28px;
}

.section-heading p:not(.eyebrow) {
  max-width: 760px;
  margin: 18px 0 0;
  font-size: clamp(1.04rem, 1.8vw, 1.26rem);
}

.stats-section {
  background: white;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.stat-card {
  min-height: 245px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.stat-card.highlight,
.stat-card.brand-card {
  color: white;
  background:
    radial-gradient(circle at 84% 12%, rgba(144, 234, 255, 0.28), transparent 28%),
    linear-gradient(145deg, var(--violet), var(--violet-dark));
}

.stat-card.platform-card {
  background: linear-gradient(180deg, #fff 0%, #eefbff 100%);
}

.stat-card span {
  display: block;
  margin-bottom: 22px;
  color: var(--violet);
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  line-height: 1;
  font-weight: 950;
}

.stat-card.highlight span,
.stat-card.highlight h3,
.stat-card.brand-card span,
.stat-card.brand-card h3 {
  color: white;
}

.stat-card p {
  margin: 12px 0 0;
}

.vision-section {
  padding: clamp(70px, 9vw, 128px) clamp(18px, 5vw, 72px);
  color: white;
  background:
    linear-gradient(rgba(32, 24, 77, 0.68), rgba(32, 24, 77, 0.68)),
    url("assets/no-soy-moda-logo.png") center / min(78vw, 720px) no-repeat,
    var(--violet-dark);
}

.vision-card {
  max-width: 920px;
}

.vision-card h2,
.vision-card .eyebrow {
  color: white;
}

.vision-card p:last-child {
  max-width: 760px;
  margin-top: 24px;
  font-size: clamp(1.08rem, 2vw, 1.36rem);
}

.gallery-section {
  background: var(--paper);
}

.gallery-slider {
  position: relative;
  width: min(100%, 760px);
  margin-inline: auto;
  overflow: hidden;
  border-radius: 8px;
  background: white;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.gallery-track {
  display: flex;
  aspect-ratio: 1 / 1;
  height: auto;
  transition: transform 620ms ease;
}

.gallery-slide {
  position: relative;
  flex: 0 0 100%;
  display: grid;
  place-items: center;
  margin: 0;
  padding: 0;
  background: var(--paper);
}

.gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  filter: saturate(1.04);
  box-shadow: none;
  background: transparent;
}

.gallery-slide::after {
  content: "No Soy Moda Podcast";
  position: absolute;
  left: clamp(18px, 3vw, 34px);
  bottom: clamp(18px, 3vw, 34px);
  padding: 8px 12px;
  color: white;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(32, 24, 77, 0.72);
  border-radius: 999px;
  backdrop-filter: blur(10px);
}

.gallery-dots {
  position: absolute;
  left: 50%;
  bottom: 14px;
  display: flex;
  gap: 7px;
  width: min(88%, 520px);
  transform: translateX(-50%);
}

.gallery-dots span {
  flex: 1;
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.32);
  transition: background 240ms ease, flex 240ms ease;
}

.gallery-dots span.is-active {
  flex: 1.8;
  background: var(--gold);
}

.gallery-controls {
  position: absolute;
  right: 16px;
  bottom: 28px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px;
  color: white;
  background: rgba(32, 24, 77, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  backdrop-filter: blur(12px);
}

.gallery-control {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  padding: 0;
  color: var(--violet-ink);
  background: white;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  font: inherit;
  font-size: 1.55rem;
  line-height: 1;
}

.gallery-toggle {
  color: var(--violet-ink);
  background: var(--gold);
  font-size: 1rem;
  font-weight: 950;
}

.gallery-control:hover,
.gallery-control:focus-visible {
  outline: 3px solid rgba(144, 234, 255, 0.72);
  outline-offset: 2px;
}

.gallery-count {
  min-width: 48px;
  padding-inline: 4px 6px;
  font-size: 0.82rem;
  font-weight: 900;
  text-align: center;
}

.support-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  align-items: center;
  gap: clamp(28px, 6vw, 78px);
  color: white;
  background:
    radial-gradient(circle at 15% 18%, rgba(255, 217, 46, 0.28), transparent 24%),
    radial-gradient(circle at 82% 80%, rgba(144, 234, 255, 0.24), transparent 28%),
    linear-gradient(135deg, var(--violet-ink), var(--violet-dark));
}

.support-copy {
  max-width: 760px;
}

.support-copy h2,
.support-copy .eyebrow {
  color: white;
}

.support-copy p {
  max-width: 680px;
  margin: 18px 0 0;
  font-size: clamp(1.04rem, 1.8vw, 1.28rem);
}

.coffee-button {
  margin-top: 28px;
  color: var(--violet-ink);
  background: var(--gold);
  box-shadow: 0 16px 34px rgba(255, 217, 46, 0.2);
}

.qr-card {
  padding: clamp(16px, 3vw, 24px);
  color: var(--violet-ink);
  background: rgba(255, 255, 255, 0.94);
  border-radius: 8px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.24);
}

.qr-card img {
  width: 100%;
  border-radius: 8px;
}

.qr-card p {
  margin: 14px 0 0;
  font-size: 0.96rem;
  font-weight: 800;
  text-align: center;
}

.contact-section {
  background: var(--violet-ink);
  color: white;
}

.contact-section h2,
.contact-section .eyebrow {
  color: white;
}

.contact-list {
  display: grid;
  gap: 12px;
}

.contact-list a {
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  color: white;
  text-decoration: none;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.07);
}

.contact-list a:hover,
.contact-list a:focus-visible {
  border-color: var(--aqua);
  outline: none;
}

.page-shell {
  background: linear-gradient(180deg, var(--soft) 0%, var(--paper) 320px);
}

.page-hero,
.article-list,
.article-shell {
  padding: clamp(46px, 8vw, 94px) clamp(18px, 5vw, 72px);
}

.page-hero-inner,
.article-list-inner,
.article-body {
  max-width: 900px;
  margin-inline: auto;
}

.page-hero h1,
.article-body h1 {
  max-width: 880px;
  font-size: clamp(2.4rem, 6vw, 5.2rem);
}

.page-hero p:not(.eyebrow) {
  max-width: 780px;
  margin: 22px 0 0;
  font-size: clamp(1.08rem, 2vw, 1.32rem);
}

.category-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 26px;
}

.category-list span,
.article-category {
  display: inline-flex;
  padding: 7px 11px;
  color: var(--violet-dark);
  background: white;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 900;
}

.article-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.article-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  gap: 14px;
  padding: 20px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 34px rgba(49, 39, 111, 0.08);
}

.article-card h2 {
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  line-height: 1.06;
}

.article-card p {
  margin: 0;
}

.article-card .button {
  width: fit-content;
  margin-top: auto;
}

.article-body {
  color: var(--ink);
}

.article-body article {
  padding: clamp(26px, 5vw, 54px);
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.article-body p {
  margin: 20px 0 0;
  font-size: clamp(1.05rem, 1.8vw, 1.2rem);
}

.article-body h2 {
  margin-top: 42px;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
}

.article-body h3 {
  margin-top: 30px;
  font-size: 1.25rem;
}

.article-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 32px 0;
}

.article-embed {
  margin-top: 28px;
}

.article-back {
  display: inline-flex;
  margin-bottom: 24px;
  color: var(--violet-dark);
  font-weight: 900;
  text-decoration: none;
}

.nsm-interaction {
  display: grid;
  gap: 18px;
  margin-top: 50px;
  padding-top: 34px;
  border-top: 2px solid var(--line);
}

.nsm-comments,
.nsm-story,
.nsm-whatsapp {
  padding: clamp(18px, 3vw, 26px);
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.nsm-story {
  background: #fff;
}

.nsm-whatsapp {
  color: white;
  background:
    radial-gradient(circle at 88% 12%, rgba(144, 234, 255, 0.28), transparent 28%),
    linear-gradient(145deg, var(--violet), var(--violet-dark));
}

.nsm-interaction h2 {
  margin-top: 0;
  font-size: clamp(1.55rem, 3vw, 2.35rem);
}

.nsm-whatsapp h2 {
  color: white;
}

.nsm-interaction form {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.nsm-interaction label {
  color: var(--violet-ink);
  font-weight: 900;
}

.nsm-interaction label span {
  font-weight: 700;
}

.nsm-interaction input,
.nsm-interaction textarea {
  width: 100%;
  padding: 12px 14px;
  color: var(--ink);
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
}

.nsm-interaction textarea {
  resize: vertical;
}

.nsm-interaction button,
.nsm-whatsapp a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 46px;
  margin-top: 8px;
  padding: 12px 18px;
  color: white;
  background: var(--violet-dark);
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  text-decoration: none;
}

.nsm-whatsapp a {
  color: var(--violet-ink);
  background: var(--gold);
}

.nsm-interaction button:hover,
.nsm-interaction button:focus-visible,
.nsm-whatsapp a:hover,
.nsm-whatsapp a:focus-visible {
  transform: translateY(-1px);
  outline: 3px solid rgba(144, 234, 255, 0.72);
  outline-offset: 2px;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding: 22px clamp(18px, 5vw, 72px);
  color: white;
  background: #0f0b24;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 980px) {
  .hero,
  .split-section,
  .support-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    align-items: start;
  }

  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .article-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-track {
    height: auto;
  }
}

@media (max-width: 680px) {
  .site-header {
    position: static;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
  }

  .brand {
    width: 46px;
    height: 46px;
    flex: 0 0 auto;
  }

  .nav {
    flex: 1;
    gap: 4px;
  }

  .nav a {
    padding: 7px 6px;
    font-size: 0.78rem;
  }

  .hero {
    gap: 24px;
    padding: 24px 16px 34px;
  }

  h1 {
    font-size: clamp(2.35rem, 13vw, 3.9rem);
    line-height: 0.96;
  }

  h2 {
    font-size: clamp(1.85rem, 9vw, 2.8rem);
  }

  .hero-text {
    margin-top: 14px;
    font-size: 1rem;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .button {
    min-height: 46px;
  }

  .player-panel {
    gap: 12px;
    padding: 16px;
  }

  .player-logo {
    width: min(148px, 44vw);
  }

  .player-panel h2 {
    font-size: 1.5rem;
  }

  .player-panel::after {
    width: 68%;
    height: 7px;
  }

  .split-section,
  .seo-section,
  .stats-section,
  .gallery-section,
  .support-section,
  .contact-section {
    padding: 46px 16px;
  }

  .marquee-band {
    padding: 16px;
  }

  .qr-card {
    max-width: 360px;
    margin-inline: auto;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .gallery-track {
    height: auto;
  }

  .gallery-slide {
    padding: 0;
  }

  .gallery-slide::after {
    left: 18px;
    bottom: 24px;
    font-size: 0.68rem;
  }

  .gallery-dots {
    bottom: 10px;
    gap: 4px;
  }

  .gallery-controls {
    left: 50%;
    right: auto;
    bottom: 22px;
    transform: translateX(-50%);
  }

  .gallery-control {
    width: 34px;
    height: 34px;
  }

  .stat-card {
    min-height: 0;
  }

  .article-grid {
    grid-template-columns: 1fr;
  }

  .article-body article {
    padding: 22px 16px;
  }
}

@media (max-width: 430px) {
  .site-header {
    display: grid;
    grid-template-columns: 46px 1fr;
  }

  .nav {
    justify-content: flex-start;
  }

  .nav a {
    font-size: 0.74rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .player-panel,
  .gallery-track {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
