:root {
  --primary: #c79a3b;
  --primary-dark: #a87d27;
  --dark: #0f172a;
  --dark-soft: #1e293b;
  --light: #f8fafc;
  --text: #334155;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

h1,
h2,
h3 {
  margin-top: 0;
  font-family: "Montserrat", sans-serif;
  color: var(--dark);
  line-height: 1.15;
}

p {
  margin-top: 0;
}

a {
  text-decoration: none;
}

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.narrow {
  width: min(760px, calc(100% - 32px));
  margin: 0 auto;
}

.topbar {
  background: var(--dark);
  color: var(--white);
  padding: 14px 0;
  font-size: 0.95rem;
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}

.topbar a {
  color: var(--white);
  font-weight: 600;
}

.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  background:
    linear-gradient(135deg, rgba(15, 23, 42, 0.92), rgba(30, 41, 59, 0.78)),
    url("../img/open-house-bg.jpg") center/cover no-repeat;
  color: var(--white);
  padding: 80px 0;
}

.overlay {
  position: absolute;
  inset: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
}

.logo-top img{
  height:48px;
  width:auto;
  display:block;
}

.hero-logo{
  margin-bottom:20px;
}

.hero-logo img{
  max-width:260px;
  width:40%;
  height:auto;
  display:block;
}

/* Opcional: versión premium con glow */
.hero-logo img{
  filter: drop-shadow(0 10px 25px rgba(199,154,59,0.25));
}

/* Responsive */
@media (max-width:640px){
  .logo-top img{
    height:38px;
  }

  .hero-logo img{
    max-width:200px;
  }
}

.eyebrow,
.section-kicker,
.mini-kicker {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
}

.eyebrow {
  color: #f8d98b;
  margin-bottom: 18px;
  font-size: 0.85rem;
}

.hero h1 {
  color: var(--white);
  font-size: clamp(2.3rem, 6vw, 4.7rem);
  margin-bottom: 18px;
}

.hero-text {
  font-size: 1.12rem;
  max-width: 700px;
  color: rgba(255, 255, 255, 0.9);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 28px 0;
}

.hero-meta span {
  background: rgba(255, 255, 255, 0.1);
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 0.95rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 700;
  transition: 0.25s ease;
}

.btn-primary {
  background: var(--primary);
  color: var(--dark);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

.btn-outline {
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.08);
}

.btn-dark {
  background: var(--dark);
  color: var(--white);
}

.btn-dark:hover {
  background: var(--dark-soft);
}

.intro,
.benefits,
.details,
.map-section,
.tickets,
.cta-banner {
  padding: 90px 0;
}

.section-kicker,
.mini-kicker {
  color: var(--primary-dark);
  font-size: 0.8rem;
  margin-bottom: 14px;
}

.intro h2,
.section-heading h2,
.details h2,
.cta-banner h2 {
  font-size: clamp(1.9rem, 4vw, 3.1rem);
  margin-bottom: 18px;
}

.section-heading {
  max-width: 780px;
  margin: 0 auto 38px;
  text-align: center;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.card,
.map-card,
.highlight-box {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.card {
  padding: 28px;
}

.icon {
  font-size: 2rem;
  margin-bottom: 16px;
}

.details {
  background: linear-gradient(180deg, #fffdf9 0%, #f8fafc 100%);
}

.details-grid,
.map-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 32px;
  align-items: center;
}

.info-list {
  padding-left: 18px;
  margin: 22px 0 28px;
}

.info-list li {
  margin-bottom: 10px;
}

.highlight-box {
  padding: 34px;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background:
    linear-gradient(135deg, rgba(199, 154, 59, 0.12), rgba(15, 23, 42, 0.06)),
    #ffffff;
}

.highlight-box h3 {
  font-size: 1.8rem;
  margin-bottom: 14px;
}

.map-card {
  padding: 28px;
}

.map-frame iframe {
  width: 100%;
  height: 420px;
  border: 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.eventbrite-wrapper {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #fff;
}

.eventbrite-wrapper iframe {
  width: 100%;
  min-height: 760px;
  border: 0;
  display: block;
}

.eventbrite-note {
  text-align: center;
  margin-top: 26px;
}

.cta-banner {
  background: linear-gradient(135deg, var(--dark), #1e293b);
  color: var(--white);
}

.cta-banner-inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
}

.cta-banner h2,
.light {
  color: var(--white);
}

.light-btn {
  background: var(--white);
  color: var(--dark);
}

.light-btn:hover {
  background: #f1f5f9;
}

.footer {
  padding: 28px 0;
  background: #0b1120;
  color: rgba(255, 255, 255, 0.78);
  text-align: center;
}

@media (max-width: 960px) {
  .grid-3,
  .details-grid,
  .map-grid,
  .cta-banner-inner {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: flex-start;
  }

  .hero {
    min-height: auto;
    padding: 90px 0 70px;
  }

  .eventbrite-wrapper iframe {
    min-height: 680px;
  }
}

@media (max-width: 640px) {
  .topbar-inner,
  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-meta {
    flex-direction: column;
    align-items: flex-start;
  }

  .intro,
  .benefits,
  .details,
  .map-section,
  .tickets,
  .cta-banner {
    padding: 72px 0;
  }

  .btn {
    width: 100%;
  }

  .eventbrite-wrapper iframe {
    min-height: 620px;
  }
}