@charset "UTF-8";
/* Variables */
/* Base */
body {
  font-family: "DM Sans", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  color: #101828;
}

.topbar {
  background: #F2F2F2;
  color: #334155;
  padding: 0.4rem 0;
  border-bottom: 1px solid #e5e7eb;
}
.topbar .topbar-left .small {
  color: #0071BC;
}
.topbar .topbar-right .small {
  color: #0071BC;
}
.topbar .topbar-right .small i {
  color: #fff;
  border-radius: 50%;
  background-color: #FBB03B;
  width: 20px;
  height: 20px;
  text-align: center;
  line-height: 20px;
  margin-right: 5px;
  font-size: 10px;
}
.topbar .topbar-right a {
  text-decoration: none;
}
.topbar .topbar-right .topbar-phone {
  font-weight: 800;
  color: #FBB03B;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.9333333333);
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* Buttons */
.btn-pill {
  border-radius: 999px;
  padding: 0.8rem 1.25rem;
  font-weight: 700;
}

.btn-primary {
  background: #FBB03B;
  border-color: #FBB03B;
}

.btn-primary:hover {
  background: rgb(249.98, 155.855, 9.02);
  border-color: rgb(249.98, 155.855, 9.02);
}

/* Sections */
.section {
  padding: clamp(48px, 8vw, 96px) 0;
}

.section-title {
  font-weight: 800;
  letter-spacing: -0.015em;
  font-size: clamp(28px, 3.5vw, 40px);
}

/* Subhero / Cleaning / Real Estate / Maintenance / Construction */
.subhero {
  position: relative;
  background-size: cover;
  background-position: center;
}

.subhero .overlay {
  position: relative;
  z-index: 1;
}

.subhero .overlay .container {
  position: relative;
  z-index: 2;
  color: #fff;
}

.cleaning-hero .inner {
  min-height: 30vh;
  display: flex;
  align-items: center;
}

.real-estate-hero .inner {
  min-height: 30vh;
  display: flex;
  align-items: center;
}

.maintenance-hero .inner {
  min-height: 30vh;
  display: flex;
  align-items: center;
}

.construction-hero .inner {
  min-height: 30vh;
  display: flex;
  align-items: center;
}

.contact-hero .inner {
  min-height: 30vh;
  display: flex;
  align-items: center;
}

/* Color splits */
.split-primary {
  color: #0071BC;
}

.split-secondary {
  color: #2BAAE2;
}

.split-accent {
  color: #FBB03B;
}

.split-white {
  color: #fff;
}

/* --------- Navbar pills (hover/active) --------- */
.navbar {
  transition: background-color 0.25s ease, box-shadow 0.25s ease;
  background-color: #fff;
  /* Mobile (colapsada): que ocupen todo el ancho con el mismo hover */
  /* Cuando la navbar está scrolleada (ya tienes .scrolled), mantenemos misma estética */
}
.navbar .navbar-brand img {
  max-width: 250px;
  width: 100%;
  height: auto;
}
@media (max-width: 991.98px) {
  .navbar .navbar-brand img {
    max-width: 200px;
  }
}
.navbar .navbar-nav {
  gap: clamp(0.25rem, 1vw, 0.75rem);
}
.navbar .nav-link {
  position: relative;
  border-radius: 999px;
  padding: 0.45rem 0.95rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #00395E;
  transition: color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}
.navbar .nav-link:hover, .navbar .nav-link:focus-visible {
  color: #0071BC;
  background: rgba(43, 170, 226, 0.14);
  text-decoration: none;
}
.navbar .nav-link.active {
  color: #2BAAE2;
  background: rgba(43, 170, 226, 0.18);
}
@media (max-width: 991.98px) {
  .navbar .nav-link {
    padding: 0.75rem 1rem;
    border-radius: 14px;
  }
}

/* Hero */
#home {
  /* 🟡 Dots alineados con el texto */
}
#home .hero-slider {
  margin-bottom: 0;
  position: relative;
}
#home .hero-slider .hero-slide {
  position: relative;
  min-height: calc(100vh - 170px);
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
}
@media (max-width: 991.98px) {
  #home .hero-slider .hero-slide {
    min-height: calc(100vh - 80px);
  }
  #home .hero-slider .hero-slide:nth-child(1) {
    background-position-x: 20%;
  }
  #home .hero-slider .hero-slide:nth-child(2) {
    background-position-x: 70%;
  }
  #home .hero-slider .hero-slide:nth-child(3) {
    background-position-x: 20%;
  }
}
#home .hero-slider .hero-slide .hero-inner {
  width: 100%;
  display: flex;
  align-items: center;
}
#home .hero-slider .hero-slide .hero-inner .hero-copy {
  color: #fff;
  text-align: left;
  max-width: 680px;
}
#home .hero-slider .hero-slide .hero-inner .hero-copy h1 {
  font-weight: 800;
  letter-spacing: -0.02em;
  font-size: clamp(36px, 5vw, 70px);
  margin-bottom: 1.5rem;
}
#home .hero-slider .hero-slide .hero-inner .btn-pill {
  display: inline-block;
  margin-bottom: 2.5rem;
}
#home .hero-slider .slick-slide {
  display: flex !important;
  align-items: center;
}
#home .slick-dots {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 4rem);
  max-width: 1140px;
  text-align: left;
  margin: 0 auto;
  padding-left: 1.5rem;
  z-index: 3;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 10px;
}
#home .slick-dots li {
  margin: 0;
}
#home .slick-dots li button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #fff;
  border: none;
  padding: 0;
  cursor: pointer;
  opacity: 0.5;
  transition: opacity 0.3s, transform 0.3s;
  text-indent: -9999px;
}
#home .slick-dots li.slick-active button {
  opacity: 1;
  transform: scale(1.2);
  background: #FBB03B;
}

