:root {
  --gold: #F5B800;
  --gold-light: #FFD340;
  --gold-dim: rgba(245, 184, 0, .12);
  --dark: #0D0D0D;
  --dark-2: #141414;
  --dark-3: #1C1C1C;
  --dark-4: #222;
  --gray: #777;
  --light: #F8F5EE;
  --white: #fff;
  --radius: 12px;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100%;
}

body {
  background: var(--dark);
  color: var(--light);
  font-family: "DM Sans", sans-serif;
  font-weight: 300;
  overflow-x: hidden;
  max-width: 100%;
}

img {
  max-width: 100%;
  height: auto;
}

.wrapper {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.inner {
  max-width: 1100px;
  margin: 0 auto;
}

section {
  padding: 7rem 4rem;
}

@media (max-width: 900px) {
  section {
    padding: 4rem 1.2rem;
  }
}

/* NAV */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 4rem;
  background: rgba(13, 13, 13, .92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(245, 184, 0, .1);
  transition: padding .3s;
}

.nav-logo img {
  height: 78px;
  display: block;
  filter: drop-shadow(0 0 8px rgba(245, 184, 0, .25));
}

.nav-links {
  display: flex;
  gap: 2.2rem;
  list-style: none;
}

.nav-links a {
  color: rgba(255, 255, 255, .55);
  text-decoration: none;
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  transition: color .2s;
}

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

.nav-cta {
  background: var(--gold) !important;
  color: var(--dark) !important;
  padding: .5rem 1.4rem;
  border-radius: 2px;
  font-weight: 600 !important;
}

.nav-cta:hover {
  background: var(--gold-light) !important;
}

nav a.back {
  font-family: "DM Sans", sans-serif;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gray);
  text-decoration: none;
  transition: color .2s;
}

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

.lang-btn {
  display: flex;
  align-items: center;
  gap: .4rem;
  background: none;
  border: 1px solid rgba(245, 184, 0, .3);
  color: var(--gold);
  padding: .4rem .9rem;
  border-radius: 2px;
  cursor: pointer;
  font-family: "DM Sans", sans-serif;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .12em;
  transition: background .2s, border-color .2s;
  margin-left: 1rem;
  flex-shrink: 0;
}

.lang-btn:hover {
  background: rgba(245, 184, 0, .1);
  border-color: var(--gold);
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 18px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  margin-left: .8rem;
  flex-shrink: 0;
}

.hamburger span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--gold);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(13, 13, 13, .97);
  z-index: 199;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  backdrop-filter: blur(20px);
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  font-family: "DM Sans", sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--white);
  text-decoration: none;
  transition: color .2s;
}

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

.mobile-menu .m-cta {
  background: var(--gold) !important;
  color: var(--dark) !important;
  padding: .8rem 2rem;
  border-radius: 2px;
}

@media (max-width: 900px) {
  nav {
    padding: .9rem 1.5rem;
    justify-content: flex-start;
    gap: .5rem;
  }
  .hamburger {
    display: flex;
  }
  .nav-links {
    display: none !important;
  }
  .lang-btn {
    margin-left: auto;
  }
}

/* HERO */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 8rem 4rem 6rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 55% 70% at 65% 50%, rgba(245, 184, 0, .07) 0%, transparent 70%),
    radial-gradient(ellipse 25% 35% at 15% 85%, rgba(245, 184, 0, .04) 0%, transparent 60%);
}

.hero-noise {
  position: absolute;
  inset: 0;
  opacity: .03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(245, 184, 0, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245, 184, 0, .035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 75% 75% at 55% 50%, black, transparent);
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 4rem;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-mobile-blur {
  display: none;
}

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

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-size: .72rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
  border: 1px solid rgba(245, 184, 0, .25);
  padding: .4rem 1rem;
  border-radius: 2px;
  animation: fadeUp .7s ease both;
  position: relative;
  z-index: 1;
}

.hero-tag::before {
  content: "";
  width: 5px;
  height: 5px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: .3; }
}

.hero-h1 {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -.03em;
  color: var(--white);
  animation: fadeUp .7s .08s ease both;
  position: relative;
  z-index: 1;
}

.hero-h1 em {
  color: var(--gold);
  font-style: italic;
}

