/*
    CONECTA - CONEXIONES SANITARIAS
    CSS PRINCIPAL
    OBJETIVOS:
    - Landing orientada a conversión
    - SEO-friendly
    - Google Search
    - Google Ads
    - WhatsApp
    - Llamadas telefónicas
    - Responsive
    - Bootstrap 5
    - Fácil mantenimiento
    NO contiene estilos de formulario porque la landing
    no utiliza formularios.
*/
/* =========================================================
   VARIABLES
   ========================================================= */
:root {
  --azul: #0867d9;
  --azul-hover: #0759bd;
  --azul-oscuro: #061b38;
  --azul-footer: #031a35;
  --azul-claro: #eef5ff;
  --texto: #09234a;
  --texto-secundario: #64748b;
  --gris-borde: #e2e8f0;
  --gris-fondo: #f5f8fc;
  --blanco: #ffffff;
  --verde-whatsapp: #25d366;
  --radio: 8px;
  --sombra: 0 15px 40px rgba(0, 35, 80, 0.1);
  --transicion: 0.25s ease;
}
/* =========================================================
   GENERAL
   ========================================================= */

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  color: var(--texto);
  background: var(--blanco);
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
}

section {
  scroll-margin-top: 90px;
}
::selection {
  background: var(--azul);
  color: var(--blanco);
}
/* =========================================================
   TIPOGRAFÍA
   ========================================================= */

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

h2 {
  font-weight: 700;
}

p {
  line-height: 1.7;
}
/* =========================================================
   NAVBAR
   ========================================================= */
.navbar {
  min-height: 80px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
  z-index: 1000;
  transition:
    box-shadow var(--transicion),
    min-height var(--transicion);
}
.navbar.scrolled {
  min-height: 68px;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.1);
}
.navbar-brand {
  padding: 0;
}
.logo-img {
  width: 220px;
  height: auto;
  object-fit: contain;
}
.navbar-nav .nav-link {
  position: relative;
  padding: 10px 16px !important;
  color: #172033;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}
.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 3px;
  height: 2px;
  background: var(--azul);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--transicion);
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--azul);
}
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  transform: scaleX(1);
}
/* =========================================================
   BOTONES
   ========================================================= */
.btn-primary {
  background: var(--azul);
  border-color: var(--azul);
}
.btn-primary:hover,
.btn-primary:focus {
  background: var(--azul-hover);
  border-color: var(--azul-hover);
}
.btn {
  font-weight: 700;
  transition:
    background-color var(--transicion),
    border-color var(--transicion),
    transform var(--transicion),
    box-shadow var(--transicion);
}
.btn:hover {
  transform: translateY(-1px);
}
.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 13px 20px;
  border-radius: 5px;
  font-size: 11px;
}
.btn-cta i {
  font-size: 17px;
}
/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  min-height: 680px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--azul-oscuro);
}
.hero-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    90deg,
    rgba(3, 18, 40, 0.98) 0%,
    rgba(3, 18, 40, 0.94) 35%,
    rgba(3, 18, 40, 0.65) 57%,
    rgba(3, 18, 40, 0.15) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  min-height: 680px;
  padding-top: 100px;
  padding-bottom: 25px;
}
.hero-text {
  max-width: 720px;
}
.eyebrow,
.section-eyebrow {
  display: block;
  margin-bottom: 12px;
  color: var(--azul);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.8px;
}
.hero .eyebrow {
  color: #55a0ff;
}
.hero h1 {
  margin-bottom: 25px;
  color: var(--blanco);
  font-size: clamp(42px, 5vw, 66px);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.8px;
}
.hero h1 span {
  display: block;
  color: #1680ff;
}
.hero-description {
  max-width: 610px;
  margin-bottom: 27px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 19px;
  line-height: 1.6;
}
.hero-description strong {
  color: #ffffff;
}
.hero-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 25px;
  margin-bottom: 30px;
  color: var(--blanco);
  font-size: 12px;
  font-weight: 500;
}
.hero-benefits i {
  margin-right: 5px;
  color: #1680ff;
  font-size: 15px;
}
/* CTA PRINCIPAL */
.btn-hero {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 13px 30px;
  border-radius: 5px;
  font-size: 13px;
}
.btn-hero i {
  font-size: 22px;
}
/* CTA LLAMADA */
.btn-phone-hero {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 54px;
  margin-left: 8px;
  padding: 13px 25px;
  border-radius: 5px;
  font-size: 12px;
}
.btn-phone-hero i {
  font-size: 17px;
}
.hero-note {
  margin-top: 15px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 11px;
}
.hero-note i {
  margin-right: 5px;
  color: #ffffff;
  font-size: 16px;
}
/* =========================================================
   SECCIONES
   ========================================================= */