#quote {
  /* Fondo tipo mockup (azules + polígono) */
  position: relative;
  background: linear-gradient(180deg, #0071BC 0%, rgb(0, 100.7382978723, 167.6) 100%);
  padding: clamp(48px, 8vw, 50px) 0;
  /* 🔧 Perillas para la forma (ajústalas 1–2% hasta clavar el mockup) */
  --p1x: 0%;
  --p1y: 100%; /* esquina izquierda superior del shape */
  --p2x: 25%;
  --p2y: 5%; /* pico superior (casi centrado hacia la izquierda) */
  --p3x: 70%;
  --p3y: 100%; /* punta derecha a media altura */
  --p4x: 0%;
  --p4y: 100%; /* esquina izquierda inferior del shape */
  /* Bordes sutiles oscuro/oscuro para que se vea como la referencia */
  /* Card invisible: solo espacio y sombra sutil si quieres */
  /* Labels blancas */
  /* Pill inputs translúcidos */
  /* caret y flecha del select claros */
  /* Botón */
  /* Bordes y sombras suaves opcionales a inputs */
  /* Responsive */
}
#quote::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #2BAAE2;
  clip-path: polygon(var(--p1x) var(--p1y), var(--p2x) var(--p2y), var(--p3x) var(--p3y), var(--p4x) var(--p4y));
  z-index: 0;
}
@media (max-width: 991.98px) {
  #quote::before {
    clip-path: polygon(var(--p1x) var(--p1y), var(--p2x) 90%, var(--p3x) var(--p3y), var(--p4x) var(--p4y));
  }
}
#quote .container {
  position: relative;
  z-index: 1;
}
#quote::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0) 18%) top/100% 14% no-repeat, linear-gradient(to top, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0) 18%) bottom/100% 14% no-repeat;
  pointer-events: none;
  z-index: 0;
  mix-blend-mode: multiply;
}
#quote .quote-card {
  background: transparent;
  border: 0;
  border-radius: 20px;
}
#quote .quote-body {
  padding: clamp(16px, 3vw, 28px);
}
#quote .section-title {
  color: #fff;
  font-weight: 800;
  letter-spacing: -0.015em;
}
#quote .form-label {
  color: #fff;
  font-weight: 700;
  margin-bottom: 0.35rem;
}
#quote .form-control,
#quote .form-select {
  border-radius: 999px;
  border: 0;
  background: rgba(255, 255, 255, 0.35);
  color: #fff;
  height: 48px;
  padding: 10px 16px;
}
#quote .form-control::-moz-placeholder, #quote .form-select::-moz-placeholder {
  color: rgba(255, 255, 255, 0.9);
}
#quote .form-control::placeholder,
#quote .form-select::placeholder {
  color: rgba(255, 255, 255, 0.9);
}
#quote .form-control:focus,
#quote .form-select:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(251, 176, 59, 0.35);
  background: rgba(255, 255, 255, 0.45);
  color: #fff;
}
#quote .form-select {
  background-image: none;
}
#quote .form-select option {
  background-color: #fff;
  color: #000;
}
#quote .btn-pill {
  border-radius: 999px;
  font-weight: 800;
  height: 48px;
}
#quote .quote-submit {
  background: #FBB03B;
  border-color: #FBB03B;
}
#quote .quote-submit:hover {
  background: rgb(250.184, 159.884, 19.016);
  border-color: rgb(250.184, 159.884, 19.016);
}
#quote .form-control, #quote .form-select {
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.25);
}
@media (max-width: 991.98px) {
  #quote .quote-submit {
    width: 100%;
  }
}

/* Helper para clip-path con compatibilidad de minificación */
#about {
  /* Responsive tweaks */
}
#about .about-figure .about-img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.16);
  -o-object-fit: cover;
     object-fit: cover;
}
#about .about-copy {
  color: #00395E;
}
#about .about-copy .about-title {
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.02;
  font-size: clamp(32px, 4.8vw, 56px);
  margin-bottom: 1rem;
  /* Colores del mockup (ya tienes helpers split-*) */
}
@media (max-width: 991.98px) {
  #about .about-copy .about-title {
    text-align: center;
  }
  #about .about-copy .about-title span {
    display: inline-block !important;
  }
}
#about .about-copy .about-title .split-primary {
  color: #0071BC;
}
#about .about-copy .about-title .split-secondary {
  color: #2BAAE2;
}
#about .about-copy p {
  color: #00395E;
  margin-bottom: 0.9rem;
}
#about .about-copy .about-highlight {
  color: #FBB03B;
  font-weight: 800;
  margin-top: 0.75rem;
}
@media (max-width: 991.98px) {
  #about { /* imagen primero en móvil  */ }
  #about .about-copy {
    text-align: left;
  }
  #about .about-figure {
    order: -1;
  }
}

