@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,700;1,600&display=swap');
:root{
    --padding-container: 20px 0;
    --color-title: #001A49;
}
body{
    font-family: 'Poppins', sans-serif;
}


/*Barra de Inicio*/
*{
    padding: 0;
    margin: 0;
    text-decoration: none;
    list-style: none;
    box-sizing: border-box;
}
nav{
    background: #ffffff;
    height: 80px;
    width: 100%;
}
.enlace{
    position: absolute;
    padding: 20px 50px;
}
.logo{
    height: 50px;
    width: 200px;
    margin-left: 50px;
}
nav ul{
    float: right;
    margin-right: 20px;
}
nav ul li{
    display: inline-block;
    line-height: 80px;
    margin: 0 5px;
}
nav ul li a{
    color: #000000;
    font-size: 18px;
    padding: 7px 13px;
    border-radius: 3px;
    text-transform: uppercase;
}
li a.active, li a:hover{
    background: #434354;
    transition: .5s;
}
.checkbtn{
    font-size: 30px;
    color: #000000;
    float: right;
    line-height: 80px;
    margin-right: 40px;
    cursor: pointer;
    display: none;
}
#check{
    display: none;
}
section{
    background: url() no-repeat; 
}

@media (max-width:952px){
    .enlace{
        padding-left: 20px;
    }
    nav ul li a{
        font-size: 16px;
    }
}

@media (max-width:858px){
    .logo{
        height: 50px;
        width: 100px;
        margin-left: 0;
    }
    .checkbtn{
        display: block;
    }
    ul{
        position: absolute;
        width: 100%;
        height: 100vh;
        background: #707c87;
        top: 80px;
        left: -100%;
        text-align: center;
        transition: all .5s;
    }
    nav ul li{
        display: block;
        margin: 50px 0;
        line-height: 30px;
    }
    nav ul li a{
        font-size: 20px;
    }
    li a:hover, li a.active{
        background: none;
        color: red;
    }
    #check:checked ~ ul{
        left: 0;
        position: absolute;   
    }   
}
/* Footer */
.pie-pagina {
    position: relative;
    bottom: 0;
    left: 0;
    width: 100%;
    margin-top: 10px;   /* pequeño espacio con el contenido */
    text-align: center; /* centrado directo desde el footer */
    color: #444;        /* color de texto (puedes ajustarlo) */
    padding: 10px 0;
}

.pie-pagina .grupo-2 {
    padding: 0;   /* sin fondo ni caja */
    margin: 0;
}

.pie-pagina .grupo-2 small {
    font-size: 14px;
}


/*Puntos de pago*/
.section{
    background-color: #ffffff;
    display: flex;
    justify-content: space-between;
    padding: 40px;
    width: 70%;
    margin: 15px auto;
    border-radius: 20px;
    
}
.section img{
    width: 400px;
    border-radius: 30px;
    height: 300px;
}
@media screen and (max-width:800px){
    .section{
        background-color: #ffffff;
        display: inline-block;
        margin-left: 5%;
        width: 85%;
    }
    .section img{
        padding-top: 0px;
        width: 300px;
        height: 300px;
        border-radius: 30px;
    }
    .foto{
        margin-right: 50px;
    }
}
h5{
    width: 1px;
}
h4{
    text-align: center;
    font-size: 60px;
}
h6{
    text-align: center;
    font-size: 30px;
    color: #001A49;
}