/* ═══════════════════════════════════════════════════════════
   LAZARILLO DESIGN — v3 EDITORIAL HIGH-IMPACT
   Verde: #ABCF45 | Oscuro: #1a1918 | Blanco: #fff
   Tipografía: Rubik 700/900 titulares · Poppins 300/400/600 cuerpo
   ═══════════════════════════════════════════════════════════ */

/* ─── LOCAL FONTS ─── */
@font-face {
  font-family: 'Poppins';
  src: url('poppins/Poppins-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('poppins/Poppins-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('poppins/Poppins-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('poppins/Poppins-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('poppins/Poppins-Bold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Rubik';
  src: url('Rubik/Rubik-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

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

:root {
  --g: #ABCF45;
  --g2: #96b83a;
  --g-dark: #202710;
  /* Verde opaco oscuro */
  --d: #1a1918;
  --d2: #373435;
  --w: #ffffff;
  --off: #f5f5f3;
  --gray: #888;
  --t: 0.32s cubic-bezier(.4, 0, .2, 1);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  color: var(--d);
  background: var(--w);
  overflow-x: hidden;
}

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

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

/* ─── BUTTON BASE ─── */
.btn-green {
  display: inline-block;
  background: var(--g);
  color: #383838;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: .875rem;
  letter-spacing: .1em;
  padding: 15px 38px;
  border-radius: 4px;
  transition: all var(--t);
  cursor: pointer;
  border: 2px solid var(--g);
}

.btn-green:hover {
  background: var(--g2);
  border-color: var(--g2);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(171, 207, 69, .4);
}

.btn-green-sm {
  display: inline-block;
  background: var(--g);
  color: var(--w);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: .875rem;
  letter-spacing: .08em;
  padding: 12px 28px;
  border-radius: 4px;
  transition: all var(--t);
  border: 2px solid var(--g);
  cursor: pointer;
}

.btn-green-sm:hover {
  background: var(--g2);
  border-color: var(--g2);
  transform: translateY(-2px);
}

.btn-dark-outline {
  display: inline-block;
  background: transparent;
  color: var(--d);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: .875rem;
  letter-spacing: .1em;
  padding: 14px 36px;
  border-radius: 4px;
  border: 2px solid var(--d);
  transition: all var(--t);
  cursor: pointer;
}

.btn-dark-outline:hover {
  background: var(--d);
  color: var(--w);
  transform: translateY(-2px);
}

.btn-dark {
  display: block;
  width: 100%;
  text-align: center;
  background: var(--d);
  color: var(--w);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: .875rem;
  letter-spacing: .1em;
  padding: 16px 24px;
  border-radius: 4px;
  border: 2px solid var(--d);
  transition: all var(--t);
  cursor: pointer;
}

.btn-dark:hover {
  background: #333;
  border-color: #333;
  transform: translateY(-2px);
}

/* ═══════════════════════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: rgba(26, 25, 24, .95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, .06);
}

.nav-inner {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 4rem;
  height: 72px;
  display: flex;
  align-items: center;
  gap: 48px;
}

.logo-img {
  height: 120px;
  width: auto;
}

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 36px;
  flex: 1;
}

.nav-link {
  color: rgba(255, 255, 255, .65);
  font-size: 1rem;
  font-weight: 300;
  position: relative;
  transition: color var(--t);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 1.5px;
  background: var(--g);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t);
}

.nav-link:hover,
.nav-link.active {
  color: var(--w);
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

.nav-btn {
  flex-shrink: 0;
  background: var(--g);
  color: var(--w);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: .875rem;
  letter-spacing: .08em;
  padding: 10px 22px;
  border-radius: 4px;
  transition: all var(--t);
  text-transform: uppercase;
}

.nav-btn:hover {
  background: var(--g2);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(171, 207, 69, .4);
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: auto;
  padding: 4px;
}

.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--w);
  transition: all var(--t);
}

/* ═══════════════════════════════════════════════════════════
   HERO — tipografía gigante + imagen oscura
═══════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(170deg,
      rgba(32, 39, 16, .6) 0%,
      rgba(32, 39, 16, .82) 50%,
      rgba(32, 39, 16, .94) 100%);
}

.hero-body {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 2.5rem 72px;
  /* Añadimos padding-top para el navbar */
}

.hero-top-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--g);
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  margin-bottom: 24px;
  padding-top: 20px;
}

.hero-top-tag::before {
  content: '';
  width: 20px;
  height: 1.5px;
  background: var(--g);
}

.hero-title {
  font-family: 'Rubik', sans-serif;
  font-size: clamp(3rem, 5vw, 4rem);
  font-weight: 600;
  color: var(--w);
  line-height: 1.08;
  letter-spacing: -.02em;
  margin-bottom: 15px;
  text-shadow: 0 4px 40px rgba(0, 0, 0, .3);
}

.hero-bottom {
  display: flex;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}

.hero-sub {
  color: rgba(255, 255, 255, .65);
  font-size: 1rem;
  max-width: 640px;
  line-height: 1.75;
  margin-bottom: 32px;
}

/* Puente entre hero y servicios */
.section-bridge {
  position: relative;
  height: 0;
  z-index: 10;
}

/* Bloque flotante verde entre secciones */
.hero-float-contact {
  position: absolute;
  top: 0;
  right: 70px;
  transform: translateY(-50%);
  z-index: 10;
  background: var(--g);
  padding: 28px 40px 28px 32px;
  min-width: 400px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, .22);
  text-decoration: none;
  color: #383838;
  transition: box-shadow var(--t);
}

.hero-float-contact:hover {
  box-shadow: 0 22px 60px rgba(0, 0, 0, .32);
}

/* Icono grande izquierda */
.float-icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background: rgba(0, 0, 0, .08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.float-icon svg rect,
.float-icon svg path {
  stroke: #383838;
}

/* Textos apilados derecha */
.float-texts {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.float-label {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .16em;
  color: rgba(56, 56, 56, .7);
  text-transform: uppercase;
}

.float-email-addr {
  font-size: 1.05rem;
  font-weight: 600;
  color: #383838;
  line-height: 1.3;
}


/* ═══════════════════════════════════════════════════════════
   SERVICIOS — color blocking negro/imágenes
 ═══════════════════════════════════════════════════════════ */
.services {
  background: var(--w);
  padding: 150px 0;
}

.services-grid-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2.5rem;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 320px;
  gap: 24px;
}

/* Bloque negro con título (Fila 1: Ocupa la mitad = 3 de 6 columnas) */
.svc-header-block {
  grid-column: span 3;
  background: transparent;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 14px;
  padding-right: 40px;
  padding-top: 8px;
}

/* Foto 01 (Fila 1: Ocupa la otra mitad = 3 de 6 columnas) */
#svc-cell-01 {
  grid-column: span 3;
}

/* Fotos de la Fila 2 (Ocupan 2 de 6 columnas cada una para hacer 3 columnas abajo) */
#svc-cell-02,
#svc-cell-03,
#svc-cell-04 {
  grid-column: span 2;
}