.hero-sub {
  margin-top: 1.8rem;
  font-size: 1rem;
  color: rgba(248, 245, 238, .5);
  line-height: 1.8;
  max-width: 480px;
  animation: fadeUp .7s .16s ease both;
  position: relative;
  z-index: 1;
}

.hero-actions {
  margin-top: 2.8rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeUp .7s .24s ease both;
}

.btn-primary {
  background: var(--gold);
  color: var(--dark);
  padding: .9rem 2.2rem;
  border-radius: 2px;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background .2s, transform .2s;
  display: inline-block;
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

.btn-ghost {
  border: 1px solid rgba(255, 255, 255, .18);
  color: var(--white);
  padding: .9rem 2.2rem;
  border-radius: 2px;
  font-size: .82rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: border-color .2s, color .2s;
  display: inline-block;
}

.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.hero-logo-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeUp .7s .32s ease both;
}

.hero-logo-wrap::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 184, 0, .18) 0%, rgba(245, 184, 0, .06) 45%, transparent 70%);
  filter: blur(32px);
  z-index: 0;
  animation: floatLogo 4s ease-in-out infinite;
}

.hero-logo-wrap img {
  position: relative;
  z-index: 1;
  width: 325px;
  filter: drop-shadow(0 0 40px rgba(245, 184, 0, .5));
  animation: floatLogo 4s ease-in-out infinite;
}

.hero-stats {
  position: absolute;
  bottom: 2.5rem;
  left: 4rem;
  right: 4rem;
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255, 255, 255, .07);
  padding-top: 2rem;
  animation: fadeUp .7s .4s ease both;
}

.stat-num {
  font-family: "DM Sans", sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}

.stat-label {
  font-size: .72rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gray);
  margin-top: .3rem;
}

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

@media (max-width: 900px) {
  #hero {
    padding: calc(7rem + 40px) 1.5rem 12rem;
  }
  .hero-tag {
    font-size: .72rem;
    letter-spacing: .06em;
    padding: .35rem .7rem;
    margin-top: 1.5rem;
  }
  .hero-inner {
    grid-template-columns: 1fr;
  }
  .hero-logo-wrap {
    display: none !important;
  }
  .hero-mobile-blur {
    display: flex !important;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    align-items: center;
    justify-content: center;
    pointer-events: none;
  }
  .hero-mobile-blur img {
    width: 320px;
    height: auto;
    filter: blur(50px);
    opacity: 0.18;
    user-select: none;
  }
  .hero-stats {
    left: 1.5rem;
    right: 1.5rem;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
}

/* SECTIONS COMMON */
.section-tag {
  font-size: .7rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: .8rem;
}

.section-tag::before {
  content: "";
  display: block;
  width: 2rem;
  height: 1px;
  background: var(--gold);
}

h2 {
  font-family: "DM Sans", sans-serif;
  font-size: clamp(1.8rem, 3.2vw, 2.8rem);
  font-weight: 700;
  line-height: 1.12;
  color: var(--white);
}

h2 em {
  color: var(--gold);
  font-style: italic;
}

.section-intro {
  margin-top: 1rem;
  max-width: 720px;
  color: rgba(248, 245, 238, .5);
  font-size: .95rem;
  line-height: 1.8;
}

/* NOSOTROS */
#nosotros {
  background: var(--dark-2);
}

.nosotros-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.nosotros-text p {
  color: rgba(248, 245, 238, .5);
  line-height: 1.9;
  margin-top: 1.4rem;
  font-size: .95rem;
}

.nos-stat-strip {
  display: flex;
  gap: 2rem;
  margin: 1.8rem 0 1.4rem;
  flex-wrap: wrap;
}

.nos-stat {
  display: flex;
  flex-direction: column;
}

.nos-num {
  font-family: "DM Sans", sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}

.nos-lbl {
  font-size: .68rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gray);
  margin-top: .2rem;
}

.linkedin-btn {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  margin-top: 1.8rem;
  border: 1px solid rgba(10, 102, 194, .5);
  color: #6baed6;
  padding: .65rem 1.3rem;
  border-radius: 3px;
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .05em;
  text-decoration: none;
  transition: background .2s, border-color .2s, color .2s;
  background: rgba(10, 102, 194, .08);
}

.linkedin-btn:hover {
  background: rgba(10, 102, 194, .2);
  border-color: rgba(10, 102, 194, .8);
  color: #90c8f0;
}