#metrics {
  position: relative;
  overflow: hidden;
  padding: clamp(48px, 8vw, 50px) 0;
  background: linear-gradient(180deg, #0071BC 0%, rgb(0, 94.6074468085, 157.4) 100%);
  /* decor: líneas/edificio */
  /* responsive: centra en móvil */
}
#metrics::after {
  content: "";
  position: absolute;
  right: -6vw;
  bottom: 0;
  width: 35vw;
  height: 100%;
  opacity: 1;
  pointer-events: none;
  background: url("../img/imgs_home/pleca-contador_150x200.png") no-repeat center/contain;
}
#metrics .container {
  position: relative;
  z-index: 1;
}
#metrics .metrics-title {
  color: #fff;
  font-weight: 800;
  letter-spacing: -0.015em;
  font-size: clamp(28px, 4vw, 44px);
}
@media (max-width: 991.98px) {
  #metrics .metrics-title {
    text-align: center;
  }
}
#metrics .facts {
  gap: clamp(16px, 4vw, 48px);
  margin: 0;
}
#metrics .facts .fact {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex: 0 0 auto;
}
#metrics .facts .fact .num {
  font-weight: 800;
  font-size: clamp(28px, 6vw, 56px);
  line-height: 1;
  color: #FBB03B;
  min-width: auto;
}
#metrics .facts .fact .label {
  color: #fff;
  font-weight: 700;
  white-space: nowrap;
  font-size: clamp(14px, 1.6vw, 18px);
  opacity: 0.95;
}
@media (max-width: 991.98px) {
  #metrics .facts {
    justify-content: center;
  }
}

#values .values-title {
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.05;
  font-size: clamp(32px, 4.8vw, 56px);
  margin-bottom: 4rem;
}
@media (max-width: 991.98px) {
  #values .values-title {
    text-align: center;
    margin-bottom: 3rem;
  }
}
#values .values-title .split-primary {
  color: #0071BC;
}
#values .values-title .split-secondary {
  color: #2BAAE2;
}
#values .value .value-header {
  align-items: center;
  margin-bottom: 0.75rem;
}
@media (max-width: 991.98px) {
  #values .value .value-header {
    display: block !important;
    text-align: center;
  }
}
#values .value .icon-svg {
  width: 75px;
  height: 75px;
  border-radius: 50%;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}
@media (max-width: 991.98px) {
  #values .value .icon-svg {
    margin: 0 auto 20px;
  }
}
#values .value:nth-child(2n) .icon-svg {
  background-color: #2BAAE2;
}
#values .value .value-name {
  font-weight: 700;
  color: #0071BC;
  font-size: 1.15rem;
  line-height: 1.1;
  margin: 0;
}
#values .value .value-desc {
  margin-left: 0;
  color: #00395E;
  font-size: 0.95rem;
  line-height: 1.45;
  font-family: "DM Sans", sans-serif;
  max-width: 260px;
}
@media (max-width: 991.98px) {
  #values .value .value-desc {
    text-align: center;
    max-width: 80%;
    margin: 0 auto 20px;
  }
}
#values .values-figure .values-img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
  -o-object-fit: cover;
     object-fit: cover;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
}
@media (max-width: 991.98px) {
  #values .values-figure {
    order: -1;
    margin-bottom: 24px;
  }
  #values .value-desc {
    margin-left: 0;
  }
}

#testimonials {
  position: relative;
  min-height: clamp(520px, 70vh, 860px);
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
}
@media (max-width: 991.98px) {
  #testimonials {
    background-position-x: 70%;
  }
}
#testimonials .overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
}
#testimonials .container {
  position: relative;
  z-index: 1;
}
#testimonials .testi-slider {
  max-width: min(720px, 90vw);
  color: #fff;
}
#testimonials .testi-item {
  outline: none;
}
#testimonials .eyebrow {
  font-weight: 800;
  color: #FBB03B;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
}
#testimonials .quote {
  font-weight: 800;
  line-height: 1.15;
  font-size: clamp(26px, 3.8vw, 42px);
  margin-bottom: 1.5rem;
}
#testimonials .person {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
#testimonials .person .avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}
#testimonials .person .name {
  font-weight: 700;
  color: #fff;
}
#testimonials .person .place {
  font-size: 0.9rem;
  color: #e2e8f0;
}
#testimonials .btn-pill {
  font-weight: 700;
}
@media (max-width: 991.98px) {
  #testimonials {
    text-align: center;
  }
  #testimonials .testi-slider {
    margin: 0 auto;
  }
  #testimonials .quote {
    font-size: clamp(22px, 4.5vw, 32px);
  }
  #testimonials .person {
    justify-content: center;
  }
}

