* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  min-height: 100%;
}

body {
  font-family: Arial, sans-serif;
  color: #1f2933;
  background-color: #ffffff;
  line-height: 1.6;
  position: relative;
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background-image:
    url("../img/isotipo.png"),
    url("../img/isotipo.png"),
    url("../img/isotipo.png"),
    url("../img/isotipo.png"),
    url("../img/isotipo.png"),
    url("../img/isotipo.png");
  background-repeat:
    no-repeat,
    no-repeat,
    no-repeat,
    no-repeat,
    no-repeat,
    repeat-y;
  background-position:
    right 12px top 215px,
    right 135px top 720px,
    right 45px top 1185px,
    right 118px top 1860px,
    right 24px top 2550px,
    left -120px top 120px;
  background-size:
    285px auto,
    150px auto,
    195px auto,
    165px auto,
    220px auto,
    630px auto;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(255, 255, 255, 0.50);
  pointer-events: none;
  z-index: 0;
}

body > * {
  position: relative;
  z-index: 1;
}

main,
.contenido-principal {
  flex: 1;
}

img {
  max-width: 100%;
  display: block;
}

a {
  transition: 0.3s ease;
}

.contenedor {
  width: 94%;
  max-width: 1440px;
  margin: 0 auto;
}

/* HEADER */

.header {
  background: #dfe7de;
  padding: 16px 0;
  border-bottom: 1px solid #cfd9ce;
}

.header .contenedor {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.logo-img {
  height: 124px;
  width: auto;
}

.menu {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 34px;
}

.menu a {
  text-decoration: none;
  color: #1f2933;
  font-weight: 700;
  font-size: 16px;
}

.menu a:hover {
  color: #3c6e4f;
}

.menu-subpagina {
  gap: 28px;
}

.menu-subpagina a:first-child {
  color: #3c6e4f;
}

/* HERO */

.hero {
  background: transparent;
  padding: 84px 0 80px;
}

.hero-contenido {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  align-items: center;
  gap: 86px;
}

.hero-texto {
  width: 100%;
  max-width: 820px;
}

.subtitulo {
  color: #3c6e4f;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 14px;
  font-size: 14px;
}

.hero-texto h1 {
  font-size: 54px;
  line-height: 1.12;
  margin-bottom: 24px;
  letter-spacing: -0.4px;
}

.hero-descripcion {
  font-size: 18px;
  color: #5b6670;
  margin-bottom: 16px;
  max-width: 680px;
  line-height: 1.66;
}

.hero-descripcion-secundaria {
  margin-bottom: 20px;
}

.hero-destacado {
  font-size: 21px;
  line-height: 1.42;
  font-weight: 700;
  color: #24303b;
  margin-bottom: 28px;
  max-width: 680px;
}

.hero-imagen {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  background: transparent;
  border: none;
  box-shadow: none;
}

.hero-imagen::before {
  display: none;
}

.hero-imagen img {
  width: 100%;
  max-width: 620px;
  height: 455px;
  object-fit: cover;
  display: block;
  border-radius: 22px;
  border: none;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.06);
}

.boton {
  display: inline-block;
  background: #3c6e4f;
  color: #ffffff;
  text-decoration: none;
  border: none;
  padding: 14px 24px;
  border-radius: 30px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.28s ease, background 0.28s ease, box-shadow 0.28s ease;
}

.boton:hover {
  background: #2f573e;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(28, 52, 37, 0.15);
}

/* SECCIONES */

.empresa {
  padding: 76px 0 88px;
}

.servicios,
.productos {
  padding: 88px 0;
  background: transparent;
}

.contacto {
  padding: 90px 0;
  background: #1f2933;
  color: #ffffff;
}

.titulo-seccion {
  text-align: center;
  margin-bottom: 44px;
}

.titulo-seccion h2 {
  font-size: 38px;
  line-height: 1.2;
}

/* EMPRESA */

