@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@500;600;700&family=Montserrat:wght@400;500;600;700;800&display=swap');

:root {
  --orange: #d86a08;
  --dark: #252525;
  --black: #111111;
  --white: #ffffff;
  --text: #050505;
  --heading: #1f2833;
  --light-bg: #f3f3f3;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', sans-serif;
  background: var(--white);
  color: var(--text);
  overflow-x: hidden;
}

img {
  max-width: 100%;
}

/* =========================
   HEADER
========================= */

.site-header {
  position: relative;
  height: 80px;
  background: var(--white);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding-left: 42px;
  z-index: 20;
}

.logo {
  padding-top: 10px;
  position: relative;
  z-index: 4;
}

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

.main-nav {
  position: relative;
  height: 90px;
  min-width: 610px;
  padding: 17px 46px 0 105px;
  display: flex;
  justify-content: flex-end;
  gap: 16px;
  align-items: flex-start;
  background: var(--orange);
  clip-path: polygon(6% 0, 100% 0, 100% 100%, 0 100%);
}

.main-nav a {
  color: #000000;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: .5px;
  line-height: 1;
}

.main-nav a.active {
  font-weight: 800;
}

/* ================================
   SECCIÓN: HERO INICIO
================================ */

.hero-inicio {
    position: relative;
    width: 100%;
    background-color: var(--white);
    padding-top: 100px;
    margin-top: -50px;
}

/* ================================
   CABECERA SUPERIOR
================================ */

.hero-inicio__header {
    position: relative;
    height: 157px;
    background-color: var(--white);
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    z-index: 10;
}

/* Logo superior izquierdo */
.hero-inicio__logo {
    padding-left: 42px;
    padding-top: 10px;
    position: relative;
    z-index: 12;
}

.hero-inicio__logo img {
    width: 155px;
    height: auto;
    display: block;
}

/* Menú naranja superior derecho */
.hero-inicio__nav {
    position: relative;
    height: 67px;
    min-width: 610px;
    padding: 18px 46px 0 105px;
    background-color: var(--orange);
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    gap: 16px;
    clip-path: polygon(6% 0, 100% 0, 100% 100%, 0 100%);
    z-index: 12;
}

/* Enlaces del menú */
.hero-inicio__nav a {
    color: var(--black);
    text-decoration: none;
    text-transform: uppercase;
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 0.5px;
    line-height: 1;
}

/* Enlace activo */
.hero-inicio__nav a.active {
    font-weight: 800;
}

/* ================================
   CUERPO DEL HERO
================================ */

.hero-inicio__body {
    position: relative;
    min-height: 518px;
    display: flex;
    background-color: var(--dark);
}

/* ================================
   BLOQUE OSCURO IZQUIERDO
================================ */

.hero-inicio__contenido{
  width: 50%;
}

.hero-inicio__texto{
  padding: 64px 0 0 68px;
  max-width: 560px;
}

.hero-inicio__subtitulo{
  margin: 0 0 25px;
  color: var(--orange);
  letter-spacing: 18px;
  text-transform: uppercase;
  font-size: 21px;
  font-weight: 800;
}

/* Título principal */
.hero-inicio__texto h1 {
    margin: 0;
    max-width: 500px;
    color: var(--white);
    text-transform: uppercase;
    font-family: 'Oswald', sans-serif;
    font-size: clamp(48px, 5vw, 66px);
    line-height: 1.08;
    font-weight: 700;
    letter-spacing: 1px;
}

.hero-inicio__barra{
  width: 365px;
  height: 72px;
  background-color: var(--orange);
  margin-top: 55px;
  margin-left: -68px;
  clip-path: polygon(0 0, 100% 0, 96% 100%, 0 100%);
}

.hero-inicio__cruces{
    display: flex;
    gap: 22px;
    margin-top: 53px;
    color: var(--orange);
    font-size: 36px;
    font-weight: 300;
    line-height: 1;
}



/* ================================
   IMAGEN DERECHA
================================ */

.hero-inicio__imagen{
  width: 50%;
  margin-top: -100px;
}

.hero-inicio__imagen img{
  margin-top: -100px;
  width: 100%;
  display: block;
}


