/* =========================
   DALEON BRAND TYPOGRAPHY
   ========================= */
@font-face {
  font-family: "Futuru";
  src: url("tipografias/Futuru-Thin.ttf") format("truetype");
  font-weight: 100;
}
@font-face {
  font-family: "Futuru";
  src: url("tipografias/Futuru-Extralight.ttf") format("truetype");
  font-weight: 200;
}
@font-face {
  font-family: "Futuru";
  src: url("tipografias/Futuru-Light.ttf") format("truetype");
  font-weight: 300;
}
@font-face {
  font-family: "Futuru";
  src: url("tipografias/Futuru-Regular.ttf") format("truetype");
  font-weight: 400;
}
@font-face {
  font-family: "Futuru";
  src: url("tipografias/Futuru-Medium.ttf") format("truetype");
  font-weight: 500;
}
@font-face {
  font-family: "Futuru";
  src: url("tipografias/Futuru-Semibold.ttf") format("truetype");
  font-weight: 600;
}
@font-face {
  font-family: "Futuru";
  src: url("tipografias/Futuru-Bold.ttf") format("truetype");
  font-weight: 700;
}
@font-face {
  font-family: "Futuru";
  src: url("tipografias/Futuru-Black.ttf") format("truetype");
  font-weight: 900;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Futuru", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: #211c1c;
  background-color: #e8e1d8; /* off white brand */
  line-height: 1.6;
  font-size: 17px;
}

/* =========================
   COLOR VARIABLES
   ========================= */
:root {
  --color-black-panther: #211c1c;
  --color-bold-red: #f43216;
  --color-strength-red: #b1000a;
  --color-off-white: #e8e1d8;
  --color-light: #ffffff;

  --max-width: 1120px;
}

/* =========================
   GLOBAL LAYOUT
   ========================= */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1 0.5rem;
}

.section {
  padding: 3.5rem 0;
}

.section-alt {
  background-color: #f3ece2;
}

.section-title {
  font-size: 1.85rem;
  margin-bottom: 1.5rem;
  text-align: center;
}



.section-lead {
  max-width: 700px;
  margin-bottom: 2.5rem;
  font-size: 1.02rem;
  color: #ffffff;
}

/* =========================
   HEADER / NAV
   ========================= */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background-color: rgba(33, 28, 28, 0.96);
  color: var(--color-light);
  backdrop-filter: blur(12px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

/* LOGO */
.logo {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 100px;
  width: auto;
  object-fit: contain;
}

/* NAV GENERAL */
.nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  position: relative;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
}

.nav-list a {
  color: rgba(232, 225, 216, 0.85);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  transition: 0.2s ease;
}

.nav-list a:hover {
  color: var(--color-light);
}

/* DROPDOWN */
.has-dropdown {
  position: relative;
}

.dropdown {
  display: none;
  position: absolute;
  top: 130%;
  left: 0;
  background-color: #2b2525;
  padding: 0.5rem 0;
  border-radius: 0.75rem;
  min-width: 220px;
  list-style: none;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
  z-index: 100;
}

.dropdown li a {
  display: block;
  padding: 0.55rem 1rem;
  font-size: 0.85rem;
  color: rgba(232, 225, 216, 0.92);
}

.dropdown li a:hover {
  background-color: rgba(244, 50, 22, 0.15);
  color: var(--color-light);
}

/* SHOW DROPDOWN DESKTOP */
.has-dropdown:hover .dropdown {
  display: block;
}

/* NAV TOGGLE (MOBILE) */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 0.25rem;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  background-color: var(--color-light);
}

/* =========================
   BUTTONS
   ========================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.6rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.18s ease-out;
}

.btn-small {
  padding: 0.45rem 1rem;
  font-size: 0.8rem;
}

.btn-primary {
  background-color: var(--color-bold-red);
  color: var(--color-light);
}

.btn-primary:hover {
  background-color: var(--color-strength-red);
}

.btn-outline {
  background-color: transparent;
  color: var(--color-light);
  border-color: rgba(232, 225, 216, 0.45);
}

.btn-outline:hover {
  background-color: rgba(232, 225, 216, 0.12);
}

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

.btn-light:hover {
  background-color: #E8E1D8;
}

/* =========================
   HERO — NUEVO DISEÑO
   ========================= */

.hero {
  position: relative;
  overflow: hidden;
  height: 80vh;
  min-height: 620px;
  display: flex;
  align-items: center;
  color: var(--color-light);
}

/* 🎨 Fondo con degradado rojo → negro */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: radial-gradient(
    circle at 80% 50%,
    #000 0%,
    #211c1c 40%,
    #8d0008 85%,
    #B1000A 100%
  );
}

/* Contenedor principal */
.hero-content-wrapper {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: center;
}

/* =========================
   LADO IZQUIERDO
   ========================= */
.hero-left h1 {
  font-size: 3rem;
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 1rem;
  margin-top: 5rem;
}

.hero-subtitle {
  font-size: 1.15rem;
  opacity: 0.9;
  max-width: 520px;
  margin-bottom: 2rem;
}

.hero-cta .btn-primary {
  font-size: 1rem;
  padding: 0.9rem 2rem;
  border-radius: 999px;
}

/* =========================
   VIDEO A LA DERECHA
   ========================= */
.hero-right {
  width: 140%;
  height: 150%;
  border-radius: 1.4rem;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,0.45);
  border: 1px solid rgba(255,255,255,0.1);
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: smoothZoom 14s ease-in-out infinite alternate;
}

@keyframes smoothZoom {
  0% { transform: scale(1); }
  100% { transform: scale(1.08); }
}

/* =========================
   RESPONSIVE
   ========================= */
@media (max-width: 992px) {
  .hero-content-wrapper {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-right {
    height: 45vh;
    margin-top: 1rem;
  }

  .hero-left h1 {
    font-size: 2.3rem;
  }
}

@media (max-width: 768px) {
  .hero {
    height: auto;
    padding: 5rem 0 3rem;
  }
}


/* =========================
   CARDS / GRIDS
   ========================= */
   /* Que la sección What We Do oculte el sobrante del carrusel */
#branches {
  overflow: hidden;
}

.cards-grid {
  display: grid;
  gap: 2rem;
  margin-top: 2.25rem;
}

/* =========================
   SOLUTIONS (ANTES BRANCHES)
   ========================= */

#branches {
  background-color: #211C1C; /* Beige corporativo Daleon */
  padding:3rem 0 4rem;
  position: relative;
}

/* Decoración */
#branches .section-decoration {
  position: absolute;
  top: -30px;
  right: 0;
  width: 180px;
  opacity: 0.22;
  pointer-events: none;
}

