:root {
  --green: #003f35;
  --green2: #06291f;
  --navy: #071d36;
  --gold: #cfa247;
  --cream: #f6f2e9;
  --white: #fff;
  --text: #142033;
  --muted: #6a7280;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

a {
  color: inherit;
}

.container {
  width: min(1120px, calc(100% - 38px));
  margin-inline: auto;
}

.hero {
  min-height: 100svh;
  background: linear-gradient(180deg, rgba(0, 22, 18, 0.28), rgba(0, 22, 18, 0.55) 58%, rgba(0, 22, 18, 0.88)), url('assets/image10.jpeg') center/cover no-repeat;
  color: #fff;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.hero:after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 32%;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, .45));
  pointer-events: none;
}

.topbar {
  position: absolute;
  z-index: 3;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1120px, calc(100% - 30px));
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-lockup {
  position: absolute;
  z-index: 3;
  bottom: 40px;
  right: max(20px, calc((100% - 1120px) / 2));
  display: flex;
  gap: 18px;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(10px);
  border-radius: 24px;
  padding: 12px 18px;
  box-shadow: 0 14px 40px rgba(0, 0, 0, .2);
}

.brand-lockup img {
  height: 72px;
  width: auto;
  object-fit: contain;
}

.nav-cta {
  font-weight: 800;
  text-decoration: none;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .34);
  border-radius: 999px;
  padding: 12px 16px;
  backdrop-filter: blur(8px);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1120px, calc(100% - 38px));
  margin-inline: auto;
  padding-top: 30px;
  margin-top: -190px;
}

.hero-logo-wrap {
  position: absolute;
  z-index: 3;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  margin-bottom: 0;
}

.hero-logo {
  height: 484px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.95)) drop-shadow(0 4px 20px rgba(0, 0, 0, 0.85)) drop-shadow(0 12px 40px rgba(0, 0, 0, 0.75));
}

.eyebrow,
.kicker {
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: .78rem;
  font-weight: 900;
  color: var(--gold);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  font-size: clamp(4.1rem, 13vw, 9rem);
  line-height: .82;
  text-transform: uppercase;
  letter-spacing: .03em;
  margin: 18px 0 22px;
  font-weight: 900;
  text-shadow: 0 18px 50px rgba(0, 0, 0, .38);
}

.hero-subtitle {
  font-size: clamp(2rem, 7vw, 5rem);
  font-weight: 900;
  margin-bottom: 4px;
}

.hero-client {
  font-size: 1.45rem;
  color: var(--gold);
  font-weight: 900;
}

.scroll-hint {
  position: absolute;
  z-index: 3;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: .8rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  opacity: .75;
}

.section {
  padding: 86px 0;
}

.intro {
  background: var(--cream);
}

h2 {
  font-size: clamp(2.1rem, 7vw, 4.8rem);
  line-height: 1.02;
  letter-spacing: -.05em;
  font-weight: 900;
  margin-bottom: 20px;
}

.lead {
  font-size: clamp(1.15rem, 2.6vw, 1.55rem);
  color: #304058;
}

.dark .lead {
  color: rgba(255, 255, 255, .9);
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 48px;
}

.stats article,
.cards article,
.tiers article {
  background: #fff;
  border-radius: 24px;
  padding: 26px;
  box-shadow: 0 18px 50px rgba(22, 33, 48, .08);
}

.stats strong {
  font-size: clamp(2.2rem, 6vw, 4.2rem);
  color: var(--green);
  line-height: 1;
  display: block;
}

.stats span {
  font-weight: 700;
  color: var(--muted);
}

.dark {
  background: radial-gradient(circle at 80% 0, rgba(207, 162, 71, .22), transparent 32%), linear-gradient(135deg, var(--green2), var(--green));
  color: #fff;
}

.gold {
  color: var(--gold);
}

.grid {
  display: grid;
}

.cards {
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin-top: 34px;
}

.cards article {
  background: rgba(255, 255, 255, .09);
  box-shadow: none;
  border: 1px solid rgba(255, 255, 255, .14);
  backdrop-filter: blur(8px);
}

.cards b {
  display: block;
  color: #fff;
  font-size: 1.35rem;
}

.cards span {
  color: rgba(255, 255, 255, .78);
}

.quote-line {
  font-size: clamp(1.1rem, 3vw, 1.55rem);
  font-weight: 800;
  margin: 34px 0 0;
  color: inherit;
}

