:root {
  --azul: #19325f;
  --azul2: #244f8f;
  --turquesa: #2d8f9a;
  --amarillo: #ffd36a;
  --naranja: #ff7a2f;
  --rosa: #ff5f6d;
  --rojo: #ff4d2d;
  --vino: #4c1630;
  --bg: #130d16;
  --bg2: #1a1322;
  --white: #ffffff;
  --soft: rgba(255, 255, 255, 0.08);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background:
    radial-gradient(circle at top, rgba(255, 121, 47, 0.18), transparent 28%),
    linear-gradient(180deg, #130d16, #1a1322 42%, #120f1b);
  color: white;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 110px 20px 60px;
  background: linear-gradient(135deg, #130d16, #37162d, #762626, #ff7a2f);
  background-size: 400% 400%;
  animation: gradientMove 14s ease infinite;
}

@keyframes gradientMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.hero-glow {
  position: absolute;
  width: 720px;
  height: 720px;
  background: radial-gradient(circle, rgba(255, 173, 83, 0.95), transparent);
  filter: blur(170px);
  opacity: 0.3;
  animation: glowMove 8s infinite alternate;
}

@keyframes glowMove {
  from { transform: translateY(-40px); }
  to { transform: translateY(40px); }
}

.topbar {
  position: absolute;
  top: 22px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  width: min(calc(100% - 24px), 1150px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 18px;
  background: rgba(8, 15, 33, 0.42);
  background: rgba(23, 16, 28, 0.55);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.brand img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.topbar-links {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.topbar-links a {
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-weight: 600;
  transition: transform 0.25s ease, background 0.25s ease;
}

.topbar-links a:hover {
  transform: translateY(-2px);
  background: rgba(255, 183, 99, 0.14);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1180px;
  width: 100%;
  padding-inline: 8px;
}

.hero-split {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: 28px;
  text-align: left;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-copy {
  max-width: 680px;
  width: 100%;
}

.hero-logo {
  width: 420px;
  max-width: 82%;
  animation: floatLogo 6s ease-in-out infinite;
  filter: drop-shadow(0 25px 40px rgba(0, 0, 0, 0.45));
}

@keyframes floatLogo {
  0% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
  100% { transform: translateY(0); }
}

.hero-badge {
  display: inline-flex;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(255, 211, 106, 0.14);
  border: 1px solid rgba(255, 214, 120, 0.24);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 18px;
}

.hero h1 {
  font-size: clamp(42px, 7vw, 68px);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -1.5px;
  margin-bottom: 14px;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.subtitle {
  max-width: 760px;
  margin: 0 0 34px;
  font-size: clamp(17px, 2vw, 22px);
  opacity: 0.92;
}

.hero-buttons {
  display: flex;
  gap: 18px;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.btn-primary,
.btn-secondary,
.btn,
button,
.btn-registrarme {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border: none;
  cursor: pointer;
  transition: 0.3s;
}

.btn-registrarme {
  padding: 18px 36px;
  border-radius: 60px;
  background: linear-gradient(90deg, #ff5a2f, #ffd36a, #ff7a2f);
  background-size: 200% 200%;
  color: white;
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 0.5px;
  box-shadow: 0 15px 40px rgba(255, 140, 0, 0.5);
  animation: btnPulse 1.8s infinite, gradientMoveBtn 4s ease infinite;
}

.btn-registrarme:hover {
  transform: scale(1.08);
  box-shadow: 0 20px 60px rgba(255, 140, 0, 0.8);
}

.btn-secondary {
  padding: 16px 30px;
  border-radius: 50px;
  border: 2px solid rgba(255, 255, 255, 0.45);
  color: white;
  font-weight: 700;
  background: transparent;
}

.btn-secondary:hover {
  background: #fff3de;
  color: #2a1612;
}

.btn {
  margin-top: 8px;
  padding: 14px 26px;
  border-radius: 40px;
  font-weight: 700;
  color: white;
  background: linear-gradient(90deg, var(--rojo), var(--amarillo));
}

.btn:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(255, 150, 0, 0.4);
}

@keyframes btnPulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.06); }
  100% { transform: scale(1); }
}

@keyframes gradientMoveBtn {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.hero-socials {
  margin-top: 28px;
  display: flex;
  gap: 14px;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.social-pill {
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.22);
}

.social-facebook {
  background: linear-gradient(90deg, #355f9d, #5a84cf);
}

.social-tiktok {
  background: linear-gradient(90deg, #ff5f6d, #f9a826);
}

.social-whatsapp {
  background: linear-gradient(90deg, #25d366, #128c7e);
}

.hero-info {
  margin-top: 40px;
  display: flex;
  gap: 20px;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.hero-info div {
  min-width: 220px;
  flex: 1 1 220px;
  padding: 18px 20px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 214, 120, 0.16);
  backdrop-filter: blur(10px);
}

.hero-info strong {
  display: block;
  font-size: 17px;
  margin-bottom: 6px;
}

.hero-info span {
  opacity: 0.84;
  font-size: 14px;
}

.particles span {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  animation: floatParticle 12s infinite;
}

.particles span:nth-child(1) { background: #ffb347; top: 20%; left: 15%; }
.particles span:nth-child(2) { background: #ff6b3d; top: 70%; left: 25%; }
.particles span:nth-child(3) { background: #ffd36a; top: 40%; right: 20%; }
.particles span:nth-child(4) { background: #ff4d2d; bottom: 25%; right: 15%; }
.particles span:nth-child(5) { background: #ff9f43; bottom: 40%; left: 10%; }

@keyframes floatParticle {
  0% { transform: translateY(0); }
  50% { transform: translateY(-25px); }
  100% { transform: translateY(0); }
}

.section {
  max-width: 1120px;
  margin: auto;
  padding: 76px 20px;
}

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

.event-heading {
  padding: 28px;
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(255, 95, 109, 0.12), rgba(255, 122, 47, 0.18)),
    rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 214, 120, 0.1);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.2);
}

.section-heading.compact {
  max-width: none;
}

.section-kicker {
  display: inline-flex;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 122, 47, 0.14);
  color: var(--amarillo);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.section-heading h2 {
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1;
  margin-bottom: 14px;
}

.event-heading-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
  padding: 12px 18px 12px 14px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.07), rgba(255, 122, 47, 0.08));
  border: 1px solid rgba(255, 214, 120, 0.18);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
}

.event-heading-brand img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(255, 122, 47, 0.18));
}

.event-heading-brand span {
  color: #ffe9b4;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1.2;
}

.section-heading p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.75;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.event-grid .featured-card {
  grid-column: span 3;
}

.card {
  background: rgba(255, 255, 255, 0.045);
  backdrop-filter: blur(14px);
  border-radius: 24px;
  padding: 28px;
  border: 1px solid rgba(255, 214, 120, 0.08);
  transition: 0.3s;
  opacity: 0;
  transform: translateY(24px);
  min-width: 0;
}

.card.visible {
  opacity: 1;
  transform: translateY(0);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.35);
}

.card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: var(--amarillo);
  font-weight: 700;
}

.card p,
.card li {
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.84);
}

.card-chip {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 122, 47, 0.16);
  color: #fff5d2;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.featured-card {
  background: linear-gradient(135deg, rgba(255, 95, 109, 0.18), rgba(255, 122, 47, 0.24));
}

.featured-card h3 {
  font-size: clamp(28px, 3vw, 36px);
  line-height: 1.05;
  color: #fff1ca;
}

.featured-card p {
  font-size: 1.04rem;
}

.event-points,
.location-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.event-points span,
.location-tags span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 214, 120, 0.12);
  font-size: 14px;
  font-weight: 600;
}

