/* ══════════════════════════════════════════
   Be Brand Co. — Landing Page Styles
   ══════════════════════════════════════════ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --cp: #7a0a14;
  --cp-dark: #4d0008;
  --cp-card: #6b0910;
  --ca: #d4a84b;
  --cc: #f0deba;
  --cc-light: #faf3e0;
  --dark: #1a0005;
  --text-dark: #1a1a1a;
  --text-mid: #444;
  --radius: 14px;
  --font-h: 'Playfair Display', serif;
  --font-b: 'DM Sans', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-b);
  background: var(--cp);
  color: var(--cc);
  line-height: 1.65;
  overflow-x: hidden;
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ── BUTTONS ── */
.btn-accent {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--ca);
  color: var(--cp);
  padding: .8rem 1.8rem;
  border-radius: 50px;
  font-family: var(--font-b);
  font-weight: 600;
  font-size: .95rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: filter .2s, transform .15s;
}

.btn-accent:hover {
  filter: brightness(1.1);
  transform: translateY(-1px);
}

.btn-accent-outline {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: transparent;
  color: var(--ca);
  padding: .85rem 2rem;
  border-radius: 50px;
  border: 2px solid var(--ca);
  font-family: var(--font-b);
  font-weight: 600;
  font-size: .9rem;
  text-decoration: none;
  cursor: pointer;
  transition: background .2s, color .2s;
}

.btn-accent-outline:hover {
  background: var(--ca);
  color: #1a0005;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--cp);
  color: var(--cc);
  padding: .8rem 1.8rem;
  border-radius: 50px;
  font-family: var(--font-b);
  font-weight: 600;
  font-size: .95rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: filter .2s;
}

.btn-primary:hover {
  filter: brightness(1.15);
}

/* ── NAV ── */
.nav-wrap {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(80, 6, 12, .92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(212, 168, 75, .15);
}

.nav {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: .25rem 1rem;
  position: relative;
}

.nav-logo {
  flex-shrink: 0;
}

.logo-img {
  height: 62px;
  width: auto;
  display: block;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.8rem;
  flex: 1;
  justify-content: center;
}

.nav-links a {
  color: var(--cc);
  text-decoration: none;
  font-size: .875rem;
  font-weight: 400;
  opacity: .88;
  transition: opacity .2s, color .2s;
}

.nav-links a:hover {
  opacity: 1;
  color: var(--ca);
}

.nav-cta {
  flex-shrink: 0;
  font-size: .85rem;
  padding: .65rem 1.4rem;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: .5rem;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cc);
  transition: .3s;
}

/* ── LABELS ── */
.section-label {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .14em;
  color: var(--ca);
  text-transform: uppercase;
  margin-bottom: .6rem;
}

.section-label-gold {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .14em;
  color: var(--ca);
  text-transform: uppercase;
  margin-bottom: .4rem;
  text-align: center;
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 96px;
  background: #6e0a13;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 0;
  padding-top: 3rem;
  padding-bottom: 3rem;
  width: 100%;
}

.hero-content {
  max-width: 640px;
}

.hero-b-img {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.hero-b-img img {
  height: clamp(480px, 92vh, 860px);
  width: auto;
  display: block;
  object-fit: contain;
  margin-right: -2rem;
}

.hero-label {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .22em;
  color: var(--ca);
  text-transform: uppercase;
  margin-bottom: 1.1rem;
}

.hero-title {
  font-family: var(--font-h);
  font-size: clamp(3.5rem, 8.5vw, 8rem);
  font-weight: 900;
  line-height: 0.96;
  letter-spacing: -.045em;
  color: var(--cc);
  margin-bottom: 1.4rem;
}

.hero-sub {
  font-size: 1rem;
  color: var(--cc);
  opacity: .78;
  max-width: 420px;
  line-height: 1.72;
  margin-bottom: 1.1rem;
}

.hero-btn {
  margin-top: .6rem;
  font-size: .97rem;
  padding: .9rem 1.9rem;
}

.hero-stats {
  display: flex;
  gap: 0;
  margin-top: 2.5rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(240, 222, 186, .18);
  flex-wrap: nowrap;
}

.hero-stat {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .84rem;
  color: var(--cc);
  padding: 0 1.6rem;
  border-right: 1px solid rgba(240, 222, 186, .22);
  white-space: nowrap;
}

.hero-stat:first-child {
  padding-left: 0;
}

.hero-stat:last-child {
  border-right: none;
}

.hero-stat i {
  color: var(--ca);
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* ── NOSOTROS ── */
.section-light {
  background: var(--cc-light);
  color: var(--text-dark);
}

.section-light .section-label {
  color: var(--cp);
}

.nosotros-sec {
  padding: 6rem 0;
  background: #50060c;
}

.nos-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.nos-text h2 {
  font-family: var(--font-h);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--cc);
  margin-bottom: 1rem;
  line-height: 1.15;
}

.nos-text p {
  color: var(--cc);
  opacity: .82;
  margin-bottom: 1.8rem;
  line-height: 1.75;
  font-size: 1rem;
}

.nos-image {
  border-radius: var(--radius);
  overflow: hidden;
}

.nos-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
}

