@font-face {
    font-family: calibri;
    src: url(../FONT/Calibri.ttf);
}

:root{
    --celesebb:#D4AF37;     /* Dorado principal */
    --azulmarino: #2C3E50 ; /* Gris azulado elegante */
    --naranja:#B8860B;      /* Dorado oscuro */
    --rojo:#FF0000; /*Rojo*/
}

*{
    outline: none;
    list-style: none;
    text-decoration: none;
    font-family: calibri;
}

html{
    scroll-behavior: smooth;
}

/*header*/
body{
    display: grid;
    width: 100%;
    grid-template-columns: repeat(4,1fr);
    grid-template-rows: repeat(6, auto);
    grid-template-areas:  "header header header header"
                          "main main main main"
                          "footer footer footer footer";
}

.header {
    grid-area: header;
    height: 70vh;
    max-height: 660px;	
    color: #fff;
    box-shadow: 0 3px 20px rgba(0, 0, 0, 0.192);
    background-image: 
        linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)),
        url(../IMG/mujerestres.jpeg);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

/*container*/
.container{
    max-width: 1077px;
    margin: auto;
    padding: 0 10px;
}

/*estilos nav*/
.nav__fixed{
    position: fixed;
    width: 100%;
    z-index: 2;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.178);
}

.nav__flex{
    display: flex;
    justify-content: space-between;
    align-items: center;
}	

.nav__top{
    background-color: var(--celesebb);
    padding: 5px;
}

.redes_t > a{
    color: white;
    font-size: 1rem;
    padding-right: 1em;
}

.nav__iconphone{
    padding:3px 0px;
    border-radius: 5px;
    color: #fff;
    font-size: 1rem;
    display: flex;
    gap: 20px;
    align-items: center;
}

.nav__botton{
    background-color: #fff;
}	

.nav__flex--botton{
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 60px;
}

.container_nav-index{
    width: 45%;
}

.nav_index{
    height: 30px;
    background-color: var(--naranja);
    border-radius: 10px;
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: space-around;
}

.nav_index a{
    color: #ffffff;
    font-size: 1rem;
    padding: 3px;
    border-radius: 10px;
}

.nav_index a:hover{
    background-color: var(--azulmarino);
}

.logo{
    width: 200px;
}

/*bothom hover login*/
.button {
    font-size: 1rem;
    color: #fff;
    background: var(--azulmarino);
    border: none;
    transition: all 0.3s ease-in-out 0s;
    cursor: pointer;
    outline: none;
    position: relative;
    padding: 4px 10px ;
    border-radius: 50px;
    z-index: 1;
}

.button:hover, .button:focus {
    color: #fff;
    box-shadow: 0px 4px 10px var(--azulmarino);
}

button:hover::before, button:focus::before {
    opacity: 1;
}

button::after {
    content: '';
    width: 30px; 
    height: 30px;
    border-radius: 100%;
    border: 2px solid var(--azulmarino);
    position: absolute;
    z-index: -1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: ring 1.5s infinite;
}

button:hover::after, button:focus::after {
    animation: none;
    display: none;
}

@keyframes ring {
    0% {
        width: 30px;
        height: 30px;
        opacity: 1;
    }
    100% {
        width: 150px;
        height: 150px;
        opacity: 0;
    }
}

/*barra hamburguesa*/
.hamburguesa__resposive{
    display: none;
}