.event-highlight-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.event-highlight-strip div {
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 214, 120, 0.14);
}

.event-highlight-strip strong {
  display: block;
  color: #fff3d2;
  font-size: 15px;
  margin-bottom: 6px;
}

.event-highlight-strip span {
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  line-height: 1.45;
}

.identity-grid {
  grid-template-columns: repeat(3, 1fr);
}

.patron-card {
  background: linear-gradient(135deg, rgba(255, 122, 47, 0.18), rgba(118, 38, 38, 0.28));
}

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

.social-card {
  min-height: 280px;
}

.facebook-card {
  background: linear-gradient(135deg, rgba(53, 95, 157, 0.22), rgba(255, 255, 255, 0.05));
}

.tiktok-card {
  background: linear-gradient(135deg, rgba(255, 95, 109, 0.18), rgba(249, 168, 38, 0.14));
}

.social-mini {
  display: inline-flex;
  margin-bottom: 16px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.social-cta {
  display: inline-flex;
  margin-top: 18px;
  padding: 12px 18px;
  border-radius: 999px;
  background: white;
  color: #0f172a;
  font-weight: 800;
  width: fit-content;
}

.location-grid {
  grid-template-columns: 0.9fr 1.1fr;
  align-items: stretch;
}

.location-copy {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.map-shell {
  padding: 0;
  overflow: hidden;
}

.map {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 420px;
}

.map iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
}

.map-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  background: rgba(36, 18, 17, 0.72);
  color: white;
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  backdrop-filter: blur(6px);
}

.form-card {
  max-width: 760px;
  margin: 0 auto;
}

form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

input,
select,
textarea {
  padding: 15px 16px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.08);
  color: white;
  outline: none;
}

input::placeholder,
textarea::placeholder {
  color: rgba(255, 255, 255, 0.62);
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(255, 122, 47, 0.72);
  box-shadow: 0 0 0 4px rgba(255, 122, 47, 0.14);
}