.nos-placeholder {
  background: var(--cp);
  border-radius: var(--radius);
  padding: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
}

.nos-placeholder img {
  max-width: 180px;
  opacity: .6;
}

/* ── SERVICIOS ── */
.servicios-sec {
  padding: 6rem 0;
  background: #50060c;
  color: var(--cc);
  position: relative;
  overflow: hidden;
}

.svc-b-deco {
  position: absolute;
  bottom: 2rem;
  right: 26%;
  height: clamp(200px, 24vw, 320px);
  width: auto;
  opacity: .55;
  pointer-events: none;
  z-index: 0;
}

.servicios-sec .container {
  position: relative;
  z-index: 1;
}

.servicios-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  margin-bottom: 3rem;
}

.servicios-header h2 {
  font-family: var(--font-h);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--cc);
  line-height: 1.2;
}

.servicios-header p {
  color: var(--cc);
  opacity: .82;
  line-height: 1.75;
  font-size: 1rem;
  padding-top: .5rem;
}

.servicios-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}

.svc-card {
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(212, 168, 75, .18);
  color: var(--cc);
  padding: 1.6rem;
  border-radius: var(--radius);
  transition: transform .2s;
}

.svc-card:hover {
  transform: translateY(-4px);
}

.svc-icon {
  color: var(--ca);
  font-size: 1.5rem;
  margin-bottom: .9rem;
}

.svc-icon-img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  margin-bottom: .9rem;
  display: block;
}

.svc-card h3 {
  font-family: var(--font-b);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: .6rem;
  color: var(--cc);
}

.svc-card p {
  font-size: .85rem;
  opacity: .8;
  line-height: 1.6;
}

.section-cta {
  text-align: center;
  margin-top: 3rem;
}

/* ── TRABAJO ── */
.trabajo-sec {
  padding: 6rem 0;
}

.trabajo-title {
  font-family: var(--font-h);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 900;
  text-align: center;
  color: var(--cc);
  letter-spacing: .05em;
}

.trabajo-sub {
  text-align: center;
  color: var(--cc);
  opacity: .75;
  max-width: 600px;
  margin: .75rem auto 2.5rem;
  font-size: .95rem;
}

/* ── CAROUSEL SHARED ── */
.carousel-wrap,
.clientes-carousel-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.carousel-track-wrap,
.clientes-track-wrap {
  overflow: hidden;
  flex: 1;
  border-radius: var(--radius);
}

.carousel-track {
  display: flex;
  transition: transform .4s ease;
  gap: 1.2rem;
}

.carousel-btn {
  background: rgba(212, 168, 75, .2);
  border: 1px solid var(--ca);
  color: var(--ca);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  transition: background .2s;
}

.carousel-btn:hover {
  background: var(--ca);
  color: #1a0005;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: .6rem;
  margin-top: 1.5rem;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(212, 168, 75, .3);
  border: none;
  cursor: pointer;
  transition: background .2s;
}

.carousel-dot.active {
  background: var(--ca);
  width: 24px;
  border-radius: 4px;
}

/* Trabajo slides */
.trabajo-slide {
  flex: 0 0 calc(20% - 1rem);
  min-width: 200px;
  cursor: pointer;
}

