:root {
  --primary: #196100;
  --primary-dark: #124400;
  --primary-light: #24a000;
  --accent: #00b894;
  --bg: #050608;
  --bg-alt: #101319;
  --bg-soft: #151924;
  --text: #f5f7fb;
  --muted: #b4bdd3;
  --border-radius: 18px;
  --max-width: 1120px;
  --shadow-soft: 0 18px 40px rgba(0, 0, 0, 0.6);
}

/* Reset & base */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: radial-gradient(circle at top, #222739 0, #050608 60%);
  color: var(--text);
  line-height: 1.6;
}

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

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

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Buttons */
.btn {
  border-radius: 999px;
  padding: 0.6rem 1.4rem;
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-light), var(--accent));
  color: #fff;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.6);
  background: linear-gradient(135deg, var(--primary), var(--accent));
}

.btn-outline {
  border-radius: 999px;
  padding: 0.6rem 1.4rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: transparent;
  color: var(--text);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-1px);
}

/* Header & Navigation */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(5, 6, 8, 0.95);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.8rem 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.logo span {
  background: linear-gradient(135deg, var(--primary-light), var(--accent));
  -webkit-background-clip: text;
  color: transparent;
  font-size: 1.1rem;
}

.logo i {
  color: var(--primary-light);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 1.3rem;
  font-size: 0.92rem;
}

.nav-links a {
  position: relative;
  padding-bottom: 0.15rem;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-light), var(--accent));
  transition: width 0.2s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-toggle {
  display: none;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: transparent;
  color: var(--text);
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

/* Mobile nav */
@media (max-width: 840px) {
  .nav-links {
    position: fixed;
    inset: 64px 0 auto 0;
    background: rgba(5, 6, 8, 0.98);
    flex-direction: column;
    padding: 1.2rem 1.5rem 1.5rem;
    transform: translateY(-120%);
    transition: transform 0.2s ease;
  }

  .nav-links.open {
    transform: translateY(0);
  }

  .nav-cta {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }
}

.hero {
  position: relative;
  padding: 5rem 0 4rem;
  min-height: 80vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* grid dos columnas */
.hero-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 2.8rem;
  align-items: center;
}

/* video de fondo */
.hero-video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.6);
}

/* overlay */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top, rgba(0, 0, 0, 0.25) 0, rgba(0, 0, 0, 0.7) 55%),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.4), #050608 80%);
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
}

/* tarjeta derecha (ya la tenías, pero por si acaso) */
.hero-card {
  position: relative;
  background: radial-gradient(circle at top, #283341 0, #151924 65%);
  border-radius: 26px;
  padding: 1.8rem 1.6rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.25);
  font-size: 0.75rem;
  margin-bottom: 0.6rem;
}

.hero-card-title {
  font-size: 1.1rem;
  margin-bottom: 0.6rem;
  font-weight: 600;
}

.hero-card-text {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 1rem;
}

/* meta con iconos */
.hero-meta-label i {
  margin-right: 0.35rem;
}


/* Sections */
section {
  padding: 3rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 2rem;
}

.section-title {
  font-size: 1.8rem;
  margin-bottom: 0.4rem;
}

.section-subtitle {
  font-size: 0.95rem;
  color: var(--muted);
}

/* Cards & grids */
.section-alt {
  background: var(--bg-alt);
}

.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.card {
  background: var(--bg-soft);
  border-radius: var(--border-radius);
  padding: 1.3rem 1.4rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.9rem;
}

.card-icon {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  background: radial-gradient(circle at top left, var(--primary-light) 0, #050608 80%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
}

.card-icon i {
  color: #fff;
}

.card h3 {
  font-size: 1rem;
  margin-bottom: 0.3rem;
}

.card-meta {
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 0.4rem;
}

/* Feature list */
ul.feature-list {
  list-style: none;
  margin-top: 0.4rem;
}

ul.feature-list li {
  margin-bottom: 0.25rem;
}

ul.feature-list li::before {
  content: "• ";
  color: var(--accent);
}

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.pricing-card {
  position: relative;
  background: var(--bg-soft);
  border-radius: 24px;
  padding: 1.4rem 1.4rem 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  overflow: hidden;
}

.pricing-card.featured {
  border-color: var(--accent);
  box-shadow: var(--shadow-soft);
}

.pricing-badge {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.7rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 0.75rem;
  margin-bottom: 0.6rem; /* más espacio debajo para que no pise el título */
  z-index: 1;
}


.pricing-name {
  font-size: 1.1rem;
  margin-bottom: 0.2rem;
}

.pricing-tagline {
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 0.6rem;
}

.pricing-price {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
}

.pricing-note {
  font-size: 0.78rem;
  color: var(--muted);
  margin-bottom: 0.8rem;
}

.pricing-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: var(--muted);
}