/*header content*/
.content_center{
    height: 100%;
    position: relative;
    font-size: 2rem;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.center_left h1{
    margin: 0;
    color: #fff;
}

.center_left span{
    color: var(--celesebb);
}

.center_left p {
    text-align: right;
}

.center_rigth{
    margin-top: 300px;
}

.center_rigth h2{
    width: 100%;
    animation: typing 5s steps(19),blink .5s step-end infinite alternate;
    white-space: nowrap;
    overflow: hidden;
    border-right: 3px solid rgb(250, 250, 250);
    font-size: 1.2em;
}

@keyframes typing {
    from{
        width: 0;
    }
}

@keyframes blink {
    50%{
        border-color: transparent;
    }
}

.content_button {
    padding: 0.5em 1.3em;
    border: none;
    background-color: var(--azulmarino);
    color: white;
    border-radius: 50px;
    transition: all .4s;
    font-size: 1.1rem;
    margin-top: 10px;
}

.content_button:hover{
    background-color: var(--celesebb);
    color: white;
}

/*main*/
.link{
    background-color: var(--azulmarino);
}

/*pagos digitales fixed*/
.pagos__digitales{
    position: fixed;
    backdrop-filter: blur(20px);
    margin: auto;
    right: 0 ;
    bottom: 2%;
    padding: 10px;
}

.pagos__digitales ul{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pagos__digitales ul h3{
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #050505;
}

.pagos__digitales ul li img{
    width: 70px;
    padding: 5px 0;
}

.main{
    grid-area: main;
    display: grid;
    width: 100%;
    grid-template-columns: repeat(4,1fr);
    grid-template-rows: repeat(4, auto);
    grid-template-areas:  "s s s s"
                          "ss ss ss ss"
                          "sss sss sss sss"
                          "cm cm cm cm";
    font-size: 1rem;
}

.main h2{
    font-size: 2rem;
    color: var(--azulmarino);
}

/* modificado */
#negocios{
    display: block;
}

#chamba, #prendario, #artefactos,#grupal,#casa{
    display: none;
}

.link1{
    background-color: var(--azulmarino);
}

.link1:hover	{
    background-color: #1a2530;
}

.link2{
    background-color: var(--naranja);
}

.link2:hover{
    background-color: #966809;
}

.link3{
    background-color: var(--celesebb);
}

.link3:hover{
    background-color: #b8942b;
}

.link4{
    background-color: #6da0b8;
}

.link5{
    background-color: var(--celesebb);
}

.link5:hover{
    background-color: #b8942b;
}

.link6{
    background-color: var(--naranja);
    color: white;
}

.link6:hover{
    background-color: #966809;
}

/*section_one*/
.section_one{
    margin: 50px 0;
}

.section_one{
    grid-area: s;
}

.section__one--titulo{
    text-align: center;
    margin-bottom: 100px;
}