/* ===== Services ===== */
#services {
  /* Grid 2x2; la primera puede ser más alta */
  /* Extra: si el dispositivo NO tiene hover (touch) también aplica */
  /* Accesibilidad: respetar usuarios con “reduce motion” */
}
#services .section-title {
  font-family: "DM Sans", sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 4vw, 40px);
  color: #0071BC;
}
@media (max-width: 991.98px) {
  #services .section-title {
    text-align: center;
  }
}
#services .section-title span {
  color: #2BAAE2;
}
#services .services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
@media (max-width: 991.98px) {
  #services .services-grid {
    grid-template-columns: 1fr;
  }
}
#services .service-card {
  /* fondo por variable CSS */
  --bg:none;
  position: relative;
  display: block;
  color: #fff;
  text-decoration: none;
  perspective: 1200px; /* necesario para el 3D */
  /* Cara común */
  /* Hover/Flip */
  /* Zoom sutil SOLO en la frontal */
  /* Accesible con teclado */
}
#services .service-card .card-3d {
  position: relative;
  width: 100%;
  min-height: 340px;
  transform-style: preserve-3d;
  transition: transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
}
@media (min-width: 992px) {
  #services .service-card .card-3d {
    min-height: 420px;
  }
}
#services .service-card .card-face {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  border-radius: 12px;
  overflow: hidden;
  backface-visibility: hidden; /* oculta al girar */
  transform: translateZ(0); /* previene glitch */
  /* Fondo único para ambas caras */
  /* Capa oscura */
}
#services .service-card .card-face::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--bg);
  background-size: cover;
  background-position: center;
  z-index: 0;
  will-change: transform;
  transform: scale(1); /* no animamos en back */
  transition: transform 0.6s ease;
}
#services .service-card .card-face .overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
}
#services .service-card .card-face > * {
  position: relative;
  z-index: 2;
}
@media (max-width: 991.98px) {
  #services .service-card {
    perspective: none; /* sin 3D en mobile para evitar glitches */
    /* Anula cualquier hover/tap que intente girar */
    /* Quita el zoom sutil de la frontal */
  }
  #services .service-card .card-3d {
    transform: rotateY(180deg) !important; /* ver siempre el reverso */
    transition: none !important; /* sin animación en touch */
  }
  #services .service-card:hover .card-3d {
    transform: rotateY(180deg) !important;
  }
  #services .service-card .front::before {
    transform: none !important;
  }
}
#services .service-card .front .front-content {
  padding: 2rem;
}
#services .service-card .front .front-content h3 {
  margin: 0 0 0.4rem 0;
  font-weight: 800;
}
#services .service-card .front .front-content .info {
  display: inline-block;
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  color: #FBB03B;
}
#services .service-card .back {
  transform: rotateY(180deg);
}
#services .service-card .back .back-content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
#services .service-card .back .back-content h3 {
  margin: 0;
  font-weight: 800;
}
#services .service-card .back .back-content p {
  margin: 0;
  max-width: 46ch;
  font-size: 0.98rem;
  line-height: 1.45;
  color: #f8fafc;
}
#services .service-card .back .back-content .btn {
  align-self: flex-start;
  font-weight: 700;
  background: #FBB03B;
  border: 0;
  color: #fff;
}
#services .service-card .back .back-content .btn:hover {
  background: rgb(249.98, 155.855, 9.02);
}
#services .service-card:hover .card-3d {
  transform: rotateY(180deg);
}
#services .service-card:hover .front::before {
  transform: scale(1.06);
}
#services .service-card:focus-visible .card-3d {
  outline: 3px solid #FBB03B;
  outline-offset: 4px;
}
@media (hover: none) and (pointer: coarse) {
  #services .service-card {
    perspective: none;
  }
  #services .service-card .card-3d {
    transform: rotateY(180deg) !important;
    transition: none !important;
  }
  #services .service-card:hover .card-3d {
    transform: rotateY(180deg) !important;
  }
  #services .service-card .front::before {
    transform: none !important;
  }
}
@media (prefers-reduced-motion: reduce) {
  #services .service-card .card-3d {
    transition: none !important;
  }
}

#cta-solution {
  padding-block: clamp(3rem, 6vw, 6rem);
  padding-bottom: 0;
}
#cta-solution .cta-title {
  font-family: "DM Sans", sans-serif;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-size: clamp(28px, 4vw, 48px);
  margin-bottom: 1.5rem;
}
#cta-solution .cta-title .split-primary {
  color: #0071BC;
}
#cta-solution .cta-title .split-secondary {
  color: #2BAAE2;
}
#cta-solution .btn {
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.9rem 1.8rem;
  background: #FBB03B;
  color: #fff;
  border: none;
  transition: background 0.25s ease;
}
#cta-solution .btn:hover {
  background: rgb(250.184, 159.884, 19.016);
}
#cta-solution img {
  max-width: 90%;
  height: auto;
  display: block;
}
@media (max-width: 991.98px) {
  #cta-solution img {
    margin: 0 auto;
  }
}
@media (max-width: 991.98px) {
  #cta-solution {
    text-align: center;
  }
  #cta-solution .cta-title {
    text-align: center;
  }
  #cta-solution .btn {
    margin-top: 1rem;
  }
}

