/* =========================
   VARIABLES (PALETA FINAL)
========================= */
:root {
  /* TEXTO */
  --color-text: #0F2A2E;
  --color-text-soft: #5F6B76;
  --color-text-light: #CFE5DB;

  /* BASE */
  --color-white: #FFFFFF;
  --color-muted: #6B7280;

  /* VERDES (IDENTIDAD) */
  --color-green: #5FAE8A;
  --color-green-medium: #7BC4A4;
  --color-green-light: #A6D9C2;

  /* OSCUROS (CARBÓN) */
  --color-green-dark: #1F3E44;
  --color-green-deep: #0F2A2E;
  --color-green-bg: #0B1F22;

  /* FONDOS */
  --color-bg-soft: #F5F7F6;
  --color-bg-soft-hover: #ECEFED;

  /* BORDES */
  --color-border: #D1D5DB;
  --color-border-light: #E5E7EB;

  /* SOMBRAS */
  --shadow-soft: 0 4px 14px rgba(15, 42, 46, 0.08);
  --shadow-medium: 0 10px 24px rgba(15, 42, 46, 0.15);
}

/* =========================
   RESET
========================= */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--color-text);
  background: var(--color-white);
}

h1, h2, h3, p {
  margin-top: 0;
}

/* =========================
   TÍTULOS
========================= */
h2 {
  font-size: 34px;
  margin-bottom: 20px;
  text-align: center;
  position: relative;
  color: var(--color-text);
}

h2::after {
  content: "";
  display: block;
  width: 46px;
  height: 3px;
  background: var(--color-green);
  margin: 12px auto 0;
}

/* =========================
   HEADER
========================= */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  background: var(--color-white);
  border-bottom: 1px solid var(--color-border-light);
  z-index: 100;
}

.header-inner {
  max-width: 1200px;
  margin: auto;
  padding: 14px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  width: 240px;
  height: auto;
  display: block;
}

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav a {
  text-decoration: none;
  color: var(--color-text);
  font-weight: 500;
  font-size: 15px;
  transition: color 0.2s ease;
}

.nav a:hover {
  color: var(--color-green-dark);
}

/* =========================
   HERO (CARBÓN)
========================= */
.hero {
  padding-top: 80px;
  height: 600px;
  background: url('../img/hero.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  padding-left: 80px;
  padding-right: 80px;
  position: relative;
}

.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(11, 31, 34, 0.85),
    rgba(15, 42, 46, 0.65)
  );
}
.content {
  position: relative;
  max-width: 600px;
  color: var(--color-white);
}
.subtitle {
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-text-light);
  font-weight: 700;
  margin-bottom: 14px;
}
h1 {
  font-size: 50px;
  margin: 18px 0 22px;
  line-height: 1.15;
}
.content p {
  font-size: 18px;
  line-height: 1.7;
  color: #F3F4F6;
}

/* =========================
   HERO BOTONES
========================= */
.hero-buttons {
  display: flex;
  gap: 16px;
  margin-top: 28px;
}

/* =========================
   CÓMO TRABAJAMOS
========================= */
.process {
  padding: 100px 80px;
  background: var(--color-white);
  text-align: center;
}

.process-desc {
  max-width: 740px;
  margin: 0 auto 20px;
  font-size: 18px;
  line-height: 1.6;
  color: var(--color-text-soft);
}

.process-grid {
  max-width: 1200px;
  margin: 60px auto 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 25px;
}

.step {
  position: relative;
  background: var(--color-white);
  padding: 38px 25px 25px;
  border-radius: 8px;
  text-align: left;
  border: 1px solid var(--color-border);
  border-top: 4px solid var(--color-green);
  transition: all 0.2s ease;
  box-shadow: var(--shadow-soft);
}

.step::after {
  content: attr(data-step);
  position: absolute;
  top: 12px;
  right: 15px;
  font-size: 40px;
  font-weight: 800;
  color: #DDE8DF;
}

.step:hover {
  transform: translateY(-4px);
  border-color: var(--color-green-dark);
  box-shadow: var(--shadow-medium);
}

.step h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: var(--color-text);
}

.step p {
  font-size: 14px;
  color: var(--color-text-soft);
  line-height: 1.5;
}

/* =========================
   SERVICIOS
========================= */
.services {
  padding: 100px 80px;
  background: var(--color-bg-soft);
  text-align: center;
}