.article_secone{
    display: flex;
    text-align: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.article_secone article{
    width: 200px;
    cursor: default;
    border-radius: 10px;
    padding: 15px;
}

.article_secone h3{
    font-size: 1.2rem;
    margin-top: 20px;
}

.article_secone article img{
    width: 70px;
}

/*section two*/
.section__two{
    grid-area: ss;
}

.caja{
    width: 100%;
}

.description__titulo{
    margin-bottom: 50px;
    border-bottom: 1px solid #979797;
    padding-bottom: 20px;
    text-align: center;
}

.path1{
    margin-bottom: -20px;
}

/*footer*/
.footer{
    grid-area: footer;
    background-color: var(--azulmarino);
    color: #FBFBFF;
}

.footer__flex{
    display: flex;
    text-align: center;
    justify-content:space-between;
    font-size: 1rem;
    margin-bottom: 20px;
    gap:100px;	
}

.conoce,.logo__footer,.contactanos{
    width: 100%;
}

.conoce__titulo,.contactanos__titulo{
    margin-bottom: 20px;
}

.conoce__flex{
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-direction: column;
    gap: 5px;
}

.conoce__flex >a{
    color: #fff;
    padding-bottom: 2px;
}

.conoce__flex>a:hover{
    color: var(--celesebb);
    text-decoration: underline;
}

.logo__footer{
    display: flex;
    align-items: center;
    flex-direction: column;
}

.logo__footer img{

}

.logo__redes a{
    color: #fff;
    font-size: 1.2rem;
    margin-left: 10px;
}

.logo__redes a:hover{
    color: var(--celesebb);
    text-decoration: underline;
}

.contactanos__flex{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    gap:5px;
}

.contactanos__flex>a{
    color: #fff;
    padding-bottom: 2px;
    transition: .2s;
}

.contactanos__flex>a:hover{
    color: var(--celesebb);
    text-decoration: underline;
}

.copy h4{
    border-top: 1px solid;
    padding: 10px;
    text-align: center;
}

/*resposive*/
/*modal*/
.modal__flex{
    padding: 20px;
    box-shadow: 0 10px 5px #0000003a;
    border-radius: 10px;
    z-index: 2;
    margin: auto;
    border:1px solid;
    width: 100%;
    max-width: 500px;
}

.modal__img{
    margin:auto ;
}

.modal__flex::backdrop {
    background: rgba(0, 0, 0, 0.3);
}

.modal__flex span{
    text-align: center;
    font-size: 1.2rem;
    cursor: pointer;
}

.modal__flex h2{
    text-align: center;
    margin-bottom: 20px;
}

.content__flex{
    display: flex;
    gap: 40px;
}

.form__flex{
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.form__flex input{
    border: none;
    border-bottom: 1px solid #000;
    padding: 10px;
    transition: .3s all;
}

.form__flex input:focus{
    border-bottom: 1px solid var(--celesebb);
}

.form__button{
    margin-top: 5px;
    background-color: var(--naranja);
    color: white;
    border: none;
    border-radius: 5px;
    padding: 5px;
    cursor: pointer;
    transition: all .3s;
}

.form__button:hover{
    background-color: var(--celesebb);
    transform: scale(1.02);
}

/*menu hamburguesa*/
@media screen and (max-width:1024px) {
    .container_nav-index{
        width: 100%;
    }
    
    .content__flex{
        display: flex;
        flex-direction: column;
    }
    
    .form__flex{
        gap:10px;
    }

    .menu{
        display: flex;
        height: auto;
        position: static; 
        width: auto;
    }

    .icon-bars{
        display: block;
        width: 20px;
        line-height: 42px;
        text-align: center;
        cursor: pointer;
        font-size: 1.5em;
    } 
    
    .icon-bars img{
        width: 100%;
    }
    
    .flex_btn{
        flex-direction: column;
        font-size:1.3rem;
        margin-top: 0;
    }

    .nav_index{
        width: 100vh;
        margin: 130px 0 0 1px;
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        background-color: transparent;
    }

    .nav__botton	{
        display: flex;
        padding-right: 100%;
        position: absolute;
        width: 100%;
        background: rgba(44, 62, 80, 0.9);
        list-style: none;
        height: 0vh;
        overflow: hidden;
        transition: height .2s linear;
    }

    .nav__flex--botton{
        align-items: start;
    }
    
    .mostrar{
        height: 300px;
        border:1px solid;
        border-radius: 0px 0 10px 10px;
    }

    .hamburguesa__resposive{
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    
    .logo_responsive {
        width: 120px;
    }

    .wrap{
        display: none;
    }
    
    .logo__img {
        width: 100%;
        height: auto;
    }

    /*content center*/
    .header{
        height: 100vh;
    }

    .content_center{
        align-items: center;
        flex-direction: column;
        font-size: 1.8rem;
    }

    .center_left{
        padding-top: 200px;
        text-align: center;
    }
    
    .center_left p{		
        text-align: center;
    }

    .center_rigth{
        display: flex;
        flex-direction: column;
        margin:auto;
        text-align: center;
    }

    .content_button{
        background-color: var(--celesebb);
        color: white;
        border: 10px;
        width: 200px;
        margin: auto;
        margin-top: 20px;
    }
    
    .content_button:hover{
        background-color: var(--azulmarino);
    }

    .typing h2{
        width: 100%;
        animation: typing 5s steps(19),blink .5s step-end infinite alternate;
        white-space: nowrap;
        overflow: hidden;
        border-right: 3px solid rgb(250, 250, 250);
        font-size: 1.2em;
    }
    
    @keyframes typing {
        from{
            width: 0;
        }
    }

    @keyframes blink {
        50%{
            border-color: transparent;
        }
    }

    /*footer*/
    .footer__flex{
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }
    
    .conoce__titulo,.contactanos__titulo{
        font-size: 1.2rem;
    }
    
    .logo__footer img{
        display:none ;
    }
    
    .logo{
        width: 150px;
    }
}

/* APUNTAR DIRECTAMENTE A LA IMAGEN DEL LOGO */
.logo__img,
.logo_responsive,
.logo img {
    width: 120px !important;
    height: auto !important;
}

/* HEADER MÁS GRANDE HACIA ABAJO */
.nav__flex--botton {
    height: 75px !important;
}

/*resposive*/
@media screen and (max-width:300px) {
    .content_center{
        font-size: 1rem;
        text-align: center;
    }
    
    .nav__flex{
        font-size: 0.1rem;
    }
}