/* ===== Footer ===== */
#site-footer {
  color: #fff;
  font-family: "DM Sans", sans-serif;
  /* Slot para el mapa (si lo usas) */
}
#site-footer .footer-top {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: #2BAAE2; /* azul claro del mockup */
  padding: 90px 0;
  /* imagen del semicírculo */
  /* Social */
}
@media (max-width: 991.98px) {
  #site-footer .footer-top {
    padding: 50px 0;
  }
}
#site-footer .footer-top .footer-curve {
  position: absolute;
  top: 0;
  right: 0;
  width: clamp(520px, 90vw, 1420px);
  height: 90%;
  z-index: 0;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  -o-object-fit: cover;
     object-fit: cover;
}
#site-footer .footer-top .container {
  position: relative;
  z-index: 1;
}
#site-footer .footer-top .footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(12px, 3vw, 32px);
  text-align: center;
}
@media (max-width: 992px) {
  #site-footer .footer-top .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}
#site-footer .footer-top h4 {
  margin: 0 0 0.5rem 0;
  font-weight: 800;
  font-size: clamp(18px, 2.2vw, 22px);
}
#site-footer .footer-top .muted {
  margin: 0;
  font-size: clamp(14px, 1.7vw, 16px);
  color: rgba(255, 255, 255, 0.95);
  text-decoration: none;
}
#site-footer .footer-top .muted i {
  color: #FBB03B;
  margin-right: 0.5rem;
}
#site-footer .footer-top .social .social-row {
  display: inline-flex;
  gap: 12px;
  margin-top: 0.35rem;
}
#site-footer .footer-top .social .social-row a {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  background: #FBB03B;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 6px 14px rgba(251, 176, 59, 0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
#site-footer .footer-top .social .social-row a i {
  font-size: 16px;
  line-height: 1;
}
#site-footer .footer-top .social .social-row a:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(251, 176, 59, 0.45);
}
#site-footer .footer-map-slot {
  background: #e9eef3; /* reemplaza con tu mapa/iframe */
  min-height: 220px;
}
#site-footer .footer-map-slot img, #site-footer .footer-map-slot iframe {
  display: block;
  width: 100%;
  height: 220px;
}
#site-footer .footer-bottom {
  background: #fff;
  color: #101828;
  border-top: 1px solid rgba(0, 57, 94, 0.06);
}
#site-footer .footer-bottom .container {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 0;
  flex-wrap: wrap;
}
@media (max-width: 991.98px) {
  #site-footer .footer-bottom .container {
    padding: 14px 15px 70px;
    justify-content: center;
    flex-direction: column;
  }
}
#site-footer .footer-bottom .container small {
  color: #0071BC;
}
#site-footer .footer-bottom .container a {
  color: #0071BC;
  text-decoration: none;
}
#site-footer .footer-bottom .container .brand {
  color: #0071BC;
  font-weight: 700;
}
#site-footer .footer-bottom .container .spacer {
  flex: 1 1 auto;
}
@media (max-width: 991.98px) {
  #site-footer .footer-bottom .container .spacer {
    display: none;
  }
}
#site-footer .footer-bottom .container .dot {
  color: #667085;
}
@media (max-width: 991.98px) {
  #site-footer .footer-bottom .container .dot {
    display: none;
  }
}

/* Cleaning / Real Estate / Maintenance – Editorial split */
#cleaning-editorial,
#real-estate-editorial,
#maintenance-editorial,
#construction-editorial {
  /* Orden/espacios responsive */
}
#cleaning-editorial .editorial-title,
#real-estate-editorial .editorial-title,
#maintenance-editorial .editorial-title,
#construction-editorial .editorial-title {
  font-family: "DM Sans", sans-serif;
  font-weight: 800;
  line-height: 1.05;
  font-size: clamp(28px, 4.2vw, 56px);
}
#cleaning-editorial .editorial-title .c-primary,
#real-estate-editorial .editorial-title .c-primary,
#maintenance-editorial .editorial-title .c-primary,
#construction-editorial .editorial-title .c-primary {
  color: #0071BC;
}
#cleaning-editorial .editorial-title .c-secondary,
#real-estate-editorial .editorial-title .c-secondary,
#maintenance-editorial .editorial-title .c-secondary,
#construction-editorial .editorial-title .c-secondary {
  color: #2BAAE2;
}
#cleaning-editorial .editorial-lead,
#real-estate-editorial .editorial-lead,
#maintenance-editorial .editorial-lead,
#construction-editorial .editorial-lead {
  color: #00395E;
  font-size: clamp(14px, 1.1vw, 16.5px);
  line-height: 1.55;
  max-width: 48ch;
}
#cleaning-editorial .editorial-photo,
#real-estate-editorial .editorial-photo,
#maintenance-editorial .editorial-photo,
#construction-editorial .editorial-photo {
  overflow: hidden;
  border-radius: 10px;
}
#cleaning-editorial .editorial-photo .img-cover,
#real-estate-editorial .editorial-photo .img-cover,
#maintenance-editorial .editorial-photo .img-cover,
#construction-editorial .editorial-photo .img-cover {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
@media (max-width: 991.98px) {
  #cleaning-editorial .editorial-title,
  #real-estate-editorial .editorial-title,
  #maintenance-editorial .editorial-title,
  #construction-editorial .editorial-title {
    margin-top: 0.25rem;
  }
  #cleaning-editorial .editorial-lead,
  #real-estate-editorial .editorial-lead,
  #maintenance-editorial .editorial-lead,
  #construction-editorial .editorial-lead {
    max-width: 54ch;
  }
}