/* Título */
#branches .section-title {
  font-size: 2rem;
  font-weight: 600;
  color: #ffffffef;
  margin-bottom: 2rem;
}

/* GRID 2×2 COMPLETAMENTE PEGADO SIN ESPACIOS */
#branches .cards-grid-4 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  padding: 6px; /* ⭐ NECESARIO para que la sombra tenga espacio */
  background: #00000008;
}

/* CARD CUADRADA, SIN BORDES REDONDEADOS, LOOK ENTERPRISE */
#branches .cards-grid-4 .card {
  background-color: #E8E1D8;
  border: 1px solid rgba(0,0,0,0.08);
  min-height: 260px;
  padding: 1.6rem;
  border-radius: 0;
  box-shadow: none;
  transition: all 0.25s ease;
}

/* =========================
   HOVER SOLO CON SOMBRA (SIN CAMBIAR COLOR)
   ========================= */

#branches .cards-grid-4 .card:hover {
  box-shadow: 0 12px 32px rgba(0,0,0,0.22) !important; /* sombra sutil y profesional */
  transform: translateY(-4px);             /* pequeño levantamiento */
  transition: all 0.25s ease;
}

/* Títulos de cada card */
#branches .card h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: #211C1C;
  margin-bottom: 1rem;
}

/* Lista */
#branches .card-list {
  list-style: none;
  padding: 0;
  margin-bottom: 1.2rem;
  font-size: 0.95rem;
  line-height: 1.6rem;
  color: #4a4542;
}

/* CTA */
#branches .card-cta {
  color: #B1000A !important; /* Rojo Daleon */
  font-weight: 600;
  text-decoration: none;
}

#branches .card-cta:hover {
  text-decoration: underline;
}

/* RESPONSIVE */
@media (max-width: 820px) {
  #branches .cards-grid-4 {
    grid-template-columns: 1fr;
  }
}


/* =========================
   CARDS / GRIDS PARA SOLUTIONS
   ========================= */

/* GRID NORMAL (NO ANIMADO, NO CARRUSEL) */
#branches .cards-grid-4 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0; /* Cards pegadas entre sí */
  max-width: 900px;     /* limita el ancho del grid */
  margin: 0 auto;       /* centrado */
}

/* CARD CUADRADA CORPORATIVA */
#branches .cards-grid-4 .card {
  min-width: auto;
  min-height: 320px;
  padding: 2rem;
  background-color: #f5f2ef;

  /* 🔥 SIN BORDES REDONDEADOS */
  border-radius: 0 !important;

  /* 🔥 SIN SOMBRA REDONDEADA FUERTE */
  box-shadow: none;

  /* Línea divisoria suave tipo enterprise */
  border: 1px solid rgba(33, 28, 28, 0.08);

  transition: background 0.2s ease;
}

/* Hover profesional */
#branches .cards-grid-4 .card:hover {
  background-color: #f5f2ef; /* Beige suave Daleon */
  transform: none;           /* Eliminamos 3D */
  box-shadow: none;
}

/* Texto */
#branches .card h3 {
  margin-bottom: 0.75rem;
  font-size: 1.35rem;
  font-weight: 600;
  color: #211C1C;
}

#branches .card-list {
  list-style: none;
  margin-bottom: 1.2rem;
  font-size: 0.95rem;
  line-height: 1.55rem;
  color: #4a4542;
}

#branches .card-list li {
  margin-bottom: 0.35rem;
}

#branches .card-cta {
  color: #000000 !important;
  font-weight: 600;
  font-size: 0.92rem;
  text-decoration: none;
}

#branches .card-cta:hover {
  text-decoration: underline;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  #branches .cards-grid-4 {
    grid-template-columns: 1fr;
  }

  #branches .cards-grid-4 .card {
    min-height: 260px;
    padding: 1.6rem;
  }
}

#branches .container {
  max-width: 1100px;   /* antes usabas 1400+ */
  margin: 0 auto;
  padding: 2rem 1.5rem;
}



/* =========================
   PROCESS
   ========================= */
.process-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1.25rem;
  margin-top: 2.4rem;
}

.process-step {
  background-color: var(--color-light);
  border-radius: 1.25rem;
  padding: 1.4rem;
  position: relative;
  border: 1px solid rgba(33, 28, 28, 0.06);
}

.step-number {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background-color: var(--color-bold-red);
  color: var(--color-light);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  margin-bottom: 0.7rem;
  font-size: 0.9rem;
}

/* =========================
   KPIs — ESTILO TIPO LEGAL SOFT
   ========================= */

#kpis {
  background-color: #ffffff;
  text-align: center;
}

/* Fila de KPIs en horizontal */
.kpi-row {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 0;                        /* sin espacios entre ellos */
  max-width: 900px;
  margin: 2.5rem auto 0;
}

/* Cada KPI */
.kpi-item {
  padding: 0 2.5rem;
  position: relative;
}

/* 🔥 Línea vertical divisoria solo desde el segundo */
.kpi-item + .kpi-item {
  border-left: 1px solid rgba(0, 0, 0, 0.12);
}

/* NÚMERO GRANDE EN AZUL */
.kpi-number {
  font-size: 3.2rem;
  font-weight: 700;
  color: #066BAD;     /* Azul Daleon */
  display: block;
  white-space: nowrap;
  line-height: 1;
  margin-bottom: 0.5rem;
}


/* TEXTO UNDER */
.kpi-label {
  display: block;
  font-size: 1rem;
  font-weight: 400;
  color: #4a4542;
  max-width: 240px;
  margin: 0 auto;
}


/* RESPONSIVE */
@media (max-width: 900px) {
  .kpi-row {
    flex-wrap: wrap;
    row-gap: 1.8rem;
  }

  .kpi-item {
    width: 50%;
    margin-bottom: 1rem;
  }

  .kpi-item + .kpi-item {
    border-left: none;
  }
}

@media (max-width: 600px) {
  .kpi-item {
    width: 100%;
  }

  .kpi-item + .kpi-item {
    border-left: none;
  }
}
.kpi-number {
  display: block;
  font-size: 3rem;
  font-weight: 700;
  color: #066BAD;
  margin-bottom: 0.5rem;
  white-space: nowrap;   /* ⬅️ ESTA ES LA CLAVE */
}

/* =========================
   TWO COLUMN SECTIONS
   ========================= */
.two-column {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
  gap: 2.5rem;
  align-items: flex-start;
}

.about-box {
  background-color: var(--color-light);
  padding: 1.6rem;
  border-radius: 1.25rem;
  border: 1px solid rgba(33, 28, 28, 0.06);
}
/* =========================
   DALEON VS IN-HOUSE – ABOUT PAGE
   ========================= */