.svc-tag {
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: .2em;
  color: var(--g2);
  /* Usamos g2 que tiene más contraste sobre blanco */
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
}

.svc-tag::before {
  content: '';
  width: 18px;
  height: 1.5px;
  background: var(--g2);
}

.svc-title {
  font-family: 'Rubik', sans-serif;
  font-size: clamp(2.25rem, 3.5vw, 2.625rem);
  font-weight: 600;
  color: var(--d);
  line-height: 1.1;
  letter-spacing: -.02em;
}

/* Cuadrícula derecha */
.svc-right {
  overflow: hidden;
}

.svc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  height: 100%;
  min-height: 640px;
}

.svc-cell {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.svc-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s cubic-bezier(.4, 0, .2, 1);
  filter: brightness(.82);
}

.svc-cell:hover img {
  transform: scale(1.07);
  filter: brightness(.65);
}

.svc-intro-text {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--gray);
  margin-top: 16px;
  margin-bottom: 24px;
}

/* Tarjeta blanca flotante */
.svc-card {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, .97);
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transform: translateY(calc(100% - 78px));
  /* Oculta la descripción inicialmente dejando ver el título */
  transition: transform var(--t) cubic-bezier(.16, 1, .3, 1);
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.03);
}

.svc-cell:hover .svc-card {
  transform: translateY(0);
  /* Despliega la tarjeta completa mostrando la descripción */
}

.svc-card-top-row {
  display: flex;
  align-items: center;
  gap: 16px;
}

.svc-num {
  font-family: 'Rubik', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--g2);
  line-height: 1;
  letter-spacing: -.02em;
  flex-shrink: 0;
}

.svc-name {
  font-family: 'Rubik', sans-serif;
  font-size: .95rem;
  font-weight: 600;
  color: var(--d);
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.svc-desc {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--gray);
  margin: 0;
  opacity: 0;
  transition: opacity var(--t) ease-in-out;
  transition-delay: 0.05s;
}

.svc-cell:hover .svc-desc {
  opacity: 1;
}

/* ═══════════════════════════════════════════════════════════
   QUÉ ES LAZARILLO — asimétrico, tipografía masiva
═══════════════════════════════════════════════════════════ */
.que-es {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #ebebe9;
}

/* Columna izquierda: foto superpuesta */
.qe-left {
  position: relative;
  overflow: hidden;
}

.qe-photo-wrap {
  position: relative;
  height: 100%;
}