.services-desc {
  max-width: 740px;
  margin: 0 auto 60px;
  font-size: 18px;
  line-height: 1.6;
  color: var(--color-text-soft);
}

.services-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.service {
  background: var(--color-white);
  padding: 34px;
  border-radius: 8px;
  text-align: left;
  border: 1px solid var(--color-border);
  border-top: 4px solid var(--color-green);
  transition: all 0.2s ease;
  box-shadow: var(--shadow-soft);
}

.service:hover {
  transform: translateY(-4px);
  border-color: var(--color-green-dark);
  box-shadow: var(--shadow-medium);
}

.service h3 {
  margin-bottom: 14px;
  font-size: 22px;
  color: var(--color-text);
}

.service p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text-soft);
  text-align: justify;
}


/* =========================
   PROBLEMAS QUE RESOLVEMOS
========================= */
.problems {
  padding: 100px 80px;
  background: var(--color-white);
  text-align: center;
}

.problems-desc {
  max-width: 760px;
  margin: 0 auto 60px;
  font-size: 18px;
  line-height: 1.6;
  color: var(--color-text-soft);
}

.problems-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.problem-item {
  background: var(--color-bg-soft);
  padding: 28px;
  border-radius: 8px;
  text-align: left;
  border-left: 4px solid var(--color-green);
  transition: all 0.2s ease;
}

.problem-item:hover {
  transform: translateY(-4px);
  background: var(--color-bg-soft-hover);
  box-shadow: var(--shadow-soft);
}

.problem-item h3 {
  margin-bottom: 12px;
  font-size: 20px;
  color: var(--color-text);
}

.problem-item p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--color-text-soft);
}

/* =========================
   POR QUÉ ELEGIR
========================= */
.why {
  padding: 100px 80px;
  background: var(--color-white);
  text-align: center;
}

.why-grid {
  max-width: 1200px;
  margin: 60px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.why-item {
  text-align: left;
  padding: 28px;
  border-left: 4px solid var(--color-green);
  background: var(--color-bg-soft);
  border-radius: 8px;
  transition: all 0.2s ease;
}

.why-item:hover {
  transform: translateY(-4px);
  background: var(--color-bg-soft-hover);
  box-shadow: var(--shadow-soft);
}

.why-item h3 {
  margin-bottom: 12px;
  font-size: 20px;
  color: var(--color-text);
}

.why-item p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--color-text-soft);
}
/* =========================
   CASOS (FINAL AJUSTADO)
========================= */
.cases {
  padding: 100px 80px;
  background: var(--color-bg-soft);
  text-align: center;
}

.cases-desc {
  max-width: 720px;
  margin: 0 auto 50px;
  font-size: 17px;
  line-height: 1.6;
  color: var(--color-text-soft);
}

/* GRID */
.cases-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

/* Casos en grilla regular */
.cases-grid .case:last-child {
  grid-column: auto;
  max-width: none;
  margin: 0;
}

/* CARD */
.case {
  background: var(--color-white);
  padding: 28px;
  text-align: left;

  border: 1px solid var(--color-border);
  border-left: 4px solid var(--color-green);
  border-radius: 8px;

  box-shadow: var(--shadow-soft);
  transition: all 0.2s ease;
}

/* HOVER */
.case:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-medium);
  border-left: 4px solid var(--color-green-dark);
}

/* TITULO */
.case h3 {
  margin-bottom: 12px;
  font-size: 20px;
  line-height: 1.3;
  color: var(--color-text);
}

/* TEXTO */
.case p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--color-text-soft);
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1024px) {
  .cases {
    padding: 80px 40px;
  }

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

  /* reset del centrado en mobile */
  .cases-grid .case:last-child {
    grid-column: span 1;
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .cases {
    padding: 70px 24px;
  }
}
/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1024px) {
  .cases {
    padding: 80px 40px;
  }

  .cases-grid {
    grid-template-columns: 1fr; /* 👈 se ordena perfecto */
  }
}

@media (max-width: 768px) {
  .cases {
    padding: 70px 24px;
  }
}
/* =========================
   EQUIPO
========================= */
.team {
  padding: 100px 80px;
  background: var(--color-white);
  text-align: center;
}

.team h2 {
  color: var(--color-text);
}

