:root {
  --azul: #173d7e;
  --azul-claro: #1e549a;
  --gris-claro: #f1f2f6;
}

body {
  font-family: 'Open Sans', sans-serif;
}

a:hover, a:focus {
  color: #ffffff!important;
  text-decoration: none!important;
}

/* GENERALES */
.v-center {
  display: flex;
  align-items: center;
}

/* HEADER */
.header-top {
  background: var(--azul);
  padding: 8px 0;
  color: #fff;
}

.header-bottom {
  background: var(--azul-claro);
  padding: 9px 0;
  position: relative;
  z-index: 9;
}

/* LOGO */
.logo {
  max-height: 75px;
}

/* TELÉFONO */
.telefono-box {
  font-size: 28px;
  font-weight: 700;
}

.telefono {
  color: #ffffff;
}

.icon-phone {
  width: 20px;
  margin-right: 8px;
}

/* SUBTEXTO */
.subtexto {
  margin: 0;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
}

/* BOTÓN WHATSAPP */
.btn-header {
  position: absolute;
  right: 100px;
  top: 10px;
  transform: translateY(-30%);
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ICONO WSP */
.icon-wsp {
  width: 20px;
}

/* HERO */
.hero-wrapper {
  position: relative;
  background: #f2f4f7;
  overflow: hidden;
}

/* CONTENIDO */
.hero-content {
  padding: 20px 0 40px;
  position: relative;
  z-index: 2;
}

.hero-content h1 {
  font-size: 40px;
  font-weight: bold;
  color: var(--azul);
}

.hero-content h2 {
  font-size: 36px;
  color: var(--azul-claro);
  margin-bottom: 15px;
  margin-top: 0;
  font-weight: 700;
  padding-bottom: 20px;
  border-bottom: 2px solid #d9d9d9;
}

.hero-content p {
  color: var(--azul);
  font-size: 24px;
}

/* BOTONES PRO */

.botones {
  margin-top: 30px;
}
.btn-llamar {
  background: linear-gradient(180deg, #ff8a00, #ff5a00);
  color: #fff;
  padding: 12px 50px;
  border-radius: 5px;
  box-shadow: 1px 1px 10px rgba(0,0,0,0.15);
  margin-right: 10px;
  font-weight: 700;
  font-size: 18px;
}

.btn-wsp {
  background: linear-gradient(180deg, #25d366, #1da851);
  color: #fff;
  padding: 12px 22px;
  border-radius: 5px;
  box-shadow: 1px 1px 10px rgba(0,0,0,0.15);
  font-weight: 700;
  font-size: 18px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

/* CHECKS */
.checks {
  margin-top: 20px;
}

.checks li {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--azul);
  font-size: 18px;
  font-weight: 500;
}

.checks li span {
  font-size: 28px;
}

/* IMAGEN FLOTANTE */
.hero-img {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 40%;
  z-index: 1;
}

.hero-img img {
  width: 100%;
}

/* BLOQUE AZUL FULL WIDTH */
.bloque-azul {
  background: linear-gradient(
    to right,
    #173d7e 0%,
    #173d7e 50%,
    transparent 100%
  );
  color: #fff;
  padding: 30px 0 40px 0;
  position: relative;
  z-index: 0;
}

.bloque-azul h3 {
  font-weight: 700;
  font-size: 28px;
  margin-top: 0;
}

.bloque-azul .separador {
  height: 2px;
  background: linear-gradient(
    to left,
    rgba(255,255,255,0.9),
    rgba(255,255,255,0.4),
    transparent
  );
  margin-bottom: 10px;
}

.bloque-azul ul {
  padding-left: 0;
  list-style: none;
}

.bloque-azul p, .bloque-azul li {
  font-size: 18px;
  font-weight: 600;
}

.bloque-azul li {
  display: flex;
  align-items: center;
  gap: 5px;
}

.bloque-azul li span {
  font-size: 28px;
}

/* BOTON NARANJA */
.btn-urgente {
  margin-top: -25px;
  background: linear-gradient(180deg, #ff8a00, #ff5a00);
  color: #fff;
  padding: 12px 25px;
  box-shadow: 1px 1px 10px rgba(0,0,0,0.15);
  font-weight: 700;
  font-size: 18px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .hero-img {
    position: static;
    width: 100%;
    text-align: center;
    margin-top: 20px;
  }

  .hero-img img {
    max-width: 300px;
  }

  .hero-content {
    text-align: center;
  }
}

/* SERVICIOS */

.servicios {
  padding: 40px 0;
  background-color: var(--gris-claro);
  margin-top: 50px;
  border-bottom: solid 1px #d9d9d9;
}

.servicios .title-home {
  margin-bottom: 20px;
}

.servicios .col-sm-2.col-xs-6 {
  border-right: solid 1px #d9d9d9;
}

.servicios .col-sm-2.col-xs-6:last-child {
  border-right: none!important;
}

.servicios p {
  font-size: 16px;
  font-weight: 700;
  color: var(--azul);
  margin-top: 10px;
}

.plomeros {
  padding: 40px 0;
}

.plomeros p {
  color: var(--azul);
  font-size: 18px;
  padding: 20px 0;
  border-bottom: solid 1px #d9d9d9;
}

@media(min-width: 769px) {
  .servicios .col-xs-6 {
    width: 20%;
  }
}

/* TESTIMONIOS */
.testimonios {
  background: var(--gris-claro);
  padding: 40px 0;
}

.card {
  background: #fff;
  padding: 15px;
  border-radius: 5px;
  border: solid 1px #d9d9d9;
  box-shadow: 1px 1px 15px rgba(0,0,0,0.15);
  color: var(--azul);
  font-size: 16px;
  font-weight: 500;
  text-align: left;
  min-height: 100px;
  margin-top: 20px;
}

.card span {
  font-style: italic;
  display: block;
  float: right;
}

/* CTA FINAL */
.cta-final {
  padding: 40px 0;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero {
    text-align: center;
  }

  /*.hero-img {
    display: none;
  }*/

  .cta-buttons .btn {
    display: block;
    width: 100%;
    margin-bottom: 10px;
  }
}

.title-home {
  color: var(--azul);
  font-weight: 700;
  font-size: 28px;
  margin-top: 0;
}

.title-home {
  display: flex;
  align-items: center;
  text-align: center;
  gap: 15px;
}

.title-home::before,
.title-home::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #d9d9d9;
}

/* CTA */

.cta-wrapper {
  padding: 40px 0;
  font-size: 18px;
  font-weight: 500;
  color: var(--azul);
  position: relative;
}

.cta-text p {
  margin-bottom: 30px;
  border-bottom: solid 1px #d9d9d9;
  padding: 20px 0;
  line-height: 2;
}

.bloque-gris {
  background-color: var(--gris-claro);
  color: var(--azul);
  padding: 30px 0 40px 0;
  position: relative;
  z-index: 0;
  text-align: center;
}

.bloque-gris h3 {
  color: var(--azul);
  font-weight: 700;
  font-size: 28px;
  padding-bottom: 20px;
  border-bottom: solid 1px #d9d9d9;
}

.bloque-gris p {
  font-size: 18px;
  font-weight: 500;
  margin-top: 20px;
}

.cta-img {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 38%;
  z-index: 1;
}

.cta-img img {
  width: 100%;
}

/* RESPONSIVE */

@media(max-width: 768px) {
  .telefono-box {
    font-size: 18px;
  }
  .subtexto {
    text-align: center;
    font-size: 16px;
  }
  .header-bottom {
    text-align: center;
  }
  .btn-header {
    position: relative;
    transform: translateY(0%)!important;
    margin: auto;
    top: auto;
    right: auto;
  }
  .botones a {
    margin-bottom: 10px;
  }
  .hero-content {
    padding: 20px 15px 0px 15px!important;
  }
  .hero-img {
    margin-top: 0!important;
  }
  .hero-img img {
    width: 60%;
  }
}