.qe-photo-wrap>img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.qe-badge {
  position: absolute;
  bottom: 40px;
  right: -1px;
  background: var(--g);
  color: var(--d);
  padding: 20px 28px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: -8px 8px 32px rgba(0, 0, 0, .2);
}

.qe-badge span {
  font-weight: 600;
  font-size: .95rem;
  line-height: 1.35;
}

/* Columna derecha: texto masivo */
.qe-right {
  background: var(--off);
  padding: 80px 64px 80px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
}

.qe-tag {
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: .2em;
  color: var(--g);
  text-transform: uppercase;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.qe-tag::before {
  content: '';
  width: 18px;
  height: 1.5px;
  background: var(--g);
}

.qe-title {
  font-family: 'Rubik', sans-serif;
  font-size: clamp(2.25rem, 3.5vw, 2.625rem);
  font-weight: 600;
  color: var(--d);
  line-height: 1.1;
  letter-spacing: -.02em;
  margin-bottom: 28px;
}

.qe-body {
  font-size: 1rem;
  color: #555;
  line-height: 1.75;
  margin-bottom: 16px;
  max-width: 440px;
}

.btn-dark-outline {
  margin-top: 16px;
  align-self: flex-start;
}

/* ═══════════════════════════════════════════════════════════
   CTA OSCURO — imagen full, texto gigante centrado
═══════════════════════════════════════════════════════════ */
.cta-dark {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.cta-dark-bg {
  position: absolute;
  inset: 0;
}

.cta-dark-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.45);
}

.cta-dark-overlay {
  position: absolute;
  inset: 0;
  background: rgba(32, 39, 16, .75);
}

.cta-dark-body {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 20px 2.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.cta-dark-title {
  font-family: 'Rubik', sans-serif;
  font-size: clamp(3rem, 5vw, 4rem);
  font-weight: 600;
  color: var(--w);
  line-height: 1.08;
  letter-spacing: -.02em;
  margin-bottom: 30px;
  text-shadow: 0 4px 40px rgba(0, 0, 0, .5);
}

.cta-dark-text {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, .85);
  max-width: 800px;
  margin: 0 auto 35px;
  line-height: 1.75;
  font-weight: 300;
  text-shadow: 0 2px 20px rgba(0, 0, 0, .4);
}

/* ═══════════════════════════════════════════════════════════
   POR QUÉ ELEGIRNOS — números verdes gigantes + 2 fotos
═══════════════════════════════════════════════════════════ */
.why-us {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 700px;
  background: var(--w);
}

.why-left {
  padding: 80px 72px 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.why-tag {
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: .2em;
  color: var(--g2);
  text-transform: uppercase;
  margin-bottom: 48px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.why-tag::before {
  content: '';
  width: 18px;
  height: 1.5px;
  background: var(--g2);
}

.why-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.why-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid #e8e8e4;
  transition: all var(--t);
}

.why-item:first-child {
  border-top: 1px solid #e8e8e4;
}

.why-item:hover {
  padding-left: 8px;
}

.why-num {
  font-family: 'Rubik', sans-serif;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  /* Aumentado */
  font-weight: 600;
  color: var(--g2);
  line-height: 1;
  letter-spacing: -.02em;
  flex-shrink: 0;
  width: 64px;
  text-align: right;
  transition: transform var(--t);
}

.why-item:hover .why-num {
  transform: scale(1.08);
}

.why-text {
  padding-top: 4px;
}

.why-text strong {
  display: block;
  font-family: 'Rubik', sans-serif;
  /* Usamos Rubik para los títulos */
  font-size: 1.4rem;
  /* Aumentado de 1.125rem */
  font-weight: 600;
  color: var(--d);
  margin-bottom: 6px;
}

.why-text span {
  font-size: 1rem;
  color: var(--gray);
  line-height: 1.75;
}

/* Fotos escalonadas */
.why-right {
  position: relative;
  overflow: hidden;
}

.why-photos {
  position: relative;
  height: 100%;
  min-height: 700px;
  padding: 60px 60px 60px 32px;
  display: flex;
  flex-direction: column;
  gap: 0;
  align-items: flex-end;
}

.why-photo {
  position: absolute;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .18);
}

.why-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.why-photo--top {
  top: 48px;
  left: 32px;
  width: 72%;
  height: 340px;
}

.why-photo--bottom {
  bottom: 48px;
  right: 32px;
  width: 68%;
  height: 300px;
}

/* ═══════════════════════════════════════════════════════════
   PRECIOS — título inmenso + 3 tarjetas
═══════════════════════════════════════════════════════════ */
.pricing {
  background: var(--w);
  padding: 100px 0;
}

.pricing-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2.5rem;
}

.pricing-head {
  margin-bottom: 64px;
}

