@charset "utf-8";
/* CSS Document */

/* encabezado */

.bigimg {
    min-height: 100%;
    background-image: url(../img/BG1.jpg);
    background-position: center;
    background-size: cover;
    position: relative;
    display: block;
}

.animate-opacity {
    animation: opac 0.8s;
}

@keyframes opac {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.logocentrado {
    max-width: 25%;
    margin-left: auto;
    margin-right: auto;
}

.logo1 {
    max-width: 99%;
    height: auto;
}

.logo1-hide {
    display: nonde;
}

.display-middle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
}

.animate-top {
    position: relative;
    animation: animatetop 0.4s;
}

@keyframes animatetop {
    from {
        top: -300px;
        opacity: 0;
    }

    to {
        top: 0;
        opacity: 1;
    }
}

/* pagina */

/* footer */

footer {
    width: 100%;
    height: auto;
    margin-bottom: 0;
    border-top: 1px #000 solid;
    background-color: rgb(28, 28, 28);
    overflow: hidden;
    display: block;
    box-sizing: border-box;
}

.footerbtm {
    width: 100%;
    background-color: rgb(28, 28, 28);
    height: auto;
    display: block;
}

.footerwrap {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    padding-top: 20px;
    padding-bottom: 20px;
    display: block;
}

.logofoot {
    padding-top: 10px;
    padding-bottom: 10px;
    display: block;
}

.infofoot {
    width: fit-content;
    padding-top: 10px;
    padding-bottom: 25px;
    display: block;
}

.footredesoc {
    min-width: 10px;
    padding-bottom: 10px;
    padding-top: 12px;
    padding-right: 10px;
    display: inline;
}

.footinfo {
    font-family: Arial, Helvetica, sans-serif;
    padding-bottom: 5px;
    padding-top: 16px;
    padding-left: 10px;
    padding-right: 0px;
    font-size: .6rem;
    font-weight: lighter;
    color: #959595;
    display: inline;
}

.footinfo a {
    color: #959595;
    text-decoration: none;
}

.footinfo a:hover {
    color: #FFF;
    text-decoration: none;
}

/* Optimización de imágenes */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Mejorar renderizado */
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Scroll suave */
html {
    scroll-behavior: smooth;
}

/* Optimizar animaciones */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}