/* ========== FUENTES Poppins locales ========== */
@font-face {
  font-family: "Poppins";
  src: url("fonts/Poppins-Light.woff2") format("woff2"),
    url("fonts/Poppins-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("fonts/Poppins-Regular.woff2") format("woff2"),
    url("fonts/Poppins-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("fonts/Poppins-SemiBold.woff2") format("woff2"),
    url("fonts/Poppins-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("fonts/Poppins-Bold.woff2") format("woff2"),
    url("fonts/Poppins-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("fonts/poppins-bold-italic.woff2") format("woff2"),
    url("fonts/poppins-bold-italic.woff") format("woff");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}
:root {
  --color-bg: #ffffff;
  --color-primary: #00c897; /* Verde/teal */
  --color-header-font: #005d95;
  --color-secondary: #f9b000; /* Amarillo botón */
  --color-dark: #0f2a46; /* Azul oscuro */
  --color-text: #222222;
  --color-muted: #8b8b8b;
  --color-accent-light: #dff3fa; /* Fondo banda */
  --color-accent-green: #00c2a8; /* Verde corporativo ARYU */
  --color-card-fill: #00c98a; /* Relleno sólido */
  --color-card-outline: #00c98a; /* Borde outline */
  --radius-lg: 999px;
  --transition-fast: 0.25s ease;
  --shadow-soft: 0 10px 25px rgba(0, 0, 0, 0.08);
  --shadow-strong: 0 20px 40px rgba(0, 0, 0, 0.16);
  --max-width: 1200px;
  --header-height: 90px;
  --font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont,
    sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font-family);
  background-color: var(--color-bg);
  color: var(--color-text);
  opacity: 0;
  animation: pageFadeIn 0.35s ease-out forwards;
}

@keyframes pageFadeIn {
  to {
    opacity: 1;
  }
}
/* ========== LAYOUT GENERALES ========== */

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ========== HEADER ========== */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-soft);
  font-family: "Poppins";
}
.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* Top bar */

.top-bar {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 6px 0;
  font-size: 12px;
  color: var(--color-header-font);
  background: #ffffff;
}

.lang-switch {
  position: relative;
  display: inline-block;
  font-family: var(--font-family);
}
.lang-current {
  border: none;
  background: transparent;
  font-size: 12px;
  font-weight: 600;
  color: var(--color-header-font);
  cursor: pointer;
}
/* Lista desplegable */
.lang-menu {
  position: absolute;
  top: 14px; /* justo debajo del ES▼ */
  left: 0;
  list-style: none;
  margin: 0;
  padding: 0;
  background: #ffffff;
  box-shadow: var(--shadow-soft);
  border-radius: 0 0 4px 4px;
  min-width: 90px;
  display: none;
  z-index: 100;
}
.lang-menu li a {
  display: block;
  padding: 6px 10px;
  font-size: 12px;
  color: var(--color-header-font);
  text-decoration: none;
}

.lang-menu li a:hover {
  background: #f0f0f0;
}
/* Mostrar al hover (desktop) */

.lang-switch:hover .lang-menu {
  display: block;
}
.lang-btn {
  border: none;
  padding: 2px 8px;
  border-radius: 10px;
  background: var(--color-dark);
  color: #fff;
  font-size: 10px;
  cursor: pointer;
}

.lang-btn.muted {
  background: transparent;
  color: var(--color-dark);
  border: 1px solid #d7dde8;
}

.contact-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  font-weight: 600;
}
.contact-top span {
  font-size: 13px;
  font-weight: 300;
  color: var(--color-header-font);
}
.phone-number {
  font-size: 18px;
  color: var(--color-header-font);
  font-weight: 600;
  text-decoration: none;
  display: flex;
}
.phone-number img {
  width: 24px;
  height: 24px;
  margin-right: 6px;
}
/* Nav bar */

.nav-bar {
  display: flex;
  align-items: center;
  padding: 8px 0 10px;
  gap: 24px;
}

/* Logo pegado a la izquierda */
.logo {
  flex-shrink: 0;
}

/* Menú ocupa el centro */
.nav {
  flex: 1;
}

.logo-img {
  height: 24px; /* Ajusta según el diseño */
  width: auto;
  display: block;
}
.logo-highlight {
  color: var(--color-primary);
}

.nav > ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav a {
  position: relative;
  text-decoration: none;
  color: var(--color-header-font);
  font-weight: 500;
  font-size: 15px;
  transition: color 0.3s ease;
}

.nav {
  position: relative;
}

/* Línea que se mueve bajo el enlace activo */
.nav-indicator {
  position: absolute;
  bottom: 0; /* pegado al borde inferior del nav */
  height: 3px;
  background: var(--color-secondary);
  border-radius: 999px;
  width: 0; /* JS le dará tamaño */
  transform: translateX(0);
  transition: transform 0.3s ease, width 0.3s ease;
  pointer-events: none;
}

.nav a.active {
  color: var(--color-primary);
  font-weight: 700;
  position: relative;
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 5px 28px; /* más alto */
  border-radius: 40px;
  background: var(--color-secondary);
  color: #ffffff;
  font-size: 17px; /* más grande */
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(255, 201, 40, 0.3);
  transition: all 0.25s ease;
}
/* Cotiza + contacto a la derecha */
.header-actions {
  margin-left: auto;
  margin-right: 14px;
}
.header-actions .btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(255, 201, 40, 0.4);
}

/* Dropdown */

.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 150%;
  left: 0;
  background: #ffffff;
  border-radius: 8px;
  padding: 8px 0;
  min-width: 260px;
  box-shadow: var(--shadow-strong);
  display: none; /* oculto por defecto */
  flex-direction: column;
  z-index: 40;
}
/* Estado visible cuando se activa con JS */
.dropdown.open .dropdown-menu {
  display: flex;
}
.dropdown-menu li {
  padding: 0;
}

.dropdown-menu a {
  display: block;
  padding: 8px 14px;
  font-size: 13px;
  color: #444;
}

.dropdown-menu a:hover {
  background: #f4f6fa;
  color: var(--color-dark);
}
.dropdown-toggle {
  cursor: pointer;
}

/* Burger (mobile) */

.burger {
  display: none; /* escritorio */
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 1px solid #d7dde8;
  background: #ffffff;
  cursor: pointer;
}

.burger span {
  display: block;
  width: 16px;
  height: 2px;
  border-radius: 999px;
  background: var(--color-header-font);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.burger.open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.burger.open span:nth-child(2) {
  opacity: 0;
}
.burger.open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* ========== HERO ========== */

.hero {
  position: relative;
  margin-top: calc(0px + var(--header-height));
  height: 520px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("img/fondo_aruy.webp");
  background-size: cover; /* que cubra todo */
  background-position: center; /* centrada */
  background-repeat: no-repeat; /* que no se repita */
  filter: grayscale(0.2);
  z-index: -2;
}

.hero-content {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #ffffff;
}

.hero h1 {
  font-size: 40px;
  line-height: 1.2;
  margin: 0 0 12px;
  font-weight: 600;
}

.hero p {
  max-width: 520px;
  font-size: 15px;
  font-weight: 400;
  margin: 0 0 22px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px 24px;
  border-radius: var(--radius-lg);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all var(--transition-fast);
  white-space: nowrap;
  color: var(--color-header-font);
}

.btn-yellow {
  background: var(--color-secondary);
  box-shadow: var(--shadow-soft);
}

.btn-yellow:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-strong);
}

.btn-green {
  background: var(--color-primary);
}

.btn-green:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-strong);
}

.confetti {
  font-size: 16px;
}

/* ========== STRIP SERVICIOS ========== */

.services-strip {
  background: #ffffff;
  padding: 26px 0;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}
.services-carousel {
  display: flex;
  align-items: center;
  gap: 10px;
}
.services-track-wrapper {
  overflow: hidden;
  flex: 1;
}
.services-track {
  display: flex;
  align-items: center;
  transition: transform 0.35s ease;
  will-change: transform;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 14px;
  align-items: center;
  justify-items: center;
}

/* 9 ítems visibles: 7 fuertes + 2 fantasmas */
.service-item {
  flex: 0 0 calc(100% / 9);
  text-align: center;
  font-size: 12px;
  color: var(--color-dark);
  padding: 4px 0;
  transition: opacity 0.25s ease, transform 0.25s ease, filter 0.25s ease;
  position: relative;
  z-index: 1;
}

.service-icon {
  width: 64px; /* antes 40px */
  height: 64px; /* antes 40px */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
  transition: transform 0.3s ease;
}
.service-icon:hover {
  transform: translateY(-2px);
}
/* Bordes fantasma (1° y último) */
.service-item.ghost-left,
.service-item.ghost-right {
  opacity: 0.5;
  transform: scale(0.9);
  filter: blur(0.2px);
  z-index: 0;
}
/* Flechas */

.services-arrow {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background: #ffffff;
  box-shadow: var(--shadow-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 20px;
  color: var(--color-dark);
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.services-arrow:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-strong);
  color: var(--color-primary);
}

.services-arrow:active {
  transform: scale(0.92);
  box-shadow: var(--shadow-soft);
}
.service-icon img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  transition: transform 0.25s ease;
}
.service-icon:hover img {
  transform: scale(1.1);
}
/* ========== SECCIÓN POR QUÉ ELEGIR ========== */

.why-section {
  background: #ffffff;
  padding: 60px 0;
}