.pricing-tag {
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: .2em;
  color: var(--g);
  text-transform: uppercase;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.pricing-tag::before {
  content: '';
  width: 18px;
  height: 1.5px;
  background: var(--g);
}

.pricing-title {
  font-family: 'Rubik', sans-serif;
  font-size: clamp(2.25rem, 3.5vw, 2.625rem);
  font-weight: 600;
  color: var(--d);
  line-height: 1.1;
  letter-spacing: -.02em;
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

/* Tarjeta base */
.pc {
  background: var(--w);
  border: 1.5px solid #e4e4e0;
  border-radius: 8px;
  padding: 40px 36px;
  position: relative;
  transition: all var(--t);
  display: flex;
  flex-direction: column;
}

.pc:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 56px rgba(0, 0, 0, .1);
}

/* Tarjeta dark featured */
.pc--dark {
  background: var(--d);
  border-color: var(--d);
  transform: translateY(-20px);
  box-shadow: 0 24px 64px rgba(0, 0, 0, .28);
}

.pc--dark:hover {
  transform: translateY(-28px);
}

.pc-star {
  display: inline-block;
  background: var(--g);
  color: var(--d);
  font-weight: 600;
  font-size: .65rem;
  letter-spacing: .14em;
  padding: 5px 14px;
  border-radius: 2px;
  margin-bottom: 20px;
}

.pc-header {
  margin-bottom: 24px;
}

.pc-name {
  display: block;
  font-family: 'Rubik', sans-serif;
  font-size: clamp(1.5rem, 2vw, 1.75rem);
  font-weight: 600;
  color: var(--d);
  margin-bottom: 4px;
}

.pc--dark .pc-name {
  color: var(--w);
}

.pc-sub {
  font-size: 1rem;
  color: var(--gray);
}

.pc--dark .pc-sub {
  color: rgba(255, 255, 255, .4);
}

.pc-price {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  margin-bottom: 28px;
}

.pc-amt {
  font-family: 'Rubik', sans-serif;
  font-size: clamp(2.5rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--d);
  line-height: 1;
  letter-spacing: -.03em;
}

.pc--dark .pc-amt {
  color: var(--g);
}

.pc-cur {
  font-size: 1rem;
  font-weight: 500;
  color: var(--gray);
  line-height: 1.4;
  padding-top: 6px;
}

.pc--dark .pc-cur {
  color: rgba(255, 255, 255, .4);
}

.pc-cur small {
  font-size: .875rem;
  font-weight: 300;
}

.pc-price--custom {
  display: block;
  margin-bottom: 28px;
}

.pc-amt-custom {
  font-family: 'Rubik', sans-serif;
  font-size: clamp(2.5rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--d);
  letter-spacing: -.02em;
}

.pc-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-bottom: 32px;
  font-size: 1rem;
  color: var(--d);
  flex: 1;
  /* Empuja el botón al fondo */
}

.pc--dark .pc-list {
  color: rgba(255, 255, 255, .8);
}

.pc-list li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.pc-list li b {
  color: var(--g);
  font-size: 1rem;
}

.pc-list li.off {
  color: var(--gray);
  opacity: 0.55;
}

.pc-list li.off b {
  color: #bbb;
}

.pc--dark .pc-list li.off {
  color: rgba(255, 255, 255, .25);
}

.pc-list li.off b {
  color: var(--gray);
}

.pc-btn {
  display: block;
  width: 100%;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: .78rem;
  letter-spacing: .1em;
  padding: 15px 24px;
  border-radius: 4px;
  cursor: pointer;
  transition: all var(--t);
}

.pc-btn--outline {
  background: transparent;
  color: var(--d);
  border: 2px solid #d0d0cc;
}

/* Botón outline dentro de tarjeta oscura → texto blanco */
.pc--dark .pc-btn--outline {
  color: var(--w);
  border-color: rgba(255, 255, 255, .3);
}

.pc-btn--outline:hover {
  border-color: var(--d);
  background: var(--d);
  color: var(--w);
}

.pc--dark .pc-btn--outline:hover {
  border-color: var(--w);
  background: var(--w);
  color: var(--d);
}

.pc-btn--green {
  background: var(--g);
  color: #383838;
  border: 2px solid var(--g);
}

.pc-btn--green:hover {
  background: var(--g2);
  border-color: var(--g2);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(171, 207, 69, .4);
}

/* ═══════════════════════════════════════════════════════════
   CTA FINAL — 50/50 foto | verde
═══════════════════════════════════════════════════════════ */
.cta-final {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 700px;
}

.cf-photo {
  overflow: hidden;
}

.cf-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s cubic-bezier(.4, 0, .2, 1);
}

.cf-photo:hover img {
  transform: scale(1.04);
}

