.comparative-table-block {

    .comparative-table-title {
        text-align: center;
        font-size: 45px;
    }

    .comparative-table-container {
        display: flex;
        flex-direction: column;
        gap: 10px;
        width: 100%;
        margin-top: 35px;
    }

    table {
        border-collapse: collapse;
    }

    table tr td {
        padding-top: 8px;
        padding-bottom: 8px;
        font-size: 12px;
        text-align: center;
        border-right: 1px solid #000;
    }

    table tr td:first-child {
        padding-left: 35px;
        font-size: 15px;
        text-align: left;
    }

    table tr:first-child td {
        font-weight: bold;
        font-size: 15px;
    }

    table tr:nth-child(even) {
        background-color: #E6F6EB;
    }

    .comparative-tabs-container {
        display: none;
        flex-direction: column;
        max-width: 500px;
        margin: auto;
        margin-top: 35px;
    }

    .comparative-tab-element {
        padding-bottom: 10px;
        padding-top: 10px;
    }

    .comparative-tab-container {
        border-bottom: 1px solid #E6F6EB;
    }

    .comparative-tabs-container .comparative-tab-container:first-child {
        border-top: 1px solid #E6F6EB;
    }

    .comparative-tab-container-header {
        text-align: center;
        font-weight: bold;
        cursor: pointer;
        display: flex;
        justify-content: center;
        align-items: center;
        padding-left: 10px;
        padding-right: 10px;
    }

    .comparative-tab-container-header-icon {
        width: 12px;
        height: 12px;
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
        background-image: url('/wp-content/uploads/2025/03/icon-toggle-down-small.svg');
        margin-left: 10px;
    }

    .comparative-tab-container.active .comparative-tab-container-header-icon {
        width: 17px;
        height: 17px;
        background-image: url('/wp-content/uploads/2025/03/icon-toggle-close-small.svg');
    }

    .comparative-tab-container-content {
        display: none;
    }

    .comparative-tab-container.active .comparative-tab-container-content {
        display: block;
    }

    .comparative-tab-container-item {
        display: flex;
        justify-content: space-between;
        padding-left: 30px;
        padding-right: 30px;
    }

    .comparative-tab-container-content .comparative-tab-container-item:nth-child(even) {
        background-color: #E6F6EB;
    }

    .comparative-table-icon {
        display: block;
        width: 40px;
        height: 40px;
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
        margin: auto;
    }

    .comparative-tab-container-item-icon.comparative-table-icon {
        margin: inherit;
    }

    .comparative-table-icon.hidden {
        display: none;
    }

    .comparative-table-icon.item-check {
        background-image: url('/wp-content/uploads/2025/03/icon-blue-check.svg');
        width: 20px;
        height: 18px;
    }

    .comparative-table-icon.item-uncheck {
        background-image: url('/wp-content/uploads/2025/03/icon-red-x.svg');
        width: 23px;
        height: 23px;
    }

    .comparative-footer {
        font-size: 14px;
        margin-top: 20px;
        font-style: italic;
    }

    .titulo-comparativa{
        font-size: 38px; font-weight: 600; line-height: 45px; color: #009973;
    }

    @media (max-width: 767px) {

        .titulo-comparativa{
            font-size: 30px; font-weight: 600; line-height: 45px; color: #009973;
        }
        .comparative-table-container {
            display: none;
        }

        .comparative-tabs-container {
            display: flex;
        }

        .comparative-footer {
            max-width: 500px;
            margin-left: auto;
            margin-right: auto;
        }
    }
}


