*{
	margin: 0;
	padding: 0;	
}
body{	
	width: 100%;
	background: ;
}
/*---------------------------*/

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background-color: #870d30;
    color: #fff;
    flex-wrap: wrap;
    font-family: Arial, sans-serif;
}
.header-left {
    display: flex;
    align-items: center;
    gap: 15px;
}
.iso img {
    height: 90px; /* o más si querés */
}
.logo img {
    height: 60px;
}
.logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin: 5px 0 0;
    font-size: 0.9em;
    color: #ccc;
}
.slogan {
    margin-left: 100px;
    font-size: 1em;
    color: #ccc;
}
.header-center {
    text-align: center;
}
.lugar h3 {
    margin: 0;
    font-size: 1em;
}
.fecha {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    font-size: 0.9em;
    gap: 3px;
}
.header-right {
    text-align: right;
}
.redes {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    background: ;
}
.redes p {
    margin-bottom: 5px;
    font-weight: bold;
}
.redes a {
    margin: 0 14px;
    display: inline-block;
}
.redes img {
    width: 32px;
    height: 32px;
    transition: transform 0.3s;
}
.redes img:hover {
    transform: scale(1.1);
}

/*----------------------------*/

.cont_ppal {
    width: 90%;
    max-width: 90%;
    margin: 0 auto;
    padding: 2%;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    background-color: #fdfdfd;
    color: #333;
    word-break: break-word;
    overflow-wrap: break-word;

}

.titulo h1 {
    font-size: 240%;
    margin-bottom: 1%;
    color: #708238;
}

.redaccion {
    font-size: 130%;
    color: #777;
    margin-bottom: 2%;
}

.bajada {
    font-size: 170%;
    font-weight: 500;
    margin-bottom: 3%;
    color: #708238;
}

.contenido p {
    margin-bottom: 3%;
    font-size: 150%;
    color: #333;
    text-align: justify;    
}

.ima_interc {
    text-align: center;
    margin: 4% 0;
}

.ima_interc img {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 2%;
    box-shadow: 0 2% 4% rgba(0, 0, 0, 0.1);
}

.ima_interc1 {
    width: 48%;
    display: inline-block;
    vertical-align: top;
    margin: 1%;
    text-align: center;
}

.ima_interc1 img {
    width: 100%;
    height: auto;
    border-radius: 2%;
    box-shadow: 0 2% 4% rgba(0, 0, 0, 0.1);
}


.volver_cont {
    display: flex;
    justify-content: flex-start;
    margin: 4% 4%;
}

.volver {
    padding: 1% 3%;
    background-color: #708238;
    color: white;
    text-decoration: none;
    border-radius: 1%;
    font-weight: bold;
    font-size: 100%;
    border-radius: 10px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.volver:hover {
    background-color: #a21c3f;
    transform: scale(1.05); /* Agranda todo el botón visualmente */
}


/*-------------------------*/

.footer {
    background-color: #870d30; /* color oscuro */
    color: #fff;
    padding: 20px 10px;
    text-align: center;
    font-family: Arial, sans-serif;
    margin-top: 30px;
}
.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}
.logopie img {
    width: 200px;
    max-width: 100%;
    height: auto;
}
.titulo-redes {
    font-weight: bold;
    font-size: 1.2em;
    margin-bottom: 8px;
}
.iconos-redes a {
    margin: 0 8px;
    display: inline-block;
}
.iconos-redes img {
    width: 32px;
    height: 32px;
    transition: transform 0.3s;
}
.iconos-redes img:hover {
    transform: scale(1.1);
}
.copy {
    margin-top: 15px;
    font-size: 0.9em;
    color: #ccc;
}

/*----------------------------*/
/*----------------------------*/







    

@media screen and (max-width: 768px) {
    .header {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    .header-left, .header-center, .header-right {
        width: 100%;
        justify-content: flex-start;
        margin-bottom: 10px;
    }

    .slogan {
        margin-left: 0;
        font-size: 0.9em;
    }

    .logo img {
        height: 50px;
    }

    .iso img {
        height: 70px;
    } 

    .footer-content {
        flex-direction: column;
    }

    .footer {
        font-size: 0.9em;
    }
}






@media screen and (max-width: 480px) {
    
    .header{
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        padding: 10px;
    }
    .header-left{
        flex-direction: row;
        align-items: flex-start;
        gap: 10px;
        width: 100%;
    }    
    .iso img {
        height: 100px;
        margin-left: 1px;
        margin-top: 1px;
    }
    .logo img{
        height: 32px;
        margin-top: 1px;
        margin-bottom: -10px;
    }
    /*---------------------------*/
    
    .footer-content {
        padding: 10px;
    }
    .iconos-redes img {
        width: 28px;
        height: 28px;
    }
    .redes{
        justify-content: center;
        flex-wrap: wrap;
    }
    .header-right{
        width: 100%;
        margin-top: 10px;
        text-align: center;
    }
    .fecha{
        font-size: .8em;
    }
    .header-center{
        width: 100%;
        margin-top: -50px;      
        margin-left: 57px;
    }    
    .slogan{
        margin-left: 12px;
        font-size: .9em;
        margin-top: 5px;
    }
    /*----------------------------*/


.cont_ppal {
    width: 90%;
    max-width: 90%;
    margin: 0 auto;
    padding: 2%;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    background-color: #fdfdfd;
    color: #333;
    word-break: break-word;
    overflow-wrap: break-word;

}

.titulo h1 {
    height: auto;
    font-size: 190%;
    text-align: center;
    padding: 0;
    margin-left: 1%;
    line-height: 1.2;
    margin-top: 5%;


}

.redaccion {
    font-size: 80%;
    color: #777;
    margin-top: 5%;
}

.bajada {
    font-size: 160%;
    font-weight: 500;
    margin-top: 5%;
    text-align: center;
    line-height: 1.2;
}

.contenido p {
    margin-bottom: 3%;
    font-size: 120%;
    color: #333;
    text-align: justify;   
    hyphens: auto;
    word-break: break-word; 
}

.ima_interc {
    text-align: center;
    margin: 4% 0;
}

.ima_interc img {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 2%;
    box-shadow: 0 2% 4% rgba(0, 0, 0, 0.1);
}

.ima_interc1 {
    width: 100%;
    display: ;
    vertical-align: ;
    margin: 1%;
    text-align: center;
}

.ima_interc1 img {
    width: 100%;
    height: auto;
    border-radius: 2%;
    box-shadow: 0 2% 4% rgba(0, 0, 0, 0.1);
}
/*----------------------------*/

.video-embed {
    position: relative;
    padding-bottom: 56.25%; /* relación 16:9 */
    height: 0;
    overflow: hidden;
    margin: 20px auto;
    max-width: 100%;
}

.video-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-local video {
    width: 100%;
    height: auto;
    display: block;
    margin: 20px auto;
    max-width: 100%;
    border-radius: 8px;
}

/*----------------------------*/


.volver_cont {
    display: flex;
    justify-content: flex-start;
    margin: 4% 4%;
}

.volver {
    padding: 1% 3%;
    text-decoration: none;
    border-radius: 1%;
    font-weight: bold;
    font-size: 90%;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.volver:hover {
    background-color: #a21c3f;
    transform: scale(1.05); /* Agranda todo el botón visualmente */
}


}