.cf-content {
  background: var(--g);
  padding: 80px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cf-tag {
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: .2em;
  color: rgba(0, 0, 0, .45);
  text-transform: uppercase;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.cf-tag::before {
  content: '';
  width: 18px;
  height: 1.5px;
  background: rgba(0, 0, 0, .35);
}

.cf-title {
  font-family: 'Rubik', sans-serif;
  font-size: clamp(2.25rem, 3.5vw, 2.625rem);
  font-weight: 600;
  color: var(--d);
  line-height: 1.1;
  letter-spacing: -.02em;
  margin-bottom: 20px;
}

.cf-sub {
  font-size: 1rem;
  color: rgba(0, 0, 0, .6);
  line-height: 1.75;
  max-width: 380px;
  margin-bottom: 32px;
}

/* Form styles */
.cf-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.cf-form input,
.cf-form textarea {
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  font-size: 1rem;
  padding: 13px 16px;
  border: 1.5px solid rgba(0, 0, 0, .2);
  border-radius: 4px;
  background: rgba(255, 255, 255, .55);
  color: var(--d);
  outline: none;
  transition: border-color var(--t), background var(--t);
  resize: vertical;
  width: 100%;
}

.cf-form input::placeholder,
.cf-form textarea::placeholder {
  color: rgba(0, 0, 0, .4);
}

.cf-form input:focus,
.cf-form textarea:focus {
  border-color: var(--d);
  background: rgba(255, 255, 255, .8);
}

.cf-alt {
  font-size: .8rem;
  color: rgba(0, 0, 0, .5);
  margin-top: 12px;
}

.cf-alt a {
  font-weight: 600;
  color: var(--d);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ═══════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════ */
.footer {
  background: var(--d);
  padding: 48px 0 32px;
  border-top: 1px solid rgba(255, 255, 255, .05);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2.5rem;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.footer-left {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-logo {
  height: 28px;
  width: auto;
}

.footer-tag {
  color: rgba(255, 255, 255, .25);
  font-size: .8rem;
}

.footer-nav {
  display: flex;
  gap: 28px;
  justify-content: center;
  flex-wrap: wrap;
}

.footer-nav a {
  color: rgba(255, 255, 255, .45);
  font-size: .85rem;
  transition: color var(--t);
}

.footer-nav a:hover {
  color: var(--g);
}

.footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
}

.footer-privacy {
  color: rgba(255, 255, 255, .35);
  font-size: .78rem;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--t);
}

.footer-privacy:hover {
  color: var(--g);
}

.footer-copy {
  color: rgba(255, 255, 255, .2);
  font-size: .75rem;
}

/* ═══════════════════════════════════════════════════════════
   ANIMACIONES
═══════════════════════════════════════════════════════════ */
@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

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

.hero-top-tag {
  animation: heroFadeUp .7s cubic-bezier(.4, 0, .2, 1) both;
}

.hero-title {
  animation: heroFadeUp .8s cubic-bezier(.4, 0, .2, 1) .1s both;
}

.hero-bottom {
  animation: heroFadeUp .8s cubic-bezier(.4, 0, .2, 1) .22s both;
}

/* Scroll reveal */
.rv {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .65s cubic-bezier(.4, 0, .2, 1), transform .65s cubic-bezier(.4, 0, .2, 1);
}

.rv.in {
  opacity: 1;
  transform: translateY(0);
}

.rv.in.d1 {
  transition-delay: .08s;
}

.rv.in.d2 {
  transition-delay: .16s;
}

.rv.in.d3 {
  transition-delay: .24s;
}

.rv.in.d4 {
  transition-delay: .32s;
}

/* Toast */
.toast {
  position: fixed;
  bottom: 32px;
  right: 32px;
  padding: 16px 24px;
  border-radius: 6px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: .88rem;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 9999;
  box-shadow: 0 8px 32px rgba(0, 0, 0, .25);
  opacity: 0;
  transform: translateY(16px);
  transition: all .35s cubic-bezier(.4, 0, .2, 1);
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

.toast--ok {
  background: var(--g);
  color: var(--d);
}

.toast--err {
  background: #e74c3c;
  color: #fff;
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .services-grid-container {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    gap: 32px;
  }

  .svc-header-block {
    grid-column: span 1;
    padding-right: 0;
  }

  .que-es {
    grid-template-columns: 1fr;
  }

  .qe-photo-wrap {
    min-height: 400px;
  }

  .qe-badge {
    right: 24px;
  }

  .qe-right {
    padding: 60px 40px;
  }

  .why-us {
    grid-template-columns: 1fr;
  }

  .why-left {
    padding: 60px 40px;
  }

  .why-photos {
    min-height: 400px;
  }

  .why-photo--top {
    width: 80%;
    height: 260px;
    top: 32px;
    left: 20px;
  }

  .why-photo--bottom {
    width: 75%;
    height: 220px;
    bottom: 32px;
    right: 20px;
  }

  .cta-final {
    grid-template-columns: 1fr;
  }

  .cf-photo {
    height: 360px;
  }

  .cf-content {
    padding: 60px 40px;
  }

  .pricing-cards {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .pc--dark {
    transform: none;
  }

  .pc--dark:hover {
    transform: translateY(-6px);
  }

  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-right {
    align-items: center;
  }
}

@media (max-width: 768px) {

  /* Navbar */
  .logo-img {
    height: 85px;
    padding-top: 0;
  }

  .nav-logo {
    position: relative;
    z-index: 910;
  }

  .nav-menu {
    display: none;
    position: fixed;
    top: 120px;
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
    background: #1a1918;
    /* Fondo sólido oscuro */
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    border-radius: 12px;
    gap: 28px;
    z-index: 800;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5);
  }

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

  /* Overlay de fondo oscuro */
  .nav-overlay {
    display: none;
    position: fixed;
    inset: 72px 0 0 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 790;
  }

  .nav-overlay.open {
    display: block;
  }

  .nav-link {
    font-size: 1.1rem;
  }

  .nav-btn {
    display: none;
  }

  .burger {
    display: flex;
    position: relative;
    z-index: 910;
  }

  .burger.x span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .burger.x span:nth-child(2) {
    opacity: 0;
  }

  .burger.x span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  /* Hero */
  .section-bridge {
    height: auto;
    padding: 30px 1.5rem;
    display: flex;
    justify-content: center;
    background: var(--off);
  }

  .hero-float-contact {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    transform: none;
    margin-top: 0;
    min-width: 0;
    width: 100%;
    max-width: 450px;
    padding: 20px;
    gap: 16px;
    box-sizing: border-box;
  }

  .hero-body {
    padding-bottom: 40px;
  }

  /* Services */
  /* Eliminado .svc-grid ya que el grid ahora se maneja en 1100px */

  /* Form */
  .cf-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 500px) {
  .hero-title {
    font-size: clamp(1.6rem, 8.5vw, 2.2rem);
    word-wrap: break-word;
  }

  .cta-dark-title {
    font-size: 2.6rem;
  }

  .pricing-title {
    font-size: 2.4rem;
  }

  .svc-title {
    font-size: 2.2rem;
  }

  .qe-title {
    font-size: 2.2rem;
  }

  .cf-title {
    font-size: 2rem;
  }
}

/* ═══════════════════════════════════════════════════════════
   SOBRE NOSOTROS — Estilos Específicos (Estructura Multibloque)
 ═══════════════════════════════════════════════════════════ */
.inner-hero {
  min-height: 55vh !important;
}

.white-section {
  background: var(--w);
}

.gray-section {
  background: var(--off);
}

.green-light-section {
  background: rgba(171, 207, 69, 0.08);
  /* Fondo verde claro premium */
}

/* Línea decorativa verde superior */
.deco-line-green {
  display: block;
  width: 60px;
  height: 3px;
  background: var(--g);
  margin-bottom: 24px;
}

.deco-line-green.centered {
  margin: 0 auto 24px;
}

/* Sección 1: Dos Columnas */
.about-sec-1 {
  padding: 120px 0;
}

.about-container-2col {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2.5rem;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}

.about-img-metrics-wrap {
  position: relative;
  padding-bottom: 60px;
  /* Espacio para que sobresalga el recuadro verde */
}

.about-photo-wrapper {
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.08);
  aspect-ratio: 4 / 3;
}

.about-photo-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-green-metrics {
  position: absolute;
  bottom: 0;
  left: 24px;
  right: 24px;
  background: var(--g);
  border-radius: 4px;
  padding: 24px 32px;
  display: flex;
  justify-content: space-between;
  box-shadow: 0 16px 40px rgba(171, 207, 69, 0.3);
  z-index: 5;
}

.metric-box {
  text-align: center;
  flex: 1;
}

.metric-box:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.3);
}

.m-val {
  display: block;
  font-family: 'Rubik', sans-serif;
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--w);
  line-height: 1.1;
}

