:root {
  --black: #0F0F0F;
  --white: #fefefe;
  --gold: #C9A24D;
  --gold-soft: #E6C97A;

  --bg: var(--black);
  --text: var(--white);
  --muted: rgba(255, 255, 255, 0.6);
  --border: rgba(255, 255, 255, 0.1);

  --container: 1120px;
  --radius: 18px;
  --radius-lg: 32px;
  --shadow: 0 18px 50px rgba(0, 0, 0, .50);
  --gold-premium: linear-gradient(135deg, #C9A24D 0%, #F5E0A3 50%, #C9A24D 100%);
  --gold-faint: rgba(201, 162, 77, 0.15);

  --ease: cubic-bezier(.2, .8, .2, 1);
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial;
  background: var(--bg);
  color: var(--text);
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: 24px;
}

@media (max-width: 575px) {
  .container {
    padding-inline: 18px;
  }
}

a {
  color: inherit;
}

/* HEADER */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(15, 15, 15, .85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  padding: 0px 10px;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 14px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
}

.logo-mark {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--black);
  color: var(--gold);
  font-weight: 700;
}

/* ===== DESKTOP ===== */
.nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav a {
  text-decoration: none;
  font-size: 14px;
  opacity: .75;
  transition: all 0.3s ease;
  position: relative;
}

.nav a:hover {
  opacity: 1;
  color: var(--gold);
  text-shadow: 0 0 8px rgba(201, 162, 77, 0.4);
}

.nav-cta {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, .12);
}

/* ===== BURGER (solo móvil) ===== */
.nav-burger {
  background-color: var(--black);
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(0, 0, 0, .10);
  border-radius: 14px;
  cursor: pointer;
}

.nav-burger span {
  display: block;
  height: 2px;
  width: 18px;
  background: var(--white);
  margin: 4px auto;
}

/* ===== NAV MOBILE (panel pro) ===== */
.nav-mobile {
  display: none;
  /* cerrado por defecto */
  flex-direction: column;
  gap: 8px;
  padding: 14px 20px 18px;

  background: rgba(15, 15, 15, .92);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 255, 255, .06);
  box-shadow: 0 18px 40px rgba(0, 0, 0, .28);

  transform: translateY(-6px);
  opacity: 0;
  transition: opacity .18s var(--ease), transform .18s var(--ease);
}

/* abierto cuando JS añade la clase */
.nav-mobile.is-open {
  display: flex;
  opacity: 1;
  transform: translateY(0);
}

/* Links tipo “cards” */
.nav-mobile a {
  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 14px 14px;
  border-radius: 16px;

  text-decoration: none;
  font-size: 18px;
  font-weight: 650;

  color: var(--white);
  opacity: 1;

  border: 1px solid rgba(255, 255, 255, .06);
  background: rgba(255, 255, 255, .05);
}

.nav-mobile a:hover {
  border-color: rgba(201, 162, 77, .45);
  box-shadow: 0 12px 28px rgba(201, 162, 77, .12);
}

/* flechita */
.nav-mobile a::after {
  content: "→";
  color: rgba(0, 0, 0, .35);
  font-weight: 800;
}

/* el último link (normalmente Contacto) como CTA */
.nav-mobile a:last-child {
  background: rgba(201, 162, 77, .18);
  border-color: rgba(201, 162, 77, .35);
  font-weight: 800;
}

.nav-mobile a:last-child::after {
  color: rgba(0, 0, 0, .55);
}

/* IMPORTANTÍSIMO: si está hidden, no se ve NI aunque tenga clases */
.nav-mobile[hidden] {
  display: none !important;
  opacity: 0 !important;
  transform: translateY(-6px) !important;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 980px) {
  .nav {
    display: none;
  }

  .nav-burger {
    display: block;
  }
}



/* HERO */
.hero {
  padding: 76px 0 30px;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 34px;
  align-items: center;
}

.kicker {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  color: var(--muted);
  font-size: 14px;
  margin: 0 0 14px;
}

.hero h1 {
  margin: 0 0 14px;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.04;
  letter-spacing: -0.02em;
}

.lead {
  width:100%;
  margin: 0px 15px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 12px;
}