/* =========================
   QUIENES SOMOS
========================= */

.about-section {
  position: relative;
  background: var(--light-bg);
  padding: 78px 0 0;
  overflow: hidden;
}

.about-container {
  position: relative;
  max-width: 1320px;
  min-height: 590px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 46% 54%;
  align-items: start;
}

.about-text {
  position: relative;
  z-index: 5;
  padding-left: 80px;
  padding-right: 30px;
  max-width: 560px;
  color: var(--text);
}

.about-text h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 42px;
  line-height: 1;
  text-transform: uppercase;
  color: var(--heading);
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 35px;
  text-shadow: 3px 3px 0 rgba(216, 106, 8, 0.45);
}

.about-line {
  display: block;
  width: 58px;
  height: 3px;
  background: var(--orange);
  margin-bottom: 40px;
}

.about-text p {
  font-size: 17px;
  line-height: 1.5;
  font-weight: 500;
  margin-bottom: 28px;
  color: var(--text);
}

.about-text strong {
  font-weight: 800;
}

.about-crosses {
  position: absolute;
  left: -80px;
  bottom: 28px;
  display: flex;
  gap: 24px;
  color: var(--orange);
  font-size: 34px;
  font-weight: 300;
  line-height: 1;
}

/* =========================
   IMAGEN DERECHA - CORREGIDA
========================= */

.about-image-wrapper {
  position: relative;
  min-height: 590px;
  overflow: visible;
}

/* Bloque naranja trasero */
.about-orange-shape {
  position: absolute;
  top: -78px;
  left: 95px;
  width: 160px;
  height: 760px;
  background: var(--orange);
  transform: skewX(-12deg);
  z-index: 1;
}

/* Borde negro a la IZQUIERDA de la imagen */
.about-image-wrapper::before {
  content: "";
  position: absolute;
  top: 66px;
  right: 18px;
  width: 680px;
  height: 530px;
  background: var(--dark);
  clip-path: polygon(16% 0, 100% 0, 92% 100%, 0 100%);
  z-index: 2;
}

/* Imagen pegada más a la derecha */
.about-image {
  position: absolute;
  top: 66px;
  right: 0;
  width: 680px;
  height: 530px;
  overflow: hidden;
  z-index: 3;
  clip-path: polygon(16% 0, 100% 0, 100% 100%, 0 100%);
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* ================================
   SECCIÓN: NUESTROS SERVICIOS
================================ */

.servicios {
    position: relative;
    padding: 70px 20px 0;
    background-color: #ffffff;
    overflow: hidden;
}

/* Decoración de las X naranjas */
.servicios__decoracion {
    position: absolute;
    top: 50px;
    right: 35px;
    display: flex;
    gap: 18px;
    color: #d96b00;
    font-size: 34px;
    font-weight: 300;
    line-height: 1;
}

/* Cabecera principal */
.servicios__cabecera {
    text-align: center;
    margin-bottom: 60px;
}

.servicios__cabecera h2 {
    margin: 0;
    font-size: 42px;
    font-weight: 900;
    color: #111827;
    text-transform: uppercase;
    letter-spacing: -1px;
    text-shadow: 3px 3px 0 rgba(216, 106, 8, 0.45);
}

/* Línea naranja debajo del título */
.servicios__linea {
    width: 60px;
    height: 3px;
    background-color: #d96b00;
    margin: 22px auto 0;
}

/* 
   Contenedor de tarjetas.
   Aquí usamos grid para crear las 3 columnas.
*/
.servicios__contenedor {
    position: relative;
    max-width: 980px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    z-index: 2;
}

/* 
   Creamos el fondo oscuro desde media sección hacia abajo.
   Va detrás de las tarjetas.
*/
.servicios::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    top: 386px;
    background-color: #242424;
    z-index: 1;
}

/* Cada tarjeta individual */
.servicio-card {
    position: relative;
    text-align: center;
    z-index: 2;
}

