/* Footer general */

.footer-dark {
    background: #111;
    padding: 40px 20px;
    color: white;
    font-family: 'Segoe UI', sans-serif;
}

.footer-dark h4 {
    margin-bottom: 10px;
    font-weight: 700;
    font-size: 1.5em;
    color: #f0a500;
}

.footer-dark p {
    font-size: 1em;
    max-width: 400px;
    margin: 0 auto;
    line-height: 1.6;
    color: #ccc;
}


/* Redes sociales en footer */

.footer-dark .social-buttons ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
}

.footer-dark .social-buttons a i {
    font-size: 1.5em;
    color: white;
    transition: color 0.3s, transform 0.3s;
}

.footer-dark .social-buttons a:hover i {
    color: #f0a500;
    transform: scale(1.2);
}


/* Contador de visitas */

.contador-footer {
    margin-top: 20px;
    font-size: 1em;
    color: white;
    font-weight: 500;
}


/* Footer inferior */

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 15px;
    margin-top: 30px;
    font-size: 0.9em;
    color: #aaa;
}


/* Scroll to top button */

.scrolltotop {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: #f0a500;
    color: #111;
    padding: 10px 12px;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    transition: background 0.3s, transform 0.3s;
    z-index: 99;
}

.scrolltotop:hover {
    background: white;
    transform: scale(1.1);
}


/* Responsive */

@media (max-width: 768px) {
    .footer-dark p {
        max-width: 90%;
    }
    .footer-dark .social-buttons ul {
        flex-wrap: wrap;
    }
}