.nosotros-team {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.team-card {
  border: 1px solid rgba(245, 184, 0, .12);
  border-radius: 3px;
  padding: 1.8rem 2rem;
  background: rgba(245, 184, 0, .02);
  transition: border-color .3s, background .3s;
  position: relative;
  overflow: hidden;
}

.team-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--gold);
}

.team-card:hover {
  border-color: rgba(245, 184, 0, .35);
  background: rgba(245, 184, 0, .05);
}

.team-role {
  font-size: .68rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .4rem;
}

.team-name {
  font-family: "DM Sans", sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--white);
}

.team-bio {
  font-size: .85rem;
  color: rgba(248, 245, 238, .45);
  margin-top: .4rem;
  line-height: 1.6;
}

@media (max-width: 900px) {
  .nosotros-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .nosotros-team {
    grid-template-columns: 1fr;
  }
}

/* VALOR */
.valor-header {
  margin-bottom: 4rem;
}

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

.valor-item {
  padding: 2.5rem;
  background: var(--dark-2);
  transition: background .3s;
  position: relative;
  overflow: hidden;
}

.valor-item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s ease;
}

.valor-item:hover {
  background: var(--dark-3);
}

.valor-item:hover::after {
  transform: scaleX(1);
}

.valor-icon {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.valor-title {
  font-family: "DM Sans", sans-serif;
  font-size: 1.15rem;
  color: var(--white);
  font-weight: 700;
  margin-bottom: .6rem;
}

.valor-desc {
  font-size: .85rem;
  color: rgba(248, 245, 238, .45);
  line-height: 1.8;
}

@media (max-width: 900px) {
  .valor-grid {
    grid-template-columns: 1fr;
  }
}

/* PRICING (REDES) */
#redes {
  background: var(--dark-2);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  margin-top: 4rem;
}

.pricing-card {
  background: var(--dark-3);
  padding: 2.5rem 2rem;
  position: relative;
  transition: transform .3s, background .3s;
}

.pricing-card:hover {
  transform: translateY(-6px);
  background: var(--dark-4);
}

.pricing-card.featured {
  background: var(--gold);
}

.pricing-card.featured *:not(.card-badge):not(.card-cta):not(.card-cta *) {
  color: var(--dark) !important;
}

.card-label {
  font-size: .68rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .7rem;
}

.pricing-card.featured .card-label {
  color: rgba(17, 17, 17, .55);
}

.card-name {
  font-family: "DM Sans", sans-serif;
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 1rem;
}

.card-price {
  margin-bottom: 1.5rem;
}

.price-desde {
  font-size: .7rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gray);
  display: block;
  margin-bottom: .2rem;
}

.pricing-card.featured .price-desde {
  color: rgba(17, 17, 17, .45);
}

.price-usd {
  font-family: "DM Sans", sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}

.pricing-card.featured .price-usd {
  color: var(--dark);
}

.price-cop {
  font-size: .78rem;
  color: var(--gray);
  display: block;
  margin-top: .2rem;
  letter-spacing: .08em;
}

.pricing-card.featured .price-cop {
  color: rgba(17, 17, 17, .5);
}

.card-divider {
  height: 1px;
  background: rgba(255, 255, 255, .08);
  margin: 1.5rem 0;
}

.pricing-card.featured .card-divider {
  background: rgba(17, 17, 17, .15);
}

.card-features {
  list-style: none;
  margin-top: .3rem;
}

.card-features li {
  font-size: .82rem;
  color: rgba(248, 245, 238, .65);
  padding: .42rem 0;
  display: flex;
  gap: .8rem;
  align-items: flex-start;
  line-height: 1.45;
}

.card-features li::before {
  content: "";
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin-top: .05rem;
  background: rgba(245, 184, 0, .12);
  border: 1.5px solid rgba(245, 184, 0, .45);
  border-radius: 3px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpolyline points='2,6 5,9 10,3' stroke='%23F5B800' stroke-width='1.8' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: 11px;
  background-repeat: no-repeat;
  background-position: center;
}

.pricing-card.featured .card-features li {
  color: rgba(17, 17, 17, .72);
}

.pricing-card.featured .card-features li::before {
  background: rgba(17, 17, 17, .1);
  border-color: rgba(17, 17, 17, .3);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpolyline points='2,6 5,9 10,3' stroke='%230D0D0D' stroke-width='1.8' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: 11px;
  background-repeat: no-repeat;
  background-position: center;
}