.split {
  background: #fff;
}

.split-wrap {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 34px;
  align-items: center;
}

.split h2 span {
  color: var(--gold);
}

.compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.compare article {
  border-radius: 28px;
  padding: 28px;
}

.muted-card {
  background: #eaf0f1;
  color: #6b7580;
}

.white-card {
  background: var(--navy);
  color: #fff;
}

.compare h3 {
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .82rem;
  color: var(--gold);
}

.compare p {
  font-weight: 700;
  margin-bottom: 14px;
}

.photo-band {
  min-height: 70svh;
  background: linear-gradient(180deg, rgba(0, 0, 0, .05), rgba(0, 0, 0, .5)), url('assets/image1.jpeg') center/cover fixed no-repeat;
}

.lounge blockquote {
  font-size: clamp(1.3rem, 4.4vw, 3rem);
  line-height: 1.1;
  font-weight: 900;
  margin: 42px 0 0;
  padding: 28px;
  border-left: 5px solid var(--gold);
  background: rgba(255, 255, 255, .08);
  border-radius: 0 26px 26px 0;
}

.benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.benefits span {
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 999px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, .08);
  font-weight: 800;
}

.experiences {
  background: #f3f6f3;
}

.experience-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 32px;
}

.experience-list article {
  background: #fff;
  border-radius: 28px;
  padding: 30px;
  box-shadow: 0 18px 60px rgba(12, 24, 37, .08);
}

.experience-list svg,
.experience-list img {
  width: 56px;
  height: 56px;
  padding: 12px;
  background: var(--navy);
  border-radius: 50%;
  margin-bottom: 22px;
  color: var(--gold);
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.experience-list h3 {
  font-size: 1.45rem;
}

.center-note {
  text-align: center;
  font-weight: 800;
  margin-top: 28px;
}

.stories {
  background: linear-gradient(90deg, rgba(7, 29, 54, .92), rgba(7, 29, 54, .58)), url('assets/image8.jpeg') center/cover no-repeat;
  color: #fff;
  min-height: 85svh;
  display: flex;
  align-items: center;
}

.story-card {
  width: min(720px, 100%);
  background: rgba(2, 15, 29, .6);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 32px;
  padding: 34px;
}

.sponsorship {
  background: #fff;
}

.tiers {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin-top: 34px;
}

.tiers article {
  padding: 24px;
}

.tiers span {
  text-transform: uppercase;
  font-weight: 900;
  color: var(--green);
  display: block;
  min-height: 48px;
}

.tiers b {
  display: block;
  color: var(--gold);
  font-size: 1.4rem;
  margin: 8px 0 14px;
}

.tiers p {
  font-size: .92rem;
  color: #3a4555;
}

.fineprint {
  color: var(--muted);
  font-size: .9rem;
  margin-top: 24px;
}

.timeline {
  display: grid;
  gap: 16px;
  margin-top: 30px;
}

.timeline article {
  display: grid;
  grid-template-columns: .55fr 1fr;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .14);
}

.timeline b {
  font-size: 1.1rem;
}

.timeline span {
  color: rgba(255, 255, 255, .76);
}

.closing {
  min-height: 100svh;
  background: linear-gradient(180deg, rgba(7, 29, 54, .72), rgba(7, 29, 54, .97)), url('assets/image10.jpeg') center/cover no-repeat;
  color: #fff;
  padding: 120px 0 190px !important;
  display: block;
}

.closing .container {
  padding-bottom: 0;
}

.closing h2 {
  max-width: 980px;
}

.closing p {
  font-size: clamp(1.3rem, 4vw, 2.6rem);
  font-weight: 800;
  max-width: 940px;
}

.closing-logos-wrap {
  display: flex;
  justify-content: center;
  margin-top: 32px;
  position: relative;
  z-index: 5;
}

.closing-logos {
  display: flex;
  gap: 24px;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(10px);
  border-radius: 30px;
  padding: 16px 24px;
  box-shadow: 0 14px 40px rgba(0, 0, 0, .2);
  position: relative;
  z-index: 5;
}

.closing-logos img {
  height: 76px;
  width: auto;
  object-fit: contain;
  display: block;
  opacity: 1 !important;
  filter: none !important;
}

.contact-card {
  margin-top: 36px;
  margin-bottom: 40px;
  background: rgba(255, 255, 255, .11);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 28px;
  padding: 24px;
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  backdrop-filter: blur(10px);
}