.section {
  padding: 75px 0;
}
.section-title {
  max-width: 760px;
  margin: 0 auto 50px;
  text-align: center;
}
.section-title h2 {
  margin-bottom: 14px;
  font-size: 30px;
  line-height: 1.2;
}
.section-title p {
  max-width: 620px;
  margin: 0 auto;
  color: var(--texto-secundario);
  font-size: 14px;
}
/* =========================================================
   PROCESO
   ========================================================= */
.process-section {
  background: var(--blanco);
}
.process-item {
  height: 100%;
  padding: 10px 25px;
  text-align: center;
  border-right: 1px solid var(--gris-borde);
}
.process-item:last-child {
  border-right: 0;
}
.process-icon {
  margin-bottom: 16px;
  color: var(--azul);
  font-size: 48px;
}
.process-item h3 {
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 700;
}
.process-item p {
  margin: 0;
  color: var(--texto-secundario);
  font-size: 12px;
  line-height: 1.7;
}
/* =========================================================
   SERVICIOS
   ========================================================= */
.services-section {
  background: #ffffff;
}
.service-card {
  height: 100%;
  padding: 35px 25px;
  text-align: center;
  background: #ffffff;
  border: 1px solid;
  border-color: #0759bd;
  border-radius: var(--radio);
  transition:
    transform var(--transicion),
    box-shadow var(--transicion),
    border-color var(--transicion);
}
.service-card:hover {
  transform: translateY(-5px);
  border-color: #b8d5ff;
  box-shadow: 0 15px 35px rgba(0, 75, 160, 0.08);
}
.service-icon {
  width: 66px;
  height: 66px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--azul);
  background: var(--azul-claro);
  border-radius: 50%;
  font-size: 30px;
}
.service-card h3 {
  margin-bottom: 12px;
  font-size: 16px;
  font-weight: 700;
}
.service-card p {
  margin-bottom: 20px;
  color: var(--texto-secundario);
  font-size: 12px;
  line-height: 1.7;
}
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--azul);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}
.service-link:hover {
  color: var(--azul-hover);
}
.service-link i {
  transition: transform var(--transicion);
}
.service-link:hover i {
  transform: translateX(4px);
}
/* =========================================================
   SEO LOCAL
   ========================================================= */
.local-section {
  padding: 70px 0;
  color: var(--blanco);
  background: linear-gradient(135deg, #061b38, #0a3264);
}
.local-section h2 {
  margin-bottom: 18px;
  font-size: 30px;
}
.local-section p {
  max-width: 700px;
  margin: 0 auto 25px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
}
.local-section .section-eyebrow {
  color: #5da6ff;
}
.local-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
/* =========================================================
   NOSOTROS
   ========================================================= */
.about-section {
  padding: 75px 0;
  background: var(--gris-fondo);
}
.about-section h2 {
  margin-bottom: 18px;
  font-size: 30px;
  line-height: 1.2;
}
.about-intro {
  max-width: 500px;
  margin-bottom: 30px;
  color: var(--texto-secundario);
  font-size: 14px;
}
/* =========================================================
   LISTA
   ========================================================= */
.check-list {
  padding: 0;
  margin: 0;
  list-style: none;
}
.check-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: var(--texto);
  font-size: 13px;
}
.check-list i {
  flex-shrink: 0;
  color: var(--azul);
  font-size: 18px;
}
/* =========================================================
   TARJETA DE CONTACTO
   ========================================================= */
.contact-card {
  padding: 40px;
  background: var(--blanco);
  border-radius: var(--radio);
  box-shadow: var(--sombra);
}
.contact-card h2 {
  margin-bottom: 15px;
  font-size: 28px;
}
.contact-card > p {
  margin-bottom: 25px;
  color: var(--texto-secundario);
  font-size: 13px;
}
/* =========================================================
   ACCIONES DE CONTACTO
   ========================================================= */
