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

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #EDE5D1;
    color: #161616;
    line-height: 1.6;
}

.barra-navegacion {
    background-color: #161616;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.contenedor-navegacion {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-navegacion img {
    max-width: 8rem;
    height: auto;
}

.enlaces-navegacion {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.enlaces-navegacion li a {
    color: #EDE5D1;
    text-decoration: none;
    font-family: 'Courier New', monospace;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 4px;
}

.enlaces-navegacion li a:hover {
    background-color: #328D5B;
}

.boton-hamburguesa {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
}

.boton-hamburguesa span {
    width: 25px;
    height: 3px;
    background-color: #EDE5D1;
    margin: 3px 0;
}

.checkbox-navegacion {
    display: none;
}

.contenido-principal {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.seccion-hero {
    text-align: center;
    margin-bottom: 3rem;
}

.seccion-hero h2 {
    font-family: 'Courier New', monospace;
    font-size: 2rem;
    color: #328D5B;
    margin-bottom: 2rem;
    font-weight: bold;
}

.texto-contenido {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
}

.texto-contenido p {
    margin-bottom: 1.5rem;
}

.texto-contenido strong {
    color: #DF3838;
    font-weight: bold;
}


.texto-bienvenido{
    font-family: 'Courier New', Courier, monospace;
    font-weight: 600;
    text-align: center;
}



.resaltador{
    background-color: red;
    padding: 0.6rem;
    margin-bottom: 1.2rem;
}

.contenedor-video {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding-bottom: 56.25%; 
    height: 0;
    overflow: hidden;
}

.video-index {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 8px;
    border: 2px solid #328D5B;
}

.contenido-academia{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.contenido-academia img{
    max-width: 20rem;
    height: auto;
}



.seccion-interactiva h3 {
    font-family: "Anton", sans-serif;
    font-weight: 400;
    font-style: normal;
    text-indent: 2%;
    font-size: 1.5rem;
    color: #000000;
    text-align: center;
    font-weight: bold;
}

.contenedor-grilla {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

.checkbox-modal {
    display: none;
}



.imagen-grilla {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    border: 3px solid #328D5B;
}



.pie-pagina {
    background-color: #328D5B;
    color: #EDE5D1;
    padding: 1rem 0.5rem;
    text-align: center;
    position: sticky;
    bottom: 1rem;
    z-index: 1000;
    border-radius: 1rem;
    margin-top: 1rem;
}

.pie-pagina img{
    width: 60%;
}

@media (max-width: 768px) {
    .enlaces-navegacion {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: #161616;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
    }

    .checkbox-navegacion:checked ~ .barra-navegacion .enlaces-navegacion {
        left: 0;
    }

    .enlaces-navegacion li {
        margin: 1rem 0;
    }

    .boton-hamburguesa {
        display: flex;
    }

    .checkbox-navegacion:checked ~ .barra-navegacion .boton-hamburguesa span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .checkbox-navegacion:checked ~ .barra-navegacion .boton-hamburguesa span:nth-child(2) {
        opacity: 0;
    }

    .checkbox-navegacion:checked ~ .barra-navegacion .boton-hamburguesa span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    .seccion-hero h2 {
        font-size: 1.5rem;
        line-height: 1.4;
    }

    .texto-contenido {
        font-size: 1rem;
    }

    .contenedor-grilla {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }

    .imagen-grilla {
        height: 120px;
    }

    .contenido-modal {
        margin: 20% auto;
        padding: 1.5rem;
        width: 95%;
    }

    .cuerpo-modal h3 {
        font-size: 1.1rem;
    }

    .cuerpo-modal p {
        font-size: 0.9rem;
    }

    .contenido-principal {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .logo-navegacion h1 {
        font-size: 1.4rem;
    }

    .seccion-hero h2 {
        font-size: 1.3rem;
    }

    .seccion-interactiva h3 {
        font-size: 1.2rem;
    }

    .imagen-grilla {
        height: 100px;
    }

    .contenido-modal {
        margin: 30% auto;
        padding: 1rem;
    }
}* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #EDE5D1;
    color: #161616;
    line-height: 1.6;
}

.barra-navegacion {
    background-color: #161616;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.contenedor-navegacion {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-navegacion h1 {
    color: #EDE5D1;
    font-size: 1.8rem;
    font-family: 'Courier New', monospace;
    font-weight: bold;
}

.enlaces-navegacion {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.enlaces-navegacion li a {
    color: #EDE5D1;
    text-decoration: none;
    font-family: 'Courier New', monospace;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 4px;
}

.enlaces-navegacion li a:hover {
    background-color: #328D5B;
}

.boton-hamburguesa {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
}

.boton-hamburguesa span {
    width: 25px;
    height: 3px;
    background-color: #EDE5D1;
    margin: 3px 0;
}

.checkbox-navegacion {
    display: none;
}

.contenido-principal {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.seccion-hero {
    text-align: center;
    margin-bottom: 3rem;
}

.seccion-hero h2 {
    font-family: 'Courier New', monospace;
    font-size: 2rem;
    color: #328D5B;
    margin-bottom: 2rem;
    font-weight: bold;
}

.texto-contenido {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
}

.texto-contenido p {
    margin-bottom: 1.5rem;
}

.texto-contenido strong {
    color: #DF3838;
    font-weight: bold;
}





.contenedor-grilla {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.checkbox-modal {
    display: none;
}

.elemento-grilla {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    background-color: #EDE5D1;
    border-radius: 12px;
    padding: 1rem;
    transition: transform 0.3s ease;
}

.elemento-grilla:hover {
    transform: scale(1.05);
}

.imagen-grilla {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    border: 3px solid #328D5B;
    margin-bottom: 1rem;
}

.titulo-articulo {
    font-family: 'Courier New', monospace;
    font-size: 1.2rem;
    color: #161616;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.resumen-articulo {
    color: #161616;
    font-size: 0.9rem;
    line-height: 1.4;
}

.ventana-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(22, 22, 22, 0.8);
    backdrop-filter: blur(5px);
    overflow-y: hidden;
}

.contenido-modal {
    background-color: #EDE5D1;
   
    margin: 5% auto;
    padding: 2rem;
    border-radius: 12px;
    width: 90%;
    max-width: 800px;
    position: relative;
    max-height: 80vh;
    overflow-y: auto;
}

.boton-cerrar {
    color: #161616;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    top: 0.2rem;
    right: 0.5rem;
    text-decoration: none;
}

.boton-cerrar:hover {
    color: #DF3838;
}

.cuerpo-modal h3 {
    font-family: 'Courier New', monospace;
    color: #161616;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.cuerpo-modal p {
    color: #161616 !important;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.cuerpo-modal em {
    color: #DF3838;
    font-style: italic;
}

.cuerpo-modal strong {
    color: #DF3838;
    font-weight: bold;
}

.fuentes-modal {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 2px solid #328D5B;
}

.fuentes-modal h4 {
    font-family: 'Courier New', monospace;
    color: #328D5B;
    margin-bottom: 1rem;
}

.fuentes-modal ul {
    list-style: none;
    padding: 0;
}

.fuentes-modal li {
    margin-bottom: 0.5rem;
}

.fuentes-modal a {
    color: #328D5B;
    text-decoration: none;
}

.fuentes-modal a:hover {
    text-decoration: underline;
}

.checkbox-modal:checked + .ventana-modal {
    display: block;
}



@media (max-width: 768px) {
    .enlaces-navegacion {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: #161616;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
    }

    .checkbox-navegacion:checked ~ .barra-navegacion .enlaces-navegacion {
        left: 0;
    }

    .enlaces-navegacion li {
        margin: 1rem 0;
    }

    .boton-hamburguesa {
        display: flex;
    }

    .checkbox-navegacion:checked ~ .barra-navegacion .boton-hamburguesa span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .checkbox-navegacion:checked ~ .barra-navegacion .boton-hamburguesa span:nth-child(2) {
        opacity: 0;
    }

    .checkbox-navegacion:checked ~ .barra-navegacion .boton-hamburguesa span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    .seccion-hero h2 {
        font-size: 1.5rem;
        line-height: 1.4;
    }

    .texto-contenido {
        font-size: 1rem;
    }

    .contenedor-grilla {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .imagen-grilla {
        height: 150px;
    }

    .contenido-modal {
        margin: 10% auto;
        padding: 1.5rem;
        width: 95%;
    }

    .cuerpo-modal h3 {
        font-size: 1.2rem;
    }

    .cuerpo-modal p {
        font-size: 0.9rem;
    }

    .contenido-principal {
        padding: 1rem;
    }
}resaltado {
    background-color: rgb(234, 255, 46);    
}
h2 {
    color: rgb(33, 33, 33);
    font-size: 30px;
    font-family: roboto, monospace;
    text-align: center;
    font-style: italic;
}
.articulo-1 {
    background-color:rgb(198, 198, 248);
    color: rgb(33, 33, 33);
    font-size: 20px;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: [row1-start] 25% , auto;
    grid-template-areas: header main footer;
    gap: 1rem;
    justify-content: center;
    margin: 50px auto;
    padding: 15px;
}
figure img {
    width: 100%;
    height: auto;
    padding: 0%;
}
.autor-1 {
    font-weight: bold;
}
.articulo-2 {
    background-color:rgb(198, 198, 248);
    color: rgb(33, 33, 33);
    font-size: 20px;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: [row1-start] 25% , auto;
    grid-template-areas: header main footer;
    gap: 1rem;
    justify-content: center;
    margin: 50px auto;
    padding: 15px;
}
.articulo-3 {
    background-color:rgb(198, 198, 248);
    color: rgb(33, 33, 33);
    font-size: 20px;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: [row1-start] 25% , auto;
    grid-template-areas: header main footer;
    gap: 1rem;
    justify-content: center;
    margin: 50px auto;
    padding: 15px;
}
.articulo-4 {
    background-color:rgb(198, 198, 248);
    color: rgb(33, 33, 33);
    font-size: 20px;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: [row1-start] 25% , auto;
    grid-template-areas: header main footer;
    gap: 1rem;
    justify-content: center;
    margin: 50px auto;
    padding: 15px;
}
.parrafo-1 {
    margin: auto;
}
a {
    color: rgb(239, 239, 239);
    text-decoration: none;
    font-family: monospace;
}

/* Títulos y subtítulos encuadrados */
.titulo, .subtitulo {
  border: 3px solid #328D5B;
  background-color: #328D5B;
  color: black;
  padding: 0.5rem 1rem;
  display: inline-block;
  text-align: left;
  margin-bottom: 1rem;
}

/* Texto de corrido (párrafos largos) */
p, .texto-corrido {
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: black;
}


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

body {
  font-family: Verdana, sans-serif;
  background-color: #111;
  color: #fff;
  line-height: 1.6;
  padding: 1rem;
}

/* ENCABEZADOS */

.titulo-enmarcado,
.subtitulo-enmarcado {
  border: 2px solid #328D5B;
  padding: 0.5rem;
  margin-bottom: 1rem;
  background-color: #000;
  color: #000;
  background-color: #328D5B;
  display: inline-block;
}

.titulo-enmarcado {
  font-size: 2rem;
  margin-bottom: 2rem;
}

.subtitulo-enmarcado {
  font-size: 1.2rem;
}

/* CONTENEDOR PRINCIPAL */

.contenedor-archivo {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* VENTANAS DE ARTÍCULO */

.ventana-articulo {
    display: flex;
  border: 2px solid #328D5B;
  padding: 1rem;
  background-color: #EDE5D1;
  box-shadow: 2px 2px 5px #000;
  transition: transform 0.2s ease, background-color 0.3s ease;
}

.ventana-articulo:hover {
  background-color: #2a2a2a;
  transform: scale(1.01);
}

.ventana-articulo:hover h2,
.ventana-articulo:hover p {
  color: white;
}

.ventana-articulo a {
  text-decoration: none;
  color: inherit;
}

.enlace-articulo{
    display: flex;
    width: 100%;
    justify-content: right;
    
}

.enlace-articulo p{
    padding: 0.4rem;
    width: fit-content;
    background-color: #000;
    color: white;
}



/* ARTÍCULOS */

.articulo {
  margin-top: 4rem;
  border-top: 1rem solid #328D5B;
  background-color: #EDE5D1;
  border-radius: 1rem;
  padding: 1rem;
}

.articulo h2{
    margin-top: 3.5rem;
}

.articulo p {
  margin-bottom: 1rem;
  color: black;
}

.articulo img {
  width: 100%;
  max-width: 600px;
  margin: 1rem 0;
  border: 2px solid #444;
  border-radius: 4px;
}

/* LLAMADOS DE ACCIÓN */

.llamado-accion {
  text-decoration: underline;
  text-decoration-color: #B33333;
  text-decoration-thickness: 0.2rem;
  color: white;
  font-weight: bold;
  padding: 1rem;
  margin: 2rem 0;
  border: 1.5px solid black;
  border-radius: 1rem;
  text-align: center;
}

.llamado-accion-fake {
  text-decoration: underline;
  text-decoration-color: #B33333;
  text-decoration-thickness: 0.2rem;
  color: black;
  font-weight: bold;
  padding: 1rem;
  margin: 2rem 0;
  border: 1.5px solid black;
  border-radius: 1rem;
  text-align: center;
}

.hace-click {
  background-color: #B33333;
  text-decoration-thickness: 0.2rem;
  color: white;
  font-weight: bold;
  padding: 1rem;
  margin: 2rem 0;
  border: 1.5px solid black;
  border-radius: 1rem;
  text-align: center;
}

/* FUENTES */

.fuentes {
  margin-top: 2rem;
  padding: 1rem;
  background-color: #1a1a1a;
  
}

.fuentes ul {
  list-style: disc inside;
  padding-left: 1rem;
}

.fuentes a {
  color: #70f9d2;
  text-decoration: underline;
}

.fuentes a:hover {
  color: #b0fff2;
}

.fuentes p{
    color: white;
}

/* RESPONSIVE */

@media (min-width: 768px) {
  .contenedor-archivo {
    max-width: 800px;
    margin: 0 auto;
  }

  .articulo img {
    margin-left: auto;
    margin-right: auto;
    display: block;
  }
}


.documento-id {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  align-items: flex-start;
  margin-top: 1rem;
}

.formulario {
  display: flex;
  flex-direction: column;
}

.label-nombre {
  font-weight: bold;
  color: #000;
  margin-bottom: 0.5rem;
}

.input-nombre {
  padding: 0.5rem;
  border: 1px solid #328D5B;
  font-size: 1rem;
  border-radius: 4px;
}

.documento-enmarcado {
  border: 2px solid #328D5B;
  padding: 1rem;
  width: 250px;
  background-color: #fff;
}

.img-doc {
  width: 100%;
  margin-bottom: 1rem;
}

.renglones .renglon {
  border-bottom: 1px solid #ccc;
  height: 1.2rem;
  margin-bottom: 0.5rem;
}

.sobre-nosotros {
  background-color: #000;
  padding: 2rem;
}

.texto-blanco {
  color: #fff;
  text-align: left;
  margin-bottom: 1.5rem;
  font-family: Verdana, sans-serif;
  line-height: 1.5;
}

.video-contenedor {
  max-width: 800px;
  margin: 0 auto;
}

.llamados-accion {
  padding: 1rem;
  background-color: #EDE5D1;
}

.botones-flex {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.boton-accion {
  background-color: #B33333;
  color: white;
  border: 2px solid black;
  padding: 1rem 2rem;
  text-decoration: none;
  font-weight: bold;
  border-radius: 8px;
}

.boton-accion:hover{
    background-color: #000;
    color: white;
}


.texto-contenido {
  font-family: Verdana, Geneva, sans-serif;
  color: white;
  text-align: left;
  line-height: 1.6;
  font-size: 1rem;
  margin-bottom: 1.5rem;
}


.slider-container {
    max-width: 800px;
    margin: 40px auto;
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    height: 300px;
}


.slider-container input[type="radio"] {
    display: none;
}


.slider-wrapper {
    display: flex;
    width: 300%;
    height: 100%;
    transition: transform 0.5s ease-in-out;
}


.slide {
    width: 33.333%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 20px;
}

.slide1 {
    background: url(imgwebapp/banner1.png) center center/cover no-repeat;
    
}

.slide2 {
    background: url(imgwebapp/banner2.png) center center/cover no-repeat;
}

.slide3 {
    background: url(imgwebapp/banner3.png) center center/cover no-repeat;
}


.slide-link {
    text-decoration: none;
    color: white;
    text-align: center;
    width: 100%;
    padding: 20px;
    transition: transform 0.3s ease;
}

.slide-link:hover {
    transform: scale(1.05);
}

.slide-link h3 {
    color: red;
    font-size: 1.8em;
    margin-bottom: 10px;
    font-weight: bold;
    font-family: "Anton", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.slide-link p {
    font-size: 1.1em;
    opacity: 0.9;
    margin: 0;
    color: #ffffff;
}


.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.nav-left {
    left: 20px;
}

.nav-right {
    right: 20px;
}

.nav-arrow {
    display: block;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    color: #333;
    transition: all 0.3s ease;
    user-select: none;
}

.nav-arrow:hover {
    background: rgba(255, 255, 255, 1);
    transform: scale(1.1);
}


.nav-arrow {
    display: none;
}


#slide1:checked ~ .slider-nav.nav-left .prev:nth-child(1),
#slide1:checked ~ .slider-nav.nav-right .next:nth-child(1) {
    display: flex;
}


#slide2:checked ~ .slider-nav.nav-left .prev:nth-child(2),
#slide2:checked ~ .slider-nav.nav-right .next:nth-child(2) {
    display: flex;
}


#slide3:checked ~ .slider-nav.nav-left .prev:nth-child(3),
#slide3:checked ~ .slider-nav.nav-right .next:nth-child(3) {
    display: flex;
}


#slide1:checked ~ .slider-wrapper {
    transform: translateX(0%);
}

#slide2:checked ~ .slider-wrapper {
    transform: translateX(-33.333%);
}

#slide3:checked ~ .slider-wrapper {
    transform: translateX(-66.666%);
}


.slider-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.8);
}


#slide1:checked ~ .slider-indicators .indicator:nth-child(1),
#slide2:checked ~ .slider-indicators .indicator:nth-child(2),
#slide3:checked ~ .slider-indicators .indicator:nth-child(3) {
    background: rgba(255, 255, 255, 1);
    transform: scale(1.2);
}

       .bienvenida {
            position: relative;
            height: 60vh;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .video-background {
            position: absolute;
            top: 50%;
            left: 50%;
            min-width: 100%;
            min-height: 100%;
            width: auto;
            height: auto;
            transform: translate(-50%, -50%);
            z-index: -1;
            object-fit: cover;
        }

    

        .video-fallback {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, #111, #333);
            display: none;
            z-index: -2;
        }

        @media (max-width: 768px) {
            .titulo-enmarcado h1 {
                font-size: 2rem;
            }
        }

@media (max-width: 768px) {
    .slider-container {
        height: 250px;
        margin: 20px auto;
    }
    
    .slide-link h3 {
        font-size: 1.4em;
    }
    
    .slide-link p {
        font-size: 1em;
    }
    
    .nav-arrow {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    
    .nav-left {
        left: 10px;
    }
    
    .nav-right {
        right: 10px;
    }
}