.why-flex {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.why-image {
  flex: 1 1 45%;
  display: flex;
}

.why-image img {
  width: 100%;
  height: 100%; /* ocupa toda la altura del contenedor */
  object-fit: cover; /* recubre sin deformar */
  border-radius: 20px;
}

/* Tarjeta azul del lado derecho */
.why-card {
  flex: 1 1 50%;
  background: #e6f4ff;
  border-radius: 20px;
  padding: 40px 50px;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  justify-content: center; /* centra verticalmente el contenido */
}

.why-card h2 {
  font-size: 22px;
  color: var(--color-header-font);
  font-weight: 700;
  margin-bottom: 24px;
}

.why-card h2 span {
  color: var(--color-primary);
}

/* Bloque de cada beneficio */
.why-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 22px;
}
/* Contenedor circular del icono */
.icon-box {
  width: 54px;
  height: 54px;
  border: 2px solid var(--color-header-font);
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

/* Icono dentro del contenedor */
.icon-box img {
  width: 26px;
  height: 26px;
  object-fit: contain;
}

/* Efecto hover */
.why-item:hover .icon-box {
  border-color: var(--color-primary); /* cambia a verde */
  transform: scale(1.05);
  box-shadow: 0 3px 8px rgba(0, 200, 151, 0.2);
}

.why-item h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--color-secondary);
  margin: 0 0 4px;
}

.why-item p {
  font-size: 14px;
  color: var(--color-header-font);
  margin: 0;
  line-height: 1.5;
}
/* ========== SOLUCIÓN A TU MEDIDA (Carrusel infinito) ========== */

.solutions-section {
  background: var(--color-header-font); /* azul de fondo */
  padding: 50px 0 60px;
  overflow: hidden;
}

.solutions-title {
  color: #ffffff;
  text-align: center;
  font-size: 28px;
  font-weight: 600;
  margin: 0 0 26px;
}

.solutions-carousel {
  position: relative;
  overflow: hidden;
}

.solutions-track {
  display: flex;
  gap: 24px;
  will-change: transform;
}

/* Card */
.solution-card {
  flex: 0 0 260px;
  background: #ffffff;
  border-radius: 12px;
  padding: 14px 16px 18px;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.solution-image {
  width: 100%;
  height: 170px;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 10px;
}

.solution-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.solution-card h3 {
  font-size: 15px;
  font-weight: 600;
  color: var(--color-header-font);
  margin: 4px 0 4px;
}

.solution-card p {
  font-size: 13px;
  color: #4a4a4a;
  margin: 0 0 12px;
}

.solution-btn {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 18px;
  border-radius: 999px;
  background: var(--color-primary);
  color: #ffffff;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
}

.solution-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

/* Responsive */
@media (max-width: 768px) {
  .solution-card {
    flex: 0 0 75%;
  }
}

/* ========== SECCIONES PLACEHOLDER ========== */

.gallery-section,
.contact-section {
  padding: 40px 0 60px;
}

.gallery-section h2,
.contact-section h2 {
  margin-bottom: 10px;
  color: var(--color-dark);
}
/* ========== STATS / MÉTRICAS ========== */

.stats-section {
  padding: 80px 0 70px;
  background: #ffffff;
}

.stats-grid {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 70px;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
  color: var(--color-primary);
}

.stat-icon {
  width: 80px;
  height: 130px;
  margin: 0 auto 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stat-icon img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.stat-number {
  font-size: 28px;
  font-weight: 700;
  margin: 0;
  color: var(--color-primary);
}

.stat-label {
  font-size: 12px;
  color: var(--color-primary);
  margin: 0;
}

/* ========== CANALES DE ATENCIÓN ========== */

.channels-section {
  padding: 40px 0 24px;
  text-align: center;
  background: #ffffff;
}

.channels-title {
  color: var(--color-header-font);
  font-size: 22px;
  margin-bottom: 6px;
  font-weight: 600;
}

.channels-text {
  max-width: 640px;
  margin: 0 auto 20px;
  font-size: 14px;
  color: #555;
}
.containe-channels {
  display: flex;
  flex-direction: column;
  padding: 0 24px;
  gap: 20px;
  max-width: var(--max-width);
  width: 100%;
  margin: 0 auto;
}
.channels-buttons {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.channel-btn {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 24px;
  border-radius: 10px;
  color: #ffffff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  box-shadow: var(--shadow-soft);
  transition: all 0.2s ease;
}

.channel-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-strong);
}

.channel-emergency {
  background: #ffb320;
  color: #003b5d;
}

.channel-info {
  background: #00c851;
}

.channel-label {
  text-transform: uppercase;
  font-size: 11px;
  opacity: 0.9;
}

.channel-number {
  font-size: 16px;
  font-weight: 700;
}
.channel-number img {
  width: 25px;
  height: 25px;
  margin-right: 6px;
}
/* ========== COTIZA CON NOSOTROS ========== */

.cotiza-section {
  padding: 80px 0 100px;
  background: var(--color-bg);
}

.cotiza-container {
  width: min(var(--max-width), 92%);
  margin: 0 auto;
}

/* Card general */
.cotiza-card {
  display: grid;
  grid-template-columns: 30% 70%;
  background: #c9eeff; /* azul muy claro */
  border-radius: 32px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

/* Columna imagen */
.cotiza-img {
  position: relative;
}

.cotiza-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Columna contenido */
.cotiza-content {
  padding: 32px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Título + pill */
.cotiza-header h2 {
  margin: 0 0 8px;
  font-size: 1.9rem;
  font-weight: 600;
  color: var(--color-header-font);
}

.cotiza-pill {
  display: inline-block;
  margin-top: 4px;
  padding: 4px 14px;
  border-radius: 999px;
  background: #f9b000;
  color: var(--color-dark);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
}

/* Texto intro */
.cotiza-text {
  margin: 18px 0 22px;
  color: var(--color-dark);
  line-height: 1.5;
  max-width: 581px;
}

/* Formulario */
.cotiza-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cotiza-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.cotiza-row input {
  border-radius: 10px;
  border: 2px solid var(--color-primary);
  padding: 10px 16px;
  font-family: var(--font-family);
  font-size: 0.9rem;
  color: var(--color-dark);
  background: #ffffff;
  outline: none;
  transition: border-color var(--transition-fast),
    box-shadow var(--transition-fast);
}

.cotiza-row input::placeholder {
  color: var(--color-muted);
}

.cotiza-row input:focus {
  border-color: var(--color-secondary);
  box-shadow: 0 0 0 3px rgba(0, 200, 151, 0.15);
}

/* Legal */
.cotiza-legal {
  margin: 0;
  font-size: 0.8rem;
  color: var(--color-muted);
}

.cotiza-legal a {
  color: var(--color-header-font);
  font-weight: 600;
  text-decoration: none;
}

.cotiza-legal a:hover {
  text-decoration: underline;
}

/* Botón */
.cotiza-btn {
  margin-top: 10px;
  align-self: flex-start;
  border: none;
  border-radius: 999px;
  padding: 12px 32px;
  background: var(--color-secondary);
  color: #005d95;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  box-shadow: 0 8px 0 rgba(222, 156, 0, 0.7);
  transition: transform var(--transition-fast),
    box-shadow var(--transition-fast), filter var(--transition-fast);
}

.cotiza-btn:hover {
  transform: translateY(2px);
  box-shadow: 0 3px 0 rgba(222, 156, 0, 0.8);
  filter: brightness(1.03);
}

/* ====== Sección Valores ====== */
.valores-section {
  background: var(--color-bg);
  padding: 60px 0 90px;
}

.valores-container {
  width: min(var(--max-width), 92%);
  margin: 0 auto;
}

/* Intro */
.v-title {
  text-align: center;
  color: var(--color-header-font);
  font-size: 2rem;
  font-weight: 600;
  margin: 0 0 12px;
}

.v-subtitle {
  text-align: center;
  color: #005d95;
  max-width: 860px;
  margin: 0 auto 18px;
  line-height: 1.45;
  font-weight: 400;
}

.v-divider {
  border: none;
  border-top: 1px solid rgba(15, 42, 70, 0.15);
  margin: 28px 0 40px;
}

/* Título Valores Corporativos */
.vc-title {
  text-align: center;
  color: var(--color-header-font);
  font-size: 1.9rem;
  font-weight: 600;
  margin: 0 0 22px;
}

/* Banda celeste */
.vc-band {
  background: var(--color-accent-light);
  border-radius: 28px;
  padding: 30px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  box-shadow: var(--shadow-soft);
}

/* Tarjetas */
.vc-card {
  border-radius: 22px;
  padding: 24px 18px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  background: var(--color-bg);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vc-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-strong);
}

.vc-card .vc-icon {
  width: 90px;
  height: 120px;
  display: grid;
  place-items: center;
  margin-bottom: 12px;
}

.vc-card .vc-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Outline */
.vc-card--outline {
  border: 3px solid var(--color-card-outline);
  background: rgba(255, 255, 255, 0.1);
}

/* Solid */
.vc-card--solid {
  background: var(--color-card-fill);
  color: #ffffff;
  box-shadow: inset 0 8px 18px rgba(0, 0, 0, 0.08);
}

.vc-card--solid h4,
.vc-card--solid p {
  color: #ffffff;
}

/* Tipografía */
.vc-card h4 {
  color: var(--color-accent-green);
  font-weight: 600;
  margin: 6px 0 8px;
  line-height: 1.2;
  font-size: 1rem;
}

.vc-card p {
  color: #005d95;
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.35;
  max-width: 220px;
  font-weight: 400;
}
#valores-blanco {
  color: white;
}
.vc-band .vc-card {
  min-height: 220px;
}

/* ========= EQUIPO ========= */
.team-section {
  background: var(--color-bg);
  padding: 70px 0 90px;
}

.team-container {
  width: min(var(--max-width), 92%);
  margin: 0 auto;
  text-align: center;
}

/* Icono diamante */
.team-icon {
  margin-bottom: 20px;
}

.team-icon img {
  width: 140px;
  max-width: 100%;
}

/* Título + texto */
.team-header h2 {
  margin: 0 0 10px;
  font-size: 2rem;
  font-weight: 600;
  color: var(--color-header-font);
}

.team-header p {
  max-width: 780px;
  margin: 0 auto 40px;
  color: #005d95;
  line-height: 1.5;
  font-weight: 400;
}

/* Grid de tarjetas: 4 arriba, 2 abajo (centradas) */
.team-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 26px 26px; /* row-gap / column-gap */
}