.contact-action {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  min-height: 75px;
  margin-bottom: 12px;
  padding: 12px 18px;
  color: var(--texto);
  border: 1px solid var(--gris-borde);
  border-radius: 7px;
  transition:
    transform var(--transicion),
    box-shadow var(--transicion),
    border-color var(--transicion);
}
.contact-action:hover {
  color: var(--texto);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 35, 80, 0.08);
}
.contact-action-icon {
  width: 45px;
  height: 45px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 22px;
}
.whatsapp-action {
  border-color: rgba(37, 211, 102, 0.25);
}
.whatsapp-action .contact-action-icon {
  color: var(--verde-whatsapp);
  background: rgba(37, 211, 102, 0.1);
}
.phone-action {
  border-color: rgba(8, 103, 217, 0.2);
}
.phone-action .contact-action-icon {
  color: var(--azul);
  background: var(--azul-claro);
}
.contact-action-text {
  flex: 1;
}
.contact-action-text small {
  display: block;
  margin-bottom: 3px;
  color: var(--texto-secundario);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.5px;
}
.contact-action-text strong {
  display: block;
  font-size: 15px;
}
.contact-action > i {
  color: var(--azul);
  font-size: 18px;
}
.contact-note {
  margin-top: 20px;
  color: var(--texto-secundario);
  font-size: 10px;
  text-align: center;
}
.contact-note i {
  margin-right: 5px;
}
/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  padding: 50px 0 0;
  color: var(--blanco);
  background: var(--azul-footer);
}
.footer-logo {
  width: 200px;
  height: auto;
  margin-bottom: 15px;
}
.footer p {
  max-width: 350px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 12px;
}
.footer h3 {
  margin-bottom: 15px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
}
.footer small {
  color: rgba(255, 255, 255, 0.45);
  font-size: 10px;
}
.footer-contact {
  color: rgba(255, 255, 255, 0.72);
  transition: color var(--transicion);
}
.footer-contact:hover {
  color: #ffffff;
}
/* =========================================================
   REDES SOCIALES
   ========================================================= */
.social-links {
  display: flex;
  gap: 9px;
}
.social-links a {
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blanco);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  transition:
    background-color var(--transicion),
    border-color var(--transicion);
}
.social-links a:hover {
  color: #ffffff;
  background: var(--azul);
  border-color: var(--azul);
}
.social-links i {
  margin: 0;
}
/* =========================================================
   FOOTER BOTTOM
   ========================================================= */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 40px;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.42);
  font-size: 9px;
}
/* =========================================================
   ACCESIBILIDAD
   ========================================================= */

a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(8, 103, 217, 0.35);
  outline-offset: 2px;
}
/* =========================================================
   TABLET
   ========================================================= */
@media (max-width: 991px) {
  .navbar {
    min-height: 70px;
  }
  .navbar-collapse {
    padding: 20px 0;
  }
  .navbar-nav .nav-link {
    padding: 9px 0 !important;
  }
  .navbar-nav .nav-link::after {
    display: none;
  }
  .hero {
    min-height: 700px;
  }
  .hero-content {
    min-height: 700px;
    padding-top: 85px;
  }
  .hero-overlay {
    background: linear-gradient(
      90deg,
      rgba(3, 18, 40, 0.98),
      rgba(3, 18, 40, 0.75)
    );
  }
  .process-item {
    border-right: 0;
  }
}
/* =========================================================
   MOBILE
   ========================================================= */