.card-badge {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  background: var(--dark);
  color: var(--gold);
  font-size: .62rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  padding: .28rem .8rem;
  border-radius: 1px;
  font-weight: 600;
}

.card-cta {
  display: block;
  text-align: center;
  margin-top: 1.8rem;
  background: transparent;
  border: 1px solid rgba(245, 184, 0, .4);
  color: var(--gold);
  padding: .7rem;
  border-radius: 2px;
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background .2s, color .2s;
}

.card-cta:hover {
  background: var(--gold);
  color: var(--dark);
}

.pricing-card.featured .card-cta {
  background: var(--dark);
  color: var(--gold) !important;
  border-color: transparent;
}

.pricing-card.featured .card-cta:hover {
  background: rgba(17, 17, 17, .85);
  color: var(--gold) !important;
}

.acc-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  padding: .7rem 0;
  text-align: left;
}

.acc-label {
  font-size: .7rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
}

.pricing-card.featured .acc-label {
  color: rgba(17, 17, 17, .55);
}

.acc-chevron {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .3s;
  color: var(--gold);
  font-size: .7rem;
  flex-shrink: 0;
}

.pricing-card.featured .acc-chevron {
  color: rgba(17, 17, 17, .5);
}

.acc-chevron.open {
  transform: rotate(180deg);
}

.acc-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
}

.acc-body.open {
  max-height: 500px;
}

@media (max-width: 900px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }
}

/* WEB */
.web-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5px;
  margin-top: 4rem;
}

.web-card {
  background: var(--dark-2);
  padding: 3rem;
  transition: background .3s;
  position: relative;
  overflow: hidden;
}

.web-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.web-card:hover {
  background: var(--dark-3);
}

.web-card-icon {
  font-size: 2.2rem;
  margin-bottom: 1.2rem;
}

.web-card-name {
  font-family: "DM Sans", sans-serif;
  font-size: 1.5rem;
  color: var(--white);
  font-weight: 700;
  margin-bottom: .4rem;
}

.web-price-desde {
  font-size: .68rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gray);
  display: block;
  margin-bottom: .2rem;
}

.web-card-price {
  font-family: "DM Sans", sans-serif;
  font-size: 1.8rem;
  color: var(--gold);
  font-weight: 800;
  margin-bottom: 1.5rem;
}

.web-features {
  list-style: none;
}

.web-features li {
  font-size: .87rem;
  color: rgba(248, 245, 238, .5);
  padding: .5rem 0;
  display: flex;
  gap: .7rem;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.web-features li::before {
  content: "✓";
  color: var(--gold);
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .web-grid {
    grid-template-columns: 1fr;
  }
}

/* PLAN BUILDER (PERSONALIZA) */
#personaliza {
  background: var(--dark-2);
}

.personaliza-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.personaliza-header {
  margin-bottom: 3rem;
}

.personaliza-header p {
  color: rgba(248, 245, 238, .5);
  margin-top: 1rem;
  font-size: .95rem;
  line-height: 1.7;
  max-width: 550px;
}

.plan-builder {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 2px;
  background: rgba(245, 184, 0, .05);
  border: 1px solid rgba(245, 184, 0, .1);
  border-radius: 3px;
  overflow: hidden;
}

.plan-options {
  background: var(--dark-3);
  padding: 2.5rem;
}

.srv-group {
  border: 1px solid rgba(245, 184, 0, .1);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: .6rem;
}

.srv-group-header {
  width: 100%;
  background: rgba(245, 184, 0, .04);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.2rem;
  text-align: left;
  transition: background .2s;
}

.srv-group-header:hover {
  background: rgba(245, 184, 0, .08);
}

.srv-group-left {
  display: flex;
  align-items: center;
  gap: .7rem;
}

.srv-group-icon {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  color: var(--gold);
  opacity: .8;
}

.srv-group-name {
  font-size: .82rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--white);
  font-weight: 500;
}

.srv-chevron {
  color: var(--gold);
  font-size: .65rem;
  transition: transform .3s;
  flex-shrink: 0;
}

.srv-chevron.open {
  transform: rotate(180deg);
}

.srv-group-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
}

.srv-group-body.open {
  max-height: 400px;
}