.contact-card b,
.contact-card span {
  display: block;
}

.contact-card a {
  font-weight: 900;
  color: #fff;
  text-decoration: none;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ==========================================================================
   Nuevas Secciones Premium (Donde Nacieron las Estrellas, Audiencia y Valor, etc.)
   ========================================================================== */

/* Donde Nacieron las Estrellas */
.stars-section {
  background: radial-gradient(circle at 10% 10%, rgba(207, 162, 71, 0.1), transparent 45%), linear-gradient(135deg, var(--green2), var(--green));
  color: var(--white);
}

.stars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 38px;
}

.stars-grid article {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 32px 26px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.18);
  position: relative;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}

.stars-grid article::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gold);
  opacity: 0.8;
}

.stars-grid article:hover {
  transform: translateY(-6px);
  border-color: rgba(207, 162, 71, 0.6);
  box-shadow: 0 20px 45px rgba(207, 162, 71, 0.14);
}

.star-country {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  background: rgba(207, 162, 71, 0.12);
  padding: 4px 10px;
  border-radius: 6px;
  margin-bottom: 18px;
}

.star-name {
  font-size: clamp(1.4rem, 2vw, 1.85rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 14px;
  position: relative;
  display: inline-block;
  padding-bottom: 8px;
}

.star-name::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 45px;
  height: 2px;
  background: var(--gold);
}

.star-desc {
  font-size: 0.95rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.82);
  margin-top: 6px;
}

.stars-footer {
  text-align: center;
  margin-top: 40px;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* Audiencia y Valor de Marca */
.audience-value {
  padding: 86px 0;
  background: radial-gradient(circle at 80% 0, rgba(207, 162, 71, 0.22), transparent 45%), linear-gradient(135deg, var(--green2), var(--green));
  color: var(--white);
}

.audience-value h2 {
  color: var(--white);
}

.audience-value .kicker {
  color: var(--gold);
}

.audience-value-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: flex-start;
  margin-top: 38px;
}

.audience-subgrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.audience-subgrid article {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 24px;
  backdrop-filter: blur(8px);
  transition: background-color 0.3s ease;
}

.audience-subgrid article:hover {
  background: rgba(255, 255, 255, 0.12);
}

.audience-subgrid b {
  display: block;
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  color: var(--gold);
  line-height: 1.1;
  margin-bottom: 4px;
}

.audience-subgrid span {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
}

.value-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.value-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 20px;
  padding: 20px 24px;
  border-left: 4px solid var(--gold);
  transition: all 0.3s ease;
}

.value-item:hover {
  background: rgba(255, 255, 255, 0.07);
  transform: translateX(5px);
}

.value-item svg {
  color: var(--gold);
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  margin-top: 2px;
}

.value-item-content h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--white) !important;
  margin-bottom: 4px;
}

.value-item-content p {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.85) !important;
  margin: 0;
  line-height: 1.45;
}

.audience-value .quote-line {
  color: var(--white) !important;
  margin-top: 38px;
}

/* ¿Qué obtiene su empresa? ("Más que un logo") */
.what-you-get-section {
  background: var(--cream);
  padding: 86px 0;
}

.what-you-get-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: stretch;
  margin-top: 38px;
}

.objectives-card {
  background: var(--white);
  border-radius: 28px;
  padding: 36px;
  box-shadow: 0 18px 50px rgba(12, 24, 37, 0.06);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.objectives-header {
  display: grid;
  grid-template-columns: 1.1fr 1.3fr;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--cream);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: var(--green);
}

.objectives-row {
  display: grid;
  grid-template-columns: 1.1fr 1.3fr;
  padding: 18px 0;
  border-bottom: 1px solid var(--cream);
  align-items: center;
}

.objectives-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.objective-col {
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--text);
  padding-right: 12px;
}

.solution-col {
  color: #304058;
  font-weight: 500;
  font-size: 0.98rem;
}

.platform-card {
  background: var(--navy);
  color: var(--white);
  border-radius: 28px;
  padding: 40px 34px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 18px 60px rgba(7, 29, 54, 0.15);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.platform-card h3 {
  font-size: 1.6rem;
  color: var(--gold);
  font-weight: 900;
  margin-bottom: 16px;
}

.platform-card p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.02rem;
  line-height: 1.5;
  margin-bottom: 28px;
}

.platform-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.platform-tag {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  padding: 10px 18px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
  transition: all 0.25s ease;
}