@media (max-width: 767px) {
  .section {
    padding: 55px 0;
  }
  .section-title {
    margin-bottom: 35px;
  }
  .section-title h2 {
    font-size: 25px;
  }
  .hero {
    min-height: 720px;
  }
  .hero-content {
    min-height: 720px;
    padding-top: 85px;
  }
  .hero h1 {
    font-size: 40px;
  }
  .hero-description {
    font-size: 16px;
  }
  .hero-benefits {
    display: block;
  }
  .hero-benefits div {
    margin-bottom: 9px;
  }
  .btn-hero {
    width: 100%;
  }
  .btn-phone-hero {
    width: 100%;
    margin-top: 10px;
    margin-left: 0;
  }
  .local-buttons {
    flex-direction: column;
  }
  .local-buttons .btn {
    width: 100%;
  }
  .contact-card {
    padding: 30px 20px;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}
/* =========================================================
   MOBILE PEQUEÑO
   ========================================================= */
@media (max-width: 575px) {
  .logo-img {
    width: 155px;
  }
  .hero h1 {
    font-size: 36px;
  }
  .hero {
    min-height: 680px;
  }
  .hero-content {
    min-height: 680px;
  }
  .process-item {
    padding: 10px;
  }
  .service-card {
    padding: 30px 20px;
  }
}
/* =========================================================
   REDUCIR ANIMACIONES
   ========================================================= */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
/*
    ACAVIA
    AJUSTE UX/UI — TIPOGRAFÍA Y LEGIBILIDAD
    Objetivo:
    - Mayor legibilidad
    - Mayor contraste
    - Jerarquía visual más clara
    - Mejor lectura en desktop y mobile
    - Landing orientada a conversión
*/
/* =========================================================
   VARIABLES TIPOGRÁFICAS
   ========================================================= */
:root {
  --texto: #09284d;
  --texto-secundario: #475569;
  --texto-suave: #64748b;
  --azul: #0867d9;
}
/* =========================================================
   TEXTO BASE
   ========================================================= */

body {
  font-size: 16px;
  color: var(--texto);
  line-height: 1.6;
}

p {
  margin-bottom: 1rem;
  font-size: 16px;
  color: var(--texto-secundario);
  line-height: 1.7;
}
/* =========================================================
   NAVBAR
   ========================================================= */
.navbar-nav .nav-link {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1px;
}
.btn-cta {
  font-size: 13px;
  min-height: 46px;
  padding: 11px 20px;
}
/* =========================================================
   HERO
   ========================================================= */
.hero h1 {
  font-size: clamp(44px, 5vw, 68px);
  line-height: 1.04;
  letter-spacing: -1px;
  margin-bottom: 26px;
}
.hero-description {
  max-width: 650px;
  font-size: 20px;
  line-height: 1.65;
  color: #ffffff;
  margin-bottom: 30px;
}
.hero-benefits {
  gap: 18px 28px;
  font-size: 14px;
  line-height: 1.5;
}
.hero-note {
  font-size: 12px;
}
/* =========================================================
   BOTÕES HERO
   ========================================================= */
.btn-hero,
.btn-phone-hero {
  min-height: 56px;
  padding: 14px 28px;
  font-size: 14px;
  font-weight: 700;
}
/* =========================================================
   TÍTULOS DE SEÇÃO
   ========================================================= */
.section-title {
  max-width: 820px;
}
.section-title h2,
.about-section h2,
.contact-card h2 {
  font-size: clamp(30px, 3vw, 40px);
  line-height: 1.15;
  letter-spacing: -0.4px;
  margin-bottom: 18px;
}
.section-title p {
  max-width: 700px;
  font-size: 17px;
  line-height: 1.7;
}
/* =========================================================
   EYEBROW
   ========================================================= */
.section-eyebrow,
.hero .eyebrow {
  font-size: 12px;
  line-height: 3;
  font-weight: 700;
  letter-spacing: 1.8px;
}
/* =========================================================
   PROCESO
   ========================================================= */
.process-item {
  padding-left: 25px;
  padding-right: 25px;
}
.process-item h3 {
  font-size: 19px;
  line-height: 1.3;
  margin-bottom: 12px;
}
.process-item p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--texto-secundario);
}
/* =========================================================
   SERVICIOS
   ========================================================= */
.service-card {
  padding: 38px 28px;
}
.service-card h3 {
  font-size: 20px;
  line-height: 1.3;
  margin-bottom: 14px;
}
.service-card p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--texto-secundario);
  margin-bottom: 24px;
}
.service-link {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  font-size: 13px;
  font-weight: 700;
}
/* =========================================================
   CAPACIDAD OPERATIVA
   ========================================================= */
.capability-section {
  padding: 80px 0;
  background: #f5f8fc;
}
.capability-section h2 {
  max-width: 700px;
  font-size: clamp(30px, 3vw, 40px);
  line-height: 1.15;
  margin-bottom: 20px;
}
.capability-section p {
  max-width: 700px;
  font-size: 17px;
  line-height: 1.75;
}
.capability-box {
  padding: 30px;
  background: #ffffff;
  border: 1px solid #dbe4ef;
  border-radius: 8px;
  box-shadow: 0 12px 35px rgba(0, 35, 80, 0.07);
}
.capability-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid #e5eaf0;
}
.capability-item:last-child {
  border-bottom: 0;
}
.capability-item > i {
  flex-shrink: 0;
  font-size: 28px;
  color: var(--azul);
}
.capability-item strong {
  display: block;
  margin-bottom: 3px;
  font-size: 17px;
  line-height: 1.35;
}
.capability-item span {
  display: block;
  font-size: 14px;
  line-height: 1.5;
  color: var(--texto-secundario);
}
/* =========================================================
   ZONA DE SERVICIO
   ========================================================= */