.srv-item {
  display: flex;
  align-items: center;
  gap: .9rem;
  padding: .9rem 1.2rem;
  cursor: pointer;
  border-top: 1px solid rgba(255, 255, 255, .05);
  transition: background .2s;
}

.srv-item:hover {
  background: rgba(245, 184, 0, .04);
}

.srv-item.selected {
  background: rgba(245, 184, 0, .07);
}

.srv-check-box {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 3px;
  border: 1.5px solid rgba(255, 255, 255, .2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, border-color .2s;
}

.srv-item.selected .srv-check-box {
  background: var(--gold);
  border-color: var(--gold);
}

.srv-check-tick {
  width: 10px;
  height: 10px;
  display: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpolyline points='2,6 5,9 10,3' stroke='%230D0D0D' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.srv-item.selected .srv-check-tick {
  display: block;
}

.srv-item-info {
  flex: 1;
  min-width: 0;
}

.srv-item-name {
  font-size: .85rem;
  color: var(--white);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: .5rem;
  flex-wrap: wrap;
}

.srv-item-desc {
  font-size: .75rem;
  color: var(--gray);
  margin-top: .2rem;
  line-height: 1.4;
}

.srv-item-price {
  font-family: "DM Sans", sans-serif;
  font-size: 1.05rem;
  color: var(--gold);
  font-weight: 600;
  flex-shrink: 0;
}

.srv-tag {
  font-size: .6rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  background: rgba(245, 184, 0, .15);
  color: var(--gold);
  padding: .15rem .5rem;
  border-radius: 2px;
  font-weight: 400;
}

.srv-tag.popular {
  background: var(--gold);
  color: var(--dark);
}

.plan-summary {
  background: var(--dark-4);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
}

.summary-title {
  font-family: "DM Sans", sans-serif;
  font-size: 1.15rem;
  color: var(--white);
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.summary-items {
  flex: 1;
  margin-bottom: 2rem;
}

.summary-empty {
  font-size: .85rem;
  color: var(--gray);
  font-style: italic;
  padding: 1rem 0;
}

.summary-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: .6rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  font-size: .82rem;
}

.summary-item-name {
  color: rgba(248, 245, 238, .7);
  flex: 1;
  margin-right: 1rem;
}

.summary-item-price {
  color: var(--gold);
  font-family: "DM Sans", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  flex-shrink: 0;
}

.summary-total {
  padding-top: 1.2rem;
  border-top: 1px solid rgba(245, 184, 0, .25);
}

.total-label {
  font-size: .7rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: .4rem;
}

.total-amount {
  font-family: "DM Sans", sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}

.total-usd {
  font-size: .82rem;
  color: var(--gray);
  margin-top: .2rem;
}

.summary-cta {
  display: block;
  text-align: center;
  margin-top: 1.5rem;
  background: var(--gold);
  color: var(--dark);
  padding: .9rem;
  border-radius: 2px;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background .2s;
  cursor: pointer;
  border: none;
  width: 100%;
  font-family: "DM Sans", sans-serif;
}

.summary-cta:hover {
  background: var(--gold-light);
}

.summary-note {
  font-size: .72rem;
  color: var(--gray);
  text-align: center;
  margin-top: .8rem;
  line-height: 1.5;
}

@media (max-width: 900px) {
  .plan-builder {
    grid-template-columns: 1fr;
  }
}

/* PROCESO */
.proceso-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin-top: 4rem;
  position: relative;
}

.proceso-steps::before {
  content: "";
  position: absolute;
  top: 2rem;
  left: 2rem;
  right: 2rem;
  height: 1px;
  background: rgba(245, 184, 0, .18);
}

.step {
  padding: 0 1rem;
  padding-top: 5rem;
  position: relative;
  text-align: center;
}

.step-num {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: var(--dark-3);
  border: 2px solid rgba(245, 184, 0, .25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "DM Sans", sans-serif;
  font-size: 1.1rem;
  color: var(--gold);
  font-weight: 700;
  transition: border-color .3s, background .3s;
}

.step:hover .step-num {
  border-color: var(--gold);
  background: rgba(245, 184, 0, .08);
}

.step-time {
  display: inline-block;
  background: rgba(245, 184, 0, .1);
  color: var(--gold);
  font-size: .68rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: .28rem .7rem;
  border-radius: 2px;
  margin-bottom: .7rem;
}

.step-title {
  font-family: "DM Sans", sans-serif;
  font-size: .95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: .4rem;
}

.step-desc {
  font-size: .78rem;
  color: rgba(248, 245, 238, .38);
  line-height: 1.6;
}

@media (max-width: 900px) {
  .proceso-steps {
    grid-template-columns: 1fr;
    margin-top: 2.5rem;
  }
  .proceso-steps::before {
    display: none;
  }
  .step {
    padding: 1.2rem 1rem;
    padding-top: 1.2rem;
    text-align: left;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
  }
  .step-num {
    position: static;
    transform: none;
    flex-shrink: 0;
    width: 3rem;
    height: 3rem;
    font-size: .9rem;
  }
}

/* MARQUEE */
#marquee-wrap {
  background: var(--gold);
  padding: .9rem 0;
  overflow: hidden;
  border-top: 1px solid rgba(0, 0, 0, .1);
  border-bottom: 1px solid rgba(0, 0, 0, .1);
}

.marquee-track {
  display: flex;
  gap: 3rem;
  white-space: nowrap;
  animation: marquee 20s linear infinite;
}

.marquee-item {
  font-size: .75rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--dark);
  font-weight: 600;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.marquee-dot {
  width: 5px;
  height: 5px;
  background: rgba(17, 17, 17, .3);
  border-radius: 50%;
  flex-shrink: 0;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* CLIENTES */
#clientes {
  background: var(--dark-2);
}

.clientes-header {
  margin-bottom: 3.5rem;
}

.clientes-sub {
  color: rgba(248, 245, 238, .45);
  margin-top: .8rem;
  font-size: .9rem;
}

.clientes-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5px;
}