.titulo-seccion-empresa-superior {
  text-align: center;
  margin-bottom: 40px;
}

.titulo-seccion-empresa-superior h2 {
  font-size: 42px;
  line-height: 1.12;
  max-width: 860px;
  margin: 0 auto;
}

.empresa-fila {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 48px;
  align-items: start;
  margin-bottom: 30px;
}

.empresa-imagen {
  position: relative;
}

.empresa-imagen img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: center;
  border-radius: 20px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.08);
}

.empresa-texto {
  color: #5b6670;
  font-size: 18px;
  line-height: 1.72;
}

.empresa-texto p {
  margin-bottom: 16px;
}

.empresa-texto p:last-child {
  margin-bottom: 0;
}

.empresa-texto-lateral {
  max-width: 100%;
  margin: 0;
  text-align: left;
}

.empresa-destacados {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.empresa-destacado {
  background: rgba(255, 255, 255, 0.30);
  border: 1px solid rgba(229, 235, 229, 0.55);
  border-radius: 16px;
  padding: 22px 20px;
  text-align: center;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.015);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.empresa-destacado:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(31, 41, 51, 0.07);
  border-color: rgba(60, 110, 79, 0.22);
}

.empresa-destacado h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #1f2933;
}

.empresa-destacado p {
  font-size: 15px;
  line-height: 1.58;
  color: #5b6670;
}

/* TARJETAS GENERALES */

.tarjetas {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 34px;
}

.tarjeta {
  background: rgba(255, 255, 255, 0.28);
  padding: 30px;
  border-radius: 16px;
  border: 1px solid rgba(229, 235, 229, 0.55);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.015);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.tarjeta:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(31, 41, 51, 0.07);
  border-color: rgba(60, 110, 79, 0.22);
}

.tarjeta h3 {
  margin-bottom: 14px;
  color: #1f2933;
  font-size: 22px;
}

.tarjeta p {
  color: #5b6670;
  font-size: 17px;
  line-height: 1.6;
}

/* SERVICIOS */

.titulo-seccion-servicios {
  max-width: 760px;
  margin: 0 auto 40px;
}

.intro-servicios {
  margin: 16px auto 0;
  max-width: 690px;
  font-size: 18px;
  line-height: 1.65;
  color: #5b6670;
}

.servicios-tarjetas {
  gap: 22px;
}

.tarjeta-servicio {
  position: relative;
  min-height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 28px 28px 26px;
  overflow: hidden;
  background: rgba(223, 233, 243, 0.78);
  border: 1px solid rgba(186, 204, 220, 0.85);
  box-shadow: 0 8px 20px rgba(51, 79, 104, 0.06);
}

.tarjeta-servicio::before {
  content: "";
  position: absolute;
  top: 0;
  left: 28px;
  width: 78px;
  height: 4px;
  border-radius: 20px;
  background: rgba(114, 145, 175, 0.75);
}

.servicio-etiqueta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 16px;
  border-radius: 50%;
  background: rgba(114, 145, 175, 0.14);
  color: #4e6b86;
  font-size: 14px;
  font-weight: 700;
  border: 1px solid rgba(114, 145, 175, 0.22);
}

.tarjeta-servicio h3 {
  margin-bottom: 12px;
}

.tarjeta-servicio p {
  font-size: 16px;
  line-height: 1.65;
}

.servicios-cierre {
  max-width: 760px;
  margin: 26px auto 0;
  padding: 20px 24px;
  text-align: center;
  background: rgba(255, 255, 255, 0.24);
  border: 1px solid rgba(229, 235, 229, 0.55);
  border-radius: 16px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.015);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}

.servicios-cierre p {
  font-size: 16px;
  line-height: 1.65;
  color: #5b6670;
  margin: 0;
}

/* PRODUCTOS HOME */

.tarjeta-producto-home {
  overflow: hidden;
}

