:root{
    --verde: #3B6B13;
    --verde-oscuro: #2a4e0d;
    --negro: #000000;
    --rojo: #9C181A;
    --rojo-oscuro: #741112;
}
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html, body{
    overflow-x: hidden;
    width: 100%;
}
body{
    font-family: Poppins, Arial, sans-serif;
}
.backroundGeneral{
    background-color: #f3f7f4;
}
.backroundFooter{
    background-color: var(--negro);
}
.infoFooter{
    font-size: 15px;
    color: white;
    text-align: center;
    margin: 20px;
}
.hrEntrada{
    width: 60%;
    height: 1px;
    margin: 0 auto;
    background-color: var(--verde);
}
.hrNormal{
    width: 100%;
    background-color: var(--rojo);
    height: 2px;
}

.social-icons{
    margin-bottom: 15px;
    text-align: center;
}
.icon{
    display: inline-block;
    margin: 0 25px;
    font-size: 25px;
    color: white;
    transition: transform 0.3s, color 0.3s;
}
.icon:hover{
    transform: scale(1.1,1.1);
}
.x:hover{
    color: var(--rojo);
}
.instagram:hover{
    color: rgb(198, 5, 117);
}
.facebook:hover{
    color: #1877F2;
}

/*Aviso superior*/
.info_menuPrincipal{
    text-align: center;
    padding: 15px;
    background-color: var(--negro);
    color: white;
    font-size: 17px;
}
.info_menuPrincipal p a{
    text-decoration: underline;
    color: var(--rojo);
    font-weight: bold;
}
/*-------------*/

.contact-section {
    text-align: center;
    margin: 20px 0;
}

.contact-title {
    font-size: 16px;
    color: white;
    margin-bottom: 10px;
}

.contact-info {
    font-size: 14px;
    color: #dddddd;
    margin: 0 20px;
    line-height: 1.4;
}

.contact-email {
    color: var(--verde);
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

.contact-email:hover {
    color: #4f8e1d;
    text-decoration: underline;
}