button {
  padding: 17px;
  border-radius: 40px;
  background: linear-gradient(90deg, var(--rojo), var(--naranja), var(--amarillo));
  color: white;
  font-weight: 800;
  font-size: 16px;
}

button:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 32px rgba(255, 122, 47, 0.28);
}

.form-note,
.form-status {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.78);
}

.form-status {
  min-height: 24px;
  font-weight: 700;
}

.form-status.success {
  color: #8cffbd;
}

.form-status.error {
  color: #ffb6b6;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 999;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.whatsapp-ring {
  position: absolute;
  inset: -10px;
  border-radius: 999px;
  border: 2px solid rgba(37, 211, 102, 0.44);
  animation: whatsappPulse 2s infinite;
}

.whatsapp-bubble {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25d366, #128c7e);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  position: relative;
  z-index: 2;
}

.whatsapp-label {
  padding: 14px 18px;
  border-radius: 999px;
  background: rgba(7, 21, 17, 0.92);
  border: 1px solid rgba(37, 211, 102, 0.26);
  color: white;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.28);
}

.section-heading h2,
.card h3,
.featured-card h3,
.hero h1 {
  overflow-wrap: anywhere;
}

@keyframes whatsappPulse {
  0% { transform: scale(0.94); opacity: 0.7; }
  70% { transform: scale(1.16); opacity: 0; }
  100% { transform: scale(1.16); opacity: 0; }
}

@media (max-width: 960px) {
  .grid,
  .event-grid .featured-card,
  .identity-grid,
  .socials-grid,
  .location-grid {
    grid-template-columns: 1fr;
  }

  .event-highlight-strip {
    grid-template-columns: 1fr;
  }

  .hero-split {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 18px;
  }

  .event-grid .featured-card {
    grid-column: auto;
  }

  .topbar {
    position: static;
    transform: none;
    width: min(calc(100% - 24px), 1150px);
    margin: 0 auto 26px;
    border-radius: 26px;
    flex-direction: column;
  }

  .hero {
    min-height: auto;
    padding: 24px 18px 52px;
  }

  .hero-buttons,
  .hero-socials,
  .hero-info {
    justify-content: center;
  }

  .event-heading-brand {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-copy {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .topbar {
    display: none;
  }

  .hero-logo {
    width: min(78vw, 280px);
    max-width: 100%;
  }

  .hero h1 {
    font-size: clamp(32px, 9vw, 44px);
    margin-bottom: 10px;
  }

  .subtitle {
    font-size: 16px;
    margin-bottom: 24px;
  }

  .topbar-links {
    display: none;
  }

  .whatsapp-label {
    display: none;
  }

  .section {
    padding: 54px 18px;
  }

  .event-heading {
    padding: 22px 18px;
    border-radius: 24px;
  }

  .event-heading-brand {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .event-heading-brand img {
    width: 52px;
    height: 52px;
  }

  .featured-card h3 {
    font-size: clamp(24px, 7vw, 30px);
  }

  .map-btn {
    top: 12px;
    right: 12px;
    padding: 9px 12px;
    font-size: 12px;
  }
}

@media (max-width: 640px) {
  .hero {
    padding: 18px 14px 44px;
  }

  .hero-content {
    padding-inline: 0;
  }

  .hero-buttons,
  .hero-socials {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .btn-registrarme,
  .btn-secondary,
  .social-pill {
    width: 100%;
    min-height: 54px;
  }

  .hero-info div {
    min-width: auto;
    width: 100%;
    padding: 16px;
  }

  .section {
    padding: 46px 14px;
  }

  .card {
    padding: 20px 18px;
    border-radius: 20px;
  }

  .section-heading {
    margin-bottom: 20px;
  }

  .section-heading h2 {
    font-size: clamp(26px, 8vw, 34px);
    margin-bottom: 10px;
  }

  .section-heading p,
  .card p,
  .card li {
    font-size: 14px;
    line-height: 1.65;
  }

  .event-points,
  .location-tags {
    gap: 8px;
  }

  .event-points span,
  .location-tags span {
    width: 100%;
    text-align: center;
    font-size: 13px;
  }

  .event-highlight-strip {
    gap: 10px;
  }

  .event-highlight-strip div {
    padding: 14px;
  }

  .map,
  .map iframe {
    min-height: 280px;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
  }

  .whatsapp-bubble {
    width: 62px;
    height: 62px;
  }

}

@media (max-width: 420px) {
  .hero h1 {
    font-size: 30px;
  }

  .hero-badge {
    font-size: 12px;
    padding: 8px 14px;
  }

  .btn-registrarme,
  .btn-secondary,
  .social-pill,
  button {
    font-size: 15px;
  }

  .event-heading-brand {
    padding: 10px 12px;
    gap: 10px;
  }

  .event-heading-brand span {
    font-size: 12px;
    letter-spacing: 0.08em;
  }
}