.tarjeta-imagen-home {
  width: 100%;
  height: 410px;
  object-fit: cover;
  object-position: center top;
  border-radius: 12px;
  margin-bottom: 22px;
  display: block;
}

.tarjeta-producto-home .boton {
  margin-top: 18px;
}

/* CONTACTO */

.contacto-contenido {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  align-items: flex-start;
}

.contacto-texto {
  width: 45%;
}

.contacto .subtitulo {
  color: #d5dde3;
  font-size: 34px;
  letter-spacing: 2px;
  margin-bottom: 18px;
  line-height: 1.1;
}

.contacto-texto h2 {
  font-size: 32px;
  margin-bottom: 16px;
  line-height: 1.15;
  color: #ffffff;
}

.contacto-texto p {
  color: #d5dde3;
  margin-bottom: 18px;
  font-size: 18px;
}

.datos-contacto {
  list-style: none;
}

.datos-contacto li {
  margin-bottom: 12px;
  color: #ffffff;
  font-size: 18px;
}

.formulario {
  width: 50%;
  background: rgba(255, 255, 255, 0.08);
  padding: 30px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.015);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.formulario:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.12);
  border-color: rgba(255, 255, 255, 0.18);
}

.formulario input,
.formulario textarea {
  width: 100%;
  padding: 14px;
  margin-bottom: 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 10px;
  font-size: 16px;
  font-family: Arial, sans-serif;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.formulario input::placeholder,
.formulario textarea::placeholder {
  color: rgba(255, 255, 255, 0.75);
}

.formulario input:focus,
.formulario textarea:focus {
  outline: none;
  border-color: #8fb99a;
  background: rgba(255, 255, 255, 0.11);
  transform: translateY(-1px);
}

.formulario textarea {
  resize: vertical;
  min-height: 150px;
}

/* FOOTER */

.footer {
  background: #1f2933;
  color: #ffffff;
  padding-top: 50px;
  margin-top: auto;
}

footer {
  margin-bottom: 0;
  padding-bottom: 0;
}

.footer-contenido {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 30px;
  align-items: start;
  padding-bottom: 30px;
}

.logo-footer {
  height: 105px;
  width: auto;
  object-fit: contain;
  display: block;
}

.footer h4 {
  margin-bottom: 14px;
  font-size: 18px;
}

.footer ul {
  list-style: none;
}

.footer li {
  margin-bottom: 10px;
}

.footer a {
  color: #d5dde3;
  text-decoration: none;
}

.footer a:hover {
  color: #ffffff;
}

.footer p {
  color: #d5dde3;
  margin-bottom: 10px;
}

.footer-final {
  text-align: center;
  padding: 18px 0;
  padding-bottom: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 14px;
  color: #d5dde3;
  background: #1f2933;
  margin-bottom: 0;
}

.footer-final p {
  margin: 0;
}

/* ISOTIPOS DETRÁS DE TEXTOS */

.hero-texto,
.titulo-seccion,
.contacto-texto {
  position: relative;
  z-index: 1;
}

.hero-texto::before {
  content: "";
  position: absolute;
  top: -40px;
  left: -70px;
  width: 260px;
  height: 260px;
  background-image: url("../img/isotipo.png");
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.025;
  pointer-events: none;
  z-index: -1;
}

.titulo-seccion::before {
  content: "";
  position: absolute;
  top: -35px;
  left: -60px;
  width: 220px;
  height: 220px;
  background-image: url("../img/isotipo.png");
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.02;
  pointer-events: none;
  z-index: -1;
}

.contacto-texto::before {
  content: "";
  position: absolute;
  top: -30px;
  left: -55px;
  width: 220px;
  height: 220px;
  background-image: url("../img/isotipo.png");
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.02;
  pointer-events: none;
  z-index: -1;
}

.contacto .contacto-texto::before {
  display: none;
}

/* ANIMACIONES */

.js-enabled .reveal {
  opacity: 0;
  transition:
    opacity 0.72s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.72s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.js-enabled .reveal-up {
  transform: translate3d(0, 26px, 0);
}

.js-enabled .reveal-left {
  transform: translate3d(-34px, 0, 0);
}

.js-enabled .reveal-right {
  transform: translate3d(34px, 0, 0);
}

.js-enabled .reveal-scale {
  transform: translate3d(0, 20px, 0) scale(0.985);
}

.js-enabled .reveal.visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.js-enabled .delay-1 {
  transition-delay: 0.05s;
}

.js-enabled .delay-2 {
  transition-delay: 0.11s;
}

.js-enabled .delay-3 {
  transition-delay: 0.17s;
}

.js-enabled .delay-4 {
  transition-delay: 0.23s;
}

@media (prefers-reduced-motion: reduce) {
  .js-enabled .reveal,
  .js-enabled .reveal-up,
  .js-enabled .reveal-left,
  .js-enabled .reveal-right,
  .js-enabled .reveal-scale {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .tarjeta,
  .formulario,
  .boton,
  .formulario input,
  .formulario textarea {
    transition: none !important;
    transform: none !important;
  }
}

/* RESPONSIVE TABLET */

@media (max-width: 1200px) {
  .empresa-fila {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .empresa-imagen img {
    height: 440px;
  }

  .empresa-texto-lateral {
    text-align: center;
  }

  .titulo-seccion-empresa-superior h2 {
    font-size: 40px;
  }
}

@media (max-width: 1024px) {
  .hero-contenido {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .contacto-contenido {
    flex-direction: column;
  }

  .hero-texto,
  .hero-imagen,
  .contacto-texto,
  .formulario {
    width: 100%;
    max-width: 100%;
  }

  .hero-texto h1 {
    font-size: 46px;
  }

  .hero-destacado {
    font-size: 20px;
  }

  .hero-imagen img {
    max-width: 100%;
    height: 440px;
  }

  .titulo-seccion h2 {
    font-size: 32px;
  }

  .empresa-destacados,
  .tarjetas,
  .footer-contenido {
    grid-template-columns: 1fr;
  }

  .contacto .subtitulo {
    font-size: 28px;
  }

  .contacto-texto h2 {
    font-size: 28px;
  }

  .incluye-linea-grid,
  .incluye-linea-grid-compacto {
    grid-template-columns: 1fr;
  }

  .grid-texturas-facial {
    grid-template-columns: repeat(2, 1fr);
  }

  body {
    background-image:
      url("../img/isotipo.png"),
      url("../img/isotipo.png"),
      url("../img/isotipo.png"),
      url("../img/isotipo.png"),
      url("../img/isotipo.png"),
      url("../img/isotipo.png");
    background-repeat:
      no-repeat,
      no-repeat,
      no-repeat,
      no-repeat,
      no-repeat,
      repeat-y;
    background-position:
      right 8px top 220px,
      right 88px top 720px,
      right 18px top 1120px,
      right 68px top 1760px,
      right 18px top 2440px,
      left -140px top 120px;
    background-size:
      235px auto,
      125px auto,
      155px auto,
      135px auto,
      165px auto,
      500px auto;
  }
}

/* RESPONSIVE MÓVIL */

@media (max-width: 768px) {
  .header .contenedor {
    flex-direction: column;
    justify-content: center;
  }

  .menu {
    justify-content: center;
    gap: 16px;
  }

  .hero {
    padding: 70px 0 68px;
  }

  .hero-texto h1 {
    font-size: 38px;
    line-height: 1.1;
  }

  .hero-descripcion,
  .empresa-texto,
  .empresa-texto-lateral,
  .contacto-texto p,
  .datos-contacto li,
  .tarjeta p,
  .intro-servicios,
  .intro-texturas-facial {
    font-size: 16px;
  }

  .hero-destacado {
    font-size: 19px;
    line-height: 1.4;
  }

  .hero-imagen img {
    height: 360px;
  }

  .titulo-seccion h2,
  .titulo-seccion-empresa-superior h2 {
    font-size: 32px;
  }

  .empresa,
  .servicios,
  .productos,
  .contacto,
  .texturas-facial,
  .incluye-linea {
    padding: 72px 0;
  }

  .formulario {
    padding: 24px;
  }

  .tarjeta-servicio {
    min-height: auto;
    padding: 24px 22px 22px;
  }

  .servicio-etiqueta {
    width: 40px;
    height: 40px;
    margin-bottom: 14px;
    font-size: 13px;
  }

  .servicios-cierre {
    margin-top: 22px;
    padding: 18px 16px;
  }

  .servicios-cierre p {
    font-size: 15px;
  }

  .empresa-imagen img {
    height: 320px;
    border-radius: 16px;
  }

  .empresa-destacado {
    padding: 20px 18px;
  }

  .empresa-destacado h3 {
    font-size: 19px;
  }

  .empresa-destacado p {
    font-size: 15px;
  }

  .tarjeta-imagen-home {
    height: 320px;
  }

  .contacto .subtitulo {
    font-size: 23px;
    letter-spacing: 1.5px;
  }

  .contacto-texto h2 {
    font-size: 24px;
  }

  .grid-texturas-facial {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .info-textura-facial {
    padding: 16px 16px 18px;
  }

  .info-textura-facial h3 {
    font-size: 18px;
  }

  .cierre-texturas-facial {
    margin-top: 26px;
    padding: 18px 16px;
  }

  .cierre-texturas-facial p,
  .incluye-cierre p,
  .incluye-mini-punto p {
    font-size: 15px;
  }

  .incluye-linea-intro {
    padding: 24px 20px;
  }

  .incluye-linea-intro p {
    font-size: 16px;
  }

  .incluye-card {
    padding: 20px 18px;
  }

  .incluye-card h3 {
    font-size: 19px;
  }

  .incluye-card p {
    font-size: 15px;
  }

  body {
    background-image:
      url("../img/isotipo.png"),
      url("../img/isotipo.png"),
      url("../img/isotipo.png"),
      url("../img/isotipo.png"),
      url("../img/isotipo.png"),
      url("../img/isotipo.png");
    background-repeat:
      no-repeat,
      no-repeat,
      no-repeat,
      no-repeat,
      no-repeat,
      repeat-y;
    background-position:
      right -5px top 215px,
      right 24px top 670px,
      right 0px top 1040px,
      right 32px top 1600px,
      right 5px top 2260px,
      left -120px top 120px;
    background-size:
      170px auto,
      90px auto,
      120px auto,
      105px auto,
      130px auto,
      380px auto;
  }
}

/* TARJETAS AZULES LÍNEA */

.tarjeta-azul-linea {
  position: relative;
  overflow: hidden;
  background: rgba(223, 233, 243, 0.78);
  border: 1px solid rgba(186, 204, 220, 0.85);
  box-shadow: 0 8px 20px rgba(51, 79, 104, 0.06);
  border-radius: 18px;
  padding: 26px 24px;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.tarjeta-azul-linea::before {
  content: "";
  position: absolute;
  top: 0;
  left: 24px;
  width: 72px;
  height: 4px;
  border-radius: 20px;
  background: rgba(114, 145, 175, 0.70);
}

.tarjeta-azul-linea::after {
  content: "";
  position: absolute;
  top: -18px;
  right: -18px;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
  pointer-events: none;
}

.tarjeta-azul-linea:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 28px rgba(51, 79, 104, 0.10);
  border-color: rgba(145, 170, 194, 0.95);
}

.producto-linea h3 {
  font-size: 22px;
  margin-bottom: 12px;
  color: #1f2933;
  position: relative;
  z-index: 1;
}

.producto-linea p {
  font-size: 16px;
  line-height: 1.65;
  color: #5b6670;
  position: relative;
  z-index: 1;
}

/* TEXTURAS FACIAL */

.texturas-facial {
  padding: 88px 0;
}

.intro-texturas-facial {
  max-width: 760px;
  margin: 16px auto 0;
  font-size: 18px;
  line-height: 1.68;
  color: #5b6670;
}

.grid-texturas-facial {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
  max-width: 1320px;
  margin: 0 auto;
}

.card-textura-facial {
  background: rgba(255, 255, 255, 0.52);
  border: 1px solid rgba(229, 235, 229, 0.72);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.035);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.card-textura-facial:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.06);
  border-color: rgba(186, 204, 220, 0.95);
}

.card-textura-facial img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  background: #f6f4ef;
}

.info-textura-facial {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 18px 20px;
  background: rgba(255, 255, 255, 0.72);
}

.numero-textura {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(223, 233, 243, 0.92);
  color: #4e6b86;
  font-size: 13px;
  font-weight: 700;
  border: 1px solid rgba(186, 204, 220, 0.9);
}

.info-textura-facial h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.2;
  color: #1f2933;
}

.cierre-texturas-facial {
  max-width: 860px;
  margin: 34px auto 0;
  padding: 22px 26px;
  text-align: center;
  background: rgba(255, 255, 255, 0.42);
  border: 1px solid rgba(229, 235, 229, 0.72);
  border-radius: 18px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.03);
}

.cierre-texturas-facial p {
  margin: 0;
  font-size: 17px;
  line-height: 1.68;
  color: #5b6670;
}

/* BLOQUE QUÉ INCLUYE */

.incluye-linea {
  padding: 84px 0;
}

.incluye-linea-grid {
  display: grid;
  grid-template-columns: 1fr 1.08fr;
  gap: 52px;
  align-items: start;
  max-width: 1320px;
  margin: 0 auto;
}

.incluye-linea-grid-compacto {
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  align-items: start;
}

.incluye-linea-intro {
  position: relative;
  background: rgba(255, 255, 255, 0.34);
  border: 1px solid rgba(229, 235, 229, 0.65);
  border-radius: 20px;
  padding: 30px 28px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.02);
}