/* Tarjeta */
.team-card {
  position: relative;
  overflow: hidden;
  width: 210px;
  height: 260px;
  border-radius: 28px;
  background: var(--color-header-font);
  border: 3px solid var(--color-header-font);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  box-shadow: var(--shadow-soft);
  transition: transform var(--transition-fast),
    box-shadow var(--transition-fast), border-color var(--transition-fast);
}

.team-card::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: conic-gradient(
    from 0deg,
    rgba(0, 200, 151, 0),
    rgba(0, 200, 151, 0.7),
    rgba(0, 200, 151, 0)
  );
  opacity: 0;
  transform: rotate(0deg);
  transition: opacity var(--transition-fast);
  pointer-events: none;
  z-index: 0;
}

.team-card::after {
  content: "";
  position: absolute;
  inset: 2px;
  border-radius: 24px;
  background: var(--color-header-font);
  z-index: 1;
}
.team-photo,
.team-info {
  position: relative;
  z-index: 2;
}
.team-card:hover {
  transform: translateY(-10px);
  border-color: var(--color-primary);
  box-shadow: 0 18px 40px rgba(0, 200, 151, 0.45);
}

.team-card:hover::before {
  opacity: 1;
  animation: teamGlow 1.2s linear infinite;
}
/* Zona para futura foto (por ahora solo fondo azul) */
.team-photo {
  flex: 1;
  /* Si luego quieres foto:
     background-image: url("img/equipo_1.webp");
     background-size: cover;
     background-position: center;
  */
}

/* Banda blanca inferior con info */
.team-info {
  background: #ffffff;
  padding: 10px 8px;
  text-align: center;
  border-radius: 0 0 24px 24px;
}

.team-name {
  display: block;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--color-header-font);
}

.team-role {
  display: block;
  font-size: 0.8rem;
  color: var(--color-dark);
  margin-top: 2px;
}
@keyframes teamGlow {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Responsive cotiza */
@media (max-width: 900px) {
  .quote-card {
    flex-direction: column;
  }

  .quote-image {
    flex: none;
    height: 180px;
  }

  .quote-row {
    flex-direction: column;
  }

  .quote-btn {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
}

/* ====== FOOTER ARYU ====== */

.footer-aryu {
  background: var(--color-header-font); /* azul #0f2a46 */
  color: #ffffff;
  padding: 50px 0 30px;
  font-size: 0.9rem;
}

.footer-container {
  width: min(var(--max-width), 92%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2.2fr auto 1.7fr 1.4fr 1.7fr; /* brand | línea | 3 columnas */
  column-gap: 32px;
  align-items: flex-start;
}

/* Logo + texto */
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-logo img {
  height: 75px;
  width: auto;
  display: block;
}

.footer-description {
  margin: 0;
  max-width: 360px;
  line-height: 1.5;
}

/* Social */
.footer-social {
  display: flex;
  gap: 16px;
  margin-top: 4px;
  justify-content: center;
}
.footer-social a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  transition: opacity var(--transition-fast);
}
.footer-social a img {
  width: 24px;
  height: 24px;
  transition: opacity var(--transition-fast);
}

.footer-social a:hover {
  opacity: 0.7;
}

/* Separador vertical fino */
.footer-divider-vert {
  width: 1.5px;
  height: 100%;
  background: rgba(255, 255, 255, 1);
}

/* Columnas de listas */
.footer-col h3 {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col li {
  margin-bottom: 6px;
  line-height: 1.4;
  font-weight: 300;
}
.footer-col li img {
  width: 16px;
  height: 16px;
  vertical-align: middle;
}
.footer-col a {
  color: #ffffff;
  text-decoration: none;
  transition: opacity var(--transition-fast);
}

.footer-col a:hover {
  opacity: 0.8;
}

/* Zona inferior */
.footer-bottom {
  width: min(var(--max-width), 92%);
  margin: 26px auto 0;
  text-align: center;
}
/* Línea izquierda y derecha con texto al centro */
.footer-center-line {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 10px;
  color: #ffffff;
  font-size: 0.9rem;
  justify-content: center;
}
.footer-center-line::before,
.footer-center-line::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.6);
}
.footer-bottom-line {
  height: 1px;
  background: rgba(255, 255, 255, 0.4);
  margin-bottom: 10px;
}

.footer-copy {
  margin: 8px 0 10px;
  color: #ffffff;
}

.footer-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: #ffffff;
}

.footer-links a {
  color: #ffffff;
  text-decoration: none;
  transition: opacity var(--transition-fast);
}

.footer-links a:hover {
  opacity: 0.8;
}
.footer-link-book img {
  width: 16px;
  height: 16px;
  vertical-align: middle;
}
/* Barra naranja debajo de cada h3 */
.footer-bar {
  width: 25%;
  height: 3px;
  background: var(--color-secondary); /* amarillo/naranja corporativo */
  margin: 6px 0 14px;
  border-radius: 10px;
}
/* ========== WHATSAPP FLOAT ========== */

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-strong);
  text-decoration: none;
  font-size: 26px;
  z-index: 80;
}
/* ========== SECCIÓN NOSOTROS ========== */

.nosotros-section {
  background-color: #ffffff;
  padding: 120px 0 140px;
  position: relative;
}

.nosotros-container {
  width: min(1200px, 92%);
  margin: 0 auto;
  position: relative;
}

/* Píldora título */
.nosotros-pill {
  background-color: #00c2a8;
  color: #004f9f;
  font-weight: 700;
  font-size: 2rem;
  text-align: center;
  padding: 18px 60px;
  border-radius: 999px;
  margin: 0 auto 80px;
  max-width: 520px;
}
.nosotros-left {
  padding-top: 70px;
} /* baja más el título */
.nosotros-right {
  padding-top: 50px;
} /* menos para equilibrar */
/* Layout: dos columnas de texto */
.nosotros-layout {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr; /* izquierda / derecha */
  column-gap: 40px;
  align-items: flex-start;
  line-height: 1.6;
  color: #00c2a8;
  min-height: 480px; /* espacio para el logo centrado */
}

.nosotros-col {
  position: relative;
  font-size: 1.2rem;
  color: #00c2a8;
}

/* Texto izquierda */
.nosotros-left h2 {
  font-size: 2.6rem;
  line-height: 1.1;
  font-weight: 700;
  color: #00c2a8;
  margin: 0;
  text-align: right;
}

/* Texto derecha */
.nosotros-right p {
  margin: 0;
  text-align: left;
  color: #00c2a8;
}

/* ========== SHAPE-OUTSIDE AUXILIAR ========== */
/* Estas imágenes NO se ven, solo moldean el texto */

.shape-tri {
  position: relative;
  display: block;
  opacity: 0; /* invisible pero sigue contando para shape */
  pointer-events: none;
}

/* Mitad izquierda del triángulo:
   - flota a la derecha dentro de la columna izquierda
   - hace que el H2 se acerque al centro */
.shape-tri-left {
  float: right;
  width: 55%; /* ajusta según cómo quieras el ceñido */
  shape-outside: url("img/nosotros_tri_left.webp");
  shape-margin: 2%;
}

/* Mitad derecha del triángulo:
   - flota a la izquierda dentro de la columna derecha
   - hace que el párrafo se acerque al centro */
.shape-tri-right {
  float: left;
  width: 55%;
  shape-outside: url("img/nosotros_tri_right.webp");
  shape-margin: 2%;
}

/* ========== LOGO VISIBLE CENTRADO ========== */

.nosotros-logo-visible {
  position: absolute;
  left: 50%;
  top: 55%; /* ajusta vertical según diseño */
  transform: translate(-50%, -50%);
  width: 360px; /* tamaño del logo visible */
  max-width: 100%;
  z-index: 3; /* por encima de textos e íconos */
  pointer-events: none;
}

/* ========== ÍCONOS HEXAGONALES DECORATIVOS ========== */

.hex-icon {
  position: absolute;
  width: 130px;
  z-index: 2;
}

.hex-icon img {
  width: 100%;
  display: block;
}

.hex-top-left {
  top: 110px;
  left: 40px;
}

.hex-top-right {
  top: 110px;
  right: 40px;
}

.hex-bottom-left {
  bottom: 80px;
  left: 140px;
}

.hex-bottom-right {
  bottom: 80px;
  right: 140px;
}
/* ====== Visión / Misión + Stats ====== */
.vm-section {
  padding: 40px 0 90px;
  background: #fff;
}

.vm-container {
  width: min(1200px, 92%);
  margin: 0 auto;
}

/* Tarjetas Visión / Misión */
.vm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 28px;
}

.vm-card {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 23px;
  padding: 18px 20px;
  border-radius: 20px;
  background: #c9eeff;
  box-shadow: 0 2px 0 #9cc7e1 inset;
}

.vm-icon {
  width: 100px;
  height: 130px;
  display: grid;
  place-items: center;
  border-radius: 14px;
}

.vm-icon img {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

.vm-body h3 {
  margin: 2px 0 6px;
  font-weight: 600;
  color: #00c2a8;
  font-size: 1.05rem;
}

.vm-body p {
  margin: 0;
  color: #005d95;
  line-height: 1.4;
  font-size: 0.95rem;
  font-weight: 400;
}

/* Barra de estadísticas */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 34px 32px;
  border-radius: 18px;
  background: #f2a900; /* naranja mostaza */
}