.stat {
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 16px;
  padding: 12px 12px;
  background: rgba(255, 255, 255, .05);
}

.stat-num {
  font-weight: 750;
  letter-spacing: -0.02em;
}

.stat-label {
  color: var(--muted);
  font-size: 12px;
  margin-top: 4px;
}

/* HERO MEDIA */
.hero-media {
  position: relative;
}

.hero-card {
  border: 1px solid rgba(201, 162, 77, 0.3);
  border-radius: 22px;
  padding: 18px;
  background: rgba(15, 15, 15, .6);
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow);
}

.hero-card-top {
  display: flex;
  gap: 8px;
  margin-bottom: 10px;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  background: rgba(201, 162, 77, .14);
  border: 1px solid rgba(201, 162, 77, .35);
  color: #6A521E;
}

.badge-ghost {
  background: transparent;
  border-color: rgba(0, 0, 0, .12);
  color: var(--muted);
}

.hero-card h3 {
  margin: 6px 0 8px;
}

.hero-card p {
  margin: 0 0 10px;
  color: var(--muted);
  line-height: 1.6;
}

.mini-link {
  text-decoration: none;
  color: var(--black);
  font-weight: 600;
}

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

.hero-frame {
  position: absolute;
  inset: -18px -18px auto auto;
  width: 160px;
  height: 160px;
  border-radius: 28px;
  border: 1px dashed rgba(201, 162, 77, .55);
  transform: rotate(6deg);
  pointer-events: none;
}

.frame-dot {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--gold);
  right: 16px;
  top: 16px;
}

/* SECTIONS */
.section {
  padding: 70px 0;
  border-top: 1px solid rgba(0, 0, 0, .06);
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}

.section h2 {
  margin: 0;
  font-size: 30px;
  letter-spacing: -0.01em;
}

.muted {
  color: rgba(255, 255, 255, 0.6);
}

.section-head p {
  margin: 0;
  max-width: 60ch;
}

/* GRID + CARDS */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

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

.card {
  border: 1px solid rgba(201, 162, 77, 0.25);
  /* Subtle gold */
  border-radius: 22px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(4px);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s ease;
}

.card:hover {
  transform: translateY(-5px);
  border-color: rgba(201, 162, 77, 0.6);
  box-shadow: 0 20px 50px rgba(0, 0, 0, .40), 0 0 15px rgba(201, 162, 77, 0.05);
}

.card-icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(201, 162, 77, .30);
  background: rgba(201, 162, 77, .10);
  margin-bottom: 10px;
}

.card h3 {
  margin: 0 0 8px;
}

.card p {
  margin: 0 0 10px;
  color: var(--muted);
  line-height: 1.6;
}

.card-link {
  text-decoration: none;
  font-weight: 600;
}

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

/* DARK SPLIT */
.section-dark {
  background: var(--black);
  color: var(--white);
  border-top: none;
}

.muted-on-dark {
  color: rgba(255, 255, 255, .75);
}

.split {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 22px;
  align-items: center;
}

.list {
  list-style: none;
  padding: 0;
  margin: 16px 0 18px;
  display: grid;
  gap: 10px;
}

.list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: rgba(255, 255, 255, .85);
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--gold);
  margin-top: 6px;
  flex: 0 0 auto;
}

/* Mock */
.mock {
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .06);
  overflow: hidden;
}

.mock-top {
  display: flex;
  gap: 8px;
  padding: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, .10);
}

.mock-pill {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .25);
}

.mock-body {
  padding: 18px;
}

.mock-line {
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .12);
  margin-bottom: 10px;
}

.mock-block {
  height: 120px;
  border-radius: 18px;
  background: rgba(201, 162, 77, .16);
  border: 1px solid rgba(201, 162, 77, .25);
  margin: 12px 0;
}

.w60 {
  width: 60%;
}

.w70 {
  width: 70%;
}

.w80 {
  width: 80%;
}

.w90 {
  width: 90%;
}

/* CTA */
.cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid rgba(0, 0, 0, .10);
  border-radius: 22px;
  padding: 22px;
  background: #fff;
}

.cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 650;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease);
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--black);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--gold);
  color: var(--black);
  box-shadow: 0 14px 34px rgba(201, 162, 77, .22);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, .35);
}