/* CTA horizontal reutilizable */
#cta-inline.cta-inline {
  color: #fff;
  background: linear-gradient(90deg, #0071BC 0%, #2BAAE2 100%);
  padding: clamp(25px, 3.2vw, 35px) 0;
  /* Botón acento (naranja) */
}
#cta-inline.cta-inline .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(12px, 3vw, 40px);
}
#cta-inline.cta-inline .cta-line {
  margin: 0;
  font-family: "DM Sans", sans-serif;
  font-weight: 800;
  letter-spacing: 0.2px;
  font-size: clamp(18px, 2.4vw, 28px);
  white-space: normal;
}
#cta-inline.cta-inline .cta-line .accent {
  color: #FBB03B;
}
#cta-inline.cta-inline .btn-accent {
  background: #FBB03B;
  color: #fff;
  border: 0;
  padding: 0.85rem 1.4rem;
  font-weight: 700;
  box-shadow: 0 8px 18px rgba(251, 176, 59, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
#cta-inline.cta-inline .btn-accent:hover {
  background: rgb(250.184, 159.884, 19.016);
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(251, 176, 59, 0.45);
  color: #fff;
}
@media (max-width: 992px) {
  #cta-inline.cta-inline .container {
    flex-direction: column;
    text-align: center;
  }
}

#cleaning-services,
#construction-services {
  /* TAB LIST (left) */
  /* CENTER: image */
  /* RIGHT: panels */
}
#cleaning-services .section-title,
#construction-services .section-title {
  font-family: "DM Sans", sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 5vw, 48px);
  color: #0071BC;
}
@media (max-width: 991.98px) {
  #cleaning-services .section-title,
  #construction-services .section-title {
    text-align: center;
  }
}
#cleaning-services .section-title span,
#construction-services .section-title span {
  color: #2BAAE2;
}
#cleaning-services .svc-grid,
#construction-services .svc-grid {
  display: grid;
  grid-template-columns: minmax(260px, 360px) minmax(380px, 520px) 1fr;
  gap: clamp(16px, 3.2vw, 36px);
  align-items: center;
}
@media (max-width: 992px) {
  #cleaning-services .svc-grid,
  #construction-services .svc-grid {
    grid-template-columns: 1fr;
  }
}
#cleaning-services .svc-list,
#construction-services .svc-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
#cleaning-services .svc-tab,
#construction-services .svc-tab {
  display: grid;
  grid-template-columns: 28px 1fr 34px;
  align-items: center;
  gap: 12px;
  width: 100%;
  text-align: left;
  border: 0;
  border-radius: 10px;
  background: transparent;
  padding: 12px 12px 12px 10px;
  font-family: "DM Sans", sans-serif;
  font-weight: 700;
  color: #00395E;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}
#cleaning-services .svc-tab .svc-ico,
#construction-services .svc-tab .svc-ico {
  color: #0071BC;
  flex: 0 0 28px;
}
#cleaning-services .svc-tab .svc-label,
#construction-services .svc-tab .svc-label {
  line-height: 1.25;
  font-size: clamp(14px, 1.7vw, 16px);
}
#cleaning-services .svc-tab .svc-arrow,
#construction-services .svc-tab .svc-arrow {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #fff;
  color: #0071BC;
  box-shadow: 0 4px 10px rgba(0, 113, 188, 0.15);
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}
#cleaning-services .svc-tab:hover .svc-arrow,
#construction-services .svc-tab:hover .svc-arrow {
  transform: translateX(2px);
}
#cleaning-services .svc-tab.is-active,
#construction-services .svc-tab.is-active {
  background: #F2F2F2;
  color: #00395E;
}
#cleaning-services .svc-tab.is-active svg .st0, #cleaning-services .svc-tab.is-active svg .st1,
#construction-services .svc-tab.is-active svg .st0,
#construction-services .svc-tab.is-active svg .st1 {
  fill: #FBB03B;
}
#cleaning-services .svc-tab.is-active .svc-arrow,
#construction-services .svc-tab.is-active .svc-arrow {
  background: #FBB03B;
  color: #fff;
  box-shadow: 0 8px 18px rgba(251, 176, 59, 0.35);
}
#cleaning-services .svc-photo-wrap,
#construction-services .svc-photo-wrap {
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  background: #eee;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}
#cleaning-services .svc-photo,
#construction-services .svc-photo {
  display: block;
  width: 100%;
  height: auto;
}
#cleaning-services .svc-panels .svc-panel[hidden],
#construction-services .svc-panels .svc-panel[hidden] {
  display: none !important;
}
#cleaning-services .svc-panels .svc-panel .svc-title,
#construction-services .svc-panels .svc-panel .svc-title {
  font-weight: 800;
  font-size: clamp(20px, 3vw, 28px);
  color: #0071BC;
  margin: 0 0 10px 0;
}
#cleaning-services .svc-panels .svc-panel .svc-bullets,
#construction-services .svc-panels .svc-panel .svc-bullets {
  margin: 0;
  padding-left: 1.1rem;
}
#cleaning-services .svc-panels .svc-panel .svc-bullets li,
#construction-services .svc-panels .svc-panel .svc-bullets li {
  color: #00395E;
  margin: 0.35rem 0;
  font-size: clamp(14px, 1.7vw, 16px);
}
#cleaning-services .svc-panels .svc-panel .svc-bullets li::marker,
#construction-services .svc-panels .svc-panel .svc-bullets li::marker {
  color: #FBB03B;
}