.stat {
  text-align: center;
  color: #005d95; /* azul para textos/íconos */
}

.stat-icon img {
  width: 80px;
  height: 90px;
  margin-bottom: 8px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(21%) sepia(72%) saturate(1591%)
    hue-rotate(180deg) brightness(91%) contrast(92%);
  /* tinte azul en SVG/PNG monocromo si lo necesitas */
}

.stat-number {
  font-weight: 800;
  font-size: 2.2rem;
  line-height: 1;
  color: #005d95;
}

.stat-label {
  margin-top: 6px;
  font-weight: 700;
  text-transform: none;
  font-size: 0.95rem;
  color: #005d95;
}

/* Espacios similares al mockup */
.stats-bar .stat:not(:last-child) {
  position: relative;
}

/* ========= ESTAMOS AQUÍ PARA AYUDARTE ========= */

.help-section {
  background: var(--color-bg);
  padding: 70px 0 50px;
  margin-top: 7vh;
}

.help-container {
  width: min(var(--max-width), 92%);
  margin: 0 auto;
}

/* Píldora título */
.help-pill {
  max-width: 420px;
  margin: 0 auto 32px;
  text-align: center;
  padding: 14px 40px;
  border-radius: 999px;
  background: var(--color-primary); /* verde */
  color: #005d95;
  font-weight: 700;
  font-size: 1.3rem;
}

/* Tarjeta principal */
.help-card {
  max-width: 1100px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 30px;
  padding: 32px 40px 26px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.06);
  display: grid;
  grid-template-columns: 1.2fr 1fr; /* izquierda más ancha */
  column-gap: 40px;
  align-items: flex-start;
}
.help-col-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end; /* 🔥 ESTO MUEVE TODO A LA DERECHA */
}

/* Columnas */
.help-col {
  display: flex;
  flex-direction: column;
}

/* Bloques superiores */
.help-map,
.help-box {
  width: 100%;
  height: 230px;
  border-radius: 26px;
}

/* Izquierda: bloque azul */
.help-map {
  background: #005f99; /* azul fuerte similar al mockup */
}

/* Derecha: caja blanca con borde azul */
/* Caja blanca */
.help-box {
  width: 100%;
  height: 230px;
  border-radius: 26px;
  background: #ffffff;
  border: 2px solid #dce5f0;
  box-shadow: inset 0 0 0 2px #0f67b1;
}

/* Ubicación */
.help-location {
  margin-top: 14px;
}

.help-location h3 {
  margin: 0 0 6px;
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--color-header-font);
  position: relative;
  display: inline-block;
}

/* subrayado verde bajo "Barcelona" */
.help-location h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 70px;
  height: 3px;
  border-radius: 999px;
  background: var(--color-primary);
}

.help-location p {
  margin: 8px 0 0;
  font-size: 0.8rem;
  color: var(--color-dark);
  line-height: 1.4;
}

/* Botones */
.help-actions {
  margin-top: 14px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.actions-top button {
  width: 50%; /* cada botón ocupa el 50% del ancho */
}
.actions-bottom {
  justify-content: center; /* 🔥 centra ambos botones */
}
.actions-bottom button {
  width: 40%; /* cada botón ocupa el 40% del ancho */
}
.help-actions-row {
  display: flex;
  gap: 10px;
  justify-content: center;
}

.help-btn {
  padding: 8px 20px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  border: 2px solid #0f67b1;
  width: 50%;
  background: #ffffff;
  color: #0f67b1;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  transition: 0.2s ease;
  cursor: pointer;
}
#help-btn-40 {
  width: 40%;
}
/* Iconos */
.help-icon {
  font-size: 0.85rem;
}

/* Botones específicos */
.help-btn--outline {
  background: #ffffff;
}

.help-btn--phone {
  background: #ffffff;
}

.help-btn--whatsapp {
  border-color: var(--color-primary);
  background: #00bd42;
  color: #ffffff;
}

/* Hover */
.help-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.help-btn--whatsapp:hover {
  filter: brightness(1.05);
}

/* ====== HERO GALERÍA ====== */

.galeria-hero {
  background: #e5f7ff; /* azul muy claro */
  padding: 70px 0 0; /* sin padding abajo para que la carretera toque el borde */
  overflow: hidden; /* por si algo se sale un poco */
}

.galeria-hero-inner {
  width: min(var(--max-width), 92%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1.1fr; /* texto / visual */
  align-items: center;
  position: relative;
}

/* Círculo naranja grande a la izquierda */
.galeria-hero-circle {
  position: absolute;
  left: -30%;
  top: 50%;
  transform: translateY(-50%);
  width: 315px;
  height: 335px;
  border-radius: 50%;
  background: var(--color-secondary);
  z-index: 0;
}

/* Texto */
.galeria-hero-text {
  position: relative;
  z-index: 1; /* encima del círculo */
}

.galeria-hero-text h1 {
  margin: 0;
  font-size: 2.8rem;
  line-height: 1.15;
  font-weight: 800;
  color: var(--color-header-font); /* azul fuerte */
}

/* Contenedor de las imágenes */
.galeria-hero-visual {
  position: relative;
  height: 540px; /* 🔥 altura ideal */
  min-height: 500px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

/* Carretera (fondo) */
.galeria-road {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120%; /* 🔥 carretera más grande */
  height: 50%;
  z-index: 1;
}

/* Casa encima de la carretera */
.galeria-house {
  position: absolute;
  left: 48%;
  transform: translateX(-50%);
  bottom: 125px;
  width: 80%;
  height: 67%;
  z-index: 2;
}

/* ========= GALERÍA TIPO PINTEREST ========= */

.galeria-masonry {
  background: #ffffff;
  padding: 80px 0 100px;
}

.galeria-masonry-inner {
  width: min(var(--max-width), 92%);
  margin: 0 auto;

  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 180px; /* altura base de cada “cuadrado” */
  gap: 24px;
}

/* Tarjeta base */
.galeria-card {
  border-radius: 26px;
  overflow: hidden;
  position: relative;
}

/* Tarjetas altas (como en el diseño) */
.galeria-card--tall {
  grid-row: span 2;
}

/* ===== Tarjeta de TEXTO (blanca) ===== */
.galeria-card--text {
  background: #ffffff;
  border: 2px solid #cfe2f5;
  padding: 22px 22px 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.galeria-card-body h3 {
  margin: 0 0 10px;
  font-size: 1.25rem;
  line-height: 1.2;
  font-weight: 800;
  color: var(--color-header-font);
}

.galeria-card-body p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--color-dark);
  line-height: 1.4;
}

/* Botón “Saber más” */
.galeria-btn {
  align-self: flex-start;
  margin-top: 16px;
  padding: 9px 26px;
  border-radius: 999px;
  border: none;
  background: var(--color-primary); /* verde corporativo */
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.galeria-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.18);
  filter: brightness(1.05);
}

/* ===== Tarjeta de IMAGEN ===== */
.galeria-card--img {
  background-size: cover;
  background-position: center;
}

/* Colores de relleno (luego los cambias por imágenes reales) */
.img-azul {
  background-color: #005f99;
}

.img-amarillo {
  background-color: #f7b000;
}

.img-celeste {
  background-color: #2ec5ff;
}

.img-verde {
  background-color: #00c897;
}
/* ============================
     SECCIÓN TRANSPORTES
============================= */
/* CONTENEDOR PADRE */
.mudanza-hero {
  position: relative;
  width: 100%;
  min-height: 650px; /* 🔥 más alto y sin trucos de padding */
  background: linear-gradient(90deg, #005f93, #0097c6);
  overflow: hidden;
  display: flex;
  align-items: center; /* centra verticalmente el texto */
}

/* BLOQUE DE TEXTO (ES EL QUE TIENE PADDING) */
.mudanza-text {
  max-width: 790px;
  padding-left: 115px; /* separa del borde izquierdo */
  z-index: 1;
  color: #fff;
}

.mudanza-text h1 {
  font-size: 3.4rem;
  line-height: 1.1;
  font-weight: 600;
  margin-bottom: 24px;
}

.mudanza-text p {
  font-size: 1.15rem;
  line-height: 1.5;
  margin-bottom: 30px;
}

/* BOTÓN */
.mudanza-btn {
  display: inline-block;
  padding: 16px 40px;
  border-radius: 999px;
  background: #f9b000;
  color: #005d95;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}
.mudanza-btn img {
  width: 20px;
  height: 20px;
  vertical-align: middle;
  margin-right: 8px;
}
.mudanza-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.25);
  filter: brightness(1.05);
}

/* IMAGEN – PEGADA AL BORDE INFERIOR DERECHA DEL PADRE */
.mudanza-image {
  position: absolute;
  right: 0;
  bottom: 0; /* 🔥 este es el borde real del .mudanza-hero */
  width: 55%; /* ajusta según tu imagen */
  max-width: 900px;
}

.mudanza-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}
/* CONTENEDOR GENERAL */
.mudanza-solicitar {
  padding: 40px 0 80px;
}

.mudanza-solicitar-box {
  width: min(1200px, 92%);
  margin: 0 auto;
  background: #dff4ff;
  border-radius: 30px;
  padding: 26px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.06);
}

/* ===== LADO IZQUIERDO ===== */

.mudanza-solicitar-left {
  display: flex;
  align-items: center;
  gap: 24px;
}

.mudanza-solicitar-title {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mudanza-solicitar-title .title-top {
  margin: 0;
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1.1;
  color: var(--color-header-font);
}

.mudanza-solicitar-title .title-ahora {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 6px;
  background: var(--color-secondary);
  color: #fff;
  font-weight: 800;
  font-size: 1.2rem;
}

.mudanza-solicitar-divider {
  width: 3px;
  height: 80px;
  background: var(--color-secondary);
  border-radius: 4px;
}

.mudanza-solicitar-text {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--color-dark);
}