.platform-tag:hover {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
  transform: translateY(-3px);
}

/* Marcas que ya confiaron */
.brands-section {
  background: var(--white);
  padding: 70px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.brands-section h3 {
  text-align: center;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--muted);
  font-weight: 800;
  margin-bottom: 30px;
}

.brands-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 40px 60px;
}

.brands-grid .brand-text-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  opacity: 0.55;
  transition: all 0.3s ease;
  font-family: Inter, sans-serif;
  color: var(--text);
  user-select: none;
}

.brands-grid .brand-text-logo:hover {
  opacity: 1;
  transform: scale(1.06);
  color: var(--green);
}

.brand-text-logo {
  font-weight: 800;
  font-size: 1.45rem;
  letter-spacing: -0.02em;
}

.brand-text-logo.serifs {
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 700;
  letter-spacing: 0.05em;
  font-style: italic;
}

.brand-text-logo.spaced {
  letter-spacing: 0.16em;
  font-size: 1.15rem;
  font-weight: 900;
  text-transform: uppercase;
}

.brand-text-logo.italic {
  font-style: italic;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.brand-text-logo.bold-sans {
  font-weight: 900;
  font-size: 1.55rem;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

/* Frase Final Destacada */
.closing-quote-wrap {
  width: 100%;
  margin-bottom: 48px;
}

.closing-quote {
  font-size: clamp(1.4rem, 3.2vw, 2.3rem);
  line-height: 1.3;
  font-weight: 800;
  font-style: italic;
  color: var(--gold);
  text-align: center;
  max-width: 920px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
}

.closing-quote::before, 
.closing-quote::after {
  content: '"';
  font-size: 4rem;
  color: rgba(207, 162, 71, 0.18);
  font-family: 'Playfair Display', serif;
  line-height: 0;
  position: absolute;
}

.closing-quote::before {
  top: 15px;
  left: -12px;
}

.closing-quote::after {
  bottom: -20px;
  right: -12px;
}

/* ==========================================================================
   Ajustes Responsivos y Media Queries
   ========================================================================== */

@media (max-width: 900px) {
  .section {
    padding: 70px 0;
  }

  .stats,
  .cards,
  .experience-list,
  .tiers {
    grid-template-columns: 1fr;
  }

  .split-wrap,
  .compare {
    grid-template-columns: 1fr;
  }

  .photo-band {
    background-attachment: scroll;
    min-height: 55svh;
  }

  .timeline article {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .closing-logos {
    gap: 18px;
    padding: 12px 18px;
    border-radius: 24px;
  }

  .closing-logos img {
    height: 64px;
  }

  .brand-lockup {
    gap: 14px;
    padding: 10px 14px;
    border-radius: 18px;
    bottom: 70px;
    right: 15px;
  }

  .brand-lockup img {
    height: 60px;
  }

  .nav-cta {
    display: none;
  }

  .hero-logo-wrap {
    top: 0;
  }

  .hero-content {
    padding-top: 310px;
    margin-top: 0;
  }

  .hero-logo {
    height: 380px;
  }

  .stats article {
    padding: 22px;
  }

  .cards article,
  .experience-list article,
  .tiers article {
    padding: 24px;
  }

  .story-card {
    padding: 26px;
  }

  .lounge blockquote {
    padding: 22px;
  }

  .contact-card {
    align-items: flex-start;
    flex-direction: column;
  }

  /* Nuevos ajustes responsive */
  .stars-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .audience-value-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .audience-subgrid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .what-you-get-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .objectives-card {
    padding: 24px;
  }

  .objectives-header, 
  .objectives-row {
    font-size: 0.9rem;
    padding: 12px 0;
  }

  .objective-col {
    font-size: 0.95rem;
  }

  .solution-col {
    font-size: 0.9rem;
  }

  .platform-card {
    padding: 30px 24px;
  }

  .brands-grid {
    gap: 30px 40px;
  }

  .brands-grid img, 
  .brands-grid .brand-text-logo {
    height: 40px;
  }
  
  .brand-text-logo {
    font-size: 1.35rem;
  }

  .closing-quote {
    font-size: 1.3rem;
    padding: 0 16px;
  }
}

@media (min-width: 901px) {
  .audience,
  .audience-value,
  .lounge,
  .leadership {
    padding: 108px 0;
  }

  .closing {
    background-position: center 34%;
  }
}