/* Gallery */
.gallery-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 1.6rem;
  align-items: flex-start;
}

.video-embed {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #000;
  aspect-ratio: 16 / 9;
}

.video-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 0.8rem 0 1.2rem;
}

/*add uno */

/* Photo gallery of past events */
.photo-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
  margin-top: 1.8rem;
}

.event-photo-card {
  background: var(--bg-soft);
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
}

.event-photo-thumb {
  position: relative;
  overflow: hidden;
}

.event-photo-thumb img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  display: block;
}

.event-photo-body {
  padding: 0.9rem 1rem 1rem;
  font-size: 0.9rem;
}

.event-date {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin-bottom: 0.25rem;
}

.event-title {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.event-meta {
  font-size: 0.85rem;
  color: var(--muted);
}

/* Vinyl carousel section */
.vinyl-section {
  padding: 3rem 0 3.2rem;
  background: var(--bg);
}

.vinyl-carousel {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}

.vinyl-deck {
  position: relative;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, #111 0, #050608 55%),
    radial-gradient(circle at center, #000 55%, #000 100%);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8);
  animation: vinyl-spin 12s linear infinite;
  overflow: hidden;
}

/* Surcos del disco */
.vinyl-grooves {
  position: absolute;
  inset: 10%;
  border-radius: 50%;
  background:
    repeating-radial-gradient(
      circle at center,
      rgba(255, 255, 255, 0.03) 0,
      rgba(255, 255, 255, 0.03) 1px,
      transparent 1px,
      transparent 3px
    );
  pointer-events: none;
}

/* Zona central donde va la foto */
.vinyl-center {
  position: absolute;
  inset: 18%;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(0, 0, 0, 0.6);
}

.vinyl-center img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
}

.vinyl-center img.active {
  opacity: 1;
}

/* Punto del centro del disco (label) */
.vinyl-label-dot {
  position: absolute;
  inset: 40%;
  border-radius: 50%;
  background: radial-gradient(circle at top, var(--primary-light) 0, var(--primary-dark) 60%);
  box-shadow: 0 0 0 3px #000;
}

/* Texto de la leyenda */
.vinyl-caption {
  font-size: 0.9rem;
  color: var(--muted);
  max-width: 420px;
}

/* Animación de giro continuo */
@keyframes vinyl-spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Responsive */
@media screen and (max-width: 480px) {
  .vinyl-deck {
    width: 220px;
    height: 220px;
  }
}


/* Responsive for photo gallery */
@media screen and (max-width: 960px) {
  .photo-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media screen and (max-width: 720px) {
  .photo-gallery-grid {
    grid-template-columns: 1fr;
  }

  .event-photo-thumb img {
    height: 200px;
  }
}


.tag-pill {
  font-size: 0.8rem;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(0, 0, 0, 0.35);
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
}

.testimonial-card {
  background: var(--bg-soft);
  border-radius: var(--border-radius);
  padding: 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.9rem;
}

.testimonial-quote {
  font-style: italic;
  margin-bottom: 0.6rem;
}

.testimonial-name {
  font-weight: 600;
  font-size: 0.9rem;
}

.testimonial-meta {
  font-size: 0.75rem;
  color: var(--muted);
}

/* FAQ */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  padding: 0.8rem 0;
}

.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 0.95rem;
}

.faq-a {
  margin-top: 0.45rem;
  font-size: 0.9rem;
  color: var(--muted);
  display: none;
}

.faq-item.active .faq-a {
  display: block;
}

.faq-item i {
  font-size: 0.8rem;
  color: var(--muted);
  margin-left: 0.5rem;
}

/* Forms & contact */
.form-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2rem;
  align-items: flex-start;
}

form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.85rem;
}

.form-group.full {
  grid-column: 1 / -1;
}

label {
  color: #dde4ff;
}