.compare-section {
  background: linear-gradient(
    135deg,
    #B1000A 0%,
    #6b2420 30%,
    #3d2020 65%,
    #211C1C 100%
  );
  color: #E8E1D8;
  padding: 5rem 0;
}


.compare-header {
  text-align: center;
  margin-bottom: 3rem;
}

.compare-header .section-title {
  color: #E8E1D8;
  margin-bottom: 0.75rem;
}

.compare-header .section-lead {
  max-width: 38rem;
  margin: 0 auto;
  opacity: 0.9;
}

/* GRID 2 COLUMNAS */
.compare-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.1fr);
  gap: 2.5rem;
  align-items: stretch;
}

/* TARJETAS */
.compare-card {
  padding: 2rem 2.2rem;
}

/* CUADRO BLANCO (DALEON) */
.compare-card-primary {
  background: #E8E1D8;
  color: #211C1C;
  border-radius: 22px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

/* COLUMNA DERECHA SIN CUADRO (MISMO FONDO) */
.compare-card-secondary {
  background: transparent;
  border: none;
  box-shadow: none;
  color: #E8E1D8;
}

/* TÍTULOS DE AMBAS COLUMNAS CENTRADOS */
.compare-title {
  font-size: 1.85rem;
  margin-bottom: 1.5rem;
  text-align: center;
}


/* LISTAS */
.compare-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.1rem;
}

.compare-list h4 {
  font-size: 0.98rem;
  margin-bottom: 0.25rem;
}

.compare-list p {
  font-size: 0.9rem;
  line-height: 1.5;
  opacity: 0.85;
}

/* LISTAS BASE */
.compare-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.1rem;
}

.compare-list h4 {
  font-size: 0.98rem;
  margin-bottom: 0.25rem;
}

.compare-list p {
  font-size: 0.9rem;
  line-height: 1.5;
  opacity: 0.85;
}

/* POSICIÓN DE ICONO PARA AMBAS COLUMNAS */
.compare-card-primary .compare-list li,
.compare-card-secondary .compare-list li {
  position: relative;
  padding-left: 2.4rem;
}

/* CHULOS AZULES – DALEON */
.compare-card-primary .compare-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.15rem;
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 999px;
  background: #066BAD;
  color: #ffffff;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.25);
}

/* EQUIS ROJAS – IN-HOUSE */
.compare-card-secondary .compare-list li::before {
  content: "✕";
  position: absolute;
  left: 0;
  top: 0.15rem;
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 999px;
  background: #F43216;
  color: #ffffff;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.25);
}


/* RESPONSIVE */
@media (max-width: 900px) {
  .compare-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .compare-card {
    padding: 1.75rem 1.6rem;
  }
}

@media (max-width: 600px) {
  .compare-section {
    padding: 4rem 0;
  }

  .compare-header {
    margin-bottom: 2.5rem;
  }
}

/* =========================
   FOOTER
   ========================= */
.footer {
  background-color: var(--color-black-panther);
  color: var(--color-off-white);
  margin-top: 0;
  padding-top: 3.5rem;
  padding-bottom: 2.2rem;
  width: 100%;
}

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

.footer-col h3,
.footer-col h4 {
  color: var(--color-light);
  margin-bottom: 1rem;
  font-weight: 400;
}

.footer-col p {
  max-width: 320px;
  line-height: 1.6;
  font-size: 0.92rem;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 0.4rem;
  font-size: 0.9rem;
}

.footer-col a {
  color: var(--color-off-white);
  text-decoration: none;
}

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

.footer-bottom {
  border-top: 1px solid rgba(232, 225, 216, 0.22);
  margin-top: 2.2rem;
  padding-top: 1rem;
  color: var(--color-off-white);
}

.footer-bottom-inner {
  text-align: center;
  font-size: 0.84rem;
}

.footer-end {
  width: 100%;
  height: 40px;
  background-color: var(--color-black-panther);
}

/* =========================
   BRANCHES PAGE
   ========================= */