.m-lbl {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 4px;
  font-weight: 500;
}

.about-content-2col {
  display: flex;
  flex-direction: column;
}

.about-sec-title {
  font-family: 'Rubik', sans-serif;
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 600;
  color: var(--d);
  line-height: 1.1;
  letter-spacing: -.02em;
  margin-bottom: 32px;
}

.about-p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--gray);
  margin-bottom: 24px;
}

.about-p:last-child {
  margin-bottom: 0;
}

/* Sección 2: Diseño asimétrico en Z */
.about-sec-2 {
  padding: 120px 0;
}

.about-container-z {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px 80px;
}

.z-block-left {
  display: flex;
  flex-direction: column;
}

.z-block-right {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

@media (min-width: 992px) {
  .about-container-z {
    align-items: stretch;
  }

  .z-block-right.z-image-stretch {
    position: relative;
    height: 100%;
  }

  .z-block-right.z-image-stretch .z-img-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin: 0;
  }
}

.z-img-placeholder {
  width: 100%;
  border-radius: 6px;
  overflow: hidden;
  background: var(--off);
  aspect-ratio: 16 / 10;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.06);
  margin: 32px 0;
}

.z-img-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.top-z-img {
  margin-top: 0;
  margin-bottom: 48px;
}

.text-bottom-z {
  margin-top: auto;
}