input,
select,
textarea {
  background: rgba(0, 0, 0, 0.65);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  padding: 0.5rem 0.6rem;
  color: var(--text);
  font-family: inherit;
  font-size: 0.9rem;
  outline: none;
  transition: border 0.15s ease, box-shadow 0.15s ease;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px rgba(0, 184, 148, 0.35);
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.form-hint {
  font-size: 0.75rem;
  color: var(--muted);
}

.contact-list {
  list-style: none;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.contact-list li {
  margin-bottom: 0.4rem;
}

.contact-list i {
  width: 20px;
}

.contact-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  font-size: 0.75rem;
}

.contact-badge {
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

/* Page header */
.page-hero {
  padding: 3rem 0 2rem;
  background: radial-gradient(circle at top, #1d2631 0, #050608 60%);
}

.page-hero h1 {
  font-size: 2rem;
  margin-bottom: 0.4rem;
}

.breadcrumb {
  font-size: 0.8rem;
  color: var(--muted);
}

/* Footer */
footer {
  padding: 1.8rem 0 1rem;
  font-size: 0.8rem;
  color: var(--muted);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: #050608;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.footer-links a {
  text-decoration: underline;
  text-decoration-style: dotted;
  text-underline-offset: 3px;
  color: #c6d0ff;
}

/* Responsive */
@media (max-width: 960px) {
  .hero-grid,
  .gallery-layout,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 3rem;
  }

  .cards-3,
  .pricing-grid,
  .testimonials-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .hero-title {
    font-size: 2.1rem;
  }

  .cards-3,
  .pricing-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  form {
    grid-template-columns: 1fr;
  }
}
/* =====================  TABLET  (<= 960px)  ===================== */
@media screen and (max-width: 960px) {
  /* Hero en una sola columna */
  .hero {
    min-height: auto;
    padding-top: 5rem;
    padding-bottom: 3rem;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  /* Cards y grids de 3 columnas pasan a 2 */
  .cards-3,
  .pricing-grid,
  .testimonials-grid,
  .photo-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  /* Layout de galería (video + texto) en una columna */
  .gallery-layout {
    grid-template-columns: 1fr;
  }

  /* Formulario en una columna */
  .form-grid {
    grid-template-columns: 1fr;
  }
}

/* =====================  MÓVIL  (<= 640px)  ===================== */
@media screen and (max-width: 640px) {
  body {
    font-size: 16px;
  }

  /* Títulos más compactos en móvil */
  .hero-title {
    font-size: 2rem;
    line-height: 1.2;
  }

  .hero-subtitle {
    font-size: 0.95rem;
  }

  .section {
    padding: 2.5rem 0;
  }

  /* Botones del hero uno debajo del otro y al 100% del ancho */
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  /* Todas las rejillas pasan a 1 columna en teléfonos */
  .cards-3,
  .pricing-grid,
  .testimonials-grid,
  .photo-gallery-grid {
    grid-template-columns: 1fr;
  }

  .hero-card {
    margin-top: 0.5rem;
  }
}
/* Thank-you page extras */
.thankyou-socials {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.8rem;
}

.thankyou-socials a {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.9rem;
}

.thankyou-socials i {
  font-size: 1.05rem;
}

.thankyou-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  font-size: 0.9rem;
}

.thankyou-links a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* En móvil, que todo se vea cómodo */
@media screen and (max-width: 640px) {
  .thankyou-socials a {
    width: 100%;
    justify-content: center;
  }

  .thankyou-links {
    flex-direction: column;
  }

  .thankyou-links a {
    text-align: center;
  }
}

.package-preview {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.8rem;
  margin-bottom: 2.4rem;
}

.package-preview-inner {
  position: relative;
  width: 340px;
  max-width: 100%;
  border-radius: 24px;
  overflow: hidden;
  background: radial-gradient(circle at top, #252b35 0, #151924 60%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-soft);
}

.package-preview-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(25, 97, 0, 0.45), transparent 55%),
    radial-gradient(circle at bottom right, rgba(0, 0, 0, 0.6), transparent 55%);
  mix-blend-mode: screen;
  opacity: 0.35;
  pointer-events: none;
}

#package-preview-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.package-preview-info {
  max-width: 420px;
}

.package-preview-caption {
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
}

.package-preview-note {
  margin-top: 0.9rem;
  font-size: 0.85rem;
  color: var(--muted);
}

/* animación al cambiar de paquete */
.preview-animate {
  animation: previewPop 0.6s ease-out;
}

