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

:root {
  --azul-principal: #004171;
  --azul-secundario1: #0d5575;
  --azul-secundario2: #297ba2;
  --azul-secundario3: #389eb0;
  --color-destacado: #FF9154;
  --gris-fondo: #f9f9f9;
}
/* Menu Sticky */
.menu-superior {
  position:fixed;
  top: 0;
  z-index: 5000;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  background: var(--azul-principal);
  color: white;
  width: 100%;
  padding-bottom: 0.5rem;
  align-items: center;
  justify-items: center; 
  height: 3.2rem;      
}

.menu-superior.scrolled {
  background-color: var(--azul-secundario1); 
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); 
}

.menu-toggle {
  justify-self: start;
}

.logo {
  justify-self: center;
  text-align: center;
}

.logo img {
  height: 55px;
  width: auto;
}

.iconos-derecha {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  justify-self: end;
  padding-right: 3rem;
}

.iconos-mobile {
  display: none;
}

#menu-cerrado{
  display:none;
}

#menu-abierto{
  display:none;
}

/* Carrusel general */
.header-carousel {
  width: 100%;
  position: relative;
  overflow: hidden;
  background-color: var(--azul-principal);
  height: 70vh;
}

/* Slider Home */
.slider-home {
  width: 100%;
  height: 38rem;
  position: relative;
}
.slide-front {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  position: relative;
}

/* Contenido superpuesto */
.slide-front .slide-home {
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  background: rgba(0, 0, 0, 0.45);
  padding-bottom: 7rem;
  display: flex;
  padding-top: 3rem;
  align-items:center;
  justify-content: center;

  width: 100%;
  text-align: center;
  color: white;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  aspect-ratio: 16 / 9;
  height: 100%;
}

/* Imagen de fondo detrás del contenido */
.slide-front .slide-img {
  position: absolute;
  z-index: 0;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  object-fit: cover; 
  object-position: center 40%;;
  border-radius: 0;
}

.slide-home-inner {
  animation: fadeInUp 1s ease forwards;
  padding-top: 6rem;
}

/* Título */
.slider-home .slide-home h2 {
  font-size: 2.8rem;
  font-weight: bold;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
  margin-bottom: 1rem;
  color: #fff;
  text-transform: uppercase;
  padding-top: 5rem;
}

.slide-home-inner h2 {
  display: inline-block;
  white-space: pre;
}

/* Estado inicial de cada letra */
.slide-home-inner h2 span {
  display: inline-block;
  opacity: 0;
  transform: translateY(-100px); 
  animation: fadeDownLetter 0.8s forwards ease-out;
}