.page-hero {
  background:
    radial-gradient(circle at top left, rgba(244, 50, 22, 0.7), #211c1c 60%),
    #211c1c;
  color: var(--color-light);
  padding: 4.2rem 0 3.3rem;
}

.page-hero h1 {
  font-size: 2.3rem;
  margin-bottom: 1rem;
  font-weight: 300;
}

.page-hero-subtitle {
  max-width: 720px;
  font-size: 1.02rem;
  color: rgba(232, 225, 216, 0.9);
  margin-bottom: 2rem;
}

.page-hero-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn-outline-light {
  background-color: transparent;
  color: var(--color-off-white);
  border: 1px solid rgba(232, 225, 216, 0.6);
}

.btn-outline-light:hover {
  background-color: rgba(232, 225, 216, 0.12);
  color: var(--color-light);
}

.branch-section {
  scroll-margin-top: 90px;
}

.branch-title {
  font-size: 1.9rem;
  margin-bottom: 1rem;
  font-weight: 300;
}

.branch-lead {
  font-size: 1.02rem;
  margin-bottom: 1.6rem;
}

.branch-block {
  background-color: var(--color-light);
  border-radius: 1.25rem;
  padding: 1.25rem 1.4rem;
  margin-bottom: 1.1rem;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.branch-block h3 {
  margin-bottom: 0.75rem;
  font-size: 1.02rem;
}

.branch-block ul {
  list-style: none;
}

.branch-block li {
  margin-bottom: 0.4rem;
  padding-left: 1rem;
  position: relative;
  font-size: 0.94rem;
}

.branch-block li::before {
  content: "▹";
  position: absolute;
  left: 0;
  color: var(--color-bold-red);
}

.branch-note {
  font-size: 0.9rem;
  color: #5b544f;
  margin-top: 0.75rem;
}

.branch-aside {
  background-color: #f3ece2;
  border-radius: 1.25rem;
  padding: 1.5rem;
}

.branch-aside h3 {
  margin-bottom: 0.75rem;
  font-size: 1rem;
}

.branch-aside ul {
  list-style: none;
  margin-bottom: 0.75rem;
}

.branch-aside li {
  margin-bottom: 0.4rem;
  font-size: 0.9rem;
}

/* =========================
   CONTACT SECTION
   ========================= */
.contact-section {
  background-color: #f3f0ed;
  padding: 5rem 0;
}

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

.contact-title {
  color: #211c1c;
  font-size: 2rem;
  margin-bottom: 1rem;
  font-weight: 300;
}

.contact-text {
  font-size: 0.98rem;
  margin-bottom: 2rem;
  color: #44403b;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.2rem;
  color: #211c1c;
}

.contact-item a {
  color: var(--color-bold-red);
  text-decoration: none;
}

.contact-item a:hover {
  color: var(--color-black-panther);
}



/* SOCIAL ICONS */
.contact-socials {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.social-icon {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background-color: #f4f1ee;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s;
}

.social-icon img {
  width: 22px;
  height: 22px;
}

.social-icon:hover {
  background-color: var(--color-bold-red);
}

.social-icon:hover img {
  filter: brightness(0) invert(1);
}

/* CONTACT FORM */
.contact-form {
  background-color: #B1000A;
  padding: 2rem;
  border-radius: 1.25rem;
  color: var(--color-light);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

.form-title {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  font-weight: 400;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact-form label {
  font-size: 0.9rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 0.75rem;
  background: transparent;
  color: #fff;
  font-size: 0.9rem;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.75);
}

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

.contact-form label.checkbox {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
}

.contact-form input[type="checkbox"] {
  width: auto;
  accent-color: #fff;
}

.contact-form .btn.full {
  width: 100%;
  background-color: #fff;
  color: var(--color-bold-red);
  font-weight: 600;
}

.contact-form .btn.full:hover {
  background-color: #f4f4f4;
}

.btn.full {
  width: 100%;
  text-align: center;
}

/* =========================
   RESPONSIVE
   ========================= */
@media (max-width: 992px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }

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

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

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

  .process-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .two-column {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 768px) {
  .section {
    padding: 3.7rem 0;
  }

  .hero {
    padding-top: 4.2rem;
  }

  .hero h1 {
    font-size: 2.1rem;
  }

  /* NAV MOBILE */
  .nav {
    display: none;
    position: absolute;
    inset: 72px 0 auto 0;
    background-color: #211c1c;
    border-top: 1px solid rgba(232, 225, 216, 0.14);
    flex-direction: column;
    align-items: flex-start;
    padding: 1.1rem 1.5rem 1.4rem;
    gap: 1rem;
  }

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

  .nav-list {
    flex-direction: column;
    width: 100%;
  }

  .dropdown {
    position: static;
    background: transparent;
    box-shadow: none;
    padding-left: 1rem;
  }

  .nav-toggle {
    display: flex;
  }

  /* GRIDS 1 COL */
  .cards-grid-4,
  .cards-grid-5,
  .cards-grid,
  .feature-grid,
  .process-grid,
  .kpi-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .page-hero {
    padding: 3.2rem 0 2.6rem;
  }

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

  .page-hero-links {
    flex-direction: column;
    align-items: flex-start;
  }
}
/* =========================
   CASE STUDIES - VIDEO BG
   ========================= */

.case-studies {
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
  color: var(--color-light);
}

/* Video */
.cs-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: brightness(0.65) saturate(1.1);
  transform: scale(1.05);
  animation: csZoom 25s ease-in-out infinite alternate;
}

/* Overlay */
.cs-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      150deg,
      rgba(33, 28, 28, 0.92) 0%,
      rgba(33, 28, 28, 0.82) 40%,
      rgba(177, 0, 10, 0.35) 100%
    );
}

/* Content */
.cs-inner {
  position: relative;
  z-index: 2;
  max-width: 850px;
  text-align: left;
}

.cs-inner .section-title {
  font-size: 1.7rem;
  margin-bottom: 1.2rem;
}

.cs-inner .section-lead {
  font-size: 1.1rem;
  color: rgba(232, 225, 216, 0.9);
}

/* Animación suave del video */
@keyframes csZoom {
  0% { transform: scale(1.05); }
  100% { transform: scale(1.12); }
}

/* Responsive */
@media (max-width: 768px) {
  .case-studies {
    padding: 4rem 0;
  }

  .cs-inner .section-title {
    font-size: 1.9rem;
  }
}

/* =========================
   INDUSTRIES GALLERY
========================= */

.industries-gallery {
  padding: 6rem 0;
  background-color: #f7f4f0;
  overflow: hidden;
  position: relative;
}

.industries-track {
  display: flex;
  gap: 2rem;
  padding: 2rem;
  animation: industriesSlide 22s linear infinite;
}

/* Animación horizontal de toda la galería */
@keyframes industriesSlide {
  0% { transform: translateX(-12%); }
  100% { transform: translateX(12%); }
}

/* CARD ESTILO MINIMAL */
.industry-card {
  min-width: 260px;
  padding: 1.8rem;
  background-color: #ffffff;
  border-radius: 1.3rem;
  box-shadow: 0 12px 22px rgba(0,0,0,0.08);
  border: 1px solid rgba(33,28,28,0.07);

  /* Para 3D */
  transform-style: preserve-3d;
  transition: all 0.4s ease;
}

/* TITULO */
.industry-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
  color: #211c1c;
}

/* TEXTO */
.industry-card p {
  color: #444;
  font-size: 0.95rem;
  line-height: 1.45;
}

/* EFECTO 3D */
.industry-card:hover {
  transform: perspective(800px) rotateY(10deg) scale(1.07);
  box-shadow: 0 16px 35px rgba(0,0,0,0.18);
  border-color: rgba(33,28,28,0.15);
}

/* MOBILE */
@media (max-width: 768px) {
  .industries-track {
    animation: industriesSlide 16s linear infinite;
  }

  .industry-card {
    min-width: 220px;
    padding: 1.4rem;
  }
}

/* =========================
   WHAT WE DO — PREMIUM CARDS
========================= */

.cards-grid-4 .card {
  min-height: 360px;            /* 🔥 Más altas */
  padding: 2rem;                /* 🔥 Más espacio interno */
  border-radius: 1.5rem;        /* 🔥 Bordes más suaves */
  background-color: #ffffff;
  box-shadow: 0 12px 28px rgba(0,0,0,0.08);
  border: 1px solid rgba(33, 28, 28, 0.05);
  transition: all 0.35s ease;
  transform-style: preserve-3d;
}

/* Hover elegante */
.cards-grid-4 .card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 18px 40px rgba(0,0,0,0.15);
  border-color: rgba(33, 28, 28, 0.12);
}

/* Títulos */
.cards-grid-4 .card h3 {
  font-size: 3rem;        /* tamaño del texto */
  font-weight: 700;
  padding: 0.8rem 1.4rem; /* tamaño del subrayado */
  display: inline-block;
  border-radius: 8px;
  margin-bottom: 1rem;
}


/* Tagline */
.cards-grid-4 .card-tagline {
  font-size: 1rem;
  margin-bottom: 2rem;
  color: #444;
}

/* Listas */
.cards-grid-4 .card-list li {
  font-size: 0.97rem;
  margin-bottom: 0.45rem;
}