.btn-outline:hover {
  border-color: rgba(201, 162, 77, .55);
  color: var(--gold);
  box-shadow: 0 14px 34px rgba(201, 162, 77, .12);
}

.btn-gold {
  background: var(--gold);
  color: var(--black);
}

.btn-gold:hover {
  background: var(--gold-soft);
  box-shadow: 0 14px 34px rgba(201, 162, 77, .22);
}

/* PREMIUM TEXT LINK */
.premium-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--gold);
  position: relative;
  padding: 4px 0;
  transition: all 0.3s var(--ease);
}

.premium-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0.3);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
  opacity: 0.6;
}

.premium-link:hover {
  color: var(--white);
  gap: 12px;
}

.premium-link:hover::after {
  transform: scaleX(1);
  opacity: 1;
  background: var(--white);
}

/* HORIZONTAL PROCESS */
.process-line-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  margin-top: 40px;
  padding: 0 40px;
}

.process-line-container::before {
  content: '';
  position: absolute;
  top: 25px;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.3;
  z-index: 1;
}

.process-step {
  position: relative;
  z-index: 2;
  text-align: center;
  flex: 1;
  max-width: 200px;
  transition: transform 0.4s var(--ease);
}

.process-step:hover {
  transform: translateY(-5px);
}

.process-dot {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--black);
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-weight: 700;
  color: var(--gold);
  box-shadow: 0 0 20px rgba(201, 162, 77, 0.1);
  transition: all 0.3s ease;
}

.process-step:hover .process-dot {
  background: var(--gold);
  color: var(--black);
  box-shadow: 0 0 30px rgba(201, 162, 77, 0.3);
}

.process-step h4 {
  font-size: 1rem;
  margin-bottom: 8px;
  color: var(--white);
}

.process-step p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.4;
}

/* GALLERY MOSAIC */
.gallery-mosaic {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 200px);
  gap: 15px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item:nth-child(1) {
  grid-column: span 2;
}

.gallery-item:nth-child(4) {
  grid-column: span 2;
}

@media (max-width: 768px) {
  .process-line-container {
    flex-direction: column;
    padding: 0;
    gap: 30px;
  }

  .process-line-container::before {
    display: none;
  }

  .process-step {
    max-width: 100%;
    display: flex;
    text-align: left;
    align-items: center;
    gap: 20px;
  }

  .process-dot {
    margin: 0;
    flex-shrink: 0;
  }

  .gallery-mosaic {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .gallery-item {
    height: 250px;
    grid-column: span 1 !important;
  }
}

/* ===== FOOTER PRO ===== */
.site-footer {
  background: var(--black);
  color: var(--white);
  border-top: 1px solid rgba(201, 162, 77, 0.4);
  /* Gold line */
  padding: 56px 0 26px;
  box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.5);
  /* subtle shadow upwards */
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr .9fr .8fr;
  gap: 26px;
  align-items: start;
}

/* Logo en footer */
.footer-logo {
  margin-bottom: 14px;
}

.footer-logo .logo-text {
  color: var(--white);
}

/* Párrafo */
.footer-desc {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, .70);
  line-height: 1.6;
  max-width: 45ch;
}

/* Social */
.footer-social {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-social a {
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .14);
  color: rgba(255, 255, 255, .85);
  font-size: 14px;
}

.footer-social a:hover {
  border-color: rgba(201, 162, 77, .55);
  color: var(--gold);
  box-shadow: 0 14px 34px rgba(201, 162, 77, .12);
}

/* Títulos columnas */
.footer-title {
  margin: 6px 0 12px;
  font-size: 14px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .85);
}

/* Links */
.footer-links {
  display: grid;
  gap: 10px;
}

.footer-links a {
  text-decoration: none;
  color: rgba(255, 255, 255, .72);
}

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

/* Legal */
.footer-legal {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, .10);
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.footer-legal a {
  text-decoration: none;
  color: rgba(255, 255, 255, .55);
  font-size: 13px;
}

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

/* Bottom line */
.footer-bottom {
  margin-top: 26px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, .10);
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  color: rgba(255, 255, 255, .55);
  font-size: 13px;
}

