/*
Theme Name: Make2 - Tema
Theme URI: https://make2.com.br/
Description: Tema desenvolvido com exclusividade para o projeto Flixx por Ag&ecirc;ncia Make2
Author: Cristian John
Author URI: https://make2.com.br/
Version: 1.2.14
*/

/* ============================================
   Share Modal Styles
   ============================================ */

#shareModal .modal-dialog {
    max-width: 520px;
}

#shareModal .modal-content {
    border: none;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

#shareModal .modal-body {
    padding: 24px;
}

/* Share Buttons Grid */
.share-buttons-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    padding: 10px 0;
}

.share-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    text-decoration: none !important;
    transition: all 0.3s ease;
    color: #fff !important;
    border: none;
    cursor: pointer;
    opacity: 0.85;
}

.share-btn:hover {
    opacity: 1;
    transform: scale(1.15);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.share-btn i {
    font-size: 24px;
}

.share-btn span {
    display: none;
}

/* Share Button Colors - Official Brand Colors */

.share-facebook {
    background-color: #1877f2;
}

.share-twitter {
    background-color: #1da1f2;
}

.share-linkedin {
    background-color: #0a66c2;
}

.share-pinterest {
    background-color: #e60023;
}

.share-email {
    background-color: #ea4335;
}

.share-messenger {
    background-color: #00b2ff;
}

.share-whatsapp {
    background-color: #25d366;
}

.share-telegram {
    background-color: #0088cc;
}

.share-copy {
    background-color: #6c757d;
}

/* Responsive Adjustments */

@media (max-width: 767px) {
    #shareModal .modal-dialog {
        max-width: 100%;
        margin: 0;
    }

    #shareModal .modal-content {
        border-radius: 0;
        height: 100vh;
        max-height: 100vh;
    }

    #shareModal .modal-body {
        padding: 20px;
    }

    .share-buttons-grid {
        gap: 12px;
    }

    .share-btn {
        width: 50px;
        height: 50px;
    }

    .share-btn i {
        font-size: 22px;
    }
}

@media (max-width: 479px) {
    .share-buttons-grid {
        gap: 10px;
    }

    .share-btn {
        width: 48px;
        height: 48px;
    }

    .share-btn i {
        font-size: 20px;
    }
}