.team h2::after {
  background: var(--color-green);
}

.team-desc {
  max-width: 760px;
  margin: 0 auto 60px;
  color: var(--color-text-soft);
  font-size: 18px;
  line-height: 1.6;
}

.team-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
}

.member {
  background: var(--color-bg-soft);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  overflow: hidden;
  text-align: left;
  transition: all 0.2s ease;
  box-shadow: var(--shadow-soft);
}

.member:hover {
  transform: translateY(-4px);
  border-color: var(--color-green);
  box-shadow: var(--shadow-medium);
}

.member img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  object-position: center top;
  display: block;
  border-bottom: 1px solid var(--color-border);
}

.member-info {
  padding: 30px;
}

.member-info h3 {
  margin-top: 0;
  margin-bottom: 8px;
  font-size: 24px;
  color: var(--color-text);
}

.member-role {
  color: var(--color-green-dark);
  font-weight: 700;
  margin-bottom: 18px;
}

.member-info p {
  color: var(--color-text-soft);
  line-height: 1.6;
}

.member-info ul {
  color: var(--color-text);
  padding-left: 20px;
  margin-top: 20px;
}

.member-info li {
  margin-bottom: 8px;
}

.team-note {
  max-width: 760px;
  margin: 45px auto 0;
  font-size: 15px;
  color: var(--color-text-soft);
  line-height: 1.6;
  text-align: center;
}
/* =========================
   CTA FINAL (REFINADO)
========================= */
.cta {
  padding: 110px 40px;
  background: var(--color-green-bg);
  text-align: center;
}

.cta-content {
  max-width: 900px;
  margin: 0 auto;
}

/* TÍTULO */
.cta h2 {
  color: var(--color-white);
}

.cta h2::after {
  background: var(--color-green);
}

/* TEXTO (solo bloque superior) */
.cta-content p {
  max-width: 780px;
  margin: 24px auto 0;
  font-size: 18px;
  line-height: 1.7;
  color: var(--color-text-light);
}

/* FORMULARIO (más liviano) */
.cta-form {
  max-width: 720px;
  margin: 50px auto 0;
  background: var(--color-white);
  padding: 36px;
  border-radius: 8px;

  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);

  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* FILAS */
.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

/* INPUTS */
.cta-form input,
.cta-form textarea {
  width: 100%;
  padding: 14px 15px;
  border-radius: 6px;

  border: 1px solid rgba(0,0,0,0.12);
  background: #FAFBFA;

  color: var(--color-text);
  font-size: 15px;
  transition: all 0.2s ease;
}

/* PLACEHOLDER */
.cta-form input::placeholder,
.cta-form textarea::placeholder {
  color: #9CA3AF;
}

/* FOCUS */
.cta-form input:focus,
.cta-form textarea:focus {
  outline: none;

  border-color: var(--color-green);
  background: var(--color-white);

  box-shadow: 0 0 0 2px rgba(95, 174, 138, 0.18);
}

/* TEXTAREA */
.cta-form textarea {
  resize: vertical;
  min-height: 140px;
}