.mudanza-solicitar-icon {
  font-size: 2.1rem;
  color: var(--color-primary);
}

/* ===== FORMULARIO DERECHA ===== */

/* CONTENEDOR PRINCIPAL */
.solicitar-mov-box {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 40px 0;
}

.solicitar-mov-content {
  width: min(1200px, 92%);
  background: #c9eeff;
  border-radius: 28px;
  padding: 32px 95px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

/* IZQUIERDA */
.solicitar-left {
  display: flex;
  align-items: center;
  gap: 26px;
}

.solicitar-title h2 {
  margin: 0;
  font-size: 2rem;
  font-weight: 600;
  color: var(--color-header-font);
  line-height: 1.1;
}

.solicitar-ahora {
  margin-top: 10px;
  display: inline-block;
  padding: 1px 16px;
  background: var(--color-secondary);
  color: #fff;
  font-weight: 600;
  font-size: 2rem;
}

.solicitar-divider {
  width: 3px;
  height: 85px;
  background: var(--color-secondary);
  border-radius: 8px;
}

.solicitar-info {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 14px; /* más separación entre icono y texto */
  width: 180px; /* ancho exacto como en el diseño */
}

.solicitar-info p {
  line-height: 1.28; /* mejora la legibilidad */
  font-size: 1rem;
  font-weight: 500;
  margin: 0;
  color: #005d95;
}

.solicitar-icon {
  width: 60px;
  height: 60px;
}

/* FORMULARIO */
.solicitar-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.form-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.form-input {
  flex: 1;
  height: 44px;
  border-radius: 999px;
  border: 2px solid var(--color-primary);
  background: #fff;
  padding: 0 18px;
  outline: none;
  font-size: 0.95rem;
}

.btn-plus {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 2px solid var(--color-primary);
  background: #fff;
  font-size: 1.2rem;
  color: var(--color-primary);
  cursor: pointer;
}
.btn-enviar {
  height: 48px;
  border-radius: 999px;
  border: none;
  background: var(--color-secondary);
  color: #005d95;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  transition: all 0.2s ease;
}
.btn-enviar img {
  width: 18px;
  height: 18px;
  vertical-align: middle;
}
.btn-enviar:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.aviso {
  margin-top: 4px;
  font-size: 0.78rem;
  color: #777;
}
.input-wrapper {
  position: relative;
  width: 100%;
}

.input-text {
  width: 100%;
  height: 48px;
  padding: 0 50px 0 18px;
  border-radius: 999px;
  border: 2px solid var(--color-primary);
  background: #fff;
  font-size: 1rem;
  outline: none;
}
/* contenedor de los dos inputs */
.form-fields {
  display: flex;
  flex-direction: column;
  gap: 10px; /* 🔥 espacio entre Dirección y Teléfono */
  margin-bottom: 8px;
}
.input-text::placeholder {
  color: #9ca5ab;
}

.input-plus {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--color-primary);
  cursor: pointer;
}
.row-tel-enviar {
  display: flex;
  align-items: center;
  gap: 14px;
}

.flex-70 {
  flex: 0 0 70%;
}

.flex-30 {
  flex: 0 0 30%;
}

/* SECCIÓN GENERAL */
.mudanza-servicios {
  padding: 80px 0 100px;
  background: #ffffff;
}

.mudanza-servicios-container {
  width: min(1200px, 92%);
  margin: 0 auto;
  text-align: center;
}

.mudanza-servicios-title {
  font-size: 2.4rem;
  line-height: 1.2;
  font-weight: 600;
  color: var(--color-header-font);
  margin-bottom: 40px;
}

/* GRID DE TARJETAS */
.mudanza-servicios-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px 30px;
  justify-items: center;
}

/* TARJETA */
.serv-card {
  width: 100%;
  max-width: 500px;
  background: #f4f7fb;
  border-radius: 26px;
  padding: 22px 32px;
  display: flex;
  align-items: center;
  gap: 18px;
  text-align: left;
}

.serv-icon {
  flex-shrink: 0;
}

.serv-icon img {
  width: 46px;
  height: 46px;
}

/* Texto dentro de la tarjeta */
.serv-text h3 {
  margin: 0 0 6px;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-header-font);
}

.serv-text p {
  margin: 0;
  font-size: 0.95rem;
  color: #005d95;
}

/* Última tarjeta centrada */
.serv-card-full {
  grid-column: 1 / -1; /* ocupa las 2 columnas */
  max-width: 480px;
}

/* CONTENEDOR */
.como-funciona {
  padding: 70px 0;
  text-align: center;
}

.cf-container {
  width: min(1200px, 92%);
  margin: 0 auto;
}

/* TÍTULO */
.cf-title {
  font-size: 2rem;
  font-weight: 600;
  color: #f9b000;
  margin-bottom: 40px;
}

/* GRID DE PASOS */
.cf-steps {
  display: flex;
  justify-content: center;
  gap: 80px;
}

.cf-step {
  max-width: 240px;
}

/* NÚMERO CÍRCULO */
.cf-number {
  width: 64px;
  height: 64px;
  background: var(--color-secondary); /* amarillo */
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  font-style: italic;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
}

/* TITULITO */
.cf-step h3 {
  margin: 0 0 6px;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-header-font);
}

/* DESCRIPCIÓN */
.cf-step p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.35;
  color: #005d95;
}

/* SECCIÓN GENERAL */
.mudanza-cotiza {
  padding: 60px 0 80px;
  display: flex;
  justify-content: center;
}

.mudanza-cotiza-inner {
  width: min(1200px, 94%);
  background: #c9eeff;
  border-radius: 32px;
  padding: 32px 40px 40px;
  display: grid;
  grid-template-columns: 0.9fr 1.4fr;
  column-gap: 40px;
  position: relative;
  overflow: hidden; /* para que la carretera no se salga */
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

/* COLUMNA IZQUIERDA */
.mudanza-left {
  display: flex;
  flex-direction: row; /* antes: column */
  align-items: center; /* centra verticalmente los 3 bloques */
  gap: 28px; /* separación entre título, línea e info */
  padding-top: 12px;
  padding-bottom: 140px; /* seguimos dejando hueco para la carretera */
}
.mudanza-title {
  margin-left: 20px;
}
.mudanza-title h2 {
  margin: 0;
  font-size: 2.2rem;
  line-height: 1.1;
  font-weight: 600;
  color: var(--color-header-font);
  max-width: 230px; /* para que no se alargue demasiado */
}
.mudanza-separator {
  width: 3px;
  height: 80px;
  background: var(--color-secondary); /* mismo amarillo del botón */
  border-radius: 999px;
}
.badge-ahora {
  display: inline-block;
  margin-top: 12px;
  padding: 1px 20px;
  background: var(--color-secondary);
  color: #fff;
  font-weight: 600;
  font-size: 1.7rem;
}
.img-mudanza-enviar {
  height: 35px;
  width: 35px;
}
.mudanza-mini {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0px;
  color: var(--color-header-font);
  font-weight: 600;
  font-size: 0.95rem;
  max-width: 160px;
}

.mudanza-mini-icon {
  width: 78px;
  height: 75px;
}
.mudanza-mini p {
  font-family: "Poppins";
  font-weight: 400;
}
/* FORMULARIO */
.mudanza-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.mudanza-form input,
.mudanza-form select {
  width: 100%;
  height: 48px; /* MÁS BAJOS */
  border-radius: 999px;
  border: 1.5px solid var(--color-primary); /* BORDE MÁS FINO */
  background: #fff;
  padding: 0 18px;
  font-size: 15px;
}

.mudanza-form input[type="date"] {
  appearance: none;
  background-position: right 18px center;
  background-repeat: no-repeat;
}

.mudanza-form textarea {
  width: 100%;
  min-height: 160px; /* MÁS ALTO COMO EL DISEÑO */
  border-radius: 22px;
  border: 1.5px solid var(--color-primary);
  padding: 16px 18px;
  font-size: 15px;
  resize: vertical;
}

/* Select con flechita (si ya lo tenías, déjalo igual) */
.mudanza-form select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-repeat: no-repeat;
  background-position: calc(100% - 18px) center;
  /* aquí podrías poner una imagen de flecha si quieres */
}

.row-full {
  width: 100%;
}

.row-3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
}

.row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

/* AVISO + BOTÓN */
.form-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 8px;
}

.aviso-mudanza {
  margin-top: 4px;
  margin-left: 6px;
  font-size: 13px;
  color: #777;
}

.aviso-mudanza a {
  color: var(--color-header-font);
  text-decoration: underline;
}

.btn-mudanza-enviar {
  border: none;
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 999px;
  background: var(--color-secondary);
  color: #005d95;
  font-family: "Poppins";
  padding: 12px 40px;
  font-size: 28px;
  font-weight: 600;
  margin-right: 20px;
  margin-top: 12px;
  transition: 0.2s ease;
}

.btn-mudanza-enviar:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
}

/* CARRETERA PEGADA ABAJO-IZQUIERDA */
.mudanza-road {
  position: absolute;
  left: 5px;
  bottom: -10px; /* un pelín hacia abajo para que parezca pegada */
}

.mudanza-road img {
  display: block;
  max-width: 450px;
  height: 290px;
}

/* CONTENEDOR HERO (imagen ya viene con degradado) */
.hero-servicio {
  position: relative;
  width: 100%;
  height: 85vh;
  background: url("img/servicios/reformas_fondo.webp") center/cover no-repeat;
  display: flex;
  align-items: center;
  padding-left: 180px;
}

