#contenedor{
    margin: auto;
    display: flex;
    justify-content: center;
    flex-flow: column;
    align-items: center;
}
.hero{
    display: flex;
    flex-wrap: wrap;
    background-position: center;
    width: 80%;   
    justify-content: center;
    background-image: url("imagenes/hero.jpg");
}
.imghero{
    width: 100%;   
}
.boton{
    position: absolute;
    margin-top: 25%;
    background: linear-gradient(135deg, #ff9e02, #f89b0f);
    color: white;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: bold;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}
.boton:hover {
    background: linear-gradient(135deg, #ffb53e, #fc9f14);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
    transform: translateY(-2px);
}
.boton:active {
    transform: translateY(1px);
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
}
#encabezado{
    display: flex;
    flex-flow: row;
    flex-wrap: wrap;
    justify-content: center;
}
#conjunto{
    display: flex;
    flex-flow: row;  
    width: 80%;
    border-bottom: 1px solid green;
}
#contenedorLogo{
    display: flex;
    width: 50%;
    justify-content: space-between;
    align-items: center;
}
.half1{
    width: 30%;
}
.half2{
    width: 70%;
    display: flex;
    justify-content: center;
}
#logo{
 width: 80%;
}
.menu{
    display: flex;
    flex-flow: row;
    list-style: none;
    justify-content: space-between;
    width: 50%;
    align-items: center;   
}
.liUl{
    font-size:20px;   
}
a{
	text-decoration:none;
    color:#2E8B57;
	font-size:1.2em;
}
a:hover{

    color:#ADD8E6;
	text-decoration:none;	
	cursor:pointer;
    border-bottom: 1px solid green;
}
a:visited{
	text-decoration:none;	
}
.main{
    display: flex;
    flex-wrap: wrap;
    flex-flow: column;
    justify-content: center;
    width: 80%;
    align-items: center;
}
#contenedorFraseSeo{
    width: 100%;
}
#fraseSeo{
    text-align: center;  
    color:#2E8B57;  
    padding: 0;
    margin: 0; 
}
.texto{
    font-size: 1.2em;
    font-family: Arial, Helvetica, sans-serif;
    text-align: justify;
    color: rgb(73, 73, 73);
}.contenido{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.pie{
    width: 80%;
    display: flex;
    flex-wrap: wrap;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    border-top: 1px solid #2E8B57;
}
.textopie{
    color:#2E8B57;
}
/*--soy--*/
.contenedorTextoSomos{
    width: 100%;
    /* background-color: red; */
    font-size: 1.2em;
    display: flex;
    justify-content: center;
    flex-flow: column;
    align-items: center;
}
.textoExSomos{
    font-family: Arial, Helvetica, sans-serif;
    text-align: justify;
}
.tmnDiploma{
    width: 50%;   
}

/*--contacto--*/
/*contacto*/
.contenedorFormulario{
	display:flex;
	flex-flow:column;
    justify-content: center;
    align-items: center;
    /* background-color: blue; */
}
.formulario{
	width:100%;
	display:flex;
	flex-flow:column;
    flex-wrap: wrap;
	justify-content:center;
	text-align:center;
	margin:1%;
	border-color:#2E8B57;
	color:#ff7e00;
}
.redondeado{
	border-radius:5px;
	font-size:1.2em;
    font-family: Arial, Helvetica, sans-serif;
    border-color: #2E8B57;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
}
.contenedorFormulario{
	display:flex;
	flex-flow:column;
	justify-content:center;
	align-items:center;
	width:100%;
}
.botonEnvío{
	color:#2E8B57;
	background-color:#F5F5DC;
	cursor:pointer;
    width: 100%;
}
.botonEnvío:hover{

	color:#2E8B57;
	background-color:#ADD8E6;
	cursor:pointer;
}
.textoFormulario{
	font-size:1.2em;
	color:rgb(53, 53, 52);
	font-family:arial;
}


@media screen and (max-width: 1024px){
    #conjunto{
        flex-wrap: wrap;
    }
    #contenedorLogo{
        width: 100%;
    }
    .menu{
        justify-content: space-between;
        width: 100%; 
        padding-left: 0;
    }
    .tmnDiploma{
        width: 100%;
    }
    .boton{
        margin-top: 15%;
    }
}