/* BOTÓN */
.btn-primary {
  background: var(--color-green);
  color: var(--color-white);

  padding: 14px 26px;
  font-weight: 600;

  border-radius: 6px;
  border: none;

  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-primary:hover {
  background: var(--color-green-medium);
  transform: translateY(-1px);
}

/* MICROCOPY (FIX COLOR) */
.cta-form .cta-note {
  font-size: 12px;
  color: var(--color-muted);
  margin-top: 6px;
}

/* ESTADO */
.form-status {
  margin-top: 12px;
  font-size: 14px;
  font-weight: 600;
}

.form-status.ok {
  color: var(--color-green);
}

.form-status.error {
  color: #B91C1C;
}
/* =========================
   BOTÓN PRIMARY
========================= */
.btn-primary {
  background: var(--color-green);
  color: var(--color-white);
  padding: 15px 30px;
  font-weight: 700;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn-primary:hover {
  background: var(--color-green-medium);
}

/* =========================
   ESTADO FORMULARIO
========================= */
.form-status {
  margin-top: 12px;
  font-size: 14px;
  font-weight: 600;
}

.form-status.ok {
  color: var(--color-green-dark);
}

.form-status.error {
  color: #B91C1C;
}

/* =========================
   FOOTER
========================= */
.footer {
  background: var(--color-white);
  padding: 28px 40px 16px;
  border-top: 1px solid var(--color-border-light);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 36px;
}

.footer-logo {
  width: 220px;
  height: auto;
  display: block;
}

.footer-brand p {
  font-size: 14px;
  color: var(--color-text-soft);
  margin-top: 6px;
  margin-bottom: 0;
}

.footer-contact {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 14px;
  color: var(--color-text-soft);
}

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

.footer-contact a:hover {
  color: var(--color-green);
}

.footer-bottom {
  max-width: 1100px;
  margin: 20px auto 0;
  padding-top: 12px;
  border-top: 1px solid var(--color-border-light);
  text-align: center;
  font-size: 12px;
  color: var(--color-text-soft);
}
/* =========================
   RESPONSIVE
========================= */

/* TABLETS */
@media (max-width: 1024px) {

  .header-inner {
    padding: 8px 24px;
  }

  .nav {
    gap: 16px;
  }

  .nav a {
    font-size: 14px;
  }

  .hero {
    padding-left: 50px;
    padding-right: 50px;
  }

  .process,
  .services,
  .problems,
  .why,
  .cases,
  .team {
    padding: 80px 40px;
  }

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

  .services-grid,
  .cases-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }
}

/* MOBILE */
@media (max-width: 768px) {

  /* HEADER */
  .header {
    position: relative;
  }

  .header-inner {
    flex-direction: column;
    gap: 16px;
    padding: 18px 20px;
  }

  .logo {
    height: 54px;
  }

  .nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 18px;
  }

  .nav a {
    font-size: 14px;
  }

  /* HERO */
  .hero {
    height: auto;
    min-height: 560px;
    padding: 80px 24px;
  }

  .content {
    max-width: 100%;
  }

  h1 {
    font-size: 38px;
  }

  h2 {
    font-size: 30px;
  }

  .content p,
  .process-desc,
  .services-desc,
  .cases-desc,
  .team-desc,
  .cta p {
    font-size: 16px;
  }

  /* SECCIONES */
  .process,
  .services,
  .problems,
  .why,
  .cases,
  .team {
    padding: 70px 24px;
  }

  /* GRIDS */
  .process-grid,
  .services-grid,
  .problems-grid,
  .why-grid,
  .cases-grid,
  .team-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  /* CARDS */
  .member img {
    height: 320px;
  }

  /* CTA */
  .cta {
    padding: 80px 24px;
  }

  .cta-form {
    padding: 28px;
  }

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

  /* FOOTER (ARREGLADO) */
  .footer-inner {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .footer-contact {
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 12px;
  }
}

/* MOBILE SMALL */
@media (max-width: 480px) {

  .hero {
    min-height: 520px;
    padding: 70px 20px;
  }

  h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 26px;
  }

  .subtitle {
    font-size: 12px;
    letter-spacing: 2px;
  }

  /* ESPACIADOS */
  .step,
  .service,
  .case,
  .why-item,
  .member-info {
    padding: 24px;
  }

  /* NAV GRID */
  .nav {
    display: grid;
    grid-template-columns: repeat(2, auto);
    gap: 10px 16px;
  }

  .nav a {
    text-align: center;
    padding: 6px 8px;
    border-radius: 4px;
  }

  .nav a:hover {
    background: var(--color-bg-soft);
  }

  /* FOOTER COMPACTO */
  .footer {
    padding: 28px 20px 14px;
  }

  .footer-logo {
    height: 40px;
  }
}
/* =========================
   ABOUT
========================= */
.about {
  max-width: 800px;
  margin: 60px auto;
  padding: 0 40px;
  text-align: center;
}

.about p {
  margin-bottom: 20px;
  color: var(--color-text-soft);
  line-height: 1.6;
}
/* =========================
   HERO INTERNO (MEJORADO)
========================= */
.page-hero {
  position: relative;
  height: 520px;
  background: url('../img/hero.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  padding: 80px;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(11, 31, 34, 0.75); /* MÁS PROFUNDO */
}

.page-hero-content {
  position: relative;
  max-width: 500px;
  color: var(--color-white);
}

.page-hero-content .subtitle {
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--color-green-light);
}

.page-hero-content h1 {
  font-size: 52px; /* MÁS PRESENCIA */
  margin: 14px 0 18px;
  line-height: 1.15;
}