.trabajo-media {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  aspect-ratio: 9/16;
}

.trabajo-media img,
.trabajo-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .3s;
}

.trabajo-slide:hover .trabajo-media img,
.trabajo-slide:hover .trabajo-media video {
  transform: scale(1.04);
}

.slide-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .35);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .25s;
  color: #fff;
  font-size: 1.6rem;
}

.trabajo-slide:hover .slide-overlay {
  opacity: 1;
}

.media-icon {
  position: absolute;
  top: .6rem;
  left: .6rem;
  color: var(--ca);
  font-size: 1.1rem;
  background: var(--cp);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

/* ── MODAL LIGHTBOX ── */
.media-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, .92);
  align-items: center;
  justify-content: center;
}

.media-modal.open {
  display: flex;
}

.media-modal-close {
  position: absolute;
  top: 1.2rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.8rem;
  cursor: pointer;
  z-index: 10;
  opacity: .8;
  transition: opacity .2s;
}

.media-modal-close:hover {
  opacity: 1;
}

.media-modal-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  max-width: 90vw;
  max-height: 90vh;
  width: 100%;
}

.media-modal-nav {
  background: rgba(255, 255, 255, .12);
  border: none;
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1rem;
  cursor: pointer;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
}

.media-modal-nav:hover {
  background: rgba(255, 255, 255, .25);
}

.media-modal-content {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  max-height: 88vh;
}

.media-modal-content img {
  max-width: 100%;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 8px;
}

.media-modal-content video {
  max-width: 100%;
  max-height: 88vh;
  border-radius: 8px;
  outline: none;
}

/* ── CLIENTES ── */
.clientes-sec {
  padding: 6rem 0;
}

.clientes-title {
  font-family: var(--font-h);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 900;
  text-align: center;
  color: var(--cc);
  letter-spacing: .05em;
  margin-bottom: 2.5rem;
}

.clientes-track {
  display: flex;
  transition: transform .4s ease;
  gap: 1rem;
}

.cliente-card {
  flex: 0 0 200px;
  min-width: 200px;
  background: transparent;
  padding: .75rem;
  height: 200px;
  margin-right: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.clientes-carousel-wrap .carousel-btn {
  display: none;
}

.clientes-track.marquee-scroll {
  transition: none;
  width: max-content;
  gap: 0;
  animation: clientes-marquee 20s linear infinite;
}

.cliente-card img {
  max-width: 100%;
  max-height: 170px;
  object-fit: contain;
  filter: none;
}

/* ── PRECIOS ── */
.precios-sec {
  padding: 6rem 0;
  background: var(--cp-dark);
}

.precios-title {
  font-family: var(--font-h);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 900;
  text-align: center;
  color: var(--cc);
  letter-spacing: .05em;
  margin-bottom: 3rem;
}

.precios-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 960px;
  margin: 0 auto;
}

.plan-card {
  background: var(--cc);
  border: 1px solid rgba(212, 168, 75, .2);
  border-radius: var(--radius);
  padding: 2rem 1.75rem 1rem;
  position: relative;
  transition: transform .2s;
  display: flex;
  flex-direction: column;
}

.plan-features {
  flex: 1;
}

.plan-card:hover {
  transform: translateY(-4px);
}

.plan-card.featured {
  border-color: var(--ca);
  background: var(--cc);
}

.plan-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--ca);
  color: #1a0005;
  font-size: .72rem;
  font-weight: 700;
  padding: .3rem 1rem;
  border-radius: 20px;
  white-space: nowrap;
  letter-spacing: .05em;
}

.plan-icon {
  margin-bottom: 1rem;
  display: flex;
  justify-content: center;
}

.plan-icon-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--cp);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.plan-icon-circle img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  display: block;
  filter: brightness(0) invert(1);
}

.plan-label {
  font-family: var(--font-b);
  font-size: 1rem;
  letter-spacing: .12em;
  color: var(--cp);
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: .1rem;
  text-align: center;
}

.plan-name {
  font-family: var(--font-h);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--cp);
  margin-bottom: .5rem;
  text-align: center;
}

.plan-divider {
  width: 40px;
  height: 2px;
  background: var(--ca);
  margin: .6rem auto 1rem;
}

