@import url("https://fonts.googleapis.com/css2?family=Noto+Sans:wght@400;700&display=swap");
@font-face {
    font-family: 'Patria';
    src: url('../fonts/PatriaRegular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
  }
  
  @font-face {
    font-family: 'Patria';
    src: url('../fonts/PatriaBold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
  }
  .full-image-section {
    position: relative;
    width: 80vw;
    height: 90vh;
    background-color: white; /* Fondo blanco */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
}

/* Si no quieres que la imagen tenga fondo gris, asegúrate de que la clase .overlay no afecte */
.overlay {
    display: none; /* Si esta clase te está causando problemas, ocúltala */
}
.full-image-section img {
    position: absolute;
    max-width: 50%;
    height: auto;
    top: 20%;
    margin-left: 5%;
}



.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Oscurece la imagen */
}

.impact-text {
    position: relative;
    z-index: 2;
    color: white;
    font-size: 5vw; /* Hace que el tamaño de fuente sea dinámico */
    font-weight: bold;
    font-family: "Impact", "Arial Black", sans-serif;
    text-transform: uppercase;
    text-shadow: 3px 3px 5px rgba(0, 0, 0, 0.7);
    max-width: 90%; /* Evita que el texto se salga */
    word-wrap: break-word; /* Asegura que el texto se divida en palabras */
    letter-spacing: 2px; /* Ajusta el espacio entre las letras */
}


/* Ajuste para pantallas pequeñas */
@media (max-width: 768px) {
    .impact-text {
        font-size: 8vw; /* Aumenta la adaptabilidad en móviles */
       left: 30px;
    }
}

@media (max-width: 480px) {
    .impact-text {
        font-size: 10vw; /* Asegura que no se salga en pantallas muy pequeñas */
        text-align: center;
    }
}

  