/* CTA dentro de la card */
.cards-grid-4 .card-cta {
  display: inline-block;
  margin-top: 1.2rem;
  font-weight: 600;
  color: var(--color-primary);
  text-decoration: none;
  transition: color 0.2s ease;
}

.cards-grid-4 .card-cta:hover {
  color: #8d0008;
}

h1 { font-size: 2.9rem; }
h2 { font-size: 2.2rem; }
/*h3 { font-size: 1.4rem; }*/
p  { font-size: 1.08rem; }

html {
  font-size: 110%;
}
/* =========================
   SCROLL REVEAL – SOLUTIONS
========================= */

/* Estado inicial: ocultas y un poquito abajo */
#branches .cards-grid-4 .card {
  opacity: 0;
  transform: translateY(12px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease,
    box-shadow 0.25s ease;
}

/* Cuando se vuelven visibles al hacer scroll */
#branches .cards-grid-4 .card.is-visible {
  opacity: 1;
  transform: translateY(0);
}



/* =========================
   IMÁGENES DECORATIVAS EN SECCIONES
   ========================= */

.section {
  position: relative; /* NECESARIO para que la imagen se posicione dentro */
}

/* Imagen decorativa minimalista y pequeña */
.section-decoration {
  position: absolute;
  top: 24px;
  right: 28px;
  max-width: 58px;
  opacity: 0.25; /* ← SUBE ESTA CIFRA PARA MÁS OSCURIDAD */
  filter: brightness(0.75); /* 0.75 = un poco más oscuro */
  pointer-events: none;
  user-select: none;

  filter: drop-shadow(0px 1px 2px rgba(0,0,0,0.05));
}

/* =========================
   STATEMENT SECTION (Lean Style)
   ========================= */

/* LOGO */
.isotipo {
  display: flex;
  align-items: center;
}

.isotipo-img {
  height: 60px;
  width: auto;
  object-fit: contain;
}
.statement-section {
  background-color: #ffffff; /* negro Daleon */
  padding: 1rem 0;
  text-align: center;
  color: #B1000A;
}

.statement-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.statement-subtitle {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  color: rgba(0, 0, 0, 0.925);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.statement-title {
  font-size: 2.6rem;
  line-height: 1.25;
  margin-bottom: 3rem;
  font-weight: 600;
  color: #211c1c;
}

.statement-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--color-primary); /* rojo Daleon */
  font-size: 1.1rem;
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid transparent;
  transition: all 0.2s ease;
}

.statement-link:hover {
  border-color: var(--color-primary);
  transform: translateY(-2px);
}

/* =========================
   BLUE HIGHLIGHT TITLE
   ========================= */

.highlight-title-blue span {
  background: #066BAD;  /* azul brillante estilo Lean */
  color: #fff;
  padding: 0.05rem 0.3rem;
  line-height: 1.25;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone; /* Safari */
  border-radius: 6px;
  display: inline;
}

.highlight-title-red span {
  background: #B1000A;  /* azul brillante estilo Lean */
  color: #fff;
  padding: 0.05rem 0.3rem;
  line-height: 1.25;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone; /* Safari */
  border-radius: 6px;
  display: inline;
}
/* =========================
   COLORES ESPECIALES PARA 2 CARDS
   ========================= */

#legal {
  background-color: #ffffff !important;
}
#bpo {
  background-color: #ffffff !important;  
}

/* =========================
   CAREERS — Premium Daleon
========================= */

.careers {
  background: linear-gradient(120deg, #211C1C 0%, #B1000A 100%);
  padding: 6rem 0;
  color: #fff;
}

.careers-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
}

.careers-title {
  font-size: 2.6rem;
  font-weight: 700;
  margin-bottom: 1.8rem;
}

.careers-text {
  font-size: 1.15rem;
  line-height: 1.65;
  opacity: 0.92;
  margin-bottom: 2rem;
}

.careers-questions {
  margin: 2.5rem 0;
  padding-left: 1rem;
  border-left: 4px solid #E8E1D8;
}

.careers-questions p {
  font-size: 1.25rem;
  margin-bottom: 0.8rem;
  font-weight: 600;
}

.careers-btn {
  display: inline-block;
  margin-top: 2.5rem;
  background-color: #E8E1D8;
  color: #211C1C;
  padding: 0.9rem 2rem;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.25s ease;
}

.careers-btn:hover {
  background-color: #ffffff;
  transform: translateY(-3px);
}

/* =============================
   CAREERS – LAYOUT Y ESTILO
============================= */

.careers {
  /* fondo degradado Daleon */
  background: radial-gradient(circle at top left, #B1000A 0%, #211C1C 55%, #000000 100%);
  padding: 4rem 0 4.5rem;   /* sección un poco más pequeña */
  color: #ffffff;
}

/* Grid 2 columnas: texto izquierda, fotos derecha */
.careers-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  column-gap: 3rem;
  align-items: center;
}

/* BLOQUE DE TEXTO */
.careers-copy {
  max-width: 640px;
}

.careers-kicker {
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.8;
}

.careers-title {
  font-size: 2.4rem;
  margin: 0.7rem 0 1.2rem;
}

.careers-text {
  font-size: 1.03rem;
  line-height: 1.7;
  opacity: 0.94;
  margin-bottom: 0.7rem;
}

/* Preguntas resaltadas */
.careers-question {
  font-size: 1.05rem;
  font-weight: 600;
  margin-top: 0.35rem;
  margin-bottom: 0.15rem;
}

/* Botón */
.careers-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 1rem;
  padding: 0.9rem 2.3rem;
  border-radius: 999px;
  background-color: #E8E1D8;
  color:  #211C1C;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.98rem;
  box-shadow: 0 12px 30px rgba(0,0,0,0.35);
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.careers-btn:hover {
  background-color: #B1000A;
  color:  #E8E1D8;
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.45);
}

/* COLUMNA DERECHA – IMÁGENES */
.careers-media {
  display: flex;
  flex-direction: column;
  gap: 0;              /* 🔥 juntas, sin espacio */
}

.careers-photo {
  width: 100%;
  height: 230px;       /* controlamos altura para que no se deformen */
  object-fit: cover;   /* recorta sin aplastar la imagen */
  border-radius: 0;    /* sin bordes redondeados */
  display: block;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .careers-grid {
    grid-template-columns: 1fr;
    row-gap: 2.5rem;
  }

  /* imágenes arriba en móvil (opcional) */
  .careers-media {
    order: -1;
  }

  .careers-photo {
    height: 210px;
  }

  .careers-title {
    font-size: 2rem;
  }
}
/* Barrita vertical elegante para el bloque de texto */
.careers-copy {
  position: relative;
  padding-left: 1.6rem;
}