/* Imagen superior */
.servicio-card__imagen {
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.servicio-card__imagen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* 
   Cuadrado naranja del icono.
   Está posicionado de forma absoluta para quedar entre imagen y fondo oscuro.
*/
.servicio-card__icono {
    position: absolute;
    top: 144px;
    left: 50%;
    transform: translateX(-50%);
    width: 74px;
    height: 74px;
    background-color: #d96b00;
    color: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    z-index: 3;
}

/* Zona de texto con fondo oscuro */
.servicio-card__contenido {
    background-color: transparent;
    color: #ffffff;
    padding: 68px 22px 45px;
    min-height: 260px;
}

/* Título de cada servicio */
.servicio-card__contenido h3 {
    margin: 0 0 35px;
    font-size: 24px;
    line-height: 1.1;
    font-weight: 700;
}

/* Texto descriptivo */
.servicio-card__contenido p {
    margin: 0;
    font-size: 17px;
    line-height: 1.35;
    font-weight: 400;
}

.servicio-card__contenido h3 {
    min-height: 48px;
}

.servicios-2 .servicio-card .servicio-card__contenido h3{
  min-height: calc(24px * 3);
}

/* ================================
   SECCIÓN: POR QUÉ ELEGIRNOS
================================ */

.porque-elegirnos {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 650px;
    background-color: #ffffff;
    overflow: hidden;
}

/* ================================
   COLUMNA IZQUIERDA
================================ */

.porque-elegirnos__imagen-col {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    min-height: 650px;
    padding-right: 70px;
}

/* Fondo negro diagonal de la izquierda */
.porque-elegirnos__fondo-diagonal {
    position: absolute;
    top: 0;
    right: -20px;
    width: 62%;
    height: 100%;
    background-color: #242424;
    transform: skewX(-12deg);
    transform-origin: top right;
    z-index: 1;
}

/* Caja de la imagen */
.porque-elegirnos__imagen-box {
    position: relative;
    width: 470px;
    height: 470px;
    z-index: 2;
}

/* Imagen principal */
.porque-elegirnos__imagen-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Cuadrado naranja del icono */
.porque-elegirnos__icono {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(-50%, -50%);
    width: 84px;
    height: 84px;
    background-color: #d96b00;
    color: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 38px;
    z-index: 3;
}

/* ================================
   COLUMNA DERECHA
================================ */

.porque-elegirnos__contenido-col {
    position: relative;
    padding: 95px 80px 80px 30px;
    z-index: 2;
}

/* Decoración de X naranjas */
.porque-elegirnos__decoracion {
    position: absolute;
    top: 50px;
    right: 35px;
    display: flex;
    gap: 18px;
    color: #d96b00;
    font-size: 34px;
    font-weight: 300;
    line-height: 1;
}

/* Título */
.porque-elegirnos__contenido-col h2 {
    margin: 0;
    font-size: 42px;
    line-height: 1.1;
    font-weight: 900;
    color: #111827;
    text-transform: uppercase;
    letter-spacing: -1px;
    text-shadow: 3px 3px 0 rgba(216, 106, 8, 0.45);
}

/* Línea naranja alineada a la izquierda */
.porque-elegirnos__linea {
    width: 60px;
    height: 3px;
    background-color: #d96b00;
    margin: 30px 0 32px;
}

/* Texto introductorio */
.porque-elegirnos__texto {
    max-width: 520px;
    margin: 0 0 22px;
    font-size: 19px;
    line-height: 1.32;
    color: #111827;
}

/* Lista de ventajas */
.porque-elegirnos__lista {
    list-style: none;
    padding: 0;
    margin: 0;
    max-width: 610px;
}

/* Cada elemento de la lista */
.porque-elegirnos__lista li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 12px;
    font-size: 23px;
    line-height: 1.05;
    font-weight: 800;
    color: #111827;
}

/* Icono check naranja */
.porque-elegirnos__lista li i {
    color: #d96b00;
    font-size: 22px;
    line-height: 1;
    margin-top: 2px;
    flex-shrink: 0;
}

/* Texto de cada ventaja */
.porque-elegirnos__lista li span {
    display: block;
}

/* ================================
   SECCIÓN: CONTACTO
================================ */

.contacto-section {
    position: relative;
    display: grid;
    grid-template-columns: 40% 60%;
    min-height: 620px;
    background-color: #ffffff;
    overflow: visible;
}

/* ================================
   COLUMNA IZQUIERDA
================================ */