.page-hero-content p {
  font-size: 19px;
  line-height: 1.6;
  color: #F3F4F6;
}


/* =========================
   ABOUT
========================= */
.about {
  padding: 80px 40px 90px;
  background: var(--color-white);
}

.about-container {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.about-lead {
  font-size: 20px;
  line-height: 1.6;
  color: var(--color-text);
  margin-bottom: 26px;
  font-weight: 500;
}

.about p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-text-soft);
  margin-bottom: 22px;
}


/* =========================
   EQUIPO (CON BLOQUE OSCURO)
========================= */
.team-sober {
  padding: 100px 40px;
  background: var(--color-green-bg); /* AQUÍ ESTÁ EL CAMBIO */
}

.team-sober-container {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 56px;

  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 40px;
}

.team-sober-item {
  background: var(--color-white);
  padding: 36px;
  border-radius: 8px;
  border: 1px solid var(--color-border-light);
  box-shadow: var(--shadow-soft);
}

.team-sober-item h3 {
  font-size: 24px;
  margin-bottom: 6px;
  color: var(--color-text);
}

.team-role {
  font-weight: 700;
  color: var(--color-green); /* MÁS VIVO */
  margin-bottom: 18px;
}

.team-sober-item p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-text-soft);
  margin-bottom: 14px;
}

.team-hitos {
  margin: 18px 0 16px;
  padding-left: 20px;
}

.team-hitos li {
  font-size: 15px;
  color: var(--color-text);
  margin-bottom: 7px;
}

.linkedin-link {
  display: inline-block;
  margin-top: 8px;
  font-size: 14px;
  color: var(--color-green);
  font-weight: 700;
  text-decoration: none;
}

.linkedin-link:hover {
  color: var(--color-green-dark);
}


/* =========================
   CTA INTERNO
========================= */
.about-cta {
  padding: 90px 40px;
  text-align: center;
  background: var(--color-white);
}

.about-cta-container {
  max-width: 720px;
  margin: 0 auto;
}

.about-cta p {
  font-size: 18px;
  line-height: 1.6;
  color: var(--color-text);
  margin-bottom: 28px;
}


/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {

  .page-hero {
    height: auto;
    padding: 80px 24px;
  }

  .page-hero-content h1 {
    font-size: 36px;
  }

  .about {
    padding: 60px 24px 70px;
  }

  .team-sober {
    padding: 70px 24px;
  }

  .team-sober-item {
    padding: 28px;
  }

  .about-cta {
    padding: 70px 24px;
  }
}
/* =========================
   ABOUT BOX (DESTACADO)
========================= */
.about-box {
  background: var(--color-bg-soft);
  padding: 40px;
  border-radius: 10px;
  border-left: 4px solid var(--color-green);
  box-shadow: var(--shadow-soft);
  text-align: left;
}

.about-box p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-text-soft);
  margin-bottom: 18px;
}

.about-box .about-lead {
  font-size: 20px;
  color: var(--color-text);
  font-weight: 500;
}
.about-overlap {
  padding-top: 80px;
  margin-top: 0;
  position: relative;
  z-index: 5;
}

.about-overlap .about-box {
  background: var(--color-white);
  border-left: 4px solid var(--color-green);
  box-shadow: 0 14px 34px rgba(15, 42, 46, 0.10);
}
/* =========================
   PÁGINAS DE SERVICIOS
========================= */
.service-section {
  padding: 90px 40px;
  background: var(--color-white);
}

.service-section.alt {
  background: var(--color-bg-soft);
}

.service-container {
  max-width: 820px;
  margin: 0 auto;
}

.service-container h2 {
  text-align: left;
  font-size: 30px;
  margin-bottom: 24px;
}

.service-container h2::after {
  margin-left: 0;
}

.service-container p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--color-text-soft);
  margin-bottom: 18px;
}

.service-steps {
  padding-left: 22px;
  margin: 0;
}

.service-steps li {
  font-size: 17px;
  line-height: 1.7;
  color: var(--color-text);
  margin-bottom: 12px;
}

/* CTA INTERNO SERVICIOS */
.service-cta {
  padding: 90px 40px;
  background: var(--color-green-bg);
  text-align: center;
}

.service-cta-container {
  max-width: 720px;
  margin: 0 auto;
}