.incluye-linea-intro::before {
  content: "";
  position: absolute;
  top: 0;
  left: 28px;
  width: 78px;
  height: 4px;
  border-radius: 20px;
  background: rgba(114, 145, 175, 0.75);
}

.incluye-linea-intro p {
  font-size: 18px;
  line-height: 1.7;
  color: #5b6670;
  margin-bottom: 16px;
}

.incluye-linea-intro p:last-child {
  margin-bottom: 0;
}

.incluye-linea-destacados,
.incluye-linea-destacados-2 {
  display: grid;
  gap: 18px;
}

.incluye-card {
  background: rgba(223, 233, 243, 0.64);
  border: 1px solid rgba(186, 204, 220, 0.82);
  border-radius: 18px;
  padding: 24px 22px;
  box-shadow: 0 8px 20px rgba(51, 79, 104, 0.05);
}

.incluye-card h3 {
  font-size: 22px;
  margin-bottom: 10px;
  color: #1f2933;
}

.incluye-card p {
  font-size: 16px;
  line-height: 1.65;
  color: #5b6670;
  margin: 0;
}

.incluye-mini-puntos {
  margin-top: 24px;
  display: grid;
  gap: 14px;
}

.incluye-mini-punto {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.incluye-mini-punto span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(223, 233, 243, 0.92);
  color: #4e6b86;
  font-size: 13px;
  font-weight: 700;
  border: 1px solid rgba(186, 204, 220, 0.9);
}

.incluye-mini-punto p {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: #5b6670;
}

.incluye-cierre {
  max-width: 900px;
  margin: 22px auto 0;
  text-align: center;
}

.incluye-cierre p {
  font-size: 17px;
  line-height: 1.68;
  color: #5b6670;
  margin: 0;
}