.contacto-section__info {
    position: relative;
    z-index: 2;
}

/* Parte superior blanca donde va el título */
.contacto-section__cabecera {
    height: 210px;
    padding: 130px 40px 0 145px;
    background-color: #ffffff;
}

/* Título CONTACTO */
.contacto-section__cabecera h2 {
    margin: 0;
    font-size: 42px;
    line-height: 1;
    font-weight: 900;
    color: #111827;
    text-transform: uppercase;
    letter-spacing: -1px;
    text-shadow: 3px 3px 0 rgba(216, 106, 8, 0.45);
}

/* Línea naranja alineada al inicio del título */
.contacto-section__linea {
    width: 58px;
    height: 3px;
    background-color: #d96b00;
    margin-top: 28px;
}

/* Bloque oscuro inferior */
.contacto-section__datos {
    position: relative;
    min-height: 410px;
    padding: 55px 40px 80px 100px;
    background-color: #242424;
    width: 173.5%;
    clip-path: polygon(0 0, 100% 0, 91.2% 100%, 0% 100%);
}

/* Cada fila de contacto */
.contacto-section__item {
    display: flex;
    align-items: center;
    gap: 32px;
    margin-bottom: 38px;
}

/* Iconos naranjas */
.contacto-section__icono {
    width: 45px;
    min-width: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d96b00;
    font-size: 42px;
}

/* Texto de contacto */
.contacto-section__item p {
    margin: 0;
    font-size: 24px;
    line-height: 1.25;
    color: #ffffff;
    font-weight: 400;
}

/* Decoración de X abajo izquierda */
.contacto-section__decoracion {
    position: absolute;
    left: 0;
    bottom: -18px;

    display: flex;
    gap: 18px;
    color: #d96b00;
    font-size: 34px;
    font-weight: 300;
    line-height: 1;
    z-index: 5;
}

.contacto-section__item {
    text-decoration: none;
    color: inherit;
}

.contacto-section__item:hover p {
    color: #d96b00;
}

.contacto-section__item:hover .contacto-section__icono {
    transform: scale(1.08);
}

.contacto-section__icono {
    transition: transform 0.25s ease;
}

.contacto-section__item p {
    transition: color 0.25s ease;
}

/* ================================
   COLUMNA DERECHA
================================ */

.contacto-section__imagen {
    position: relative;
    height: 620px;
    z-index: 1;
}

/* Imagen de la derecha */
.contacto-section__imagen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center right;
    display: block;
}




/* ================================
   RESPONSIVE - 1200px (Escritorio pequeño)
================================ */

@media (max-width: 1200px) {

  /* About */
  .about-container {
    max-width: 1100px;
    grid-template-columns: 46% 54%;
  }

  .about-text {
    padding-left: 50px;
    max-width: 520px;
  }

  .about-orange-shape {
    left: 70px;
    width: 200px;
  }

  .about-image-wrapper::before {
    right: 16px;
    width: 580px;
    height: 500px;
  }

  .about-image {
    right: 0;
    width: 580px;
    height: 500px;
  }

  /* Contacto */
  .contacto-section__cabecera {
    padding: 80px 40px 0 100px;
  }

  .contacto-section__datos {
    padding-left: 60px;
  }
}

/* ================================
   RESPONSIVE - 1024px (Tablet horizontal)
================================ */

