@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600&family=Playfair+Display:ital,wght@0,400;0,700;1,400&display=swap");
html {
  box-sizing: border-box;
  font-size: 62.5%;
  scroll-behavior: smooth;
}

*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Montserrat", sans-serif;
  font-size: 1.6rem;
  line-height: 1.6;
  color: #2C3E50;
  background-color: #F8F9FA;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  color: #2C3E50;
  margin-bottom: 2rem;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: #5D8AA8;
  transition: color 0.3s ease;
}
a:hover {
  color: rgb(64.4638554217, 97.8072289157, 120.0361445783);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

hr {
  border: none;
  border-top: 1px solid #BFC9D2;
  margin: 4rem 0;
}

::selection {
  background-color: #5D8AA8;
  color: #F8F9FA;
}

.header {
  /* --- LÍNEAS AGREGADAS PARA FIJAR EL HEADER --- */
  position: sticky;
  top: 0;
  z-index: 9999; /* Asegura que siempre esté por encima de cualquier otro contenido */
  /* --------------------------------------------- */
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .header {
    /* Un poco de padding en celular para que no quede pegado a los bordes */
    padding: 1rem 2rem;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .header {
    /* Un poco de padding en tablet para que no quede pegado a los bordes */
    padding: 1rem 2rem;
  }
}

.info-logo {
  display: flex;
  align-items: center;
  column-gap: 0.5rem;
}
@media (max-width: 767px) {
  .info-logo {
    position: relative;
    z-index: 100; /* Asegura que el logo quede arriba del menú en móvil */
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .info-logo {
    position: relative;
    z-index: 100; /* Asegura que el logo quede arriba del menú en tablet */
  }
}

.logo {
  width: 10rem;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .logo {
    width: 8rem;
  }
}
@media (max-width: 767px) {
  .logo {
    width: 7rem;
  }
}
@media (min-width: 1024px) and (max-width: 1439px) {
  .logo {
    margin-left: 2rem;
  }
}

/* Ocultar el H1 en celular y tablet */
@media (max-width: 767px) {
  .logo-texto {
    display: none;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .logo-texto {
    display: none;
  }
}

/* Ocultar el botón de contacto en celular y tablet */
@media (max-width: 767px) {
  .contenedor-boton {
    display: none;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .contenedor-boton {
    display: none;
  }
}

/* Tu botón original intacto */
.boton {
  font-weight: bold;
  padding: 1.5rem 2.5rem;
  background-color: #2C3E50;
  color: #F8F9FA;
  border-radius: 0.9rem;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
@media (min-width: 1024px) and (max-width: 1439px) {
  .boton {
    margin-right: 7rem;
  }
}
.boton:hover {
  filter: brightness(0.9);
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}
.boton:active {
  transform: translateY(1px);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.boton:focus-visible {
  outline: 3px solid rgba(0, 0, 0, 0.3);
  outline-offset: 4px;
}

/* --- MENÚ HAMBURGUESA --- */
/* Base: Oculto en escritorio */
.menu-hamburguesa {
  display: none;
  /* Visible en celular */
}
@media (max-width: 767px) {
  .menu-hamburguesa {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 35px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 100;
  }
  .menu-hamburguesa .linea {
    width: 100%;
    height: 3px;
    background-color: #333;
    border-radius: 5px;
    transition: all 0.4s ease;
  }
  .menu-hamburguesa.activo .linea:nth-child(1) {
    transform: translateY(10.5px) rotate(45deg);
  }
  .menu-hamburguesa.activo .linea:nth-child(2) {
    opacity: 0;
    transform: scale(0);
  }
  .menu-hamburguesa.activo .linea:nth-child(3) {
    transform: translateY(-10.5px) rotate(-45deg);
  }
}
.menu-hamburguesa {
  /* Visible en tablet */
}
@media (min-width: 768px) and (max-width: 1023px) {
  .menu-hamburguesa {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 35px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 100;
  }
  .menu-hamburguesa .linea {
    width: 100%;
    height: 3px;
    background-color: #333;
    border-radius: 5px;
    transition: all 0.4s ease;
  }
  .menu-hamburguesa.activo .linea:nth-child(1) {
    transform: translateY(10.5px) rotate(45deg);
  }
  .menu-hamburguesa.activo .linea:nth-child(2) {
    opacity: 0;
    transform: scale(0);
  }
  .menu-hamburguesa.activo .linea:nth-child(3) {
    transform: translateY(-10.5px) rotate(-45deg);
  }
}

/* --- NAVEGACIÓN --- */
/* Base: Tu diseño original para desktop y desktop xl (Textos grandes y en fila) */
.navegacion {
  display: flex;
  column-gap: 2.5rem;
  font-weight: bold;
}
.navegacion a {
  text-decoration: none;
  color: #333;
  transition: color 0.3s ease;
}
.navegacion a:hover {
  color: #2C3E50;
}
.navegacion {
  /* Estilos del menú elegante en celular */
}
@media (max-width: 767px) {
  .navegacion {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.95);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    row-gap: 3rem;
    font-size: 2rem;
    /* Oculto por defecto con transición suave */
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: all 0.4s ease-in-out;
  }
  .navegacion.activo {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}
.navegacion {
  /* Estilos del menú elegante en tablet */
}
@media (min-width: 768px) and (max-width: 1023px) {
  .navegacion {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.95);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    row-gap: 3rem;
    font-size: 2rem;
    /* Oculto por defecto con transición suave */
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: all 0.4s ease-in-out;
  }
  .navegacion.activo {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}

.hero {
  display: flex;
  width: 80%;
  margin: 0 auto;
  margin-top: 8rem;
  /* Tablet: Imagen arriba y textos abajo */
}
@media (min-width: 768px) and (max-width: 1023px) {
  .hero {
    flex-direction: column-reverse;
    align-items: center;
    text-align: center; /* Opcional: centra el texto para que se vea mejor */
    margin-top: 4rem;
  }
}
.hero {
  /* Celular: Imagen arriba y textos abajo */
}
@media (max-width: 767px) {
  .hero {
    flex-direction: column-reverse;
    align-items: center;
    text-align: center; /* Opcional: centra el texto para que se vea mejor */
    width: 90%;
    margin-top: 3rem;
  }
}

/* Seleccionamos el div que contiene tu imagen para que sea responsivo */
@media (min-width: 768px) and (max-width: 1023px) {
  .hero > div:last-child {
    width: 100%;
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .hero > div:last-child {
    width: 100%;
    margin-bottom: 2rem;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .hero > div:last-child img {
    max-width: 100%;
    height: auto;
  }
}
@media (max-width: 767px) {
  .hero > div:last-child img {
    max-width: 100%;
    height: auto;
  }
}

.parrafo {
  display: inline-block;
  padding: 0.9rem;
  background-color: #BFC9D2;
  border-radius: 2rem;
  margin-bottom: 4rem;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .parrafo {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .parrafo {
    margin-bottom: 2rem;
  }
}

.contenedor-hero {
  width: 60%;
  margin-right: 6rem;
  /* Le quitamos el margen y le damos el 100% de ancho en responsivo */
}
@media (min-width: 768px) and (max-width: 1023px) {
  .contenedor-hero {
    width: 100%;
    margin-right: 0;
  }
}
@media (max-width: 767px) {
  .contenedor-hero {
    width: 100%;
    margin-right: 0;
  }
}

.botones {
  display: flex;
  margin-top: 4rem;
  column-gap: 1rem;
  /* Tablet: Botones uno sobre otro */
}
@media (min-width: 768px) and (max-width: 1023px) {
  .botones {
    flex-direction: column;
    row-gap: 1rem;
    margin-top: 2rem;
  }
}
.botones {
  /* Celular: Botones uno sobre otro */
}
@media (max-width: 767px) {
  .botones {
    flex-direction: column;
    row-gap: 1rem;
    margin-top: 2rem;
  }
}

.boton-azul {
  padding: 1rem;
  background-color: #2C3E50;
  color: #F8F9FA;
  border-radius: 0.6rem;
  text-decoration: none; /* Por si acaso */
  /* Centramos el texto dentro del botón al estar al 100% de ancho */
}
@media (min-width: 768px) and (max-width: 1023px) {
  .boton-azul {
    text-align: center;
  }
}
@media (max-width: 767px) {
  .boton-azul {
    text-align: center;
  }
}

.boton-blanco {
  padding: 1rem;
  background-color: #F8F9FA;
  color: #2C3E50;
  border: 1px solid #2C3E50;
  border-radius: 0.6rem;
  text-decoration: none;
  /* Centramos el texto dentro del botón al estar al 100% de ancho */
}
@media (min-width: 768px) and (max-width: 1023px) {
  .boton-blanco {
    text-align: center;
  }
}
@media (max-width: 767px) {
  .boton-blanco {
    text-align: center;
  }
}

.servicios {
  background-color: #F8F9FA;
  padding: 6rem 2rem;
  margin-top: 9rem;
}
.servicios .contenedor-servicios {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.servicios-heading {
  color: #2C3E50;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.servicios-descripcion {
  color: #5D8AA8;
  font-size: 1.2rem;
  margin-bottom: 4rem;
}

.servicios-grid {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 1fr;
}
@media (max-width: 767px) {
  .servicios-grid {
    grid-template-columns: 1fr;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .servicios-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .servicios-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.servicio-card {
  background-color: #FFFFFF;
  padding: 3rem 2rem;
  border-radius: 1.2rem;
  border: 1px solid rgba(191, 201, 210, 0.3);
  box-shadow: 0 10px 30px rgba(44, 62, 80, 0.03);
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.servicio-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(44, 62, 80, 0.08);
  border-color: rgba(93, 138, 168, 0.5);
}
.servicio-card .icono {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  background-color: rgba(93, 138, 168, 0.1);
  width: 80px;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}
.servicio-card h3 {
  color: #2C3E50;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.servicio-card p {
  color: #2C3E50;
  opacity: 0.8;
  line-height: 1.6;
  margin-bottom: 2rem;
  flex-grow: 1;
}

.boton-saber-mas {
  display: inline-block;
  padding: 0.8rem 2rem;
  color: #5D8AA8;
  background-color: transparent;
  border: 2px solid #5D8AA8;
  border-radius: 0.5rem;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
  width: 100%;
  max-width: 200px;
}
.boton-saber-mas:hover {
  background-color: #5D8AA8;
  color: #FFFFFF;
}

.portafolio {
  padding: 5rem 2rem;
  background-color: #F8F9FA;
  margin-top: 8rem;
}

.portafolio__titulo-principal {
  text-align: center;
  color: #2C3E50;
  font-size: 3rem;
  font-weight: 800;
  margin-top: 0;
  margin-bottom: 3.5rem;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .portafolio__titulo-principal {
    font-size: 2.4rem;
    margin-bottom: 2.5rem;
  }
}
@media (max-width: 767px) {
  .portafolio__titulo-principal {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
}

.portafolio__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  max-width: 1300px;
  margin: 0 auto;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .portafolio__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .portafolio__grid {
    grid-template-columns: 1fr;
  }
}

.tarjeta-proyecto {
  background-color: #2C3E50;
  border-radius: 16px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.tarjeta-proyecto:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.tarjeta-proyecto__imagen {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 10px;
}

.tarjeta-proyecto__contenido {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex-grow: 1;
}

.tarjeta-proyecto__categoria {
  color: #5D8AA8;
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.tarjeta-proyecto__titulo {
  color: #F8F9FA;
  font-size: 1.6rem;
  font-weight: 600;
  margin: 0;
}

.tarjeta-proyecto__descripcion {
  color: #BFC9D2;
  font-size: 1.1rem;
  line-height: 1.6;
  margin: 0;
  flex-grow: 1;
}

.tarjeta-proyecto__enlace {
  color: #F8F9FA;
  text-decoration: none;
  font-size: 1.15rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  margin-top: 1.5rem;
  padding: 0.8rem 1.2rem;
  border-radius: 8px;
  width: max-content;
  background-color: rgba(248, 249, 250, 0.05);
  transition: all 0.3s ease;
}

.tarjeta-proyecto__enlace:hover {
  background-color: rgba(248, 249, 250, 0.15);
}

.tarjeta-proyecto__enlace svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.tarjeta-proyecto__enlace:hover svg {
  transform: translateX(6px) translateY(-6px);
}

.proceso-novaro {
  padding: 12rem 5%;
  background-color: #F8F9FA;
  overflow: hidden;
}

.proceso-contenedor {
  max-width: 1000px;
  margin: 0 auto;
}

.proceso-cabecera {
  text-align: center;
  margin-bottom: 12rem;
}

.proceso-titulo {
  font-size: 4.8rem;
  color: #2C3E50;
  margin-bottom: 2rem;
}

.proceso-subtitulo {
  font-size: 1.8rem;
  color: #2C3E50;
  max-width: 700px;
  margin: 0 auto;
  font-weight: 400;
}

.proceso-lista {
  display: flex;
  flex-direction: column;
  gap: 8rem;
}

.proceso-item {
  display: grid;
  grid-template-columns: 18rem 1fr;
  align-items: center;
  gap: 3rem;
  transition: transform 0.3s ease;
}

.proceso-item:hover {
  transform: translateX(1rem);
}

.proceso-item:hover .proceso-numero {
  color: rgba(93, 138, 168, 0.05);
  -webkit-text-stroke: 2px #5D8AA8;
}

.proceso-numero {
  font-family: "Playfair Display", serif;
  font-size: 14rem;
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 2px rgba(44, 62, 80, 0.15);
  line-height: 1;
  text-align: right;
  transition: all 0.4s ease;
}

.proceso-contenido {
  padding: 2rem 0 2rem 4rem;
  border-left: 3px solid #5D8AA8;
}

.proceso-nombre {
  font-size: 3.2rem;
  color: #2C3E50;
  margin-bottom: 1rem;
}

.proceso-texto {
  font-size: 1.8rem;
  color: #2C3E50;
  font-weight: 600;
  line-height: 1.7;
  max-width: 600px;
}

.proceso-garantias {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 3rem;
  margin-top: 14rem;
  padding-top: 5rem;
  border-top: 1px solid rgba(191, 201, 210, 0.4);
}

.garantia-item {
  font-family: "Montserrat", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #2C3E50;
  text-transform: uppercase;
  letter-spacing: 0.2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.garantia-item::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  background-color: #5D8AA8;
  border-radius: 50%;
}

@media (min-width: 768px) and (max-width: 1023px) {
  .proceso-novaro {
    padding: 10rem 5%;
  }
  .proceso-item {
    grid-template-columns: 14rem 1fr;
  }
  .proceso-numero {
    font-size: 11rem;
  }
  .proceso-contenido {
    padding-left: 3rem;
  }
  .proceso-garantias {
    justify-content: center;
  }
}
@media (max-width: 767px) {
  .proceso-novaro {
    padding: 8rem 5%;
  }
  .proceso-cabecera {
    margin-bottom: 8rem;
  }
  .proceso-titulo {
    font-size: 3.6rem;
  }
  .proceso-lista {
    gap: 6rem;
  }
  .proceso-item {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .proceso-item:hover {
    transform: none;
  }
  .proceso-numero {
    font-size: 9rem;
    text-align: left;
    color: rgba(93, 138, 168, 0.05);
    -webkit-text-stroke: 2px #5D8AA8;
  }
  .proceso-contenido {
    padding: 0 0 0 2rem;
  }
  .proceso-nombre {
    font-size: 2.6rem;
  }
  .proceso-texto {
    font-size: 1.6rem;
  }
  .proceso-garantias {
    margin-top: 10rem;
    flex-direction: column;
    align-items: flex-start;
  }
}
.testimonios {
  padding: 8rem 2rem;
  background-color: #F8F9FA;
}

.testimonios__contenedor {
  max-width: 1200px;
  margin: 0 auto;
}

.testimonios__titulo {
  text-align: center;
  color: #2C3E50;
  margin-bottom: 5rem;
  font-size: 3.6rem;
}

.testimonios__grid {
  display: grid;
  gap: 3rem;
  /* Configuración base (Desktop - 3 columnas) */
  grid-template-columns: repeat(3, 1fr);
}

.testimonio-card {
  background-color: #ffffff; /* Contraste con el fondo blanco-humo */
  border: 1px solid #BFC9D2;
  border-radius: 8px;
  padding: 3rem;
  box-shadow: 0 4px 10px rgba(44, 62, 80, 0.05); /* Sombra suave usando el tono de tu azul pizarra */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonio-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(44, 62, 80, 0.12);
  border-color: #5D8AA8;
}

.testimonio-card__header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.testimonio-card__avatar {
  width: 60px;
  height: 60px;
  border: 2px solid #5D8AA8;
  border-radius: 50%;
  object-fit: cover;
}

.testimonio-card__info {
  display: flex;
  flex-direction: column;
}

.testimonio-card__nombre {
  margin-bottom: 0.2rem;
  font-size: 1.8rem;
  color: #2C3E50;
}

.testimonio-card__puesto {
  margin: 0;
  font-size: 1.3rem;
  color: #5D8AA8;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
}

.testimonio-card__texto {
  font-style: italic;
  color: #2C3E50;
  font-size: 1.5rem;
  line-height: 1.8;
}

@media (min-width: 768px) and (max-width: 1023px) {
  .testimonios__grid {
    grid-template-columns: repeat(2, 1fr); /* 2 columnas en tablet */
  }
  .testimonios__titulo {
    font-size: 3.2rem;
  }
}
@media (max-width: 767px) {
  .testimonios {
    padding: 5rem 1.5rem;
  }
  .testimonios__titulo {
    font-size: 2.8rem;
    margin-bottom: 4rem;
  }
  .testimonios__grid {
    grid-template-columns: 1fr; /* 1 columna en celular */
    gap: 2rem;
  }
  .testimonio-card {
    padding: 2.5rem 2rem;
  }
}
:root {
  --blanco: #F8F9FA;
  --azul: #0F172A;
  --gris: #94A3B8;
  --azul-claro: #38BDF8;
}

.footer-novaro {
  background-color: var(--azul);
  background-image: radial-gradient(circle at 50% 0%, rgba(56, 189, 248, 0.08) 0%, transparent 70%);
  color: var(--blanco);
  padding: 120px 5% 40px;
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  margin-top: 10rem;
  position: relative;
  overflow: hidden;
}

.footer-cta {
  max-width: 1200px;
  margin: 0 auto 100px;
  text-align: center;
  border-bottom: 1px solid rgba(248, 249, 250, 0.05);
  padding-bottom: 80px;
}

.cta-title {
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: -2px;
  margin: 0 0 30px;
  color: var(--blanco);
}

.cta-email {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  font-size: 32px;
  color: var(--blanco);
  text-decoration: none;
  font-weight: 300;
  transition: color 0.4s ease;
}

.cta-email .arrow {
  color: var(--azul-claro);
  transition: transform 0.4s ease;
}

.cta-email:hover {
  color: var(--azul-claro);
}

.cta-email:hover .arrow {
  transform: translateX(10px);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding-right: 2rem;
}

.footer-logo {
  color: var(--blanco);
  font-size: 46px;
  font-weight: 800;
  letter-spacing: -2px;
  margin: 0;
  line-height: 1;
}

.footer-logo span {
  color: var(--azul-claro);
  text-shadow: 0 0 20px rgba(56, 189, 248, 0.5);
}

.footer-notice {
  color: var(--gris);
  line-height: 1.7;
  font-size: 16px;
  font-weight: 300;
  margin: 0;
}

.footer-title {
  color: var(--blanco);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 0 0 2rem;
  opacity: 0.6;
}

.nav-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.nav-links a {
  color: var(--gris);
  text-decoration: none;
  font-size: 15px;
  font-weight: 400;
  transition: color 0.3s ease, transform 0.3s ease;
  display: inline-block;
}

.nav-links a:hover {
  color: var(--blanco);
  transform: translateX(5px);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.contact-text {
  color: var(--gris);
  font-size: 15px;
  font-weight: 400;
  margin: 0;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 30px;
  border-top: 1px solid rgba(248, 249, 250, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  color: var(--gris);
  font-size: 14px;
  font-weight: 300;
  margin: 0;
}

.footer-legal {
  display: flex;
  gap: 20px;
}

.footer-legal a {
  color: var(--gris);
  text-decoration: none;
  font-size: 14px;
  font-weight: 300;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: var(--blanco);
}

@media (max-width: 1024px) {
  .footer-container {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .footer-brand {
    grid-column: 1/-1;
    padding-right: 0;
    max-width: 500px;
  }
  .cta-title {
    font-size: 42px;
  }
}
@media (max-width: 768px) {
  .footer-novaro {
    padding: 80px 5% 30px;
  }
  .footer-cta {
    margin-bottom: 60px;
    padding-bottom: 60px;
  }
  .cta-title {
    font-size: 32px;
  }
  .cta-email {
    font-size: 3rem;
  }
  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
}
@media (max-width: 480px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.whatsapp-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: var(--azul);
  border: 1px solid rgba(248, 249, 250, 0.1);
  border-radius: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.whatsapp-btn:hover {
  background-color: #2C3E50;
  border-color: #2C3E50;
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0px 15px 25px rgba(37, 211, 102, 0.3);
}

.whatsapp-icon {
  width: 30px;
  height: 30px;
  fill: var(--blanco);
  transition: fill 0.3s ease;
}

@media (max-width: 768px) {
  .whatsapp-btn {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
  }
  .whatsapp-icon {
    width: 24px;
    height: 24px;
  }
}
.cont-desarrollo {
  margin-top: 6rem;
  text-align: center;
}

.servicio-detalle {
  background-color: #F8F9FA;
  color: #2C3E50;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.servicio-hero {
  background-color: #2C3E50;
  color: #F8F9FA;
  text-align: center;
}
@media (max-width: 767px) {
  .servicio-hero {
    padding: 4rem 1rem;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .servicio-hero {
    padding: 6rem 2rem;
  }
}
@media (min-width: 1024px) and (max-width: 1439px) {
  .servicio-hero {
    padding: 8rem 2rem;
  }
}

.servicio-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .servicio-hero h1 {
    font-size: 3.5rem;
  }
}

.servicio-hero .lead {
  color: #BFC9D2;
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

@media (max-width: 767px) {
  .servicio-contenido {
    padding: 3rem 1rem;
    text-align: center;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .servicio-contenido {
    padding: 5rem 2rem;
  }
}
@media (min-width: 1024px) and (max-width: 1439px) {
  .servicio-contenido {
    padding: 6rem 2rem;
  }
}

.contenido-grid {
  display: grid;
  gap: 3rem;
}
@media (max-width: 767px) {
  .contenido-grid {
    grid-template-columns: 1fr;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .contenido-grid {
    grid-template-columns: 1fr;
  }
}
@media (min-width: 1024px) and (max-width: 1439px) {
  .contenido-grid {
    grid-template-columns: 3fr 2fr;
  }
}

.descripcion h2 {
  color: #5D8AA8;
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.descripcion p {
  margin-bottom: 1.5rem;
  line-height: 1.8;
  color: #2C3E50;
}

.caracteristicas {
  background-color: #F8F9FA;
  border: 1px solid #BFC9D2;
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(44, 62, 80, 0.05);
}

.caracteristicas h3 {
  color: #2C3E50;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  border-bottom: 2px solid #5D8AA8;
  padding-bottom: 0.5rem;
}

.caracteristicas ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.caracteristicas li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
  color: #2C3E50;
  line-height: 1.5;
}

.caracteristicas li::before {
  content: "•";
  color: #5D8AA8;
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
}

.cont-desarrollo {
  margin-top: 6rem;
  text-align: center;
}

.servicio-detalle {
  background-color: #F8F9FA;
  color: #2C3E50;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.servicio-hero {
  background-color: #2C3E50;
  color: #F8F9FA;
  text-align: center;
}
@media (max-width: 767px) {
  .servicio-hero {
    padding: 4rem 1rem;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .servicio-hero {
    padding: 6rem 2rem;
  }
}
@media (min-width: 1024px) and (max-width: 1439px) {
  .servicio-hero {
    padding: 8rem 2rem;
  }
}

.servicio-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .servicio-hero h1 {
    font-size: 3.5rem;
  }
}

.servicio-hero .lead {
  color: #BFC9D2;
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

@media (max-width: 767px) {
  .servicio-contenido {
    padding: 3rem 1rem;
    text-align: center;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .servicio-contenido {
    padding: 5rem 2rem;
  }
}
@media (min-width: 1024px) and (max-width: 1439px) {
  .servicio-contenido {
    padding: 6rem 2rem;
  }
}

.contenido-grid {
  display: grid;
  gap: 3rem;
}
@media (max-width: 767px) {
  .contenido-grid {
    grid-template-columns: 1fr;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .contenido-grid {
    grid-template-columns: 1fr;
  }
}
@media (min-width: 1024px) and (max-width: 1439px) {
  .contenido-grid {
    grid-template-columns: 3fr 2fr;
  }
}

.descripcion h2 {
  color: #5D8AA8;
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.descripcion p {
  margin-bottom: 1.5rem;
  line-height: 1.8;
  color: #2C3E50;
}

.caracteristicas {
  background-color: #F8F9FA;
  border: 1px solid #BFC9D2;
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(44, 62, 80, 0.05);
}

.caracteristicas h3 {
  color: #2C3E50;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  border-bottom: 2px solid #5D8AA8;
  padding-bottom: 0.5rem;
}

.caracteristicas ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.caracteristicas li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
  color: #2C3E50;
  line-height: 1.5;
}

.caracteristicas li::before {
  content: "•";
  color: #5D8AA8;
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
}

.cont-desarrollo {
  margin-top: 6rem;
  text-align: center;
}

.servicio-detalle {
  background-color: #F8F9FA;
  color: #2C3E50;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.servicio-hero {
  background-color: #2C3E50;
  color: #F8F9FA;
  text-align: center;
}
@media (max-width: 767px) {
  .servicio-hero {
    padding: 4rem 1rem;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .servicio-hero {
    padding: 6rem 2rem;
  }
}
@media (min-width: 1024px) and (max-width: 1439px) {
  .servicio-hero {
    padding: 8rem 2rem;
  }
}

.servicio-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .servicio-hero h1 {
    font-size: 3.5rem;
  }
}

.servicio-hero .lead {
  color: #BFC9D2;
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

@media (max-width: 767px) {
  .servicio-contenido {
    padding: 3rem 1rem;
    text-align: center;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .servicio-contenido {
    padding: 5rem 2rem;
  }
}
@media (min-width: 1024px) and (max-width: 1439px) {
  .servicio-contenido {
    padding: 6rem 2rem;
  }
}

.contenido-grid {
  display: grid;
  gap: 3rem;
}
@media (max-width: 767px) {
  .contenido-grid {
    grid-template-columns: 1fr;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .contenido-grid {
    grid-template-columns: 1fr;
  }
}
@media (min-width: 1024px) and (max-width: 1439px) {
  .contenido-grid {
    grid-template-columns: 3fr 2fr;
  }
}

.descripcion h2 {
  color: #5D8AA8;
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.descripcion p {
  margin-bottom: 1.5rem;
  line-height: 1.8;
  color: #2C3E50;
}

.caracteristicas {
  background-color: #F8F9FA;
  border: 1px solid #BFC9D2;
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(44, 62, 80, 0.05);
}

.caracteristicas h3 {
  color: #2C3E50;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  border-bottom: 2px solid #5D8AA8;
  padding-bottom: 0.5rem;
}

.caracteristicas ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.caracteristicas li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
  color: #2C3E50;
  line-height: 1.5;
}

.caracteristicas li::before {
  content: "•";
  color: #5D8AA8;
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
}

.cont-desarrollo {
  margin-top: 6rem;
  text-align: center;
}

.servicio-detalle {
  background-color: #F8F9FA;
  color: #2C3E50;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.servicio-hero {
  background-color: #2C3E50;
  color: #F8F9FA;
  text-align: center;
}
@media (max-width: 767px) {
  .servicio-hero {
    padding: 4rem 1rem;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .servicio-hero {
    padding: 6rem 2rem;
  }
}
@media (min-width: 1024px) and (max-width: 1439px) {
  .servicio-hero {
    padding: 8rem 2rem;
  }
}

.servicio-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .servicio-hero h1 {
    font-size: 3.5rem;
  }
}

.servicio-hero .lead {
  color: #BFC9D2;
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

@media (max-width: 767px) {
  .servicio-contenido {
    padding: 3rem 1rem;
    text-align: center;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .servicio-contenido {
    padding: 5rem 2rem;
  }
}
@media (min-width: 1024px) and (max-width: 1439px) {
  .servicio-contenido {
    padding: 6rem 2rem;
  }
}

.contenido-grid {
  display: grid;
  gap: 3rem;
}
@media (max-width: 767px) {
  .contenido-grid {
    grid-template-columns: 1fr;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .contenido-grid {
    grid-template-columns: 1fr;
  }
}
@media (min-width: 1024px) and (max-width: 1439px) {
  .contenido-grid {
    grid-template-columns: 3fr 2fr;
  }
}

.descripcion h2 {
  color: #5D8AA8;
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.descripcion p {
  margin-bottom: 1.5rem;
  line-height: 1.8;
  color: #2C3E50;
}

.caracteristicas {
  background-color: #F8F9FA;
  border: 1px solid #BFC9D2;
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(44, 62, 80, 0.05);
}

.caracteristicas h3 {
  color: #2C3E50;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  border-bottom: 2px solid #5D8AA8;
  padding-bottom: 0.5rem;
}

.caracteristicas ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.caracteristicas li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
  color: #2C3E50;
  line-height: 1.5;
}

.caracteristicas li::before {
  content: "•";
  color: #5D8AA8;
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
}

.cont-desarrollo {
  margin-top: 6rem;
  text-align: center;
}

.servicio-detalle {
  background-color: #F8F9FA;
  color: #2C3E50;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.servicio-hero {
  background-color: #2C3E50;
  color: #F8F9FA;
  text-align: center;
}
@media (max-width: 767px) {
  .servicio-hero {
    padding: 4rem 1rem;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .servicio-hero {
    padding: 6rem 2rem;
  }
}
@media (min-width: 1024px) and (max-width: 1439px) {
  .servicio-hero {
    padding: 8rem 2rem;
  }
}

.servicio-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .servicio-hero h1 {
    font-size: 3.5rem;
  }
}

.servicio-hero .lead {
  color: #BFC9D2;
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

@media (max-width: 767px) {
  .servicio-contenido {
    padding: 3rem 1rem;
    text-align: center;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .servicio-contenido {
    padding: 5rem 2rem;
  }
}
@media (min-width: 1024px) and (max-width: 1439px) {
  .servicio-contenido {
    padding: 6rem 2rem;
  }
}

.contenido-grid {
  display: grid;
  gap: 3rem;
}
@media (max-width: 767px) {
  .contenido-grid {
    grid-template-columns: 1fr;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .contenido-grid {
    grid-template-columns: 1fr;
  }
}
@media (min-width: 1024px) and (max-width: 1439px) {
  .contenido-grid {
    grid-template-columns: 3fr 2fr;
  }
}

.descripcion h2 {
  color: #5D8AA8;
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.descripcion p {
  margin-bottom: 1.5rem;
  line-height: 1.8;
  color: #2C3E50;
}

.caracteristicas {
  background-color: #F8F9FA;
  border: 1px solid #BFC9D2;
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(44, 62, 80, 0.05);
}

.caracteristicas h3 {
  color: #2C3E50;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  border-bottom: 2px solid #5D8AA8;
  padding-bottom: 0.5rem;
}

.caracteristicas ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.caracteristicas li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
  color: #2C3E50;
  line-height: 1.5;
}

.caracteristicas li::before {
  content: "•";
  color: #5D8AA8;
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
}

.cont-desarrollo {
  margin-top: 6rem;
  text-align: center;
}

.servicio-detalle {
  background-color: #F8F9FA;
  color: #2C3E50;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.servicio-hero {
  background-color: #2C3E50;
  color: #F8F9FA;
  text-align: center;
}
@media (max-width: 767px) {
  .servicio-hero {
    padding: 4rem 1rem;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .servicio-hero {
    padding: 6rem 2rem;
  }
}
@media (min-width: 1024px) and (max-width: 1439px) {
  .servicio-hero {
    padding: 8rem 2rem;
  }
}

.servicio-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .servicio-hero h1 {
    font-size: 3.5rem;
  }
}

.servicio-hero .lead {
  color: #BFC9D2;
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

@media (max-width: 767px) {
  .servicio-contenido {
    padding: 3rem 1rem;
    text-align: center;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .servicio-contenido {
    padding: 5rem 2rem;
  }
}
@media (min-width: 1024px) and (max-width: 1439px) {
  .servicio-contenido {
    padding: 6rem 2rem;
  }
}

.contenido-grid {
  display: grid;
  gap: 3rem;
}
@media (max-width: 767px) {
  .contenido-grid {
    grid-template-columns: 1fr;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .contenido-grid {
    grid-template-columns: 1fr;
  }
}
@media (min-width: 1024px) and (max-width: 1439px) {
  .contenido-grid {
    grid-template-columns: 3fr 2fr;
  }
}

.descripcion h2 {
  color: #5D8AA8;
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.descripcion p {
  margin-bottom: 1.5rem;
  line-height: 1.8;
  color: #2C3E50;
}

.caracteristicas {
  background-color: #F8F9FA;
  border: 1px solid #BFC9D2;
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(44, 62, 80, 0.05);
}

.caracteristicas h3 {
  color: #2C3E50;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  border-bottom: 2px solid #5D8AA8;
  padding-bottom: 0.5rem;
}

.caracteristicas ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.caracteristicas li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
  color: #2C3E50;
  line-height: 1.5;
}

.caracteristicas li::before {
  content: "•";
  color: #5D8AA8;
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
}

:root {
  --novaro-blanco: #F8F9FA;
  --novaro-azul: #2C3E50;
  --novaro-gris: #BFC9D2;
  --novaro-azul-claro: #5D8AA8;
}

.contenedor-legal {
  width: 100%;
  padding: 60px 20px;
  display: flex;
  justify-content: center;
  box-sizing: border-box;
}

.hoja-legal {
  background-color: var(--novaro-blanco);
  max-width: 850px;
  width: 100%;
  padding: 50px 60px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(44, 62, 80, 0.08);
  border: 1px solid var(--novaro-gris);
  color: var(--novaro-azul);
  line-height: 1.8;
  box-sizing: border-box;
}

.cabecera-legal {
  text-align: center;
  margin-bottom: 40px;
  border-bottom: 2px solid var(--novaro-azul-claro);
  padding-bottom: 20px;
}

.cabecera-legal h1 {
  font-size: 2.5rem;
  color: var(--novaro-azul);
  margin: 0 0 10px 0;
  letter-spacing: -0.5px;
}

.fecha-actualizacion {
  font-size: 0.95rem;
  color: var(--novaro-azul-claro);
  font-style: italic;
  margin: 0;
}

.contenido-legal h2 {
  font-size: 1.4rem;
  color: var(--novaro-azul);
  margin: 40px 0 15px 0;
  display: flex;
  align-items: center;
}

.contenido-legal p {
  margin: 0 0 20px 0;
  font-size: 1.05rem;
}

.contenido-legal ul {
  margin: 0 0 25px 0;
  padding-left: 25px;
}

.contenido-legal li {
  margin-bottom: 12px;
  font-size: 1.05rem;
}

.contenido-legal li::marker {
  color: var(--novaro-azul-claro);
}

.contenido-legal a {
  color: var(--novaro-azul-claro);
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
}

.contenido-legal a:hover {
  color: var(--novaro-azul);
  border-bottom: 1px solid var(--novaro-azul);
}

@media (max-width: 768px) {
  .hoja-legal {
    padding: 30px 20px;
  }
  .cabecera-legal h1 {
    font-size: 2rem;
  }
  .contenedor-legal {
    padding: 40px 15px;
  }
}
:root {
  --novaro-blanco: #F8F9FA;
  --novaro-azul: #2C3E50;
  --novaro-gris: #BFC9D2;
  --novaro-azul-claro: #5D8AA8;
}

.contenedor-legal {
  width: 100%;
  padding: 60px 20px;
  display: flex;
  justify-content: center;
  box-sizing: border-box;
}

.hoja-legal {
  background-color: var(--novaro-blanco);
  max-width: 850px;
  width: 100%;
  padding: 50px 60px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(44, 62, 80, 0.08);
  border: 1px solid var(--novaro-gris);
  color: var(--novaro-azul);
  line-height: 1.8;
  box-sizing: border-box;
}

.cabecera-legal {
  text-align: center;
  margin-bottom: 40px;
  border-bottom: 2px solid var(--novaro-azul-claro);
  padding-bottom: 20px;
}

.cabecera-legal h1 {
  font-size: 2.5rem;
  color: var(--novaro-azul);
  margin: 0 0 10px 0;
  letter-spacing: -0.5px;
}

.fecha-actualizacion {
  font-size: 0.95rem;
  color: var(--novaro-azul-claro);
  font-style: italic;
  margin: 0;
}

.contenido-legal h2 {
  font-size: 1.4rem;
  color: var(--novaro-azul);
  margin: 40px 0 15px 0;
  display: flex;
  align-items: center;
}

.contenido-legal p {
  margin: 0 0 20px 0;
  font-size: 1.05rem;
}

.contenido-legal ul {
  margin: 0 0 25px 0;
  padding-left: 25px;
}

.contenido-legal li {
  margin-bottom: 12px;
  font-size: 1.05rem;
}

.contenido-legal li::marker {
  color: var(--novaro-azul-claro);
}

.contenido-legal a {
  color: var(--novaro-azul-claro);
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
}

.contenido-legal a:hover {
  color: var(--novaro-azul);
  border-bottom: 1px solid var(--novaro-azul);
}

@media (max-width: 768px) {
  .hoja-legal {
    padding: 30px 20px;
  }
  .cabecera-legal h1 {
    font-size: 2rem;
  }
  .contenedor-legal {
    padding: 40px 15px;
  }
}