@import "fonts.css";

html {
    scroll-behavior: smooth;
}

body {
    font-family: "AmorSans", sans-serif;
    font-size: 16px;
    color: #433D38;
}

* {
    margin: 0;
    padding: 0;
}

*, *::before, *::after {
    box-sizing: border-box;
}

h1,h2,h3,h4,h5 {
    color: #652D86;
    font-family: AmorSans-Bold;
    font-size: 28px;
}
p {
   font-size: 16px; 
   color: #433D38;
   margin: 0px 0px 20px 0px;
}

img {
    width: 100%;
}

header {
	padding: 0px 15px;
	background-color: #652D86;
	box-shadow: 2px 2px 18px #433D3845;
    position: sticky;
    top: 0;
    z-index: 4;
}
.wrapper--gray{
    background-color:#F3EDF5 ;
}
.header__content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 55px;
    
    
}
.header__logo {
	width: 100px;
}
.header__icon img {
	width: 27px;
}
.header__menu {
	display: none;
}
.header__menu ul {
	display: flex;
	list-style: none;
}
/* .header__menu li:first-child {
	margin-right: 20px;
} */
.header__menu a {
	text-decoration: none;
	color: #fff;
}
.header__menu .selected {
	text-decoration: underline;
}

.header__menu__button {
    display: flex;
    top: 10px;
    right: 20px;
    background: transparent;
    border: 0px;
    flex-direction: column;
    margin: 12px 0 12px auto;
    gap: 5px;
    width: 27px;
    z-index: 4;
}
.header__menu__button > div {
    background: #fff;
    height: 3px;
    width: 100%;
    border-radius: 5px;
    transition: all .5s;
    transform-origin: right;
}
.menu__open .header__menu__button {
    position: fixed;
    gap: 15px;
}
.menu__open .header__menu__button div:first-child{  
    transform: rotate(-45deg);
    width: 95%;
}
.menu__open .header__menu__button div:nth-child(2){
    opacity: 0;
    display: none;
}
.menu__open .header__menu__button div:last-child{
    transform: rotate(45deg);
    width: 95%;
}
 
.wrapper {
    max-width: 1200px;
    margin: auto;
}

.bg__modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #1e1e1e;
    opacity: 0.8;
    z-index: 2;
    transition-duration: inherit;
    transition-property: opacity;
    transition-timing-function: cubic-bezier(.47,0,.74,.71);
}

footer {
    background-color: #652D86;
}
.footer__picture {
    padding-top: 30px;
    padding-bottom: 20px;
}
.footer__logo {
    display: block;
    width: 120px;
    margin: auto;
}

.footer__rrss {
    display: flex;
    justify-content: center;
    padding-bottom: 20px;
    margin-right: 40px;
}
.footer__rrss__icon {
    margin: 0 10px;
    width: 24px;
}
.footer__copyright .wrapper {
    margin: auto;
    max-width: 380px;
    padding: 0 20px;
    text-align: center;
}
.footer__item {
    padding: 30px 20px;
    text-align: center;
}
.footer__line {
    width: 95%;
    height: 1px;
    background-color: #FFFFFF;
    margin: auto;
}
.footer__menu__logo img {
    width: 150px;
}
.footer__links__item {
    color: #fff;
    display: block;
    font-size: 16px;
    margin-bottom: 30px;
    text-decoration: none;
    font-family: AmorSans;
}
.footer__links__item:hover,
.footer__links__item:visited,
.footer__phone:hover,
.footer__phone:visited {
    color: #fff;
}
.footer__copyright {
    background-color: #858889;
    padding: 30px 0px 30px 0px;
}
.footer__copyright__text {
    padding-top: 20px;
    font-size: 16px;
    color: #fff;
    margin-bottom: 0;
    font-family: AmorSans;
}
.footer__href {
    padding: 30px 20px;
    text-align: center;
}
.footer__phone {
    align-items: center;
    background-color: #EF7B21;
    color: #fff;
    display: flex;
    padding: 5px 15px;
    text-decoration: none;
    border-radius: 20px;
    width: fit-content;
    height: 30px;
    margin: auto auto 20px auto;
    font-family: AmorSans;
}
.footer__phone img {
    width: 17px;
    margin-right: 6px;
}
.footer__ul {
    display: flex;
    justify-content: center;
    list-style: none;
}
.footer__ul li:nth-child(2) a {
    margin-left: 20px;
    font-style: italic;
    font-weight: normal;
}
.footer__ul a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    font-family: AmorSans;
}
.footer__ul img {
    width: 20px;
    height: 20px;
    vertical-align: middle;
    margin-right: 6px;
}
.footer__copyright__logo {
    width: 180px;
}