@media (max-width: 1024px) {

  /* Header */
  .site-header {
    height: auto;
    padding: 15px 25px;
    align-items: center;
  }

  .logo img {
    width: 120px;
  }

  .main-nav {
    min-width: auto;
    height: auto;
    padding: 14px 25px;
    gap: 14px;
    clip-path: none;
  }

  .main-nav a {
    font-size: 15px;
  }

  /* Hero - quitar desbordamiento negativo del header */
  .hero-inicio {
    padding-top: 30px;
    margin-top: 0;
  }

  .hero-inicio__texto {
    padding: 50px 20px 20px 50px;
  }

  .hero-inicio__texto h1 {
    font-size: clamp(36px, 4.5vw, 54px);
  }

  .hero-inicio__barra {
    width: 280px;
    height: 62px;
    margin-left: -50px;
  }

  .hero-inicio__imagen {
    margin-top: 0;
  }

  .hero-inicio__imagen img {
    margin-top: 0;
    width: 100%;
    height: 100%;
    min-height: 420px;
    object-fit: cover;
  }

  /* About - cambiar a 1 columna */
  .about-section {
    padding: 70px 25px;
  }

  .about-container {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 45px;
  }

  .about-text {
    padding-left: 0;
    padding-right: 0;
    max-width: 100%;
  }

  .about-crosses {
    position: static;
    margin-top: 25px;
  }

  .about-image-wrapper {
    min-height: 430px;
  }

  .about-orange-shape {
    top: -35px;
    left: 40px;
    width: 220px;
    height: 500px;
  }

  .about-image-wrapper::before {
    top: 35px;
    right: 14px;
    width: 88%;
    height: 400px;
  }

  .about-image {
    top: 35px;
    right: 0;
    width: 88%;
    height: 400px;
  }

  /* Servicios - 2 columnas */
  .servicios__contenedor {
    grid-template-columns: 1fr 1fr;
    max-width: 660px;
    gap: 20px;
  }

  .servicios::after {
    top: 400px;
  }

  /* Porque elegirnos */
  .porque-elegirnos__imagen-col {
    padding-right: 40px;
    min-height: 580px;
  }

  .porque-elegirnos__imagen-box {
    width: 380px;
    height: 380px;
  }

  .porque-elegirnos__contenido-col {
    padding: 80px 50px 60px 30px;
  }

  .porque-elegirnos__lista li {
    font-size: 19px;
  }

  /* Contacto */
  .contacto-section {
    grid-template-columns: 50% 50%;
  }

  .contacto-section__cabecera {
    height: auto;
    padding: 60px 30px 0 60px;
  }

  .contacto-section__datos {
    min-height: 380px;
    padding: 45px 30px 60px 60px;
    width: 100%;
    clip-path: none;
  }

  .contacto-section__item p {
    font-size: 20px;
  }

  .contacto-section__icono {
    font-size: 36px;
  }
}

/* ================================
   RESPONSIVE - 980px (Tablet vertical)
================================ */