.careers-copy::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.4rem;
  bottom: 0.4rem;
  width: 3px;
  border-radius: 999px;
  background: linear-gradient(#ffffff, #cac5bd);
  opacity: 0.95;
}


/* =========================
   FADE-UP STAGGER
========================= */

.fade-up {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}
/* Estados inicial/final para la animación de Careers */

.careers-line {
  opacity: 0;
  transform: translateY(26px) scale(0.98);
  filter: blur(6px);
  transition:
    opacity 0.7s cubic-bezier(0.19, 1, 0.22, 1),
    transform 0.7s cubic-bezier(0.19, 1, 0.22, 1),
    filter 0.7s ease;
}

.careers-line.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

/* ============================
   ICONOS PARA TITULOS DE SOLUTIONS
============================ */

/* ICONOS CON IMAGENES PARA TITULOS */

#branches .card h3 {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  font-size: 1.35rem;
}

#legal h3::before,
#marketing h3::before,
#sales h3::before,
#bpo h3::before {
  content: "";
  display: inline-block;
  width: 36px;
  height: 36px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

/* Iconos específicos */
#legal h3::before {
  background-image: url("img/legal.png");
}

#marketing h3::before {
  background-image: url("img/marketing.png");
}

#sales h3::before {
  background-image: url("img/sales.png");
}

#bpo h3::before {
  background-image: url("img/BPO.png");
}

/* =========================
   GROWTH SECTION
   ========================= */

.growth-section {
  background: #211c1c; /* negro Daleon */
  color: var(--color-light);
  padding: 5rem 0;
}

.growth-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.3fr);
  gap: 3rem;
  align-items: center;
}

/* LADO IZQUIERDO */

.growth-title {
  font-size: 2.3rem;
  line-height: 1.15;
  margin-bottom: 1.2rem;
}

.growth-title span {
  color: #B1000A; /* rojo Daleon brillante */
}

.growth-text {
  max-width: 460px;
  font-size: 1.02rem;
  color: rgba(232, 225, 216, 0.85);
  margin-bottom: 1.8rem;
}

.growth-btn-send {
  padding-inline: 1.9rem;
  background-color:  #E8E1D8;
  color: #000000;
}
.growth-btn-send:hover{
  background-color: #E8E1D8;
  color:  #B1000A;
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.45);
}

.growth-btn {
  padding-inline: 1.9rem;
  background-color:  #B1000A;
  color: #E8E1D8;
}
.growth-btn:hover {
  background-color: #ffffff;
  color:  #000000;
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.45);
}


/* LADO DERECHO: CARDS */

.growth-right {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.growth-card {
  background: rgba(232, 225, 216, 0.06);          /* panel suave */
  border: 1px solid rgba(232, 225, 216, 0.18);
  border-radius: 1.1rem;
  padding: 1.4rem 1.6rem;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.22);
  transition: transform 0.18s ease, box-shadow 0.18s ease,
              border-color 0.18s ease, background 0.18s ease;
}

.growth-card h3 {
  font-size: 1rem;
  margin-bottom: 0.4rem;
  color: #ffffff;
}

.growth-card p {
  font-size: 0.95rem;
  color: rgba(232, 225, 216, 0.85);
}

/* Hover sutil y profesional */
.growth-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.30);
  border-color: rgba(244, 50, 22, 0.6);
  background: rgba(232, 225, 216, 0.08);
}

/* RESPONSIVE */

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

  .growth-left {
    text-align: left;
  }

  .growth-text {
    max-width: none;
  }
}
/* FINAL CTA — VERSION CASE STUDIES */
.final-cta.cs-style {
  position: relative;
  padding: 6rem 0;
  color: #E8E1D8;
  text-align: center;
  overflow: hidden;
}
/* Video background */
.final-cta.cs-style .cs-bg-video {
  opacity: 0.30; /* antes 1 */

}


.final-cta.cs-style .cs-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      150deg,
      rgba(33, 28, 28, 0.92) 0%,
      rgba(33, 28, 28, 0.82) 30%,
      rgba(177, 0, 9, 0.192) 100%
    );
}


.final-cta-title {
  font-size: clamp(2rem, 5vw, 2.8rem);
  margin-bottom: 1rem;
  color: #E8E1D8;
}

.final-cta-subtitle {
  max-width: 40rem;
  margin: 0 auto 2rem;
  font-size: 1rem;
  color: #E8E1D8;
  opacity: 0.95;
}
.final-cta.cs-style .btn-light {
  background-color: #E8E1D8;
  color: #211C1C;
  padding: 0.9rem 2rem;
  border: none;
  transition: 0.25s ease;
}
/* Centrado completo del contenido del FINAL CTA */
.final-cta.cs-style {
  display: flex;
  justify-content: center;   /* Centra horizontal */
  align-items: center;       /* Centra vertical */
  text-align: center;        /* Centra el texto */
  padding: 6rem 0;           /* Puedes ajustar si quieres más espacio */
}

.final-cta.cs-style .cs-inner {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem; /* Espacio entre título, texto y botón */
}

/* =========================
   NEW CASE STUDIES LAYOUT
   ========================= */

.case-studies {
  padding: 4rem 0 4rem;
  background-color: #211C1C;
}

.case-studies .section-title.center,
.case-studies-text.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.case-studies-text.center {
  max-width: 40rem;
  margin-bottom: 3rem;
}

/* GRID DE 2 CARDS */
.case-studies-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2.5rem;
  margin-bottom: 3rem;
}

/* CARD */
.case-card {
  background: #E8E1D8;
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.06);
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.case-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.12);
}

.case-card-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}


/* TEXTO */
.case-card-content {
  padding: 1.5rem 1.8rem;
  color: #211C1C;
}

.case-card-content h3 {
  font-size: 1.2rem;
  margin-bottom: 0.4rem;
  color: #211C1C;
}

.case-card-content p {
  font-size: 0.98rem;
  opacity: 0.9;
  line-height: 1.55;
}