.footer-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--gold);
  display: inline-block;
  opacity: .9;
}

/* Responsive */
@media (max-width: 980px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    justify-content: flex-start;
  }
}


/* RESPONSIVE */
@media (max-width: 980px) {
  .nav {
    display: none;
  }

  .nav-burger {
    display: block;
  }

  .nav-mobile {
    display: block;
  }

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

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

  .grid-3 {
    grid-template-columns: 1fr;
  }

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

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-meta {
    text-align: left;
  }
}

/* HOME layout del wireframe */
.center {
  text-align: center;
}

.maxw {
  max-width: 70ch;
  margin: 0 auto;
}

.section-tight {
  padding: 54px 0;
}

.h2-big {
  font-size: clamp(26px, 3.2vw, 38px);
  letter-spacing: -0.01em;
  margin: 0 0 10px;
}

.section-soft {
  background: rgba(201, 162, 77, .06);
}

/* HERO BG */
.hero-bg {
  min-height: 78vh;
  display: grid;
  place-items: center;
  position: relative;

  /* tu imagen */
  background:
    linear-gradient(180deg, rgba(15, 15, 15, .55), rgba(15, 15, 15, .80)),
    url("/img/hero.png");
  background-size: cover;
  background-position: center;
}


.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(201, 162, 77, .18), transparent 55%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  padding: 70px 0;
  color: #fff;
}

.btn-outline-light {
  border-color: rgba(255, 255, 255, .35);
  color: #fff;
}

.btn-outline-light:hover {
  border-color: rgba(201, 162, 77, .65);
  color: var(--gold);
}

/* placeholder de imagen */
.img-placeholder {
  border-radius: 22px;
  border: 1px dashed rgba(0, 0, 0, .22);
  background: rgba(0, 0, 0, .02);
  height: 340px;
  display: grid;
  place-items: center;
  color: var(--muted);
}

/* Social proof */
.social-proof {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.logo-pill {
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 999px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, .05);
  color: rgba(255, 255, 255, 0.8);
}

.quote {
  margin-top: 18px;
  border: 1px solid rgba(201, 162, 77, 0.3);
  border-radius: 22px;
  padding: 18px;
  background: rgba(255, 255, 255, .03);
  backdrop-filter: blur(5px);
}

.quote p {
  margin: 0 0 8px;
  font-weight: 650;
}

/* Extras section */
.extras {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 18px;
  align-items: start;
}

.extras-cards {
  display: grid;
  gap: 12px;
}

.mini-card {
  border-radius: 22px;
  padding: 18px;
  border: 1px solid rgba(201, 162, 77, 0.4);
  background: rgba(255, 255, 255, .03);
  backdrop-filter: blur(5px);
  transition: transform .3s var(--ease), border-color .3s ease, box-shadow .3s ease;
}

.mini-card:hover {
  transform: translateY(-3px);
  border-color: var(--gold);
  box-shadow: 0 10px 30px rgba(0, 0, 0, .4), 0 0 15px rgba(201, 162, 77, 0.1);
}

.mini-card h3 {
  margin: 0 0 6px;
}

.mini-card p {
  margin: 0;
  color: rgba(255, 255, 255, .75);
}

/* Responsive tweaks */
@media (max-width: 980px) {
  .img-placeholder {
    height: 240px;
  }

  .extras {
    grid-template-columns: 1fr;
  }

  .hero-bg {
    min-height: 70vh;
  }
}

/* ABOUT split layout */
.about-split {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  /* DOS COLUMNAS EN GRANDE */
  gap: 48px;
  align-items: center;
}

/* Contenedor de la imagen */
.about-media {
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .10);
  box-shadow: var(--shadow);
  background: rgba(255, 255, 255, .05);
  max-width: 760px;
}

/* Imagen */
.about-img {
  width: 100%;
  height: 360px;
  display: block;
  object-fit: cover;
  object-position: center;
}

/* Texto */
.about-copy {
  max-width: 520px;
}

.about-copy .muted {
  margin: 10px 0 18px;
  line-height: 1.7;
}