.cliente-card {
  flex: 0 0 calc(33.333% - 1px);
  background: var(--dark-3);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: background .3s, transform .3s;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  display: block;
  cursor: pointer;
}

.cliente-card::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .4s ease;
}

.cliente-card:hover {
  background: var(--dark-4);
  transform: translateY(-4px);
}

.cliente-card:hover::before {
  transform: scaleX(1);
}

.cliente-icon {
  font-size: 2.2rem;
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 180px;
}

.cliente-logo {
  max-height: 108px;
  max-width: 240px;
  width: auto;
  object-fit: contain;
}

.cliente-logo[alt="Zamá"] {
  max-height: 174px;
  max-width: 330px;
  filter: brightness(1.15) contrast(1.2);
}

.cliente-logo[alt="Detailing Bros"],
.cliente-logo[alt="Nouriq"],
.cliente-logo[alt="Lexium"] {
  max-height: 162px;
  max-width: 300px;
}

.cliente-name {
  font-family: "DM Sans", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: .4rem;
  line-height: 1.2;
}

.cliente-cat {
  font-size: .72rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
}

@media (max-width: 900px) {
  .cliente-card {
    flex: 0 0 calc(50% - 1px);
  }
}

@media (max-width: 480px) {
  .cliente-card {
    flex: 0 0 100%;
  }
}

/* PROCESO INNER */
.proceso-inner {
  max-width: 1100px;
  margin: 0 auto;
}

/* FAQ */
#faq {
  background: var(--dark-2);
}

.faq-header {
  margin-bottom: 3rem;
}

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

.faq-item {
  background: var(--dark-3);
  padding: 2rem;
  border: 1px solid rgba(245, 184, 0, .08);
}

.faq-item h3 {
  font-family: "DM Sans", sans-serif;
  font-size: 1.05rem;
  color: var(--white);
  margin-bottom: .8rem;
}

.faq-item p {
  color: rgba(248, 245, 238, .52);
  line-height: 1.75;
  font-size: .9rem;
}

@media (max-width: 900px) {
  .faq-grid {
    grid-template-columns: 1fr;
  }
}

/* CONTACT CTA (INDEX) */
.contacto-logo {
  margin: 0 auto 2.5rem;
  display: block;
  height: 250px;
  width: auto;
  filter: drop-shadow(0 0 30px rgba(245, 184, 0, .4));
}

.footer-logo img {
  height: 55px;
  filter: drop-shadow(0 0 6px rgba(245, 184, 0, .2));
}

.summary-note {
  font-size: .72rem;
  color: var(--gray);
  text-align: center;
  margin-top: .8rem;
  line-height: 1.5;
}

