:root {
  --bg: #070707;
  --bg-soft: #111111;
  --surface: rgba(16, 16, 16, 0.82);
  --border: rgba(255, 255, 255, 0.1);
  --text: #f5f5f5;
  --muted: rgba(245, 245, 245, 0.74);
  --gold: #ffbe05;
  --gold-strong: #f5ad00;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", sans-serif;
  background:
    radial-gradient(circle at top, rgba(255, 190, 5, 0.12), transparent 30%),
    linear-gradient(180deg, #0b0b0b 0%, #050505 100%);
  color: var(--text);
}

a {
  color: inherit;
}

a:hover {
  color: var(--gold);
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 9999;
  background: #fff;
  color: #000;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.navbar {
  padding: 1rem 0;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.2s ease;
}

.brand-logo-swap {
  position: relative;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
}

.brand-logo {
  position: absolute;
  inset: 0;
  width: 42px;
  height: 42px;
  object-fit: contain;
  background: #fff;
  border-radius: 0.7rem;
  padding: 0.2rem;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.brand-mark:hover,
.brand-mark:focus-visible {
  color: var(--gold);
}

.brand-logo-hover {
  opacity: 0;
}

.brand-mark:hover .brand-logo-default,
.brand-mark:focus-visible .brand-logo-default {
  opacity: 0;
}

.brand-mark:hover .brand-logo-hover,
.brand-mark:focus-visible .brand-logo-hover {
  opacity: 1;
}

.brand-mark:hover .brand-logo,
.brand-mark:focus-visible .brand-logo {
  transform: translateY(-1px);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.55s ease,
    transform 0.55s ease,
    filter 0.55s ease;
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.btn-gold {
  background: linear-gradient(180deg, var(--gold) 0%, var(--gold-strong) 100%);
  color: #111;
  border: 0;
  font-weight: 700;
  box-shadow: 0 18px 30px rgba(255, 190, 5, 0.22);
}

.btn-gold:hover {
  color: #111;
  filter: brightness(1.02);
}

.hero-section {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: stretch;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.92) 0%, rgba(5, 5, 5, 0.72) 45%, rgba(5, 5, 5, 0.5) 100%),
    url("images/hero.webp") center center / cover no-repeat;
  overflow: hidden;
}

.hero-section,
.section-block {
  scroll-margin-top: 96px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 190, 5, 0.2), transparent 25%),
    radial-gradient(circle at 80% 10%, rgba(255, 190, 5, 0.12), transparent 18%);
  pointer-events: none;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.9rem;
  border: 1px solid rgba(255, 190, 5, 0.25);
  border-radius: 999px;
  color: var(--gold);
  background: rgba(255, 190, 5, 0.08);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.section-block {
  padding: 5.5rem 0;
}

.min-vh-75 {
  min-height: 75vh;
}

.about-section {
  position: relative;
  overflow: hidden;
  min-height: 75vh;
  min-height: 75svh;
}

.about-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.93) 0%, rgba(5, 5, 5, 0.78) 46%, rgba(5, 5, 5, 0.42) 100%),
    url("images/quemsomos.webp") center center / cover no-repeat;
  transform: scaleX(-1);
  transform-origin: center;
  z-index: 0;
}

.about-section > * {
  position: relative;
  z-index: 1;
}

.about-card {
  max-width: 640px;
  padding: 2.2rem;
  border-radius: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(10, 10, 10, 0.76);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
}

.about-card h2 {
  margin: 1rem 0 1rem;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
}

.about-text {
  color: rgba(245, 245, 245, 0.78);
  font-size: 1.02rem;
  line-height: 1.75;
  margin-bottom: 1rem;
}

.about-points {
  display: grid;
  gap: 0.9rem;
  margin-top: 1.5rem;
}

.about-point {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 0.9rem 1rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.about-point i {
  color: var(--gold);
  margin-top: 0.2rem;
  font-size: 1rem;
}

.about-point span {
  color: rgba(245, 245, 245, 0.9);
  font-weight: 600;
  line-height: 1.5;
}

.section-alt {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
}

.section-heading {
  max-width: 760px;
  margin-bottom: 2.5rem;
}

.section-heading h2 {
  margin-top: 1rem;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
}

.glass-card,
.product-card,
.schedule-card,
.contact-card {
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  border-radius: 1.25rem;
}

.glass-card {
  position: relative;
  overflow: hidden;
}

.glass-card::before,
.product-card::before,
.schedule-card::before,
.contact-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 190, 5, 0.12), transparent 40%);
  pointer-events: none;
}