/* ===== Real Estate – Why section ===== */
.why-realestate {
  /* Versión espejada para la columna derecha */
}
.why-realestate .why-title {
  font-family: "DM Sans", sans-serif;
  font-weight: 800;
  line-height: 1.05;
  font-size: clamp(28px, 4.2vw, 56px);
  text-align: center;
}
.why-realestate .why-title .c-primary {
  color: #0071BC;
}
.why-realestate .why-title .c-secondary {
  color: #2BAAE2;
}
.why-realestate .why-grid {
  display: grid;
  grid-template-columns: 1fr minmax(260px, 520px) 1fr; /* izq | imagen | der */
  gap: clamp(20px, 4vw, 48px);
  align-items: center;
}
@media (max-width: 992px) {
  .why-realestate .why-grid {
    grid-template-columns: 1fr;
  }
  .why-realestate .why-grid .why-image {
    order: -1;
    text-align: center;
  }
}
.why-realestate .why-image img {
  width: 100%;
  height: auto;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
}
.why-realestate .why-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: clamp(20px, 2.4vw, 50px);
}
.why-realestate .item {
  /* Encabezado (número + título) en una sola fila */
  /* Texto en segunda línea */
}
.why-realestate .item .head {
  display: flex;
  align-items: center;
  gap: 12px; /* distancia entre círculo y título */
  line-height: 1; /* que “amarre” con el círculo */
}
.why-realestate .item .num {
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: #FBB03B; /* #FBB03B */
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 18px;
  box-shadow: 0 8px 18px rgba(251, 176, 59, 0.35);
}
.why-realestate .item .title {
  margin: 0;
  font-weight: 800;
  font-size: clamp(18px, 2.2vw, 22px);
  color: #0071BC; /* #0071BC */
}
.why-realestate .item p {
  margin: 8px 0 0 56px; /* deja el texto “bajo” el título, no bajo el círculo */
  font-size: clamp(14px, 1.6vw, 15px);
  color: #667085; /* #667085 */
  max-width: 44ch;
}
.why-realestate .item--rtl {
  text-align: right;
  /* mover el párrafo para que quede bajo el título (lado izquierdo) */
}
@media (max-width: 991.98px) {
  .why-realestate .item--rtl {
    text-align: left;
  }
}
.why-realestate .item--rtl .head {
  flex-direction: row-reverse; /* número a la derecha, título a la izquierda */
}
@media (max-width: 991.98px) {
  .why-realestate .item--rtl .head {
    flex-direction: row;
  }
}
.why-realestate .item--rtl p {
  margin: 8px 56px 0 0; /* espejo del margen */
  margin-left: auto; /* mantiene el ancho máximo a la derecha */
}

/* === Maintenance: Hero === */
#hero-maintenance.hero-maint {
  --overlay: rgba(0, 57, 94, .55); /* $brand-dark con opacidad */
  position: relative;
  min-height: clamp(460px, 60vw, 520px);
  display: grid;
  align-items: center;
}
#hero-maintenance.hero-maint .hero-maint__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, var(--overlay), var(--overlay)), var(--bg) center/cover no-repeat;
  z-index: 0;
}
#hero-maintenance.hero-maint .container {
  position: relative;
  z-index: 1;
}
#hero-maintenance.hero-maint .hero-maint__copy {
  max-width: 640px;
  padding: clamp(40px, 6vw, 60px) 0;
}
#hero-maintenance.hero-maint h1 {
  color: #fff;
  letter-spacing: 0.1px;
}
#hero-maintenance.hero-maint .btn {
  background: #FBB03B;
  border: 0;
  font-weight: 800;
  padding-inline: 28px;
  box-shadow: 0 8px 18px rgba(251, 176, 59, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
#hero-maintenance.hero-maint .btn:hover {
  background: rgb(250.184, 159.884, 19.016);
  box-shadow: 0 12px 26px rgba(251, 176, 59, 0.45);
  transform: translateY(-1px);
}

/* === Contact: Hero === */
@media (max-width: 991.98px) {
  .contact-hero {
    background-position-x: 75%;
  }
}

/* ---------------- Contact form ---------------- */
#contact-form {
  /* inputs/textarea “fondo gris” #F2F2F2 con esquinas tipo mockup */
  /* botón a la IZQUIERDA siempre */
  /* -------- Tarjeta derecha -------- */
  /* Resp: evita que el botón se vaya a la derecha por clases heredadas */
}
#contact-form .section-title {
  font-family: "DM Sans", sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 4vw, 40px);
  margin-bottom: 1rem;
}
#contact-form .form-control.ph {
  background: #F2F2F2;
  border: 0;
  border-radius: 26px;
  padding: 16px 20px;
  font-size: 16px;
  color: #101828;
}
#contact-form .form-control.ph::-moz-placeholder {
  color: #8b8f97;
}
#contact-form .form-control.ph::placeholder {
  color: #8b8f97;
}
#contact-form .form-control.ph:focus {
  box-shadow: 0 0 0 3px rgba(43, 170, 226, 0.15);
  background: #F7F7F8;
}
#contact-form textarea.form-control.ph {
  border-radius: 20px;
  resize: vertical;
}
#contact-form .actions {
  text-align: left;
}
#contact-form .btn-pill {
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 700;
  background: #FBB03B; /* #FBB03B */
  border: 0;
  color: #fff;
  box-shadow: 0 10px 22px rgba(251, 176, 59, 0.35);
}
#contact-form .btn-pill:hover {
  background: rgb(250.286, 161.8985, 24.014);
}
#contact-form .info-card {
  background: #0071BC; /* #0071BC */
  color: #fff;
  border-radius: 18px;
  padding: clamp(22px, 3.5vw, 100px) 40px;
  box-shadow: 0 18px 40px rgba(0, 113, 188, 0.28);
  text-align: center;
}
#contact-form .info-card .icon-1 i {
  color: #FBB03B;
  margin-right: 7px;
  font-size: 14px;
}
#contact-form .info-card a {
  color: #fff;
  text-decoration: none;
}
#contact-form .info-card .label {
  text-transform: none;
  letter-spacing: 0.02em;
  opacity: 0.95;
  margin-bottom: 0.25rem;
  font-weight: 800;
}
#contact-form .info-card .lead {
  margin-top: 0.25rem;
  font-weight: 600;
}
#contact-form .info-card .social-row {
  display: flex;
  gap: 12px;
  margin-top: 0.5rem;
  justify-content: center;
}
#contact-form .info-card .social-row a {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: #FBB03B; /* #FBB03B */
  color: #fff;
  display: inline-grid;
  place-items: center;
  box-shadow: 0 8px 18px rgba(251, 176, 59, 0.38);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