/* CONTENIDO */
.hero-content-servicio {
  position: relative;
  color: white;
  max-width: 650px;
  z-index: 2;
  display: flex;
  flex-direction: column;
}
/* CONTENEDOR DEL H1 + ESQUINAS */
.hero-title-wrapper {
  position: relative;
  display: inline-block;
  padding: 20px 0; /* espacio para que las esquinas respiren */
}

/* H1 */
.hero-title-wrapper h1 {
  font-size: 3.5rem;
  font-weight: 600;
  line-height: 1.1;
  margin: 0;
}

/* ESQUINAS */
.corner {
  position: absolute;
  width: 26px;
  height: 26px;
  border: 4px solid var(--color-secondary);
}

/* ESQUINA SUPERIOR DERECHA */
.corner-top-right {
  top: -6px;
  right: -6px;
  border-left: none;
  border-bottom: none;
}

/* ESQUINA INFERIOR IZQUIERDA */
.corner-bottom-left {
  bottom: -6px;
  left: -6px;
  border-right: none;
  border-top: none;
}

/* SPAN VERDE */
.hero-tag {
  display: inline-block;
  background: var(--color-primary);
  padding: 14px 28px;
  font-weight: 600;
  font-size: 1rem;
  margin-top: 35px;
  color: #005d95;
  width: 80%;
}

/* BOTÓN WHATSAPP */
.hero-wsp-btn {
  margin-top: 20px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: white;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.1rem;
  border: 3px solid var(--color-secondary);
  width: 34%;
}

.hero-wsp-btn img {
  width: 26px;
  height: 26px;
}

/* CONTENEDOR GENERAL */
.reforma-box {
  padding: 40px 0;
  display: flex;
  justify-content: center;
}

.reforma-inner {
  width: 90%;
  max-width: 1200px;
  display: flex;
  gap: 40px;
  padding: 35px;
  border-radius: 20px;
  border: 3px solid #005d95; /* azul institucional */
  background: #fff;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

/* IMAGEN */
.reforma-img {
  flex: 1;
}

.reforma-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

/* TEXTO */
.reforma-content {
  flex: 1.2;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.reforma-content h2 {
  font-size: 26px;
  font-weight: 800;
  color: #005d95;
  line-height: 1.25;
}

.reforma-content p {
  font-size: 15px;
  color: #333;
  line-height: 1.5;
}

/* BOTÓN */
.btn-reforma {
  display: inline-block;
  margin-top: 10px;
  padding: 12px 28px;
  background: #005d95;
  color: #fff;
  border-radius: 999px;
  font-weight: 600;
  width: 80%;
  text-decoration: none;
  transition: 0.2s ease;
}

.btn-reforma:hover {
  background: #00b382;
  transform: translateY(-2px);
}
/* ===== BLOQUE EXPERT VIVIENDA ===== */
.expert-vivienda {
  padding: 70px 0;
}

.expert-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  background: #005d95;
  border-radius: 32px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  column-gap: 40px;
  color: #ffffff;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
}

/* ===== COLUMNA IZQUIERDA ===== */
.expert-left {
  padding: 32px 40px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* TAG amarillo */
.expert-tag {
  display: inline-block;
  padding: 8px 22px;
  background: #f9b000;
  color: #005d95;
  font-weight: 400;
  font-size: 14px;
  border-radius: 999px;
  margin-bottom: 22px;
}

/* Título */
.expert-title {
  margin: 0 0 26px;
  font-size: 30px;
  font-weight: 600;
  line-height: 1.2;
}

/* ===== LISTA DE BENEFICIOS ===== */
.expert-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.expert-list li {
  display: grid;
  grid-template-columns: 28px auto;
  gap: 12px;
  align-items: center;
  font-size: 16px;
  line-height: 1.5;
  color: #fff;
}

.expert-icon {
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.expert-icon img {
  width: 22px;
  height: auto;
  display: block;
}

/* Badge NEW corregido y alineado */
.expert-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 2px 10px;
  border-radius: 999px;
  background: #ff4b4b;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  margin-right: 6px;
  transform: translateY(-1px);
}

/* ===== COLUMNA DERECHA ===== */
.expert-right {
  padding: 32px 32px 32px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.expert-video {
  width: 100%;
  max-width: 460px;
  border-radius: 28px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}

.expert-video img,
.expert-video iframe,
.expert-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Variante LAMPISTERÍA: solo cambia la imagen de fondo */
.service-hero--lampisteria .service-hero-bg {
  background-image: url("img/servicios/hero_lampisteria.webp"); /* cambia por tu ruta real */
}
.service-hero--pintura .service-hero-bg {
  background-image: url("img/servicios/hero_pintura.webp"); /* usa aquí tu imagen exportada con degradado */
  background-size: cover;
  background-position: center;
}
.service-hero {
  position: relative;
  margin-top: var(--header-height);
  height: 520px;
  display: flex;
  align-items: center;
}

.service-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: -1;
}

.service-hero-inner {
  width: min(1200px, 92%);
  margin: 0 auto;
  padding-left: 60px;
}

.service-hero-content {
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* Aseguramos las esquinas solo alrededor del H1 (igual que reformas) */
.service-hero-title {
  position: relative;
  padding: 10px 6px;
  display: inline-block;
  font-size: 3rem;
  line-height: 1.1;
  color: #ffffff;
  font-weight: 600;
  width: 53%;
}

/* esquina arriba derecha */
.service-hero-title::before {
  content: "";
  position: absolute;
  width: 32px;
  height: 32px;
  border-top: 4px solid #f9b000;
  border-right: 4px solid #f9b000;
  top: -14px;
  right: -18px;
}

/* esquina abajo izquierda */
.service-hero-title::after {
  content: "";
  position: absolute;
  width: 32px;
  height: 32px;
  border-bottom: 4px solid #f9b000;
  border-left: 4px solid #f9b000;
  bottom: -14px;
  left: -18px;
}

/* barra verde de “Asesoramiento profesional sin compromiso” */
.service-hero-tagline {
  display: inline-block;
  margin-top: 24px;
  padding: 10px 24px;
  background-color: #005d95;
  color: #fff;
  font-size: 17px;
  font-weight: 600;
  width: 40%;
}

/* botón de WhatsApp debajo */
.service-hero-whatsapp {
  margin-top: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 26px;
  border-radius: 999px;
  background: transparent;
  border: 2px solid #f9b000;
  width: 25%;
  color: white;
  font-weight: 600;
  text-decoration: none;
  box-shadow: rgba(0, 0, 0, 0.18) 0px 8px 20px;
}
#pintura-acabados-text {
  background-color: #f9b000;
  color: #005d95;
}
.service-hero-whatsapp .icon {
  font-size: 18px;
}

.service-hero-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.22);
}

/* ===== BLOQUE PINTURA / INSTALACIONES ===== */

.paint-expert {
  padding: 70px 0;
}

.paint-expert-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
}

/* Tarjeta azul central */
.paint-card {
  background: #005d95;
  border-radius: 32px;
  padding: 36px 40px;
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
  column-gap: 40px;
  align-items: center;
  color: #ffffff;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
  position: relative;
  overflow: hidden;
}

/* Contenido izquierdo (texto + franjas) */
.paint-card-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Etiqueta superior amarilla */
.paint-tag {
  display: inline-block;
  padding: 6px 18px;
  background: #f9b000;
  color: #005d95;
  font-weight: 600;
  font-size: 13px;
  border-radius: 999px;
}

.paint-title {
  margin: 0;
  font-size: 26px;
  line-height: 1.25;
}

/* Franjas de colores */
.paint-stripes {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 8px;
}

.paint-stripe {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 18px;
  border-radius: 4px;
  font-size: 14px;
  line-height: 1.4;
  color: #ffffff;
}

/* Colores de cada franja */
.stripe-green {
  background: #3cb44a;
}

.stripe-yellow {
  background: #ffb000;
}

.stripe-orange {
  background: #ff6b3b;
}

/* Icono de check dentro de las franjas */
.paint-icon {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.paint-icon img {
  width: 22px;
  height: auto;
  display: block;
}

/* Paleta de colores (derecha) */
.paint-palette {
  display: flex;
  align-items: center;
  justify-content: center;
}

.paint-palette img {
  max-width: 260px;
  width: 100%;
  height: auto;
  display: block;
}

/* Brocha izquierda que entra al bloque */
.paint-roller {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(-20%, -50%); /* la mete un poco hacia adentro */
  z-index: 2;
}

.paint-roller img {
  max-width: 220px;
  width: 100%;
  height: auto;
  display: block;
}

/* ============================================================
   PANEL FLOTANTE DE COTIZACIÓN
   ============================================================ */
/* === BOTÓN FLOTANTE FIJO === */
.precio-widget {
  position: fixed;
  bottom: 22px;
  left: 22px;
  z-index: 9999;
}

.precio-btn {
  background: #00c2a8;
  color: white;
  font-weight: 600;
  padding: 12px 26px;
  border-radius: 999px;
  border: none;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18);
  transition: 0.25s ease;
  animation: pulseBtn 2s infinite ease-in-out;
}

.precio-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.22);
}