.local-section {
  padding: 80px 0;
}
.local-section h2 {
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(30px, 3vw, 40px);
  line-height: 1.15;
}
.local-section p {
  max-width: 720px;
  font-size: 17px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.9);
}
/* =========================================================
   NOSOTROS
   ========================================================= */
.about-section {
  padding: 80px 0;
}
.about-section h2 {
  max-width: 650px;
}
.about-intro {
  max-width: 650px;
  font-size: 17px;
  line-height: 1.75;
  color: var(--texto-secundario);
}
.check-list {
  margin-top: 25px;
}
.check-list li {
  min-height: 30px;
  margin-bottom: 15px;
  font-size: 16px;
  line-height: 1.5;
}
/* =========================================================
   CONTACTO
   ========================================================= */
.contact-card {
  padding: 42px;
  border: 1px solid;
  border-color: #0759bd;
  border-width: 1px;
}
.contact-card h2 {
  font-size: clamp(28px, 3vw, 36px);
}
.contact-card > p {
  font-size: 16px;
  line-height: 1.7;
}
.contact-action {
  min-height: 82px;
  padding: 15px 18px;
}
.contact-action-text small {
  font-size: 10px;
  letter-spacing: 0.6px;
}
.contact-action-text strong {
  font-size: 17px;
  line-height: 1.3;
}
.contact-note {
  font-size: 15px;
  font-weight: bold;
}
/* =========================================================
   BOTONES GENERALES
   ========================================================= */
.btn {
  min-height: 48px;
  padding: 12px 22px;
  font-size: 14px;
  line-height: 1.3;
}
/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  font-size: 14px;
}
.footer p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.78);
}
.footer h3 {
  font-size: 13px;
}
.footer-contact {
  font-size: 14px;
}
.footer small {
  font-size: 12px;
  line-height: 1.5;
}
.footer-bottom {
  font-size: 11px;
}
/* =========================================================
   MOBILE
   ========================================================= */
@media (max-width: 767px) {
  body {
    font-size: 16px;
  }
  p {
    font-size: 16px;
    line-height: 1.7;
  }
  /* HERO */
  .hero {
    min-height: 700px;
  }
  .hero-content {
    min-height: 700px;
  }
  .hero h1 {
    font-size: clamp(40px, 11vw, 48px);
    line-height: 1.05;
    letter-spacing: -0.6px;
  }
  .hero-description {
    font-size: 18px;
    line-height: 1.65;
  }
  .hero-benefits {
    font-size: 14px;
  }
  .hero-note {
    font-size: 12px;
  }
  /* SECCIONES */
  .section {
    padding: 65px 0;
  }
  .section-title {
    margin-bottom: 40px;
  }
  .section-title h2,
  .about-section h2,
  .contact-card h2,
  .capability-section h2,
  .local-section h2 {
    font-size: 29px;
    line-height: 1.18;
  }
  .section-title p,
  .about-intro,
  .capability-section p,
  .local-section p {
    font-size: 16px;
    line-height: 1.7;
  }
  /* SERVICIOS */
  .service-card {
    padding: 32px 25px;
  }
  .service-card h3 {
    font-size: 19px;
  }
  .service-card p {
    font-size: 15px;
  }
  /* PROCESO */
  .process-item h3 {
    font-size: 18px;
  }
  .process-item p {
    font-size: 15px;
  }
  /* CONTACTO */
  .contact-card {
    padding: 32px 22px;
  }
  .contact-action {
    min-height: 78px;
  }
  .contact-action-text strong {
    font-size: 16px;
  }
  /* BOTONES */
  .btn {
    min-height: 52px;
    font-size: 14px;
  }
}
/* =========================================================
   MOBILE PEQUEÑO
   ========================================================= */
@media (max-width: 400px) {
  .hero h1 {
    font-size: 38px;
  }
  .hero-description {
    font-size: 17px;
  }
  .section-title h2,
  .about-section h2,
  .contact-card h2,
  .capability-section h2,
  .local-section h2 {
    font-size: 27px;
  }
}