.plan-name {
  font-family: var(--font-h);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--cp);
  margin-bottom: .5rem;
}

.plan-price {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--cp);
  margin-bottom: 1.25rem;
  font-family: var(--font-b);
  text-align: center;
}

.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .55rem;
  margin-bottom: 1.25rem;
}

.plan-features li {
  font-size: .85rem;
  color: #1a1a1a;
  opacity: 1;
  display: flex;
  gap: .5rem;
  align-items: flex-start;
}

.plan-features i {
  color: var(--ca);
  margin-top: .15rem;
  flex-shrink: 0;
}

.plan-location {
  font-size: .8rem;
  color: #444;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  padding-top: .9rem;
  margin-top: .5rem;
  border-top: 2px solid var(--cp);
}

.plan-location i {
  color: var(--ca);
}

/* ── ASESORÍA ── */
.asesoria-sec {
  padding: 6rem 0;
}

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

.ases-text h2 {
  font-family: var(--font-h);
  font-size: clamp(1.8rem, 3.2vw, 2.5rem);
  font-weight: 800;
  color: var(--cp);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.ases-text p {
  color: var(--text-mid);
  line-height: 1.75;
}

.ases-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

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

.ases-form input,
.ases-form textarea {
  padding: .85rem 1.1rem;
  border: 1.5px solid #d1d5db;
  border-radius: 8px;
  font-size: .95rem;
  font-family: var(--font-b);
  background: #fff;
  color: var(--text-dark);
  outline: none;
  transition: border-color .2s;
}

.ases-form input:focus,
.ases-form textarea:focus {
  border-color: var(--cp);
}

.ases-form textarea {
  resize: vertical;
}

.submit-btn {
  width: 100%;
  justify-content: center;
  padding: 1rem;
  font-size: 1rem;
  border-radius: 8px;
}

.form-success {
  background: #d1fae5;
  color: #065f46;
  border-radius: 8px;
  padding: 1rem;
  text-align: center;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
}

/* ── FAQ ── */
.faq-sec {
  padding: 6rem 0;
}

.faq-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}