/* Animación sutil desde arriba */
@keyframes fadeDownLetter {
  0% {
    opacity: 0;
    transform: translateY(-100px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.slide-home-inner h2 span {
  display: inline-block;
  opacity: 0;
  transform: translateY(-30px);
  animation: fadeDownLetter 0.6s forwards ease-out;
  color: white; 
  transition: color 0.5s ease;
}

@keyframes fadeDownLetter {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Texto */
.slider-home .slide-home p {
  font-size: 2rem;
  line-height: 1.5;
  color: #fff;
  display: inline-block;
  white-space: pre-wrap;
  text-transform: uppercase;
  font-weight: 700;
  padding: 0.5em 1em;
  border-radius: 8px;
}

/* Botón */
.slider-home .slide-content a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  padding: 0.75rem 2.2rem;
  background: linear-gradient(135deg, #004171, #0071BC);
  color: #fff;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: 0.3px;
  text-decoration: none;
  box-shadow: 0 3px 10px rgba(0, 65, 113, 0.3);
  position: relative;
  overflow: hidden;
  transition:
    background 0.3s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.slider-home .slide-content a::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0.45rem;
  width: 0;
  height: 2px;
  background: rgba(255,255,255,0.85);
  transition: width 0.3s ease, left 0.3s ease;
}

.slider-home .slide-content a:hover::before {
  width: 70%;
  left: 15%;
}

.slider-home .slide-content a::after {
  content: none;
  font-size: 1.1rem;
  margin-left: 0.4rem;
  transition: transform 0.25s ease;
}

.slider-home .slide-content a:hover::after {
  transform: translateX(4px);
}

.slider-home .slide-content a:hover {
  background: linear-gradient(135deg, #00589F, #0086D1);
  transform: translateY(-1px);
  box-shadow: 0 5px 16px rgba(0, 88, 159, 0.4);
}
.slider-home .slide-content a:focus-visible {
  outline: 3px solid #FF9154;
  outline-offset: 4px;
}

.slide-video-iframe {
  position: absolute;
  z-index: 1;
  width: 100%;
  height: auto;
  max-width: 1800px;
  border-radius: 1.5rem;
  top: 70%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  aspect-ratio: 16 / 9;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.slide-video-iframe-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  max-width: 1800px;
  aspect-ratio: 16 / 9;
  transform: translate(-50%, -50%);
  z-index: 1;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.slide-video-iframe-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
  pointer-events: none;
}

.slide-video {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 0;
  z-index: 1;
  pointer-events: none; 
}

.slide-front {
  position: relative;
  /*height: 100vh;*/
  overflow: hidden;
}

.slide-home {
  position: relative;
  z-index: 2;
  padding: 2rem;
  color: white;
  background: rgba(0, 0, 0, 0.4);
}

/* Slider Páginas internas */
.slider-pagina {
  height: 32rem;
  position: relative;
  overflow: hidden;
}

.slider-pagina .swiper-wrapper,
.slider-pagina .swiper-slide {
  height: 100%;
}

/* Slide contenedor con imagen de fondo */
.slide-interna {
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 50vh;
  margin-top: 80px;
}

/* Contenido interno del slide */
.slide-interna .slide-pagina {
  background: linear-gradient(
  135deg,
  rgba(0,0,0,0.65) 0%,
  rgba(0,0,0,0.45) 60%,
  rgba(0,0,0,0.25) 100%
);
  padding: 8rem 3rem;
  border-radius: 1.5rem;
  width: 100%;
  text-align: center;
  color: var(--gris-fondo);
  animation: fadeInUp 1s ease forwards;
  z-index: 2;
  position: relative;
  margin: auto;
  height: 100%;
  
}

.slide-interna::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.3);
  z-index: 1;
}

/* Título */
.slide-pagina h1 {
  font-size: 2.5rem;
  margin: 0;
  line-height: 1.2;
  font-family: 'Arial', sans-serif;
  text-shadow: 1px 1px 5px rgba(0,0,0,0.5);
  padding-top: 2rem;
}

/* Animación Slides */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Menú  */
.menu-secundario-nav {
  position: sticky;
  top: 0; 
  z-index: 20;
  background-color: var(--azul-principal);
  border-bottom: 1px solid #dcdcdc;
}

/* lista principal */
.menu-secundario {
  display: flex;
  flex-wrap: wrap;
  justify-content: center; 
  gap: 0.25rem;
  margin: 0;
  padding: 0.25rem 1rem;
  list-style: none;
}

/* items */
.menu-secundario > li {
  position: relative;
}

/* enlaces principales */
.menu-secundario > li > a {
  display: block;
  padding: 0.7rem 1rem;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  border-radius: 6px;
  transition: background 0.3s ease, color 0.3s ease;
  white-space: nowrap;
}

/* hover efecto */
.menu-secundario > li > a:hover {
  background-color: var(--color-destacado);
  color: #fff;
}

/* Submenú */
.menu-secundario li ul.sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 180px; 
  background-color: var(--azul-principal);
  padding: 0.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: 100;
  border-radius: 0 0 8px 8px;
  list-style: none;
  max-height: 80vh; 
  overflow-y: auto; 
}

/* mostrar submenú al hover */
.menu-secundario > li:hover ul.sub-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* items del submenú */
.menu-secundario li ul.sub-menu li a {
  display: block;
  padding: 0.4rem 0.75rem;
  color: #fff;
  font-weight: 500;
  text-decoration: none;
  border-radius: 4px;
  transition: background 0.2s ease;
}

.menu-secundario li ul.sub-menu li a:hover {
  background-color: var(--color-destacado);
  color: #fff;
}
.menu-secundario li ul.sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 180px;
  background-color: var(--azul-principal);
  padding: 0.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: 100;
  border-radius: 0 0 8px 8px;
  list-style: none;
  max-height: 60vh;
  overflow-y: auto;
  position: absolute;
}

/* Top header */
.top-header{
  width:100%;
  background: var(--azul-principal);
  position:fixed;
  top:0;
  z-index:999;
}

.top-header-inner{
  margin:auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:12px 20px;
}

/* Logo */
.logo-site img{
  height:60px;
  width:auto;
}

/* Buscador */
.header-search form{
  display:flex;
}

.header-search input[type="search"]{
  padding:8px 12px;
  border:1px solid #ccc;
  border-radius:4px 0 0 4px;
  outline:none;
}

.header-search button{
  padding:8px 14px;
  border:none;
  background:var(--azul-secundario1);
  color:white;
  border-radius:0 4px 4px 0;
  cursor:pointer;
}

.header-search button:hover{
  background:var(--azul-secundario2);
}



/*Mobile*/
@media (min-width: 300px) and (max-width: 767px)  {
  #menu-abierto {
    height: auto;
  }

  .buscador input[type="search"] {
    width: 100px;
    font-size: 0.8rem;
  }

  .swiper-slide {
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    min-height: 5vh;
  }

  .slide-content h2 {
    font-size: 1rem;
    margin-bottom: 0.3rem;
  }

  .slide-content p {
    font-size: 0.85rem;
  }
  /*
  .slide-video-iframe {
    max-width: 1200px;
    top: 0;
  }
  */
  .menu-secundario {
    flex-direction: column;
  }

  .menu-secundario > li {
    flex: 1 1 100%;
    border: none;
    border-bottom: 1px solid white;
  }

  .menu-secundario > li > a {
    padding: 0.75rem;
    font-size: 30px;
  }

  .menu-secundario li ul.sub-menu {
    position: static;
    width: 100%;
    padding: 0.5rem 1rem;
    box-shadow: none;
    transform: none;
    opacity: 1;
    pointer-events: auto;
    display: none;
  }

  .menu-secundario > li.open > ul.sub-menu {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }

  .menu-secundario li ul.sub-menu li a {
    font-size: 1.2rem;
  }

  .slider-home {
    height: 40vh;
  }

  .slide-front .slide-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
  }

  .slider-home .slide-home h2 {
    font-size: 1.8rem;
  }

  .slider-home .slide-home p {
    font-size: 1rem;
  }

  .slider-home .slide-home a {
    font-size: 0.95rem;
    padding: 8px 16px;
  }
  .hamburguesa-items li a {
    font-size: 2rem; 
  }