/* MÓVIL */
@media (max-width: 980px) {
  .about-split {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .about-img {
    height: 100%;
    /* más pequeña */
  }

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

/* LOGO IMAGEN */
.logo-img {
  height: 38px;
  /* ajusta si lo quieres más grande */
  width: auto;
  display: block;
}

/* en móvil un poco más pequeño si quieres */
@media (max-width: 980px) {
  .logo-img {
    height: 32px;
  }
}

.section-clean {
  background: transparent;
}

.features-clean {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  text-align: center;
  padding: 60px 0;
}

.feature {
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(201, 162, 77, 0.25);
  border-radius: 22px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(4px);
}

.feature:hover {
  transform: translateY(-5px);
  border-color: rgba(201, 162, 77, 0.6);
  box-shadow: 0 20px 50px rgba(0, 0, 0, .40), 0 0 15px rgba(201, 162, 77, 0.05);
}

/* Minimalist Style for Home Services */
.service-minimal {
  padding: 0;
  background: transparent;
  backdrop-filter: none;
  border: none;
  box-shadow: none;
  text-align: center;
}

.service-minimal h3 {
  margin: 0 0 15px;
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.01em;
}

.service-minimal p {
  color: var(--muted);
  line-height: 1.8;
  font-size: 16px;
  max-width: 32ch;
  margin: 0 auto;
}

.card-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
}

.card-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(75%) sepia(21%) saturate(1750%) hue-rotate(1deg) brightness(91%) contrast(85%);
  /* Alfil Gold */
}

/* SVG icons are no longer used but keeping class helper for future if needed */
.feature-icon-svg {
  width: 100px;
  height: 100px;
  margin: 0 auto 30px;
  display: block;
  fill: var(--gold);
}

.feature h3 {
  margin: 18px 0 10px;
  font-size: 20px;
  transition: color 0.3s ease;
}

.feature:hover h3 {
  color: var(--gold);
}

.feature p {
  color: var(--muted);
  line-height: 1.7;
  max-width: 38ch;
  margin: 0 auto;
}

/* Responsive */
@media (max-width: 980px) {
  .features-clean {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}

/* --- PREMIUM EFFECTS & STYLES (Migrated from prueba.css) --- */

:root {
  --gold-premium: #d4af37;
  --gold-light: #f3e5ab;
  --dark-bg: #0a0a0a;
  --card-bg: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(255, 255, 255, 0.1);
  --text-primary: #ffffff;
  --text-secondary: rgba(255, 255, 255, 0.7);
  --font-heading: 'Outfit', sans-serif;
}

/* Animations & Visual Effects */

/* 1. Scroll Reveal (Fade Up) */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s cubic-bezier(0.215, 0.610, 0.355, 1.000),
    transform 1s cubic-bezier(0.215, 0.610, 0.355, 1.000);
  will-change: opacity, transform;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* 2. Clip-Path Reveal (Wipe) */
.reveal-clip {
  opacity: 0;
  clip-path: inset(100% 0 0 0);
  transition: all 1.2s cubic-bezier(0.77, 0, 0.175, 1);
  transform: translateY(20px);
}

.reveal-clip.in-view {
  opacity: 1;
  clip-path: inset(0 0 0 0);
  transform: translateY(0);
}

/* Stagger Delays */
.stagger-1 {
  transition-delay: 0.1s;
}

.stagger-2 {
  transition-delay: 0.2s;
}

.stagger-3 {
  transition-delay: 0.3s;
}

/* 3. Magnetic Buttons */
.btn-magnetic {
  transition: transform 0.2s ease-out, background 0.3s ease, box-shadow 0.3s ease;
  will-change: transform;
}

/* 4. 3D Tilt Cards */
.card-3d {
  transition: transform 0.1s ease-out, box-shadow 0.3s ease, border-color 0.3s ease;
  will-change: transform;
  transform-style: preserve-3d;
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(201, 162, 77, 0.3);
  /* Base gold border */
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(5px);
  /* Glassmorphism */
}

.card-3d:hover {
  border-color: rgba(201, 162, 77, 0.8);
  /* Brighter gold on hover */
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), 0 0 20px rgba(201, 162, 77, 0.1);
  /* Elegant glow */
}