.faq-title {
  font-family: var(--font-h);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 900;
  color: var(--cc);
  line-height: 1.1;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

.faq-item {
  border: 1px solid rgba(212, 168, 75, .25);
  border-radius: 10px;
  overflow: hidden;
}

.faq-q {
  width: 100%;
  background: rgba(255, 255, 255, .05);
  border: none;
  cursor: pointer;
  padding: 1.1rem 1.25rem;
  text-align: left;
  color: var(--cc);
  font-family: var(--font-b);
  font-size: .95rem;
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.faq-q i {
  color: var(--ca);
  flex-shrink: 0;
  transition: transform .3s;
}

.faq-q[aria-expanded="true"] {
  background: rgba(212, 168, 75, .1);
}

.faq-q[aria-expanded="true"] i {
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .2s;
}

.faq-a.open {
  max-height: 400px;
  padding: 0 1.25rem 1.1rem;
}

.faq-a p {
  color: var(--cc);
  opacity: .8;
  font-size: .9rem;
  line-height: 1.7;
}

/* ── CONTACTO ── */
.contacto-sec {
  padding: 6rem 0;
}

.contacto-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.contacto-inner h2 {
  font-family: var(--font-h);
  font-size: clamp(1.8rem, 3.2vw, 2.5rem);
  font-weight: 800;
  color: var(--cp);
  margin-bottom: 1rem;
}

.contacto-inner p {
  color: var(--text-mid);
  margin-bottom: 1.5rem;
}

.contacto-links {
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

.contacto-link {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  padding: .8rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  font-size: .95rem;
  transition: transform .15s, filter .2s;
  width: fit-content;
}

.contacto-link:hover {
  transform: translateX(4px);
  filter: brightness(1.1);
}

.contacto-link.wa {
  background: #25d366;
  color: #fff;
}

.contacto-link.ig {
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: #fff;
}

.contacto-link.em {
  background: var(--cp);
  color: var(--cc);
}

.map-placeholder {
  background: var(--cc-light);
  border-radius: var(--radius);
  min-height: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: var(--cp);
  border: 2px dashed rgba(122, 10, 20, .2);
}

.map-placeholder i {
  font-size: 3rem;
  color: var(--cp);
}

.map-placeholder p {
  font-weight: 600;
  color: var(--cp);
  font-size: 1.1rem;
}

/* ── FOOTER ── */
.footer {
  background: var(--dark);
  padding: 3rem 0 2rem;
}

.footer-inner {
  text-align: center;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.footer-social a {
  color: var(--cc);
  text-decoration: none;
  font-size: .9rem;
  opacity: .8;
  display: flex;
  align-items: center;
  gap: .5rem;
  transition: opacity .2s, color .2s;
}

.footer-social a:hover {
  opacity: 1;
  color: var(--ca);
}

.footer-divider {
  border: none;
  border-top: 1px solid rgba(212, 168, 75, .15);
  margin-bottom: 1.25rem;
}

.footer-legal {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: .75rem;
}

.footer-legal a {
  color: var(--cc);
  opacity: .6;
  font-size: .8rem;
  text-decoration: none;
}

.footer-legal a:hover {
  opacity: 1;
}

.footer-legal span {
  color: var(--cc);
  opacity: .3;
}

.footer-copy {
  font-size: .8rem;
  color: var(--cc);
  opacity: .45;
}

.footer-powered {
  font-size: .72rem;
  color: var(--cc);
  opacity: .3;
  margin-top: .35rem;
}

.footer-powered a {
  color: var(--cc);
  text-decoration: none;
  opacity: 1;
}

.footer-powered a:hover {
  opacity: .7;
}

/* ── WA FAB ── */
.wa-fab {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  z-index: 900;
  background: #25d366;
  color: #fff;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 4px 16px rgba(37, 211, 102, .4);
  text-decoration: none;
  transition: transform .2s, box-shadow .2s;
}

.wa-fab:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37, 211, 102, .5);
}

/* ── FADE IN ── */
.fade-in {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .5s ease, transform .5s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: none;
}

@keyframes clientes-marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* ══════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .servicios-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .precios-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .nos-grid,
  .ases-grid,
  .contacto-inner,
  .faq-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .servicios-header {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

@media (max-width: 768px) {
  .nav-wrap {
    border-bottom: none;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    gap: 0;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--dark);
    padding: 1rem 0;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links li a {
    display: block;
    padding: .85rem 2rem;
  }

  .nav-cta {
    display: none;
  }

  .logo-img {
    height: 46px;
  }

  .nosotros-sec {
    padding-top: 3rem;
    scroll-margin-top: 42px;
  }

  .precios-title {
    margin-bottom: 1.25rem;
  }

  .plan-card {
    padding: .75rem 1.75rem .5rem;
  }

  .cliente-card {
    height: 160px;
    flex: 0 0 160px;
    min-width: 160px;
    padding: .5rem;
  }

  .nav-toggle {
    display: flex;
    margin-left: auto;
  }

  .hero {
    min-height: 100dvh;
    align-items: center;
    padding-bottom: 3rem;
  }

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

  .hero-b-img {
    display: block;
    position: absolute;
    left: 5%;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    opacity: .22;
    z-index: 0;
  }

  .hero-b-img img {
    height: 80vh;
    width: auto;
    margin-right: 0;
  }

  .hero-inner {
    position: relative;
  }

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

  .hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin-top: 1.75rem;
  }

  .hero-stat {
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: .3rem;
    padding: .75rem .5rem;
    border-right: 1px solid rgba(240, 222, 186, .22);
    border-top: none;
    white-space: normal;
    text-align: center;
    font-size: .78rem;
  }

  .hero-stat:first-child {
    padding-left: .5rem;
  }

  .hero-stat:last-child {
    border-right: none;
  }

  .hero-stat i {
    font-size: 1.2rem;
  }

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

  .precios-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
  }

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

  .trabajo-slide {
    flex: 0 0 calc(50% - .6rem);
  }
}

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

  .trabajo-slide {
    flex: 0 0 calc(80% - .5rem);
  }

  #trabajoTrack {
    gap: 3rem;
    padding-left: 1.5rem;
  }

  .hero-b-deco {
    font-size: 200px;
    right: -5%;
    opacity: .6;
  }

  .footer-social {
    gap: 1rem;
  }
}