/* Ocultar el buscador en mobile */
  .buscador {
    display: none;
  }

  /* Ocultar íconos de escritorio */
  .iconos-derecha {
    display: none;
  }

  /* Mostrar íconos dentro del menú hamburguesa */
  .iconos-mobile {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
  }

  .iconos-mobile a {
    color: #fff;
    font-size: 1.3rem;
    transition: color 0.3s;
  }

  .iconos-mobile a:hover {
    color: var(--azul-secundario3);
  }

  .slider-pagina {
    height: 40vh;
  }
  
}

@media (min-width: 468px) and (max-width: 1023px) {
  #menu-abierto {
    height: auto;
  }

  .buscador input[type="search"] {
    width: 140px;
    font-size: 0.85rem;
    padding: 0.4rem 0.75rem 0.4rem 2rem;
    background-size: 14px 14px;
  }

  .portal-agentes {
    margin-right: 0.5rem;
  }

  .portal-agentes .texto-portal {
    display: none;
  }

  .icono-persona {
    font-size: 1.2rem;
    color: white;
  }

  .iconos-derecha {
    gap: 1rem;
    padding-right: 1rem;
  }

  .menu-secundario > li {
    flex: 1 1 50%;
    font-size: 14px;
  }

  .menu-secundario > li > a {
    padding: 0.75rem;
    font-size: 30px;
  }

  .menu-secundario li ul.sub-menu {
    position: static;
    width: 100%;
    padding: 0.5rem 1rem;
    box-shadow: none;
    transform: none;
    opacity: 1;
    pointer-events: auto;
    display: none;
    flex-direction: column;
    gap: 0.5rem;
 
  }

  .menu-secundario > li.open > ul.sub-menu {
    display: flex;
  }

  .menu-secundario li ul.sub-menu li {
    flex: 1 1 100%;
       font-size: 24px;
  }

  .hamburguesa-items li a{
    font-size: 1.4rem;
  }
  .slide-interna {
    min-height: 30rem;
  }
  .slider-home {
    height: 30rem;
  }

  .slide-front {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1rem 0;
  }

  .slide-front .slide-home,
  .slide-front .slide-img {
    max-width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 1rem;
  }

  .slide-front .slide-home {
    position: relative;
    top: 50%;
    left: 50%;
    background: rgba(0, 0, 0, 0.45);
  }
  /*
  .slide-video-iframe {
    max-width: 1200px;
    top: 100%;
  }
  */
  .slider-pagina {
  height: 30rem;
  }

  .slide-pagina h1{
    margin-top: 5rem;
  }

  .hamburguesa-items li a {
    font-size: 1.6rem; 
  }

  .menu-hamburguesa .sub-menu > li > a {
    font-size: 1.4rem; 
  }

  .menu-superior {
    padding: 2rem 1rem;
  }
  #menu-abierto {
    padding: 5rem 1rem;
    overflow-y: auto;
  }

  #menu-cerrado {
    top: 50px;
    padding-left: 2rem;
  }

  #menu-cerrado.active {
    transform: translateX(180px);
    padding-bottom: 2rem;
  }

  .logo img{
    height: 80px;
  }
  .menu-secundario li ul.sub-menu li a {
    font-size: 1.5rem;
  }
  /* Ocultar el buscador en mobile */
  .buscador {
    display: none;
  }

  /* Ocultar íconos de escritorio */
  .iconos-derecha {
    display: none;
  }

  /* Mostrar íconos dentro del menú hamburguesa */
  .iconos-mobile {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .iconos-mobile a {
    color: #fff;
    font-size: 1.3rem;
    transition: color 0.3s;
  }

  .iconos-mobile a:hover {
    color: var(--azul-secundario3);
  }

  .slider-home .slide-content a {
    font-size: 1.5rem;
    padding: 0.65rem 1.8rem;
  }

  .top-header-inner{
    display:flex;
    align-items:center;
    justify-content:space-between;
  }

  /* ocultar buscador */
  .header-search{
    display:none;
  }

  /* mostrar hamburguesa */
  .menu-toggle{
    display:block;
  }

  /* ocultar menu por defecto */
  .menu-secundario-nav{
    display:none;
    position:absolute;
    top:70px;
    left:0;
    width:100%;
    background:var(--azul-principal);
  }

  /* menu abierto */
  .menu-secundario-nav.active{
    display:block;
  }

  /* menu vertical */
  .menu-secundario{
    flex-direction:column;
    align-items:flex-start;
    padding:1rem;
  }

  .menu-secundario > li{
    width:100%;
  }

  .menu-secundario > li > a{
    width:100%;
  }

  /* submenus mobile */
.menu-secundario li ul.sub-menu{
  position:relative;
  opacity:1;
  pointer-events:auto;
  transform:none;
  max-height:none;
  overflow:visible;
  padding-left:15px;
}
/* Contenedor del botón hamburguesa */
#menu-cerrado {
  position: absolute;
  top: 20px;
  right: 20px;
  left: auto;
  width: 34px;
  height: 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  z-index: 999;
  transition: transform 0.3s ease-in-out;
}
/* Líneas del ícono hamburguesa */
.bar {
  background-color: var(--gris-fondo, #fff);
  height: 4px;
  width: 100%;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}

#menu-cerrado.active {
  transform: none;
}