/* Glare Effect */
.card-3d::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.08) 0%, transparent 60%);
  opacity: 0;
  pointer-events: none;
  transform: translate(calc(var(--glare-x, 50%) - 50%), calc(var(--glare-y, 50%) - 50%));
  transition: opacity 0.3s ease;
  mix-blend-mode: overlay;
}

.card-3d:hover::after {
  opacity: 1;
}

/* 5. Animated Gradient Text */
.text-gradient-animated {
  background: linear-gradient(to right, #f3e5ab 20%, #d4af37 30%, #f3e5ab 70%, #d4af37 80%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  border: none;
  background-size: 200% auto;
  animation: shine 5s linear infinite;
}

@keyframes shine {
  to {
    background-position: 200% center;
  }
}

/* 6. Carousel Section */
.section-carousel {
  padding: 60px 0;
  overflow: hidden;
  background: transparent;
}

.carousel-slider {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 20px 0;
}

.carousel-slider::before,
.carousel-slider::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}

.carousel-slider::before {
  left: 0;
  background: linear-gradient(to right, var(--black), transparent);
}

.carousel-slider::after {
  right: 0;
  background: linear-gradient(to left, var(--black), transparent);
}

.carousel-track {
  display: flex;
  gap: 30px;
  width: max-content;
  animation: scroll 30s linear infinite;
}

.carousel-track:hover {
  animation-play-state: paused;
}

.carousel-slide {
  width: 300px;
  height: 200px;
  flex-shrink: 0;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: #fff;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  filter: grayscale(20%);
}

.carousel-slide:hover img {
  transform: scale(1.1);
  filter: grayscale(0%);
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-3300px);
  }
}

/* --- NEW ELEGANT EFFECTS --- */

/* Floating Animation Removed */

/* Automatic animations removed */

/* 2. Page Entry Fade (Sencillito pero notable) */
@keyframes pageFadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

main {
  animation: pageFadeIn 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

/* 3. Enhanced Glow on Cards */
.card:hover,
.feature:hover,
.card-3d:hover {
  box-shadow:
    0 20px 50px rgba(0, 0, 0, .5),
    0 0 25px rgba(201, 162, 77, 0.15);
  /* Gold glow */
  border-color: rgba(201, 162, 77, 0.5);
}

/* 4. Soft Text Highlight on Selection */
::selection {
  background: rgba(201, 162, 77, 0.3);
  color: #fff;
}

/* =========================================
   SPONSORS GRID
   ========================================= */
.sponsor-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 60px;
}

.sponsor-logo {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  aspect-ratio: 3/2;
  cursor: pointer;
}

.sponsor-logo:hover {
  border-color: var(--gold);
  background: rgba(201, 162, 77, 0.05);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.sponsor-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.7);
  transition: all 0.3s ease;
}

.sponsor-logo:hover img {
  filter: grayscale(0%) opacity(1);
}

@media (max-width: 900px) {
  .sponsor-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 600px) {
  .sponsor-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* =========================================
   CONTACT PAGE (Simplified & Premium)
   ========================================= */
.contact-container {
  max-width: 600px;
  margin: 0 auto;
  padding: 40px 20px;
}

.contact-card-v2 {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--glass-border);
  border-radius: 30px;
  padding: 50px 30px;
  backdrop-filter: blur(15px);
  text-align: center;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.contact-links-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 40px;
}

.contact-link-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 25px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 18px;
  text-decoration: none;
  color: var(--white);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.contact-link-item:hover {
  background: rgba(201, 162, 77, 0.08);
  border-color: var(--gold);
  transform: scale(1.02);
  box-shadow: 0 10px 30px rgba(201, 162, 77, 0.1);
}

.contact-link-label {
  display: flex;
  align-items: center;
  gap: 15px;
  font-weight: 700;
  font-size: 1.1rem;
}

.contact-link-icon {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1);
  opacity: 0.8;
}

.contact-link-item:hover .contact-link-icon {
  opacity: 1;
  filter: none;
}

.contact-arrow {
  font-size: 1.2rem;
  color: var(--gold);
  transition: transform 0.3s ease;
}

.contact-link-item:hover .contact-arrow {
  transform: translateX(5px);
}