/* BOTÓN */
.case-studies .btn-primary {
  margin-top: 1rem;
  padding-inline: 2.2rem;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .case-studies-cards {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .case-card-img {
    height: 220px;
  }
}


/* =========================
   ABOUT / WHY DALEON
   ========================= */

.page-about {
  background-color: var(--color-bg, #E8E1D8);
  color: var(--color-dark, #211C1C);
}

/* Subpage hero */
.subpage-hero {
  padding: 6rem 0 4rem;
  background: linear-gradient(135deg, #B1000A 0%, #211C1C 70%);
  color: #E8E1D8;
}

.subpage-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1.5fr);
  gap: 3rem;
  align-items: flex-start;
}

.subpage-hero-text h1 {
  font-size: clamp(2.4rem, 3vw, 3.2rem);
  line-height: 1.1;
  margin-bottom: 1rem;
}

.subpage-hero-desc {
  max-width: 32rem;
  opacity: 0.9;
}

.subpage-hero .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  margin-bottom: 0.5rem;
  opacity: 0.85;
}

.subpage-hero-meta {
  border-left: 1px solid rgba(232, 225, 216, 0.3);
  padding-left: 1.5rem;
  display: grid;
  gap: 1rem;
}

.meta-item {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.meta-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  opacity: 0.7;
}

.meta-value {
  font-size: 0.9rem;
}

/* About layout */
.section.about-section {
  padding: 4rem 0;
  background-color: #E8E1D8;
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1.2fr);
  gap: 3rem;
  align-items: flex-start;
}

/* Línea vertical decorativa para WHO WE ARE */
.about-copy-lined {
  position: relative;
  padding-left: 1.5rem;
}

.about-copy-lined::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.25rem;
  width: 2px;
  height: calc(100% - 0.5rem);
  background-color: #F43216;
  opacity: 0.9;
  border-radius: 1px;
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.6s ease-out;
}

/* cuando el observer agrega .reveal-visible */
.about-copy-lined.reveal-visible::before {
  transform: scaleY(1);
}


.about-facts-card {
  background-color: #fff;
  border: 1px solid rgba(33, 28, 28, 0.08);
  padding: 1.8rem;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.05);
  border-radius: 14px;
  grid-column: 1 / 2;
  max-width: 580px;
  margin-top: 1.5rem;
}

.about-facts-card h3 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.about-facts-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.about-facts-card li {
  position: relative;
  padding-left: 1.2rem;
  font-size: 0.95rem;
  line-height: 1.5;
}

.about-facts-card li + li {
  margin-top: 0.5rem;
}

.about-facts-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 6px;
  height: 6px;
  background-color: #F43216;
}

/* =========================
   ABOUT – CORE VALUES (MARQUEE)
   ========================= */

/* CORE VALUES – Carrusel horizontal */
.about-pillars {
  padding: 4rem 0;
  background-color: #211C1C;
  color: #E8E1D8;
  overflow-x: hidden;  /* ocultamos solo lo horizontal */
  overflow-y: visible; /* dejamos ver el brillo completo arriba/abajo */
}

.about-pillars .section-header {
  max-width: 40rem;
  margin-bottom: 2.5rem;
}

/* Pista que se mueve */
.pillars-track {
  display: flex;
  gap: 1.5rem;
  animation: pillars-marquee 15s linear infinite;
}

/* Cada card */
.pillar-card {
  flex: 0 0 min(280px, 80vw); /* ancho fijo, pero responsive */
  background-color: #211C1C;
  padding: 1.8rem;
  border-radius: 18px;
  box-shadow:
    0 0 0 1px rgba(244, 50, 22, 0.55),
    0 0 35px #211C1C;
  overflow: hidden;       /* el contenido no se sale */
  box-sizing: border-box; /* paddings incluidos en el ancho */
}

/* Títulos dentro del card */
.pillar-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.75rem;
}

/* Texto dentro del card → que envuelva bien */
.pillar-card p {
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0;
  white-space: normal; /* FORZAMOS saltos de línea */
}

/* Animación del carrusel */
@keyframes pillars-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* Responsive */
@media (max-width: 700px) {
  .pillar-card {
    flex: 0 0 85vw; /* cards un poco más anchos en móvil */
    padding: 1.5rem;
  }
}



/* Hover sutil */
.pillar-card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 0 0 1px rgba(244, 50, 22, 0.85),
    0 0 26px rgba(244, 50, 22, 0.65);
  transition: transform 0.22s ease-out, box-shadow 0.22s ease-out;
}

/* Pausar animación al pasar el mouse (para poder leer) */
.pillars-marquee:hover .pillars-track {
  animation-play-state: paused;
}

/* Animación del loop hacia la izquierda */
@keyframes pillarsScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    /* se mueve lo suficiente para que entren los duplicados */
    transform: translateX(-50%);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .pillar-card {
    min-width: 220px;
    padding: 1.5rem;
  }

  .pillars-track {
    animation-duration: 36s; /* un poco más lento en móvil */
  }
}


/* Why Daleon */
.why-daleon {
  padding: 4.5rem 0 5.5rem;
  background-color: #E8E1D8; /* mantenemos el mismo fondo */
}

.why-daleon .section-header {
  max-width: 40rem;
  margin-bottom: 2.8rem;
}

.why-daleon .section-header h2 {
  font-size: 1.9rem;
  margin-bottom: 0.75rem;
}

.why-daleon .section-header p {
  font-size: 0.98rem;
  line-height: 1.6;
  opacity: 0.9;
}

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

/* tarjetas estilo Mission & Vision */
.why-card {
  position: relative;
  background-color: #fff;
  border-radius: 1.25rem;
  padding: 2rem 2.1rem;
  border: 1px solid rgba(33, 28, 28, 0.08);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  transition:
    transform 220ms ease-out,
    box-shadow 220ms ease-out,
    border-color 220ms ease-out;
}

/* pequeño acento superior tipo “premium” */
.why-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border-top: 3px solid var(--dl-red, #B1000A);
  pointer-events: none;
  opacity: 0.9;
}

.why-card h3 {
  font-size: 1.08rem;
  margin-bottom: 0.85rem;
}

.why-card p {
  font-size: 0.97rem;
  line-height: 1.6;
  opacity: 0.92;
}

/* hover suave tipo sección Mission & Vision */
.why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.10);
  border-color: rgba(33, 28, 28, 0.16);
}

/* Responsive */
@media (max-width: 960px) {
  .subpage-hero-inner,
  .about-layout,
  .pillars-grid,
  .why-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .why-daleon {
    padding: 3.8rem 0 4.5rem;
  }

  .why-daleon .section-header {
    margin-bottom: 2.1rem;
  }
}

@media (max-width: 600px) {
  .subpage-hero {
    padding: 4.5rem 0 3rem;
  }

  .about-facts-card,
  .pillar-card,
  .why-card {
    padding: 1.5rem 1.6rem;
  }

  .why-daleon .section-header h2 {
    font-size: 1.6rem;
  }
}

/* =========================
   ABOUT – WHO WE ARE (TIMELINE)
   ========================= */

.about-lead {
  font-size: 1rem;
  line-height: 1.7;
  opacity: 0.95;
}

