﻿.talk-link {
    color: var(--primary3) !important;
}

.roundtable-content-container {
    width: 100%;
    gap: 30px;
}

.roundtable-content-text {
    width: 550px;
}

.roundtable-h1, .roundtable-h3 {
    opacity: 0;
    transform: translateX(-487px);
    transition: opacity 1s ease-in-out, transform 1s ease-in-out;
}

.roundtable-section-container h3, .roundtable-section-container h5 {
    color: var(--primary4);
}

.roundtable-section-container h1 {
    color: var(--primary1);
}

.roundtable-content-image-container {
    background-color: white;
    padding: 10px;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
    width: 596px;
    max-height: 1042px;
    position: relative;
}

.roundtable-content-image-container img {
    width: 100%;
}

.roundtable-content-partner {
    margin-top: 60px;
    margin-bottom: 60px;
    width: 100%;
}

.piece-container {
    width: 250px;
    height: fit-content;
}

.piece-container li {
    color: var(--color-p);
}

.piece {
    width: 200px;
    height: 200px;
    background-color: var(--primary2);
    border-radius: 20%;
    position: relative;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    text-align: center;
    margin: auto;
    margin-bottom: 20px;
}

.piece p {
    color: white;
    font-weight: 600;
    font-size: 20px;
}

.piece::before {
    content: '';
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background-color: var(--primary2);
    border-radius: 50%;
}

.piece::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -25px;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background-color: var(--primary2);
    border-radius: 50%;
}

.piece-model1 {
    background-color: var(--primary5);
    position: relative;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* "Buraco" superior */
.piece-model1::before {
    content: '';
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background-color: white; /* mesma cor do fundo */
    border-radius: 50%;
    z-index: 2;
}

/* "Buraco" lateral direita */
.piece-model1::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -25px;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background-color: white; /* mesma cor do fundo */
    border-radius: 50%;
    z-index: 2;
}

.piece-model2 {
    background-color: var(--primary4);
    position: relative;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* Aba superior para fora */
.piece-model2::before {
    content: '';
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background-color: var(--primary4);
    border-radius: 50%;
    z-index: 1;
}

/* Buraco lateral direita */
.piece-model2::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -25px;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background-color: white;
    border-radius: 50%;
    z-index: 2;
}

.piece-model3, .piece-model3::after {
    background-color: var(--primary9);
}

.piece-model3::before {
    background-color: white;
}

@media (max-width: 1220px) {
    .roundtable-content-container {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 768px) {
    .roundtable-content-image-container {
        width: 478px;
    }
}

@media (max-width: 600px) {
    .roundtable-content-image-container {
        width: 360px;
    }

    .roundtable-content-text {
        width: 100%;
        padding: 30px;
    }

    .piece p {
        font-size: 18px;
    }

    .piece {
        width: 190px;
        height: 190px;
        padding: 10px;
    }
}