/* nuevo meu/nu */
#mi-menu {
    position: fixed;
    top: 0;
    right: -232px; /* Establece la posición inicial fuera de la vista */
    width: 232px; /* Ajusta el ancho a tus necesidades */
    height: 100%;
    background-color: #652D86;
    color: #fff;
    text-align: left;
    transition: right 0.5s; /* Agrega una transición de movimiento suave */
    z-index: 2;
    
}

#mi-menu.mostrar {
    right: 0; /* Muestra el menú desplazándolo desde la derecha */
}

#mi-menu ul {
    list-style: none;
    padding: 0;
}

/* #mi-menu ul li {
    padding: 10px;
} */

#mi-menu ul li a {
    color: #F3EDF5;
    text-decoration: none;
    display: block;
}

#mostrar-menu {
    position: absolute;
    top: 10px;
    left: 10px;

}


.list__item--italic{
    font-style: italic;
    font-weight: bold;
}

.mi-menu__list{
    margin-top: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
     
}

.list__item {
    padding-left: 10px;
    align-self: flex-start;
    margin-bottom: 15px;
     
}
 

.main__btn--green{
    
    background-color: #7AB700 !important;
    color: #fff !important;
    margin-top: 15px;
    
    
}





@media screen and (min-width: 600px) {
    
    .footer__href {
        padding: 30px 5px;
        text-align: center;
        display: flex;
        justify-content: space-between;
    }
    .footer__phone {
        margin: 0;
        font-size: 17px;
    }
    .footer__ul a {
        font-size: 22px;
    }
    .footer__ul li:nth-child(2) a {
        margin-left: 30px;
    }
    .footer__line {
        display: none;
    }
    .footer__copyright .wrapper {
        display: flex;
        justify-content: center;
        max-width: 700px;
        align-items: center;
    }
    .footer__copyright__logo {
        margin-right: 45px;
        width: 200px;
    }
    .footer__menu__logo img {
        width: 110px;
    }
    .footer__copyright__text {
        padding: 0;
    }

    .footer__links {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        max-width: 100%;
        width: 100%;
    }
    .footer__links__item {
        position: relative;
    }
    .footer__links__item:not(:last-child) {
        margin-right: 10px;
    }
    .footer__links__item:not(:first-child) {
        margin-left: 10px;
    }
    .footer__links__item:not(:last-child)::after {
        background-color: #fff;
        content: '';
        height: 30px;
        position: absolute;
        top: -6px;
        right: -10px;
        width: 1px;
    }
    .footer__item {
        padding-top: 0;
    }

}
/* modifica OV */
@media screen and (min-width: 768px) {

	.header__content {
		height: 68px;
	}
	.header__logo {
		width: 124px;
	}
	/* .header__menu li:first-child {
		margin-right: 30px;
	} */
	.header__menu a {
		font-size: 18px;
	}

    .footer__href {
        padding: 30px 15px;
    }

}
/* modificaciones para desktop OV */
@media screen and (min-width: 900px) {

	.header__icon {
		display: none;
	}
	.header__menu {
		display: block;
	}
    .header__menu__button {
        display: none;
    }


    #mi-menu {
     position: static;  
     
    width: fit-content;
    max-width: 80%;
    /* height: 100%; */
    background-color: #652D86;
    color: #fff;
    height: 67px;
    /* text-align: left; */
    /* transition: right 0.5s; */
    z-index: 2;
    padding-right: 5px;
}

.header__menu{
    display: flex;
    flex-direction: row;
    margin: 0;
    justify-content: space-between;
    align-items: center;
    height: 68px;
     
    
     
}

.list__item{
    font-size: 16px !important;
    margin: 0;
    padding: 0;
    padding-left: 10px;
    align-self: center;
}

.list__item:not(:first-child)::before {
    content: "";
    position: absolute;
    top: 18px;
    width: 1px; /* Ancho de la línea vertical */
    height: 35px; /* Altura de la línea igual a la altura del elemento */
    background-color: #fff; /* Color de la línea vertical */
    
}

.main__btn--green{
    background-color: #FDCA00 !important;
    color: #652D86 !important;
    margin: 0;
    margin-left: 10px;
    padding: 0 10px;
    
}
	
}
@media screen and (min-width: 900px) {

    .footer__item{
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

}


@media screen and (min-width: 1200px) {

	.footer__links__item {
		margin-bottom: 0;
	}

}



