/* CSS Document */



/* Seção de Compartilhamento */
.share-section {
    text-align: center;
    margin: 40px 0;
    padding: 30px;
    background: linear-gradient(135deg, #f5f7ff 0%, #eef2ff 100%);
    border-radius: 12px;
    border: 1px solid #dce5ff;
}

.share-description {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 25px;
}

.share-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    color: white;
    min-width: 120px;
    border: none;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
}

.share-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.share-btn i {
    margin-right: 8px;
    font-size: 1.1rem;
}

/* Cores específicas para cada rede social */
.whatsapp { background-color: #25D366; }
.whatsapp:hover { background-color: #1da851; }

.facebook { background-color: #3b5998; }
.facebook:hover { background-color: #2d4373; }

.twitter { background-color: #1DA1F2; }
.twitter:hover { background-color: #0d8bd9; }

.linkedin { background-color: #0077B5; }
.linkedin:hover { background-color: #005582; }

.telegram { background-color: #0088cc; }
.telegram:hover { background-color: #006699; }

.email { background-color: #EA4335; }
.email:hover { background-color: #c23321; }

.pinterest { background-color: #BD081C; }
.pinterest:hover { background-color: #9c0616; }

.reddit { background-color: #FF4500; }
.reddit:hover { background-color: #cc3700; }

.copy-link { 
    background-color: #6c757d; 
    color: white;
}
.copy-link:hover { 
    background-color: #545b62; 
}

.copy-message {
    background-color: #d4edda;
    color: #155724;
    padding: 10px 15px;
    border-radius: 6px;
    margin-top: 15px;
    display: inline-flex;
    align-items: center;
    border: 1px solid #c3e6cb;
}

.copy-message i {
    margin-right: 8px;
    font-size: 1.2rem;
}

.share-note {
    margin-top: 25px;
    padding: 15px;
    background-color: rgba(26, 58, 143, 0.05);
    border-radius: 8px;
    border-left: 4px solid #1a3a8f;
}

.share-note p {
    color: #1a3a8f;
    font-size: 0.95rem;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.share-note i {
    margin-right: 10px;
    font-size: 1.1rem;
}

/* Responsividade para botões de compartilhamento */
@media (max-width: 768px) {
    .share-buttons {
        gap: 10px;
    }
    
    .share-btn {
        min-width: 100px;
        padding: 10px 15px;
        font-size: 0.85rem;
    }
    
    .share-btn i {
        margin-right: 5px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .share-section {
        padding: 20px 15px;
    }
    
    .share-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .share-btn {
        width: 100%;
        max-width: 250px;
        margin-bottom: 8px;
    }
}