@keyframes previewPop {
  0% {
    opacity: 0;
    transform: scale(0.92) translateY(10px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

/* resaltar tarjeta activa */
.package-card {
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.package-card.is-active {
  transform: translateY(-4px);
  border-color: rgba(25, 97, 0, 0.6);
  box-shadow:
    0 0 0 1px rgba(25, 97, 0, 0.5),
    0 24px 40px rgba(0, 0, 0, 0.7);
}

/* responsive preview */
@media screen and (max-width: 960px) {
  .package-preview {
    flex-direction: column;
    align-items: flex-start;
  }

  .package-preview-info {
    max-width: 100%;
  }
}

.addons-card {
  padding: 1.4rem 1.5rem;
  border-radius: 24px;
  background: radial-gradient(circle at top, #252b35 0, #151924 60%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-soft);
}

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

.addon-item {
  padding: 1rem 1.1rem;
  border-radius: 18px;
  background: #141822;
  border: 1px dashed rgba(255, 255, 255, 0.1);
}

.addon-item h3 {
  font-size: 0.95rem;
  margin-bottom: 0.3rem;
}

.addon-price {
  font-size: 0.9rem;
  color: var(--muted);
}

.addon-item--wide {
  grid-column: span 3;
}

@media screen and (max-width: 960px) {
  .addons-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .addon-item--wide {
    grid-column: span 2;
  }
}

@media screen and (max-width: 640px) {
  .addons-grid {
    grid-template-columns: 1fr;
  }

  .addon-item--wide {
    grid-column: span 1;
  }
}

.pill-input {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(0, 0, 0, 0.35);
  font-size: 0.85rem;
}
/* ===== Section: nav highlight (HOME / SERVICES / PACKAGES / ABOUT) ===== */

.section-nav-highlight {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.nav-highlight-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
}

.nav-highlight-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.3rem 1.2rem;
  border-radius: 26px;
  overflow: hidden;
  text-decoration: none;
  background:
    radial-gradient(circle at top left, rgba(25, 97, 0, 0.6) 0, transparent 55%),
    radial-gradient(circle at bottom right, #151924 0, #050608 70%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.7);
  transform: translateY(8px) scale(0.98);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease,
    background 0.25s ease;
}

.nav-highlight-card:hover {
  transform: translateY(0) scale(1);
  border-color: rgba(25, 97, 0, 0.9);
  box-shadow:
    0 0 0 1px rgba(25, 97, 0, 0.65),
    0 32px 60px rgba(0, 0, 0, 0.85);
}

.nav-highlight-content h3 {
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
}

.nav-highlight-content p {
  font-size: 0.88rem;
  color: var(--muted);
  margin-bottom: 0.7rem;
}

.nav-highlight-cta {
  font-size: 0.83rem;
  font-weight: 500;
  color: #b5ffb5;
}

/* PNG shapes (no afectan al texto, están detrás) */
.nav-highlight-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.nav-highlight-shape {
  position: absolute;
  opacity: 0.75;
  filter: drop-shadow(0 18px 32px rgba(0, 0, 0, 0.75));
  animation: floatSlow 18s linear infinite;
}

/* posiciones específicas por tarjeta (puedes ajustar según tus PNGs) */
.nav-highlight-shape--home {
  width: 180px;
  right: -30px;
  top: -30px;
}

.nav-highlight-shape--services {
  width: 190px;
  left: -40px;
  top: -40px;
  animation-direction: reverse;
}

.nav-highlight-shape--packages {
  width: 170px;
  right: -45px;
  bottom: -35px;
}

.nav-highlight-shape--about {
  width: 160px;
  left: -20px;
  bottom: -30px;
  animation-duration: 22s;
}

.nav-highlight-content {
  position: relative;
  z-index: 1; /* texto siempre por encima de las imágenes */
}

/* animación flotante muy suave */
@keyframes floatSlow {
  0% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
  50% {
    transform: translate3d(6px, -8px, 0) rotate(5deg);
  }
  100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
}

/* ===== Efecto de entrada (scroll reveal) ===== */

.reveal {
  opacity: 0;
  transform: translateY(20px) scale(0.98);
  transition:
    opacity 0.6s ease-out,
    transform 0.6s ease-out;
}

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

/* responsive para las cards */
@media screen and (max-width: 1024px) {
  .nav-highlight-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media screen and (max-width: 640px) {
  .nav-highlight-grid {
    grid-template-columns: 1fr;
  }

  .section-nav-highlight {
    padding-top: 2.2rem;
    padding-bottom: 2.2rem;
  }
}
/* Logo en el menú */
.logo {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 32px;     /* ajusta este valor si lo quieres más grande o más pequeño */
  width: auto;
  display: block;
}
.logo-img {
  height: 40px;
}