#contact-form .info-card .social-row a i {
  font-size: 16px;
  line-height: 1;
}
#contact-form .info-card .social-row a:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(251, 176, 59, 0.5);
}
@media (max-width: 991.98px) {
  #contact-form .actions {
    text-align: left !important;
  }
}

/* ===== Form Alerts ===== */
.form-status {
  display: inline-block;
  margin-top: 0.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.4;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  padding: 0.45rem 0.85rem;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.28);
  color: #00395E;
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.form-status.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================ */
/* 🎉 Success                   */
/* ============================ */
.form-status.is-success {
  background: rgba(0, 113, 188, 0.18);
  color: #00395E;
  border-left: 4px solid #0071BC;
}

/* ============================ */
/* ⚠️ Error                     */
/* ============================ */
.form-status.is-error {
  background: rgba(198, 40, 40, 0.2);
  color: #b71c1c;
  border-left: 4px solid #c62828;
}

/* ============================ */
/* ℹ️ Warning  */
/* ============================ */
.form-status.is-warning {
  background: rgba(251, 176, 59, 0.2);
  color: #00395E;
  border-left: 4px solid #FBB03B;
}

/* Reduce-motion users */
@media (prefers-reduced-motion: reduce) {
  .form-status {
    transition: none;
    transform: none;
  }
}
.social-desktop-2 {
  z-index: 999;
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  right: -96px;
}
@media (max-width: 764px) {
  .social-desktop-2 {
    display: none;
  }
}
.social-desktop-2 a {
  display: flex;
  align-items: center;
  width: auto;
  height: auto;
  position: relative;
  margin: 10px 0;
  color: #fff;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  transform: translateX(0px);
  transition: 0.5s ease-in-out;
  text-decoration: none;
}
.social-desktop-2 a:hover {
  transform: translateX(-96px);
}
.social-desktop-2 a:nth-child(odd) {
  border: 1px solid #0071BC;
  background-color: #0071BC;
}
.social-desktop-2 a:nth-child(even) {
  border: 1px solid #2BAAE2;
  background-color: #2BAAE2;
}
.social-desktop-2 a i {
  padding: 5px 10px;
  font-size: 23px;
  border-right: 1px solid #fff;
  width: 46px;
  text-align: center;
}
.social-desktop-2 a span {
  color: #fff;
  padding: 0 5px;
}

.social-mobile {
  display: none;
}
@media (max-width: 764px) {
  .social-mobile {
    display: block;
    position: fixed;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #0071BC;
    border-radius: 1.5rem;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    padding: 0.5rem;
    z-index: 99;
    box-shadow: inset 8px 8px 16px rgba(0, 0, 0, 0.2), inset -8px -8px 16px rgba(255, 255, 255, 0.1);
  }
  .social-mobile .show-socials {
    display: flex;
    justify-content: center;
    align-items: center;
    width: auto;
    height: 3rem;
    margin: 0 auto;
    border-radius: 50%;
    cursor: pointer;
    transition: transform 0.2s ease-in-out;
    color: #fff;
    font-size: 16px;
    font-weight: 800;
  }
  .social-mobile .show-socials i {
    color: #fff;
    font-size: 1.2rem;
    transition: transform 0.3s ease-in-out;
  }
  .social-mobile .show-socials:hover {
    transform: translateY(-3px);
  }
  .social-mobile .show-socials.active + .box-socials {
    display: flex;
    max-height: 100px;
    height: 70px;
  }
  .social-mobile .box-socials {
    display: flex;
    margin-top: 0.5rem;
    gap: 1rem;
    justify-content: center;
    transition: all 0.5s ease-in-out;
    height: 0;
  }
  .social-mobile .box-socials a {
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #fff;
    text-decoration: none;
    background-color: #2BAAE2;
    border-radius: 50%;
    box-shadow: 8px 8px 16px rgba(0, 0, 0, 0.2), -8px -8px 16px rgba(255, 255, 255, 0.1);
    transition: transform 0.2s ease-in-out;
  }
  .social-mobile .box-socials a:hover {
    transform: translateY(-3px);
  }
}/*# sourceMappingURL=main.css.map */