
    /* FOOTER */
    .footer-pro {
        background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
        color: #fff;
        padding: 70px 20px 30px;
    }
    
    /* LOGO */
    .footer-pro .logo {
        font-weight: bold;
        margin-bottom: 15px;
    }
    
    /* TEXTO */
    .footer-pro p {
        color: #ccc;
        font-size: 14px;
    }
    
    /* TITULOS */
    .footer-pro h6 {
        margin-bottom: 15px;
        font-weight: 600;
    }
    
    /* LISTAS */
    .footer-pro ul {
        list-style: none;
        padding: 0;
    }
    
    .footer-pro ul li {
        margin-bottom: 8px;
    }
    
    .footer-pro ul li a {
        color: #ccc;
        text-decoration: none;
        transition: 0.3s;
    }
    
    .footer-pro ul li a:hover {
        color: #00c853;
        padding-left: 5px;
    }
    
    /* REDES */
    .social a {
        display: inline-block;
        margin-right: 10px;
        color: white;
        font-size: 18px;
        transition: 0.3s;
    }
    
    .social a:hover {
        color: #00c853;
        transform: scale(1.2);
    }
    
    /* BOTON */
    .btn-footer {
        display: inline-block;
        margin-top: 10px;
        padding: 10px 20px;
        border-radius: 30px;
        background: linear-gradient(135deg, #25D366, #1ebe5d);
        color: white;
        text-decoration: none;
        font-weight: bold;
        transition: 0.3s;
    }
    
    .btn-footer:hover {
        transform: scale(1.05);
    }
    
    /* LINEA */
    .footer-pro hr {
        border-color: rgba(255,255,255,0.1);
        margin: 30px 0;
    }
    
    /* COPYRIGHT */
    .footer-bottom {
        text-align: center;
        font-size: 13px;
        color: #aaa;
    }
    
    /* RESPONSIVE */
    @media (max-width: 768px) {
        .footer-pro {
            text-align: center;
        }
    }