.about-subtitle {
  font-family: 'Rubik', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--d);
  margin-bottom: 24px;
  line-height: 1.35;
}

/* Sección 3: Tarjetas de valores */
.about-sec-3 {
  padding: 120px 0;
}

.about-cards-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2.5rem;
}

.cards-header-centered {
  text-align: center;
  margin-bottom: 64px;
}

.about-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.about-card-item {
  background: var(--w);
  border-radius: 6px;
  padding: 48px 36px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
  transition: transform var(--t), box-shadow var(--t);
}

.about-card-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.07);
}

.card-num {
  font-family: 'Rubik', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--g2);
  margin-bottom: 24px;
}

.card-title {
  font-family: 'Rubik', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--d);
  margin-bottom: 16px;
}

.card-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--gray);
}

/* Sección 4: Perfil */
.about-sec-4 {
  padding: 120px 0;
}

.profile-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2.5rem;
}

.profile-header {
  margin-bottom: 64px;
}

.profile-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: start;
}

.profile-left-photo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

.profile-photo-wrapper {
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.08);
  width: 100%;
  max-width: 280px;
  aspect-ratio: 1 / 1;
}

.profile-photo-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.profile-meta-text {
  display: flex;
  flex-direction: column;
}

.profile-tag {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--g2);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 4px;
}

.profile-name {
  font-family: 'Rubik', sans-serif;
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--d);
}

.profile-right-desc {
  display: flex;
  flex-direction: column;
}

.profile-p-highlight {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.5;
  color: var(--d);
  margin-bottom: 32px;
}

/* Sección 5: Banner superpuesto */
.about-sec-5 {
  background: var(--w);
  padding: 100px 0 140px;
}

.banner-overlap-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2.5rem;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  align-items: center;
  position: relative;
  gap: 48px;
}

.banner-left-img {
  width: 100%;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.08);
  aspect-ratio: 16 / 10;
}

.banner-left-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.banner-right-overlap-card {
  background: var(--g);
  border-radius: 6px;
  padding: 56px 48px;
  box-shadow: 0 20px 48px rgba(171, 207, 69, 0.25);
  margin-left: 0;
  z-index: 5;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

.banner-card-title {
  font-family: 'Rubik', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--w);
  line-height: 1.3;
}

.banner-card-text {
  font-size: 1rem;
  line-height: 1.6;
}

@media (max-width: 991px) {
  .about-container-2col {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-container-z {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .z-block-right {
    justify-content: flex-start;
  }

  .top-z-img {
    margin-top: 32px;
  }

  .about-cards-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .profile-detail-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .banner-overlap-container {
    grid-template-columns: 1fr;
  }

  .banner-right-overlap-card {
    margin-left: 0;
    margin-top: 0;
  }

  .footer-corp-bottom-inner {
    flex-direction: column;
    gap: 32px;
    text-align: center;
  }
}

/* ═══════════════════════════════════════════════════════════
   PÁGINA DE CONTACTO — Estilos Específicos
 ═══════════════════════════════════════════════════════════ */
.contact-sec-1 {
  padding: 100px 0;
}

.contact-container-2col {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2.5rem;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}

.contact-content-2col {
  display: flex;
  flex-direction: column;
}

.contact-sec-title {
  font-family: 'Rubik', sans-serif;
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 600;
  color: var(--d);
  line-height: 1.15;
  letter-spacing: -.02em;
  margin-bottom: 32px;
}

.contact-p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--gray);
  margin-bottom: 24px;
}

.contact-p:last-child {
  margin-bottom: 0;
}

.contact-map-block {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

/* Sección 2: Bloques de información */
.contact-sec-2 {
  padding: 40px 0 100px;
}

.info-blocks-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.info-block-item {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  padding: 24px;
  border-radius: 6px;
}

.info-card-white {
  background: var(--w);
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.03);
}

