/* Redes Sociais - Layout moderno Footer */

.social-media-section {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    margin-top: 20px;
}

.social-title-wrapper h4 {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    color: #e1e1e1 !important;
    font-size: 20px !important;
    font-weight: 400 !important;
    letter-spacing: 2px;
    margin: 0;
    padding: 0;
}

.social-icons-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.social-row {
    display: flex;
    gap: 15px;
}


/* Segunda linha (Pinterest e TikTok) deslocada para a direita */

.social-row:nth-child(2) {
    margin-left: 40px;
}

.social-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in-out;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.social-circle i {
    font-size: 32px;
    color: #242424;
    transition: all 0.3s ease-in-out;
}


/* Ícone SVG do TikTok */

.social-circle svg {
    width: 28px;
    height: 28px;
    fill: #242424;
    transition: all 0.3s ease-in-out;
}

.social-circle:hover {
    background: #A90506;
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(169, 5, 6, 0.3);
}

.social-circle:hover i,
.social-circle:hover svg {
    color: #ffffff;
    fill: #ffffff;
}

.social-circle:hover i {
    color: #ffffff;
}

.brand-logo-large {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
}

.logo-r {
    max-width: 100px;
    height: auto;
    object-fit: contain;
}


/* Responsive: Mobile */

@media (max-width: 767px) {
    .social-media-section {
        flex-direction: column;
        align-items: center;
    }
    .social-title-wrapper h4 {
        writing-mode: horizontal-tb;
        transform: none;
        text-align: center;
        margin-bottom: 15px;
    }
    .social-circle {
        width: 60px;
        height: 60px;
    }
    .social-circle i {
        font-size: 26px;
    }
    .logo-r {
        max-width: 80px;
    }
}


}