#menu-cerrado.active .bar:nth-child(1) {
  transform: rotate(45deg) translate(7px, 8px);
}

#menu-cerrado.active .bar:nth-child(2) {
  opacity: 0;
}

#menu-cerrado.active .bar:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -8px);
}

/* Menú desplegable */
#menu-abierto {
  position: fixed;
  top: 0;
  right: -300px; /* oculto fuera de la pantalla */
  left: auto;
  height: auto;
  max-height: 100vh;
  overflow-y: auto;
  width: 300px;
  background-color: var(--azul-principal, #003366);
  display: flex;
  flex-direction: column;
  padding-top: 80px;
  padding-left: 20px;
  padding-right: 20px;
  transition: right 0.4s ease-in-out;
  z-index: 998;
  box-shadow: -4px 0 8px rgba(0,0,0,0.3);
  box-sizing: border-box;
}

/* cuando el menu está visible */
#menu-abierto.menu-visible {
  right: 0;
}

#menu-abierto.menu-oculto {
  right: -300px;
}

/* Ítems del menú */
.hamburguesa-items {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
}

.hamburguesa-items li {
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.hamburguesa-items li a {
  color: white;
  text-decoration: none;
  font-size: 22px;
  display: block;
  transition: padding-left 0.3s ease;
  padding-top: 1rem;
}

.hamburguesa-items li a:hover {
  color: var(--azul-secundario3, #A0D1EA);
}

/* Estilo general del menú hamburguesa */
.menu-hamburguesa .hamburguesa-items {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: inherit;
  font-weight: bold;
}

.menu-hamburguesa .menu-item-has-children.activo > a {
  background-color: var(--color-destacado);
  color: var(--gris-fondo);
  font-weight: bold;
  border-radius: 4px;
}

.menu-hamburguesa .menu-item-has-children .sub-menu {
  display: none;
}

.menu-hamburguesa .menu-item-has-children.open > .sub-menu {
  display: block;
}

/* Submenú de primer nivel (hijo) */
.menu-hamburguesa .sub-menu {
  padding-left: 0.5rem;
  margin-top: 0.25rem;
  border-left: 2px solid #ddd;
}

/* Ítems del submenú */
.menu-hamburguesa .sub-menu > li > a {
  font-size: 1.2rem;
  color: #ccc;
  padding-left: 0.5rem;
  display: block;
  transition: background 0.3s, color 0.3s;
}

/* Submenú de segundo nivel (nieto) */
.menu-hamburguesa .sub-menu .sub-menu {
  padding-left: 0.5rem;
  margin-top: 0.25rem;
  border-left: 2px solid #999;
}

/* Ítems del sub-submenú */
.menu-hamburguesa .sub-menu .sub-menu > li > a {
  font-size: 1.28rem;
  color: #bbb;
  display: block;
}

/* Hover para ítems */
.menu-hamburguesa .sub-menu li a:hover,
.menu-hamburguesa .sub-menu .sub-menu li a:hover {
  background-color: var(--azul-secundario3);
  color: white;
  border-radius: 0.25rem;
}

/* Ítems padre con submenú */
.menu-hamburguesa .menu-item-has-children > a {
  font-weight: bold;
  color: white;
}

/* Submenú de primer nivel (hijo) */
.menu-hamburguesa .sub-menu {
  padding-left: 0.5rem;
  margin-top: 0.25rem;
  border-left: 2px solid #ddd;
}

/* Ítems del submenú */
.menu-hamburguesa .sub-menu > li > a {
  color: #ccc;
  padding-left: 1rem;
  display: block;
  transition: background 0.3s, color 0.3s;
  text-align: start;
}

/* Submenú de segundo nivel (nieto) */
.menu-hamburguesa .sub-menu .sub-menu {
  padding-left: 3rem; 
  margin-top: 0.25rem;
  border-left: 2px solid #999;
}

/* Ítems del sub-submenú */
.menu-hamburguesa .sub-menu li a,
.menu-hamburguesa .sub-menu .sub-menu li a  {
  font-size: 1.2rem;
  color: #bbb;
  padding-left: 2rem; 
  display: block;
}

/* Hover para ítems */
.menu-hamburguesa .sub-menu li a:hover,
.menu-hamburguesa .sub-menu .sub-menu li a:hover {
  background-color: var(--azul-secundario3);
  color: white;
  border-radius: 0.25rem;
}

/* Ítems padre con submenú */
.menu-hamburguesa .menu-item-has-children > a {
  font-weight: bold;
  color: white;
}

.menu-hamburguesa ul,
.menu-hamburguesa li {
  list-style: none;
  margin: 0;
  padding: 0;
}

.menu-fijo li ul.sub-menu {
  display: none;
  margin-top: 0.5em;
  padding-left: 1em;
}

.menu-fijo li.open > ul.sub-menu {
  display: block;
}

.menu-fijo li a {
  font-weight: normal;
}

.menu-fijo li.current-menu-item > a {
  font-weight: bold;
}

.menu-fijo li.current-menu-item > a {
  font-weight: bold;
  color: #000; 
}

.slider-home .slide-home h2{
  font-size: 2.3rem;
  line-height: 1.3;
  text-align: left;
  padding-top: 3rem;
  }
}  

@media (min-width: 1024px) and (max-width: 1350px){  
  .slider-home {
    height: 26rem;
  }
    
  .slide-home-inner{
    padding-top: 10rem;
  }
  .slider-pagina {
    height: 24rem;
  }
}


  @media (min-width: 1024px) and (max-width: 1350px){
  
    .slider-home {
    height: 32rem;
  }
  }
  
  

  