.info-icon-circle {
  width: 60px;
  height: 60px;
  background: var(--g);
  /* Fondo verde sólido de marca */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-icon-circle svg path,
.info-icon-circle svg circle,
.info-icon-circle svg line {
  stroke: #383838 !important;
}

.info-text-side {
  display: flex;
  flex-direction: column;
}

.info-item-title {
  font-family: 'Rubik', sans-serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--d);
  margin-bottom: 8px;
}

.info-item-p {
  font-size: 1.05rem;
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 12px;
}

.info-item-highlight {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--g2);
  text-decoration: none;
  margin-bottom: 8px;
  transition: opacity var(--t);
}

.info-item-highlight:hover {
  opacity: 0.85;
}

.info-item-subtext {
  font-size: 0.9rem;
  color: var(--gray);
}

.info-item-bold {
  font-size: 1rem;
  font-weight: 600;
  color: var(--d);
}

/* Responsivo Contacto */
@media (max-width: 900px) {
  .contact-container-2col {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .info-block-item {
    flex-direction: column;
    gap: 20px;
  }
}

/* Pie de Página Corporativo de 3 Niveles Unificado */
.footer-corporate-new {
  background: var(--g-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 60px 0 40px;
}

.footer-corp-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2.5rem;
  display: flex;
  flex-direction: column;
}

/* Divisiones de sección por líneas horizontales */
.footer-corp-section {
  display: flex;
  align-items: center;
  width: 100%;
}

.footer-corp-section:not(:last-child) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Sección Superior */
.footer-corp-top-row {
  justify-content: space-between;
  padding-bottom: 32px;
}

.footer-brand-logo {
  height: 90px !important;
  /* Aumentado a 90px para compensar los márgenes de la imagen */
  width: auto !important;
  display: block;
  object-fit: contain;
  margin: -20px 0;
  /* Corrección de márgenes verticales por la transparencia */
}

.footer-region-selector .region-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--w);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: background var(--t), border var(--t);
}

.footer-region-selector .region-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
}

/* Sección Central */
.footer-corp-mid-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding: 48px 0;
  align-items: start;
}

.footer-corp-col {
  display: flex;
  flex-direction: column;
}

.footer-col-title {
  font-family: 'Rubik', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--w);
  margin-bottom: 20px;
}

.footer-col-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col-links a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color var(--t);
}

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

.footer-col-socials {
  align-items: flex-end;
}

.footer-social-icons {
  display: flex;
  gap: 16px;
}

.footer-social-icons a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--w);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--t), border var(--t), color var(--t);
}

.footer-social-icons a:hover {
  background: var(--g);
  color: var(--d);
  border-color: var(--g);
}

/* Sección Inferior */
.footer-corp-bottom-row {
  justify-content: flex-end;
  padding-top: 24px;
}

.footer-copyright-text {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
}



/* ═══════════════════════════════════════════════════════════
   BANNER DE COOKIES (Glassmorphism & Premium Design)
 ═══════════════════════════════════════════════════════════ */
.cookies-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  background: rgba(26, 25, 24, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 24px;
  z-index: 99999;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.3);
  transform: translateY(150%);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  max-width: 900px;
  margin: 0 auto;
}

.cookies-banner.show {
  transform: translateY(0);
}

.cookies-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
}

.cookies-text-wrap {
  flex: 1;
}

.cookies-title {
  font-family: 'Rubik', sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--w);
  margin-bottom: 8px;
}

.cookies-desc {
  font-size: 0.9rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.cookies-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.btn-cookie {
  padding: 12px 24px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  border: none;
  transition: all var(--t);
  white-space: nowrap;
}

.btn-cookie-reject {
  background: rgba(255, 255, 255, 0.08);
  color: var(--w);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-cookie-reject:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
}

.btn-cookie-accept {
  background: var(--g);
  color: var(--d);
}

.btn-cookie-accept:hover {
  background: var(--g2);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(171, 207, 69, 0.3);
}

@media (max-width: 768px) {
  .cookies-banner {
    bottom: 16px;
    left: 16px;
    right: 16px;
    padding: 20px;
  }

  .cookies-content {
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
  }

  .cookies-actions {
    justify-content: flex-end;
  }

  .btn-cookie {
    flex: 1;
    text-align: center;
  }
}

/* ═══════════════════════════════════════════════════════════
   CONTACT LAYOUT (Imagen-Texto / Texto-Imagen)
   ═══════════════════════════════════════════════════════════ */
.contact-block-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.contact-row-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  gap: 64px;
}

.contact-row-img-wrap {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  height: 100%;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

.contact-row-img-wrap img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-row-text-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (max-width: 768px) {
  .contact-row-item {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .contact-row-img-wrap {
    height: 300px;
  }

  .contact-row-item.reverse-mobile .contact-row-img-wrap {
    order: -1;
  }
}