@media (max-width: 980px) {

  /* Hero - cambiar a 1 columna */
  .hero-inicio {
    overflow: hidden;
  }

  .hero-inicio__body {
    flex-direction: column;
    min-height: auto;
  }

  .hero-inicio__contenido {
    width: 100%;
  }

  .hero-inicio__texto {
    padding: 50px 30px 20px 40px;
    max-width: 100%;
  }

  .hero-inicio__barra {
    width: 240px;
    height: 58px;
    margin-left: -40px;
  }

  .hero-inicio__cruces {
    margin-bottom: 20px;
  }

  .hero-inicio__imagen {
    width: 100%;
    margin-top: 0;
  }

  .hero-inicio__imagen img {
    width: 100%;
    height: 320px;
    min-height: unset;
    object-fit: cover;
    margin-top: 0;
  }

  /* Servicios - 1 columna */
  .servicios__contenedor {
    grid-template-columns: 1fr;
    max-width: 440px;
    gap: 40px;
  }

  .servicios::after {
    display: none;
  }

  .servicio-card__contenido {
    background-color: #242424;
  }

  .servicios__decoracion {
    right: 20px;
    font-size: 26px;
  }

  .servicios-2 .servicio-card .servicio-card__contenido h3 {
    min-height: auto;
  }

  /* Porque elegirnos - cambiar a 1 columna */
  .porque-elegirnos {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .porque-elegirnos__imagen-col {
    min-height: 380px;
    padding: 50px 30px;
    justify-content: center;
  }

  .porque-elegirnos__fondo-diagonal {
    width: 100%;
    right: 0;
    transform: none;
    transform-origin: unset;
  }

  .porque-elegirnos__imagen-box {
    width: 340px;
    height: 340px;
  }

  .porque-elegirnos__contenido-col {
    padding: 60px 30px;
  }

  .porque-elegirnos__texto {
    font-size: 17px;
  }

  .porque-elegirnos__lista li {
    font-size: 17px;
  }

  /* Contacto - cambiar a 1 columna */
  .contacto-section {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .contacto-section__cabecera {
    height: auto;
    padding: 50px 30px 20px 60px;
  }

  .contacto-section__datos {
    width: 100%;
    clip-path: none;
    min-height: auto;
    padding: 45px 30px 60px 60px;
  }

  .contacto-section__imagen {
    height: 380px;
  }
}

/* ================================
   RESPONSIVE - 768px (Móvil)
================================ */

@media (max-width: 768px) {

  /* Header */
  .site-header {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 15px 0 0;
  }

  .logo {
    padding-top: 5px;
    padding-left: 20px;
  }

  .main-nav {
    width: 100%;
    margin-left: 0;
    margin-top: 12px;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    padding: 12px 15px;
    clip-path: none;
    min-width: unset;
    height: auto;
  }

  .main-nav a {
    font-size: 13px;
  }

  /* Hero */
  .hero-inicio {
    padding-top: 0;
    margin-top: 0;
    overflow: hidden;
  }

  .hero-inicio__texto {
    padding: 35px 20px 15px 25px;
  }

  .hero-inicio__subtitulo {
    font-size: 14px;
    letter-spacing: 8px;
    margin-bottom: 18px;
  }

  .hero-inicio__texto h1 {
    font-size: clamp(28px, 9vw, 42px);
  }

  .hero-inicio__barra {
    width: 200px;
    height: 52px;
    margin-left: -25px;
    margin-top: 35px;
  }

  .hero-inicio__cruces {
    font-size: 28px;
    gap: 14px;
    margin-top: 35px;
  }

  .hero-inicio__imagen img {
    height: 250px;
  }

  /* About */
  .about-section {
    padding: 55px 20px;
  }

  .about-text h2 {
    font-size: 32px;
  }

  .about-text p {
    font-size: 16px;
  }

  .about-image-wrapper {
    min-height: 350px;
  }

  .about-orange-shape {
    left: 15px;
    width: 150px;
    height: 400px;
  }

  .about-image-wrapper::before {
    top: 30px;
    right: 10px;
    width: 90%;
    height: 310px;
  }

  .about-image {
    top: 30px;
    right: 0;
    width: 90%;
    height: 310px;
  }

  /* Servicios */
  .servicios {
    padding-top: 50px;
  }

  .servicios__cabecera h2 {
    font-size: 30px;
  }

  .servicios__decoracion {
    display: none;
  }

  .servicio-card__contenido h3 {
    font-size: 21px;
    min-height: auto;
  }

  .servicio-card__contenido p {
    font-size: 15px;
  }

  /* Porque elegirnos - imagen debajo del texto en móvil */
  .porque-elegirnos__imagen-col {
    min-height: 300px;
    padding: 40px 20px;
    order: 2;
  }

  .porque-elegirnos__contenido-col {
    order: 1;
  }

  .porque-elegirnos__imagen-box {
    width: 270px;
    height: 270px;
  }

  .porque-elegirnos__contenido-col {
    padding: 45px 20px 50px 20px;
  }

  .porque-elegirnos__contenido-col h2 {
    font-size: 30px;
  }

  .porque-elegirnos__texto {
    font-size: 15px;
  }

  .porque-elegirnos__lista li {
    font-size: 15px;
  }

  .porque-elegirnos__lista li i {
    font-size: 17px;
  }

  .porque-elegirnos__decoracion {
    display: none;
  }

  /* Contacto */
  .contacto-section__cabecera {
    padding: 40px 20px 15px 25px;
  }

  .contacto-section__cabecera h2 {
    font-size: 30px;
  }

  .contacto-section__linea {
    margin-top: 18px;
  }

  .contacto-section__datos {
    padding: 35px 20px 50px 25px;
  }

  .contacto-section__item {
    gap: 18px;
    margin-bottom: 25px;
  }

  .contacto-section__icono {
    font-size: 30px;
    width: 30px;
    min-width: 30px;
  }

  .contacto-section__item p {
    font-size: 16px;
  }

  .contacto-section__decoracion {
    bottom: -12px;
    font-size: 28px;
    gap: 12px;
  }

  .contacto-section__imagen {
    height: 280px;
  }
}