.about-units {
  list-style: none;
  padding: 0;
  margin: 1rem 0 1rem;
}

.about-units li {
  position: relative;
  padding-left: 1rem;
  font-size: 0.95rem;
  line-height: 1.5;
}

.about-units li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: #F43216;
}

/* Columna derecha – timeline card */

.about-facts {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.about-timeline-card {
  background: #fff;
  border: 1px solid rgba(33, 28, 28, 0.08);
  padding: 1.8rem;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.05);
  border-radius: 14px;
  margin-top: auto;
}

.about-timeline-title {
  font-size: 1.05rem;
  margin-bottom: 1rem;
}

/* Lista vertical tipo timeline */

.about-timeline {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
}

.timeline-step {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  column-gap: 1rem;
  align-items: flex-start;
  padding-bottom: 1.25rem;
  position: relative;
}

.timeline-step:last-child {
  padding-bottom: 0;
}

.timeline-index {
  min-width: 2.2rem;
  height: 2.2rem;
  border-radius: 999px;
  border: 1px solid #F43216;
  color: #F43216;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  margin-top: 0.2rem;
  position: relative;
}

/* Línea vertical del timeline */
.timeline-step::before {
  content: "";
  position: absolute;
  left: 1.1rem; /* alineado al centro del círculo */
  top: 2.4rem;
  width: 1px;
  bottom: -0.2rem;
  background: linear-gradient(
    to bottom,
    rgba(33, 28, 28, 0.18),
    rgba(33, 28, 28, 0.05)
  );
}

.timeline-step:last-child::before {
  display: none;
}

.timeline-content h4 {
  font-size: 0.98rem;
  margin-bottom: 0.25rem;
}

.timeline-content p {
  font-size: 0.9rem;
  line-height: 1.5;
  opacity: 0.9;
}



/* =========================
   ABOUT – MISSION & VISION
   ========================= */

.about-mv-section {
  padding: 4rem 0 4.5rem;
  background: radial-gradient(
    circle at top left,
    #3a1917 0%,
    #211C1C 45%,
    #181111 100%
  );
  color: #E8E1D8;
}

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

.about-mv-card {
  background: rgba(8, 8, 8, 0.4);
  border-radius: 18px;
  border: 1px solid rgba(232, 225, 216, 0.15);
  padding: 2rem 2.2rem;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(12px);
}

.mv-kicker {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.74rem;
  color: #F43216;
  display: inline-block;
  margin-bottom: 0.4rem;
}

.mv-title {
  font-size: 1.3rem;
  margin-bottom: 0.9rem;
}

.about-mv-card p {
  font-size: 0.95rem;
  line-height: 1.7;
  opacity: 0.95;
}

.mv-bullets {
  margin: 1rem 0 0.8rem;
  padding-left: 1.1rem;
}

.mv-bullets li {
  font-size: 0.92rem;
  line-height: 1.5;
  margin-bottom: 0.3rem;
}

.mv-foot {
  margin-top: 0.6rem;
  font-size: 0.9rem;
  opacity: 0.9;
}

/* Responsive para About timeline + M/V */
@media (max-width: 960px) {
  .about-mv-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .about-mv-card {
    padding: 1.7rem 1.8rem;
  }
}


/* =========================
   SCROLL REVEAL – GLOBAL
   ========================= */

.reveal {
  opacity: 0;
  transform: translateY(28px) scale(0.98);
  transition:
    opacity 0.7s ease-out,
    transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

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


.flow-card,
.about-mv-card,
.about-why .about-promise {
  backdrop-filter: blur(10px);
}

/* micro-hover muy sutil en tarjetas */
.flow-card:hover,
.about-mv-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.65);
  transition: transform 0.25s ease-out, box-shadow 0.25s ease-out;
}
.about-intro-photo.parallax {
  transform-origin: center center;
  transition: transform 0.4s ease-out;
}
/* --- FINAL CTA OSCURA (sin video) --- */
.final-cta-dark {
  background: linear-gradient(
    180deg,
    #211C1C 0%,
    #1a1414 60%,
    #100d0d 100%
  );
  padding: 6rem 0;
  text-align: center;
  position: relative;
}

.final-cta-dark .final-cta-title {
  color: #E8E1D8;
  margin-bottom: 1rem;
}

.final-cta-dark .final-cta-subtitle {
  color: #cfc8c1;
  max-width: 560px;
  margin: 0 auto 2rem;
  font-size: 1.05rem;
  line-height: 1.7;
}
/* --- FINAL CTA OSCURA (sin video) --- */
.final-cta-dark {
  background: radial-gradient(circle at top center, #131212 0%, #211C1C 40%, #000000 100%);
  padding: 6rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Sutil halo detrás del contenido (tipo glow Daleon) */
.final-cta-dark::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 520px;
  height: 520px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(0, 0, 0, 0.28), transparent 60%);
  opacity: 0.8;
  pointer-events: none;
}

/* Asegura que el contenido esté por encima del glow */
.final-cta-dark .cs-inner {
  position: relative;
  z-index: 1;
}

.final-cta-dark .final-cta-title {
  color: #E8E1D8;
  margin-bottom: 1rem;
}

.final-cta-dark .final-cta-subtitle {
  color: #cfc8c1;
  max-width: 560px;
  margin: 0 auto 2rem;
  font-size: 1.05rem;
  line-height: 1.7;
}

/* ==== CTA FINAL COMPACTA ==== */
.final-cta.cs-style {
  padding: 2.5rem 0 3rem;           /* antes 6rem 0 → más bajita */
  position: relative;
  overflow: hidden;
}

.final-cta-title {
  font-size: 1.7rem;                /* más pequeño que el clamp anterior */
  margin-bottom: 0.6rem;
  font-weight: 400;
  color: #E8E1D8;
}

.final-cta-subtitle {
  max-width: 32rem;                 /* más estrecho → bloque más compacto */
  margin: 0 auto 1.2rem;            /* menos espacio abajo */
  font-size: 0.95rem;
  color: #E8E1D8;
  opacity: 0.95;
}

.final-cta.cs-style .btn-light {
  padding: 0.6rem 1.6rem;
  font-size: 0.95rem;
}

/* ============================
   FIX PARA REMOVER ICONOS DE LOS H3 EN BRANCHES.HTML
   ============================ */

/* Elimina cualquier icono o pseudo-elemento que el CSS haya agregado */
.branch-section h3::before,
.branch-section h3::after {
  content: none !important;
  background: none !important;
  display: none !important;
}

/* Asegura que NO se inserte ningún background por accidente */
.branch-section h3 {
  background-image: none !important;
  padding-left: 0 !important;
}