/* === PANEL DESLIZABLE === */
.precio-panel {
  position: fixed;
  bottom: -100%;
  right: 120px;
  width: 100%;
  max-width: 380px;
  background: linear-gradient(180deg, #0072a8, #004c73);
  color: #fff;
  padding: 24px;
  border-radius: 22px 22px 0 0;
  box-shadow: 0 -12px 45px rgba(0, 0, 0, 0.35);
  transition: bottom 0.45s cubic-bezier(0.18, 0.89, 0.32, 1.28);
}

/* Cuando está abierto */
.precio-panel.open {
  bottom: 0;
}

.panel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.close-precio {
  background: transparent;
  color: white;
  font-size: 20px;
  border: none;
  cursor: pointer;
}

.precio-form {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.precio-form input,
.precio-form textarea {
  width: 100%;
  border-radius: 10px;
  border: none;
  padding: 12px;
  font-size: 14px;
  outline: none;
}

textarea {
  height: 95px;
  resize: none;
}

.privacy {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
}

.precio-enviar {
  background: #f9b000;
  border: none;
  padding: 12px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 999px;
  cursor: pointer;
  transition: 0.25s ease;
}

.precio-enviar:hover {
  transform: translateY(-2px);
  background: #ffbe1e;
}

/* === ANIMACIÓN DE PULSACIÓN PARA EL BOTÓN === */
@keyframes pulseBtn {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 rgba(0, 194, 168, 0.4);
  }
  50% {
    transform: scale(1.06);
    box-shadow: 0 0 16px rgba(0, 194, 168, 0.55);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 rgba(0, 194, 168, 0.4);
  }
}

/* ============================
   RESPONSIVE INDEX (MÓVIL)
   ============================ */
@media (max-width: 768px) {
  /* HEADER + NAV 100% ancho */

  :root {
    --header-height: 70px; /* un poco más bajo en móvil */
  }
  .header {
    width: 100vw;
    padding: 0 12px;
  }

  .header-inner {
    max-width: 100%;
    padding: 0 12px;
  }
  .top-bar {
    padding: 4px 0;
  }
  /* Layout del nav-bar en 3 columnas: [burger][logo][cotiza] */
  .nav-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 6px 0 8px;
  }
  .burger {
    order: 1;
  }
  .logo {
    order: 2;
    flex: 1;
    display: flex;
    justify-content: center; /* centra el logo */
  }
  .header-actions {
    order: 3;
  }
  .burger {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    width: 30px;
    height: 30px;
    padding: 0;
    border: none;
    background: transparent;
    cursor: pointer;
  }

  .burger span {
    display: block;
    width: 100%;
    height: 3px;
    border-radius: 999px;
    background: var(--color-header-font);
    transition: transform 0.25s ease, opacity 0.25s ease;
  }
  /* animación X al abrir */
  .burger.open span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }
  .burger.open span:nth-child(2) {
    opacity: 0;
  }
  .burger.open span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }
  .logo {
    justify-self: center;
  }
  .logo-img {
    height: 15px;
  }

  .header-actions {
    justify-self: end;
  }

  .contact-top {
    display: none; /* en móvil quitamos el bloque de "Contáctanos" para no saturar */
  }
  .btn-cta {
    padding: 8px 14px;
    font-size: 15px;
  }
  /* ===== NAV DESPLEGABLE ===== */

  .nav {
    position: fixed;
    top: var(--header-height); /* justo debajo del header */
    left: 0;
    right: 0;
    width: 100%; /* 🔥 aquí nos aseguramos de que ocupa TODO el ancho */
    background: #ffffff;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
    transform: translateY(-120%);
    transition: transform 0.3s ease;
    z-index: 40;
  }

  .nav-open {
    /* clase que activas desde JS */
    transform: translateY(0);
  }

  .nav > ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 12px 16px 16px;
  }

  .nav > ul > li {
    width: 100%;
  }

  .nav a {
    display: block;
    width: 100%;
    padding: 10px 4px;
  }
  /* dropdown anidado también full width */
  .dropdown-menu {
    position: static;
    box-shadow: none;
    padding-left: 12px;
  }

  /* La línea amarilla del nav (indicator) no es tan necesaria en mobile; si quieres la ocultas: */
  .nav-indicator {
    display: none;
  }

  /* ================= HERO ================= */
  .hero {
    min-height: calc(85vh - 70px); /* 70px aprox del header fijo */
    align-items: flex-start;
  }

  .hero-bg {
    background-position: center;
    background-size: auto;
  }

  .hero-content {
    padding: 110px 16px 40px; /* baja un poco por el header fijo */
    text-align: center;
  }

  .hero h1 {
    font-size: 2rem;
    line-height: 1.2;
    margin-bottom: 14px;
  }

  .hero p {
    font-size: 0.95rem;
    max-width: none;
    margin: 0 auto 18px;
  }

  .hero-buttons {
    flex-direction: row;
    flex-wrap: inherit;
    gap: 10px;
    justify-content: space-around;
  }

  .hero-buttons .btn {
    width: 50%;
    justify-content: center;
    border-radius: 10px;
    white-space: normal;
  }

  /* ================= ICONOS SERVICIOS ================= */
  .services-strip .container {
    padding: 0 8px;
  }
  .services-track-wrapper {
    overflow: hidden; /* que no se vea lo que se sale al deslizar */
  }
  .services-track-wrapper {
    overflow: hidden; /* que no se vea lo que se sale al deslizar */
  }
  .services-carousel {
    padding: 12px 0 18px;
  }

  .service-item p {
    font-size: 0.7rem;
  }

  /* ================= POR QUÉ ELEGIR ================= */
  .why-section {
    padding: 40px 0;
  }

  .why-flex {
    flex-direction: column;
    gap: 22px;
  }

  .why-image {
    order: 1; /* si quieres imagen abajo, cambia a 2 */
  }

  .why-card {
    order: 2;
    padding: 0 16px;
  }

  .why-card h2 {
    font-size: 1.5rem;
    text-align: center;
  }

  .why-item {
    align-items: flex-start;
  }

  .why-item h3 {
    font-size: 1rem;
  }

  .why-item p {
    font-size: 0.9rem;
  }

  /* ================= CARRUSEL SOLUCIÓN A TU MEDIDA ================= */
  .solutions-section {
    padding: 40px 0;
  }

  .solutions-title {
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 18px;
  }

  .solutions-carousel {
    overflow: hidden;
    padding: 0 10px;
  }

  .solution-card {
    min-width: 260px;
  }

  /* =================  STATS ================= */
  .stats-section {
    padding: 32px 0 10px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 20px;
  }

  .stat-number {
    font-size: 1.4rem;
  }

  .stat-label {
    font-size: 0.8rem;
  }

  /* ================= CANALES DE ATENCIÓN ================= */
  .channels-section {
    padding: 40px 0;
  }

  .containe-channels {
    padding: 0 16px;
    align-items: center;
  }

  .channels-title {
    text-align: center;
    font-size: 1.5rem;
    width: 70%;
  }

  .channels-text {
    font-size: 0.9rem;
    text-align: center;
    width: 92%;
  }

  .channels-buttons {
    flex-direction: column;
    gap: 20px;
    width: 100%;
    align-items: center;
    height: 17vh;
    flex-wrap: nowrap;
  }

  .channel-btn {
    width: 60%;
    height: 50%;
    justify-content: space-between;
  }
  .channel-label {
    font-size: 16px;
  }
  /* ================= COTIZA CON NOSOTROS ================= */
  .cotiza-section {
    padding: 40px 0;
  }

  .cotiza-container {
    padding: 0 0px;
  }

  .cotiza-card {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 20px;
  }

  .cotiza-img {
    display: none;
  }
  .cotiza-content {
    width: 100%;
    padding: 20px 0 0;
  }

  .cotiza-header h2 {
    font-size: 1.9rem;
  }

  .cotiza-row {
    flex-direction: column;
    gap: 10px;
    display: flex;
  }

  .cotiza-row input {
    width: 100%;
  }

  .cotiza-btn {
    width: 100%;
    justify-content: center;
    border-radius: 10px;
  }

  /* ================= FOOTER ================= */
  .footer-container {
    flex-direction: column;
    gap: 24px;
    display: flex;
    padding: 19px 10px;
    overflow: hidden;
  }
  .footer-description {
    text-align: justify;
  }
  .footer-social {
    justify-content: start;
    padding-bottom: 10px;
    border-bottom: 2px solid;
  }
  .footer-divider-vert {
    display: none;
  }

  .footer-col h3 {
    font-size: 1rem;
  }

  .footer-col ul li {
    font-size: 0.85rem;
  }
  .footer-logo img {
    height: 40px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    padding: 16px;
    text-align: center;
  }

  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
  }

  /* ===== HERO REFORMAS ===== */
  .hero-servicio {
    padding: 0 16px 32px;
    height: 72vh;
    min-height: calc(80vh - var(--header-height));
    background-position: center;
    background-size: auto;
    align-items: center;
  }

  .hero-content-servicio {
    max-width: 100%;
    align-items: center;
    text-align: center;
  }

  .hero-title-wrapper {
    padding: 12px 0;
  }

  .hero-title-wrapper h1 {
    font-size: 2.2rem;
    line-height: 1.15;
  }

  .hero-tag {
    margin-top: 18px;
    width: 100%;
    font-size: 0.95rem;
  }

  .hero-wsp-btn {
    margin-top: 16px;
    width: 80%;
    justify-content: center;
    font-size: 1rem;
  }

  /* ===== BOX REFORMA ===== */
  .reforma-box {
    padding: 32px 0;
  }

  .reforma-inner {
    flex-direction: column;
    gap: 20px;
    padding: 20px;
  }

  .reforma-img {
    width: 100%;
  }

  .reforma-content h2 {
    font-size: 1.4rem;
  }

  .reforma-content p {
    font-size: 0.95rem;
  }

  .btn-reforma {
    width: 100%;
    text-align: center;
  }

  /* ===== EXPERT VIVIENDA ===== */
  .expert-vivienda {
    padding: 40px 0;
  }

  .expert-inner {
    grid-template-columns: 1fr;
    padding: 20px 16px;
  }

  /* Imagen arriba, texto abajo (como en el mockup) */
  .expert-right {
    order: -1;
    padding: 0 0 18px;
  }

  .expert-left {
    padding: 18px 8px 24px;
  }

  .expert-title {
    font-size: 1.6rem;
    text-align: center;
  }

  .expert-tag {
    text-align: center;
    margin: 0 auto 16px;
  }

  .expert-list {
    gap: 14px;
  }

  .expert-list li {
    font-size: 0.95rem;
  }

  /* Opcional: la tarjeta azul que no pegue tanto a los bordes */
  .expert-inner {
    border-radius: 24px;
  }

  /* ===== CONTACTO: ESTAMOS AQUÍ PARA AYUDARTE (responsive) ===== */

  .help-section {
    padding: 40px 0 30px;
    margin-top: calc(var(--header-height) + 10px); /* respeta el header fijo */
  }

  .help-container {
    width: 100%;
    padding: 0 14px;
  }

  .help-pill {
    font-size: 1.4rem;
    padding: 10px 24px;
    margin-bottom: 20px;
    background: none;
  }

  .help-card {
    max-width: 100%;
    padding: 18px 16px 20px;
    grid-template-columns: 1fr; /* de 2 columnas a 1 */
    row-gap: 18px;
  }

  .help-col {
    width: 100%;
  }

  .help-col-right {
    align-items: flex-start; /* ya no pegado a la derecha */
  }

  .help-map,
  .help-box {
    height: 180px; /* más bajito en móvil */
  }

  .help-location h3 {
    font-size: 0.95rem;
  }

  .help-location p {
    font-size: 0.8rem;
  }

  .help-actions {
    margin-top: 14px;
    width: 100%;
    display: flex;
    flex-direction: column; /* fila 1 y fila 2 una debajo de la otra */
    gap: 10px;
  }

  .help-actions-row {
    display: flex;
    justify-content: center;
    gap: 10px; /* separación horizontal entre botones */
  }

  /* Botón base */
  .help-btn {
    padding: 8px 20px;
    border-radius: 10px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 2px solid #0f67b1;
    background: #ffffff;
    color: #0f67b1;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    transition: 0.2s ease;
    cursor: pointer;
    flex: 1 1 0; /* que repartan el ancho de cada fila */
  }

  /* Fila de abajo: teléfono un poco más corto y WhatsApp más largo */
  .help-btn--phone {
    flex: 0 0 45%;
  }
  .help-btn--whatsapp {
    flex: 0 0 55%;
    border-color: var(--color-primary);
    background: #00bd42;
    color: #ffffff;
  }
  #help-btn-40 {
    width: auto;
  }

  /* ===== GALERÍA: HERO RESPONSIVE ===== */

  .galeria-hero {
    padding: calc(var(--header-height) + 20px) 0 24px;
  }

  .galeria-hero-inner {
    width: 100%;
    padding: 0 16px;
    grid-template-columns: 1fr; /* texto arriba, visual abajo */
    row-gap: 26px;
    align-items: center;
  }

  .galeria-hero-text {
    text-align: center;
  }

  .galeria-hero-text h1 {
    font-size: 2rem;
    line-height: 1.2;
    font-weight: 600;
  }

  .galeria-hero-circle {
    top: 32%;
    transform: translate(-50%, -60%);
    width: 220px;
    height: 230px;
    opacity: 0.8;
    right: -55%;
    left: inherit;
  }

  .galeria-hero-visual {
    height: 320px; /* mucho más bajo que los 540px de desktop */
    min-height: 280px;
  }

  .galeria-road {
    width: 115%;
    height: 52%;
    bottom: -23px;
  }

  .galeria-house {
    width: 82%;
    height: 80%;
    bottom: 55px;
  }
  /* ===== GALERÍA: GRID / MASONRY RESPONSIVE ===== */

  .galeria-masonry {
    padding: 40px 0 60px;
  }

  .galeria-masonry-inner {
    width: 100%;
    padding: 0 16px;
    grid-template-columns: repeat(2, minmax(0, 1fr)); /* de 3 → 2 columnas */
    grid-auto-rows: 160px; /* un poco más bajo */
    gap: 16px;
  }

  .galeria-card {
    border-radius: 22px;
  }

  .galeria-card--text {
    padding: 18px 16px 14px;
  }

  .galeria-card-body h3 {
    font-size: 1rem;
  }

  .galeria-card-body p {
    font-size: 0.85rem;
  }

  .galeria-btn {
    padding: 8px 18px;
    font-size: 0.8rem;
  }
  /* ================= TRANSPORTE Y MUDANZAS (MÓVIL) ================= */

  /* HERO: texto arriba, furgón abajo y todo más compacto */
  .mudanza-hero {
    flex-direction: column;
    align-items: flex-start;
    padding: calc(var(--header-height) + 20px) 16px 24px;
    min-height: 67vh;
  }
  .mudanza-image img {
    position: absolute;
    bottom: 0;
  }
  .mudanza-text {
    padding-left: 0;
    max-width: 100%;
    text-align: center;
    align-items: center;
    display: flex;
    flex-direction: column;
  }

  .mudanza-text h1 {
    font-size: 2.1rem;
    line-height: 1.15;
    margin-bottom: 2px;
  }

  .mudanza-text p {
    font-size: 1rem;
    width: 60%;
    margin-bottom: 18px;
  }
  .input-text {
    width: 100%;
    border-radius: 10px;
  }
  .mudanza-btn {
    width: 90%;
    justify-content: center;
    text-align: center;
    border-radius: 999px;
    padding: 15px 28px;
  }

  .mudanza-image {
    position: static;
    width: 100%;
    max-width: 420px;
    margin: 16px auto 0;
  }

  /* BLOQUE "SOLICITAR MOVILIDAD" */
  .solicitar-mov-box {
    padding: 24px 16px 28px;
    border-radius: 22px;
  }

  .solicitar-mov-content {
    flex-direction: column;
    align-items: center;
    gap: 22px;
    padding: 0;
    height: 43vh;
  }

  .solicitar-left {
    justify-content: center;
    align-items: center;
    text-align: left;
  }

  .solicitar-title .title-top {
    font-size: 1.6rem;
  }

  .solicitar-divider {
    height: 60px;
  }

  .solicitar-info {
    width: auto;
    align-items: flex-start;
  }

  .solicitar-form {
    width: 90%;
  }

  .row-tel-enviar {
    flex-direction: column;
    gap: 10px;
  }

  .flex-70,
  .flex-30 {
    flex: 0 0 40%;
  }

  .btn-enviar {
    width: 100%;
    justify-content: center;
    border-radius: 10px;
    margin-top: 2vh;
  }
  .input-plus {
    right: 7%;
  }
  .aviso {
    text-align: left;
    font-size: 0.7rem;
  }

  /* NUESTROS SERVICIOS (cards) */
  .mudanza-servicios {
    padding: 50px 0 60px;
    overflow: hidden;
  }

  .mudanza-servicios-title {
    font-size: 1.9rem;
    margin-bottom: 45px;
  }

  .mudanza-servicios-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    width: 100%;
    padding: 0 16px;
  }
  /* ===== ANIMACIÓN TARJETAS SERVICIOS ===== */

  @keyframes slideLeft {
    from {
      opacity: 0;
      transform: translateX(-40px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }

  @keyframes slideRight {
    from {
      opacity: 0;
      transform: translateX(40px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }

  .serv-card {
    max-width: 90%; /* no ocupan todo el ancho */
    padding: 16px 18px;
    border-radius: 18px;
    opacity: 0;
  }

  .serv-card-full {
    grid-column: auto;
  }
  /* alineadas a la izquierda */
  .serv-left {
    margin-left: 0;
    margin-right: auto;
    animation: slideLeft 0.6s ease forwards;
  }
  /* alineadas a la derecha */
  .serv-right {
    margin-left: auto;
    margin-right: 0;
    animation: slideRight 0.6s ease forwards;
  }
  /* ¿CÓMO FUNCIONA? */
  .como-funciona {
    padding: 50px 0 60px;
  }

  .cf-title {
    font-size: 1.8rem;
    margin-bottom: 26px;
  }

  .cf-steps {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 1 y 2 arriba */
    gap: 26px;
    width: 100%;
    padding: 0 20px;
  }
  .cf-step {
    text-align: center;
    max-width: 220px; /* controla ancho del texto */
    margin: 0 auto;
  }
  /* El paso 3 pasa a la segunda fila y se centra */
  .cf-step:nth-child(3) {
    grid-column: 1 / 3; /* ocupa ambas columnas */
    justify-self: center; /* se centra */
  }

  /* COTIZA TU MUDANZA */
  .mudanza-cotiza {
    padding: 50px 0 70px;
  }

  .mudanza-cotiza-inner {
    grid-template-columns: 1fr;
    row-gap: 20px;
    padding: 24px 16px 28px;
    z-index: -3;
  }

  .mudanza-left {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 18px;
    padding-top: 0;
    padding-bottom: 0;
  }

  .mudanza-title {
    margin-left: 0;
  }

  .mudanza-title h2 {
    font-size: 1.8rem;
  }

  .badge-ahora {
    font-size: 1.3rem;
    padding: 2px 16px;
  }

  .mudanza-mini {
    max-width: none;
  }

  /* La carretera puede molestar en pantallas pequeñas: la ocultamos */
  .mudanza-road {
    display: flex;
    width: 100%;
    z-index: -2;
    justify-content: center;
  }
.mudanza-road img{
  max-width: 375px;
  height: 208px;
}
  .mudanza-form {
    gap: 10px;
  }

  .row-2,
  .row-3 {
    grid-template-columns: 1fr;
  }

  .form-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .btn-mudanza-enviar {
    width: 100%;
    justify-content: center;
    font-size: 1rem;
    margin-right: 0;
    margin-top: 0;
  }

  .aviso-mudanza {
    font-size: 0.8rem;
  }
}