.service-cta p {
  font-size: 18px;
  line-height: 1.6;
  color: var(--color-text-light);
  margin-bottom: 28px;
}

/* RESPONSIVE SERVICIOS */
@media (max-width: 768px) {
  .service-section {
    padding: 70px 24px;
  }

  .service-container h2 {
    font-size: 26px;
  }

  .service-container p,
  .service-steps li {
    font-size: 16px;
  }

  .service-cta {
    padding: 70px 24px;
  }
}
/* =========================
   DROPDOWN SERVICIOS
========================= */
.dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.dropdown > a {
  text-decoration: none;
  color: var(--color-text);
  font-weight: 500;
  font-size: 15px;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 250px;
  background: var(--color-white);
  border: 1px solid var(--color-border-light);
  box-shadow: var(--shadow-soft);
  border-radius: 6px;
  padding: 8px 0;
  z-index: 300;
}

.dropdown-menu a {
  display: block;
  padding: 10px 16px;
  color: var(--color-text);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
}

.dropdown-menu a:hover {
  background: var(--color-bg-soft);
  color: var(--color-green-dark);
}

.dropdown:hover .dropdown-menu {
  display: block;
}
/* =========================
   FIX TARJETAS CLICKEABLES
========================= */
a.service {
  display: block;
  text-decoration: none;
  color: inherit;
}

a.service h3,
a.service p {
  text-decoration: none;
}

a.service h3 {
  color: var(--color-text);
}

a.service p {
  color: var(--color-text-soft);
}

a.service:visited,
a.service:active,
a.service:focus {
  color: inherit;
  text-decoration: none;
}

a.service:hover h3 {
  color: var(--color-green-dark);
}
/* =========================
   SERVICIOS — BASE LIMPIA
========================= */

.service-section {
  padding: 90px 40px;
  background: var(--color-white);
}

.service-section.alt {
  background: var(--color-bg-soft);
}

.service-container {
  max-width: 820px;
  margin: 0 auto;
}

/* TITULOS */
.service-container h2 {
  font-size: 30px;
  margin-bottom: 24px;
  color: var(--color-text);
}

/* Quitamos decoración global */
.service-container h2::after {
  display: none;
}

/* TEXTO */
.service-container p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--color-text-soft);
  margin-bottom: 18px;
}

/* =========================
   LISTAS (SIN VIÑETAS)
========================= */

.service-steps {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.service-steps li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 14px;
  font-size: 17px;
  line-height: 1.7;
  color: var(--color-text);
}

.service-steps li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 8px;
  height: 2px;
  background: var(--color-green-dark);
}

/* =========================
   DIFERENCIACIÓN
========================= */

.highlight-service .service-container {
  border-left: 4px solid var(--color-green);
  padding-left: 28px;
}

/* =========================
   CASO
========================= */

.service-case {
  padding-left: 18px;
  border-left: 3px solid var(--color-green);
}

.service-case h3 {
  font-size: 22px;
  margin-bottom: 20px;
  color: var(--color-text);
}

.case-block {
  margin-bottom: 18px;
}

.case-label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--color-green-dark);
  margin-bottom: 6px;
}

.case-block p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-text-soft);
  margin: 0;
}

/* =========================
   CTA
========================= */

.service-cta {
  padding: 90px 40px;
  background: var(--color-green-bg);
  text-align: center;
}

.service-cta-container {
  max-width: 720px;
  margin: 0 auto;
}

.service-cta p {
  font-size: 18px;
  line-height: 1.6;
  color: var(--color-text-light);
  margin-bottom: 28px;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 768px) {

  .service-section {
    padding: 70px 24px;
  }

  .service-container h2 {
    font-size: 26px;
  }

  .service-container p,
  .service-steps li {
    font-size: 16px;
  }

  .highlight-service .service-container {
    padding-left: 20px;
  }
}
/* =========================
   TRUST BAR
========================= */
.trust-bar {
  padding: 18px 40px;
  background: var(--color-bg-soft);
  border-bottom: 1px solid var(--color-border-light);
}

.trust-container {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 34px;
  flex-wrap: wrap;
}

.trust-container span {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-green-dark);
}
/* =========================
   FIX CTA SERVICIOS
========================= */
.service-cta h2 {
  color: var(--color-white);
}

.service-cta h2::after {
  background: var(--color-green);
}