#contacto {
  background: var(--dark);
  padding: 8rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

#contacto::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(245, 184, 0, .06), transparent);
}

#contacto h2 {
  font-family: "DM Sans", sans-serif;
  font-size: clamp(1.9rem, 3.8vw, 3.4rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 1rem;
  position: relative;
}

#contacto .sub {
  font-size: .95rem;
  color: rgba(248, 245, 238, .45);
  margin-bottom: 3.5rem;
  position: relative;
}

.contact-info {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  position: relative;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: .8rem;
  font-size: .9rem;
  color: rgba(248, 245, 238, .8);
  font-weight: 400;
  text-decoration: none;
  transition: color .2s;
  border: 1px solid rgba(245, 184, 0, .2);
  padding: 1rem 1.6rem;
  border-radius: 2px;
  word-break: break-all;
}

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

.contact-item .ico {
  font-size: 1.1rem;
}

/* FORM PAGE (CONTACT.HTML) */
.hero {
  padding: 8rem 0 3.5rem;
  text-align: center;
  animation: fadeUp .7s ease both;
}

.hero-badge {
  display: inline-block;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(245, 184, 0, .35);
  border-radius: 100px;
  padding: .35rem 1rem;
  margin-bottom: 1.6rem;
  font-family: "DM Sans", sans-serif;
}

.hero h1 {
  font-family: "DM Sans", sans-serif;
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -.03em;
  color: var(--white);
  margin-bottom: 1.2rem;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold);
}

.hero p {
  max-width: 580px;
  margin: 0 auto 2rem;
  color: rgba(248, 245, 238, .55);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.8;
}

.hero-cta {
  display: inline-block;
  background: var(--gold);
  color: var(--dark);
  font-family: "DM Sans", sans-serif;
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .85rem 2rem;
  border-radius: 2px;
  text-decoration: none;
  transition: background .2s, transform .15s;
}

.hero-cta:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

.divider {
  border: none;
  border-top: 1px solid rgba(245, 184, 0, .18);
  margin: 0;
}

.trust-bar {
  background: var(--gold-dim);
  border-top: 1px solid rgba(245, 184, 0, .18);
  border-bottom: 1px solid rgba(245, 184, 0, .18);
  padding: 1.8rem 0;
}

.trust-items {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.trust-item {
  text-align: center;
}

.trust-item strong {
  display: block;
  font-family: "DM Sans", sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}

.trust-item span {
  font-size: .72rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gray);
  margin-top: .3rem;
  display: block;
}

.contact-section {
  padding: 5rem 0 6rem;
  animation: fadeUp .7s .15s ease both;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
  align-items: start;
}

.contact-info h2 {
  font-family: "DM Sans", sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  line-height: 1.12;
  margin-bottom: 1.2rem;
  color: var(--white);
}

.contact-info p {
  color: rgba(248, 245, 238, .5);
  font-weight: 300;
  margin-bottom: 2rem;
  font-size: .95rem;
  line-height: 1.9;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: .9rem;
  padding: 1rem 1.2rem;
  background: var(--dark-2);
  border-left: 3px solid rgba(245, 184, 0, .25);
  text-decoration: none;
  transition: border-color .2s;
}

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

.cd-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
}

.cd-text strong {
  display: block;
  font-size: .68rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .1rem;
}

.cd-text span {
  font-size: .88rem;
  color: var(--gray);
}

.form-card {
  background: var(--dark-2);
  padding: 2.4rem 2rem;
  border-top: 3px solid var(--gold);
}

.form-card h3 {
  font-family: "DM Sans", sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.6rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: .45rem;
  margin-bottom: 1rem;
}

.form-group label {
  font-size: .68rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  font-family: "DM Sans", sans-serif;
}

.form-group input, .form-group select, .form-group textarea {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(245, 184, 0, .2);
  color: var(--light);
  font-family: "DM Sans", sans-serif;
  font-size: .92rem;
  padding: .75rem 1rem;
  outline: none;
  width: 100%;
  -webkit-appearance: none;
  transition: border-color .2s, background .2s;
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--gold);
  background: rgba(245, 184, 0, .05);
}