.product-card,
.schedule-card,
.contact-card {
  position: relative;
  padding: 1.75rem;
}

.schedule-card-single {
  display: grid;
  gap: 1.25rem;
}

.schedule-single-head h3 {
  margin-bottom: 0.45rem;
}

.schedule-single-head p {
  margin-bottom: 0;
}

.schedule-list {
  display: grid;
  gap: 0.75rem;
}

.schedule-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 1rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.schedule-row span {
  color: rgba(245, 245, 245, 0.78);
  font-weight: 600;
}

.schedule-row strong {
  color: #fff;
  font-weight: 700;
  text-align: right;
}

.contact-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.product-card {
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 190, 5, 0.35);
}

.product-icon,
.schedule-icon {
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: rgba(255, 190, 5, 0.12);
  color: var(--gold);
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.product-card h3,
.schedule-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.product-card p,
.schedule-card p,
.contact-card p,
.section-note,
.lead {
  color: var(--muted);
}

.section-note {
  font-weight: 600;
}

.whatsapp-call,
.address-link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  word-break: break-word;
}

.whatsapp-call {
  font-size: clamp(1.2rem, 2vw, 1.7rem);
  font-weight: 800;
  color: #fff;
}

.whatsapp-call i {
  color: #25d366;
  font-size: 1.3em;
}

.address-link {
  color: #fff;
  font-weight: 600;
}

.contact-email {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: var(--muted);
  font-weight: 600;
}

.contact-email:hover {
  color: var(--gold);
}

.contact-card .text-muted {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1rem !important;
  color: rgba(255, 255, 255, 0.78) !important;
  letter-spacing: 0.08em;
  font-weight: 700;
}

.contact-card .text-muted::before {
  content: "";
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--gold);
  display: inline-block;
}

.map-frame iframe {
  border: 0;
  border-radius: 1rem;
}

.site-footer {
  padding: 2rem 0;
  border-top: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.75);
}

.footer-brand {
  font-size: 1.1rem;
}

.footer-links {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.footer-links a {
  text-decoration: none;
  color: var(--muted);
}

.floating-whatsapp {
  position: fixed;
  right: 1.2rem;
  bottom: 1.2rem;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #25d366;
  color: #fff;
  font-size: 1.7rem;
  box-shadow: 0 18px 40px rgba(37, 211, 102, 0.35);
  z-index: 1030;
  text-decoration: none;
}

.floating-whatsapp:hover {
  color: #fff;
  transform: translateY(-2px);
}

.navbar .nav-link {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
}

.navbar .nav-link:hover {
  color: var(--gold);
}

.navbar .nav-link.active {
  color: var(--gold);
  position: relative;
}

.navbar .nav-link.active::after {
  content: "";
  position: absolute;
  left: 0.5rem;
  right: 0.5rem;
  bottom: -0.35rem;
  height: 2px;
  border-radius: 999px;
  background: var(--gold);
}

@media (max-width: 991.98px) {
  .navbar-collapse {
    padding-top: 1rem;
  }

  .hero-section {
    background:
      linear-gradient(180deg, rgba(5, 5, 5, 0.94) 0%, rgba(5, 5, 5, 0.78) 45%, rgba(5, 5, 5, 0.65) 100%),
      url("images/hero.webp") 82% center / cover no-repeat;
  }

  .about-section::before {
    background:
      linear-gradient(180deg, rgba(5, 5, 5, 0.92) 0%, rgba(5, 5, 5, 0.76) 55%, rgba(5, 5, 5, 0.6) 100%),
      url("images/quemsomos.webp") 18% center / cover no-repeat;
  }
}

@media (max-width: 575.98px) {
  .section-block {
    padding: 4rem 0;
  }

  .display-4 {
    font-size: calc(1.45rem + 4vw);
  }

  .floating-whatsapp {
    width: 54px;
    height: 54px;
    font-size: 1.5rem;
  }

  .about-card {
    padding: 1.5rem;
  }

  .schedule-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .schedule-row strong {
    text-align: left;
  }
}

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

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

  .brand-logo,
  .brand-mark,
  .product-card,
  .floating-whatsapp {
    transition: none;
  }
}
