* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family:Verdana, Geneva, Tahoma, sans-serif;
    /* border: 1px black solid; */
}

body {
    background-color: rgb(189, 243, 189);
}

.fondo-provincias {
    position: relative;
    z-index: 1;
}
.fondo-provincias::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('imagenes/ATE_Turismo.jpeg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 50%;
    opacity: 0.03; /* Solo el pseudo-elemento (la marca de agua) es transparente */
    z-index: -1; /* Envía la marca de agua al fondo, detrás del contenido real */
    pointer-events: none; /* Permite hacer clic y seleccionar texto normalmente */  
    border-radius: 50%;
}

.principal {
    padding-top: 20px;
    display: flex;
    justify-content: center;
}

a {
    text-decoration: none;
    color:white;
}

a:hover {
    color: black;
}

header {
    background-color: #00b632;
    color: white;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    padding: 8px;
}

.logo {
    max-height: 150px;
    border-radius: 50%;
}

.icono {
    width: 20px;
}

.flex-centrado {
    display: flex;
    align-items: center;
}

.encabezado-central{
    min-height: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
}

h1 {
    text-shadow: 4px 4px 10px rgba(0, 0, 0, 1);
}

h3 {
    padding-top: 5px;
}

.main-provincias{
    margin: 50px;
    margin-top: 20px;
}

.redes-sociales {
    display: flex;
    align-items: start;
    justify-content: space-evenly;
    list-style: none;
    img {
    width: 25px;
    margin: 0 10px;
    transition: transform 0.3s;
    }
}

.contacto {
    font-size: 1.2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    gap: 5px;
    align-items: center;
    img {
        margin-right: 5px;
    }
}
.contacto-pie {
    font-size: 1.2rem;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    gap: 5px;
    align-items: center;
    img {
        margin-right: 5px;
    }
}
.titulo-centrado{
    text-align: center;
    margin: 20px 0;
}

.imagenes-provincias {
    max-width: 45%;
    height: auto;
    margin: 10px;
    border-radius: 10px;
}
.lista-desordenada {
    margin-left: 20px;
    margin-bottom: 20px;
    /* list-style-type: square; */
}
footer {
    background-color: green;
    padding: 10px;
}

#pdf {
    width: 300px;
    margin-top: 20px;
}

#id {
    max-height: 50vh;
}

.contenedor-pdf {
    padding: 20px;
    padding-top: 0;
}

.link-oscuro {
    color: black;
}

.link-oscuro:hover {
    text-shadow: 2px 2px 4px yellow;
}



@media (max-width: 830px) {
    h1 {
        font-size: 1.5rem;
    }
    .contacto {
        flex-direction: column;
        font-size: 1rem;
    }  
    .contacto-pie {
        flex-direction: column;
        font-size: 1rem;
    }    
    .imagenes-provincias {
        max-width: 60%;
    }
}
@media (max-width: 590px) {
    .logo {
        max-height: 100px;
    }
    header {
        flex-direction: column;
        /* gap: 10px; */
    }
    .principal {
        flex-direction: column;
    }
    #pdf {
        width: 200px;
    }
    .contacto {
        flex-direction: column;
        font-size: 1rem;
    }
    .contacto-pie {
        flex-direction: column;
        font-size: 1rem;
    }
    .main-provincias{
        margin: 15px;
        /* margin-top: 20px; */
    }
    .imagenes-provincias {
        max-width: 70%;
    }
}