/* 
   ==================================================================================
   KOPPERT TEMPLATE STYLES - V11.0 FINAL
   Estilos específicos del template separados del main.css
   ==================================================================================
*/

/* === PRELOADER === */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #fff;
    z-index: 99999;
}

#status {
    width: 200px;
    height: 200px;
    position: absolute;
    left: 50%;
    top: 50%;
    background-image: url(../../loading.gif);
    background-repeat: no-repeat;
    background-position: center;
    margin: -100px 0 0 -100px;
}

/* === CONTACT LIST === */
.contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact li {
    padding: 0.5em 0;
    color: rgba(246, 242, 230, 0.85);
}

.contact li a {
    color: #27c25a;
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact li a:hover {
    color: #fff;
}

/* === FOOTER === */
#footer {
    margin-top: 3em;
    padding-top: 2em;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

#footer .copyright {
    color: rgba(246, 242, 230, 0.5);
    font-size: 0.85em;
    line-height: 1.6;
}

#footer .copyright a {
    color: #27c25a;
    text-decoration: none;
}

#footer .copyright a:hover {
    color: #fff;
}

/* === ICONS === */
.icons {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 1em;
}

.icons li {
    display: inline-block;
}

.icons li a {
    display: inline-block;
    width: 2.5em;
    height: 2.5em;
    line-height: 2.5em;
    text-align: center;
    border-radius: 50%;
    background: rgba(39, 194, 90, 0.1);
    color: #27c25a;
    transition: all 0.2s ease;
}

.icons li a:hover {
    background: #27c25a;
    color: #fff;
    transform: scale(1.1);
}