.btn-submit {
  width: 100%;
  background: var(--gold);
  color: var(--dark);
  border: none;
  font-family: "DM Sans", sans-serif;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .95rem;
  cursor: pointer;
  transition: background .2s, transform .15s, opacity .2s;
  margin-top: .5rem;
}

.btn-submit:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

.form-privacy {
  text-align: center;
  font-size: .75rem;
  color: var(--gray);
  margin-top: 1rem;
}

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
}

/* FOOTER */
footer {
  background: var(--dark-2);
  padding: 1rem 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, .05);
}

footer p {
  font-size: .72rem;
  color: var(--gray);
  letter-spacing: .05em;
}

footer a {
  color: var(--gold);
  text-decoration: none;
}

@media (max-width: 900px) {
  footer {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
    padding: 1.6rem 1.2rem;
  }
  #hero {
    padding: calc(6rem + 40px) 1.2rem 18rem;
  }
  .hero-logo-wrap {
    display: none !important;
  }
  .hero-actions {
    flex-direction: column;
    gap: .75rem;
  }
  .hero-actions .btn-primary,
  .hero-actions .btn-ghost {
    text-align: center;
    width: 100%;
  }
  .hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .8rem 1.5rem;
    left: 1.2rem;
    right: 1.2rem;
    bottom: 2rem;
  }
  #contacto {
    padding: 4rem 1.2rem;
  }
  .contacto-logo {
    height: 160px;
    width: auto;
    margin-bottom: 1.8rem;
  }
  .contact-info {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
  }
  .contact-item {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero-tag {
    font-size: .72rem;
    letter-spacing: 0;
    padding: .3rem .6rem;
    margin-top: 1.5rem;
  }
  .hero-stats {
    grid-template-columns: repeat(3, 1fr);
  }
  .plan-summary {
    position: sticky;
    bottom: 0;
    z-index: 10;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, .5);
  }
}

/* ANIMATIONS */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.animate-ready {
  opacity: 0;
  transform: translateY(28px);
}

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

/* QUICK LINKS BAR (mobile only) */
#quicklinks-bar {
  display: none;
}

@media (max-width: 900px) {
  #quicklinks-bar {
    display: block;
    position: fixed;
    left: 0;
    right: 0;
    z-index: 190;
    background: rgba(9, 9, 9, .98);
    border-bottom: 1px solid rgba(245, 184, 0, .1);
    height: 40px;
  }

  .ql-inner {
    display: flex;
    align-items: center;
    padding: 0 1.2rem;
    height: 100%;
    gap: 0;
    overflow-x: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  .ql-inner::-webkit-scrollbar {
    display: none;
  }

  .ql-logo {
    height: 26px;
    width: 26px;
    object-fit: cover;
    margin-right: 1rem;
    flex-shrink: 0;
    mix-blend-mode: screen;
    border-radius: 2px;
  }

  .ql-links {
    display: flex;
    gap: 1.6rem;
    align-items: center;
    flex-shrink: 0;
  }

  .ql-links a {
    font-family: "DM Sans", sans-serif;
    font-size: .68rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .45);
    text-decoration: none;
    white-space: nowrap;
    transition: color .2s;
    padding: .2rem 0;
  }

  .ql-links a:hover,
  .ql-links a.ql-active {
    color: var(--gold);
  }

  .ql-links a.ql-contact {
    color: var(--gold);
    font-weight: 500;
  }
}

/* PLANES PAGE HEADER */
.planes-hero {
  padding: calc(6.875rem + 3rem) 4rem 5rem;
  text-align: center;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

.planes-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(245, 184, 0, .05), transparent);
  pointer-events: none;
}

.planes-hero .section-tag {
  justify-content: center;
  margin-bottom: 1.2rem;
}

.planes-hero h1 {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.08;
  letter-spacing: -.02em;
  position: relative;
}

.planes-hero h1 em {
  color: var(--gold);
  font-style: italic;
}

.planes-hero p {
  max-width: 540px;
  margin: 1.2rem auto 2.5rem;
  color: rgba(248, 245, 238, .5);
  font-size: .95rem;
  line-height: 1.8;
  position: relative;
}

.planes-hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

@media (max-width: 900px) {
  .planes-hero {
    padding: calc(107px + 40px + 2rem) 1.5rem 4rem;
  }

  .planes-hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .planes-hero-actions a {
    width: 100%;
    text-align: center;
    max-width: 320px;
  }
}
