 :root {
     --brand-blue: #004A86;
     --light-blue: #4276BA;
     --muted: #6b7280;
     --card-border: rgba(15, 23, 42, .10);
     --shadow: none;
     --radius: 24px;
 }

 .no-mobile {
    display: inline;
 }

 .only-mobile {
    display: none;
 }

 body {
     color: #364153;
     background: #fff;
     font-family: "Bricolage Grotesque", sans-serif;
     font-optical-sizing: auto;
     font-size: 14px;
 }

 .mb-100 {
     margin-bottom: 100px
 }

 .mt-65 {
     margin-top: 65px
 }

 .pt-100 {
     padding-top: 100px
 }

 .pb-100 {
     padding-bottom: 100px
 }

 .pt-50 {
     padding-top: 50px
 }

 .pb-50 {
     padding-bottom: 50px
 }

 .pl-30 {
     padding-left: 30px
 }

 .pr-30 {
     padding-right: 30px
 }

 .brand-color {
     color: var(--brand-blue, #004A86);
 }

 h1.show404 {
     font-size: 250px
 }

 h1.page-title {
     color: #282929;
     font-size: 36px;
     font-weight: 700;
     line-height: 40px;
 }

 .page-subtitle {
     color: #4A5565;
     font-size: 16px;
     font-weight: 400;
     line-height: 24px;
 }

 h3.section-title {
     color: #282929;
     font-size: 20px;
     font-weight: 600;
     line-height: 28px;
 }

 p.section-subtitle {
     color: #4A5565;
     font-size: 14px;
     font-weight: 400;
     line-height: 20px;
 }

 .btn.btn-primary {
     background-color: var(--brand-blue, #004A86);
     border: 1px solid var(--brand-blue, #004A86);
     font-size: 14px;
     font-weight: 300;
     line-height: 20px;
 }

 .btn.btn-primary:hover {
     color: var(--brand-blue, #004A86);
     background-color: #FFF;
     border: 1px solid var(--brand-blue, #004A86);
     font-size: 14px;
     font-weight: 300;
     line-height: 20px;
 }

 .btn.btn-primary:hover svg path {
     fill: var(--brand-blue, #004A86);
 }

 /* NAVBAR */
 .site-navbar .nav-link {
     font-size: 14px;
     font-weight: 500;
     line-height: 20px;
     color: var(--brand-blue, #004A86);
     letter-spacing: 1px;
 }

 .site-navbar .nav-link.active {
     color: var(--brand-blue, #004A86);
     font-size: 14px;
     font-weight: 800;
     line-height: 20px;
 }

 .site-navbar .nav-item.separator {
     border-left: 1px solid #E5E7EB;
     padding-left: 20px;
 }

 .site-navbar .dropdown-toggle::after {
     display: none !important;
 }

 .site-navbar .dropdown-toggle i {
     transition: transform 0.3s ease;
 }

 .site-navbar .dropdown-toggle[aria-expanded="true"] i {
     transform: rotate(180deg);
 }


 /* remove a seta default do Bootstrap */
 .dropdown-toggle::after {
     display: none !important;
 }

 /* menu tipo "card" */
 .dropdown-menu {
     min-width: 250px;
     border: 0;
     border-radius: 16px;
     box-shadow: 0 14px 35px rgba(0, 0, 0, .18);
     overflow: hidden;
 }

 .dropdown-menu.profile {
     min-width: 290px;
 }

 .dropdown-item-profile {
     display: flex;
     align-items: center;
     gap: 16px;
     padding: 18px 18px;
     white-space: normal;
 }

 /* hover suave (podes ajustar) */
 .dropdown-item-profile:hover {
     background: rgba(13, 110, 253, .06);
 }

 .dropdown-item-profile .text {
     display: flex;
     flex-direction: column;
     line-height: 1.1;
 }

 .dropdown-item-profile .title {
     color: var(--brand-blue, #004A86);
     font-size: 14px;
     font-weight: 300;
     line-height: 20px;
 }

 .dropdown-item-profile .subtitle {
     margin-top: 6px;
     color: #6A7282;
     font-size: 12px;
     line-height: 16px;
 }


 .navbar-brand img {
     height: 38px
 }

 .navbar-toggler {
     border: none !important;
     margin-top: -10px;
 }

 .custom-close {
     background: none !important;
     opacity: 1;
     padding: 0;
     border: 0;
     box-shadow: none;
     width: auto;
     height: auto;
 }

 .custom-close:focus {
     box-shadow: none;
 }

 .custom-close svg {
     display: block;
     color: #282929;
 }

 .offcanvas-menu {
     width: 100vw !important;
 }

 .mobile-nav {
     padding-top: 50px;

 }

 .mobile-link,
 .hello {
     display: block;
     padding: 10px 30px;
     margin: 2px 0;
     text-decoration: none;
     font-weight: 600;
     border-radius: 999px;
     color: var(--brand-blue, #004A86);
     font-size: 20px;
     font-weight: 300;
     line-height: 24px;
 }

 .mobile-link-active,
 .mobile-link:hover {
     background: var(--brand-blue, #004A86);
     color: #fff !important;
 }

 .mobile-subitem {
     display: flex;
     gap: 12px;
     padding: 10px 40px;
     text-decoration: none;
     color: inherit;
     border-radius: 12px;

 }

 .mobile-subitem:hover {
     background: rgba(0, 74, 134, .06);
 }

 .subicon {
     display: grid;
     place-items: center;
     color: var(--brand-blue, #004A86);
     width: 30px;
     height: 30px;
     flex-shrink: 0;
     aspect-ratio: 1/1;
 }

 .subtext {
     display: flex;
     flex-direction: column;
     line-height: 1.1;
 }

 .subtext .title {
     color: var(--brand-blue, #004A86);
     font-size: 16px;
     font-weight: 400;
     line-height: 20px;
 }

 .subtext .subtitle {
     margin-top: 4px;
     color: #6c757d;
     font-size: 13px;
     font-weight: 400;
     line-height: 16px;
 }

 /* HERO (só imagem) */
 .hero-simple {
     min-height: 600px;
     background: url("/assets/img/hero.jpg") center/cover no-repeat;
     border-bottom-left-radius: 18px;
     border-bottom-right-radius: 18px;
     overflow: hidden;
 }

 .hero-spacer {
     min-height: 360px;
 }

 /* SECÇÕES */
 .eyebrow {
     letter-spacing: .12em;
     font-weight: 700;
     color: #95a100;
     margin-bottom: .75rem;
 }

 .lead-text {
     font-size: 16px;
     line-height: 26px;
 }

 .goals.btn-primary,
 .goals.btn-primary disabled {
     background-color: var(--brand-blue, #004A86);
 }

 .goals.btn-primary.btn:hover {
     background-color: #FFF;
     color: var(--brand-blue, #004A86);
 }

 /* BOTÕES setas */
 .btn-circle {
     width: 40px;
     height: 40px;
     border-radius: 999px;
     display: inline-flex;
     align-items: center;
     justify-content: center;
     padding: 0;
     line-height: 1;
     background-color: var(--brand-blue, #004A86);
 }

 /* SLIDER (scroll-snap) */
 .goals-slider-wrap {
     position: relative;
 }

 .goals-slider {
     display: grid;
     grid-auto-flow: column;
     grid-auto-columns: 100%;
     gap: 25px;
     overflow-x: auto;
     padding: 6px 0 10px 0;
     scroll-snap-type: x mandatory;
     scroll-behavior: smooth;
     -webkit-overflow-scrolling: touch;
     scrollbar-width: none;
 }

 .goals-slider::-webkit-scrollbar {
     display: none;
 }

 .goal-item {
     min-height: 350px;
     padding: 0px 30px 0 0;
     scroll-snap-align: start;
     scroll-snap-stop: always;
 }

 /* Cards objetivos */
 .obj-card {
     display: flex;
     flex-direction: column;
     height: 100%;
     border: 1px solid var(--card-border);
     border-radius: var(--radius);
     background: #fff;
     padding: 18px 18px 22px 18px;
     box-shadow: var(--shadow);
 }

 .obj-nr {
     margin-bottom: 14px;
     color: var(--light-blue, #4276BA);
     font-size: 64px;
     font-weight: 700;
     line-height: 64px;
 }

 .obj-text {
     font-size: 14px;
     font-weight: 400;
     line-height: 22.75px;
     margin-top: auto;
 }

 /* CTA */
 .cta {
     height: 500px;
     color: #fff;
     display: flex;
     align-items: center;
     background: url("/assets/img/cta_bg.jpg") center/cover no-repeat;
 }

 .cta-title {
     font-weight: 800;
     letter-spacing: -0.02em;
     font-size: clamp(60px, 3vw, 60px);
 }

 .cta-sub {
     color: rgba(255, 255, 255, .82);
     max-width: 52ch;
     font-size: 20px;
 }

 .btn-pill {
     border-radius: 999px;
     padding: .85rem 1.15rem;
     font-weight: 600;
 }

 /**** DICIONARIO ******************************************************************************************************/
 .search-wrap {
     position: relative;
     margin-bottom: 35px;
 }

 .search-wrap i {
     position: absolute;
     left: 14px;
     top: 50%;
     transform: translateY(-50%);
     color: #9aa3af;
 }

 .search-input {
     border-radius: 999px;
     padding-left: 40px;
     border: 1px solid #e5e7eb;
     height: 44px;
     color: #6B7280;
     font-size: 16px;
     font-weight: 400;
     line-height: normal;
 }

 .search-input:focus {
     box-shadow: 0 0 0 .2rem rgba(0, 74, 134, .12);
     border-color: rgba(0, 74, 134, .25);
 }

 .pill-tabs {
     display: flex;
     width: 100%;
     background: #F9FAFB;
     border-radius: 999px;
     padding: 6px;
     gap: 6px;
     margin-bottom: 48px;
 }

 .pill-tab {
     flex: 1;
     border: 0;
     background: transparent;
     padding: 8px 0;
     border-radius: 999px;
     text-align: center;
     transition: all .2s ease;
     color: var(--brand-blue, #004A86);
     text-align: center;
     font-size: 14px;
     font-weight: 300;
     line-height: 20px;
     height: 49px;
     text-decoration: none;
 }

 .pill-tab.active {
     background: #fff;
     color: var(--brand-blue, #004A86);
     text-align: center;
     font-size: 14px;
     font-weight: 800;
     line-height: 20px;
 }

 .count {
     color: #4A5565;
     font-size: 14px;
     font-weight: 400;
     line-height: 20px;
     margin-bottom: 17px;
 }

 /**** TERMOS DICIONARIO ********************************************************************************************/
 /* “card” único que envolve toda a lista */
 .terms-shell {
     border: 1px solid #eef2f7;
     border-radius: 14px;
     background: #fff;
     overflow: hidden;
 }

 .terms-accordion.accordion-flush .accordion-item {
     border: 0;
     background: transparent;
     padding: 0;
 }

 /* separador */
 .terms-accordion .accordion-item+.accordion-item {
     border-top: 1px solid #f1f5f9;
 }

 .terms-accordion .accordion-button {
     padding: 28px;
     background: transparent;
     box-shadow: none;
     width: 100%;
 }

 .terms-accordion .accordion-item:hover {
     background: rgba(2, 132, 199, .03);
 }

 .terms-accordion .accordion-button:not(.collapsed) {
     background: transparent;
     box-shadow: none;
 }

 .terms-accordion .accordion-button:focus {
     box-shadow: none;
 }

 .terms-accordion .accordion-button::after {
     opacity: .65;
     transform: scale(.9);
 }

 .term-left {
     display: flex;
     align-items: center;
     gap: 12px;
     width: 100%;
 }

 .term-icon {
     width: 40px;
     height: 40px;
     border-radius: 10px;
     display: grid;
     place-items: center;
 }

 .term-icon-social {
     background: rgba(59, 130, 246, .10);
     color: #2563eb;
 }

 .term-icon-ambiental {
     background: rgba(34, 197, 94, .12);
     color: #16a34a;
 }

 .term-icon-governanca {
     background: rgba(245, 158, 11, .14);
     color: #d97706;
 }

 .term-text {
     display: flex;
     flex-direction: column;
     line-height: 1.1;
 }

 .term-title {
     font-size: 14px;
     color: #282929;
     font-size: 18px;
     font-weight: 500;
     line-height: 27px;
 }

 .term-subtitle {
     margin-top: 2px;
     color: #6A7282;
     font-size: 12px;
     font-weight: 500;
     line-height: 16px;
 }

 .term-body {
     padding: 0 16px 16px 68px;
     color: #334155;
     font-size: 14px;
 }

 /**** GESTAO DE CONTA  ***********************************************************************************************/
 #profile .pill-tab {
     padding: 12px 0;
     display: flow;
     align-items: center;
     gap: 8px;
 }

 .card.account-card {
     border: 1px solid var(--card-border);
     border-radius: var(--radius);
 }


 /**** TABELAS  ***********************************************************************************************/
 .table-card {
     background: #fff;
     border: 1px solid #e9eef5;
     border-radius: 24px;
     overflow: hidden;
 }

 .table-card__head {
     display: grid;
     grid-template-columns: 2fr 1.2fr 1.2fr 1.6fr 1.6fr;
     padding: 18px 22px;
     border-bottom: 1px solid #E5E7EB;
     background: #F9FAFB;
     font-weight: 600;
     color: #0b4f8c;
 }

 .table-card__row {
     display: grid;
     grid-template-columns: 2fr 1.2fr 1.2fr 1.6fr 1.6fr;
     padding: 22px;
     border-bottom: 1px solid #eef2f7;
     align-items: center;

     font-size: 16px;
     font-weight: 400;
     line-height: 24px;
 }

 #quiz .table-card__head {
     grid-template-columns: 2fr 1.2fr 1.2fr 1.6fr 1.6fr 1.6fr 1.6fr;
 }

 #quiz .table-card__row {
     grid-template-columns: 2fr 1.2fr 1.2fr 1.6fr 1.6fr 1.6fr 1.6fr;
 }



 .table-card__row:last-child {
     border-bottom: 0;
 }

 .tc-title {
     color: var(--primary-base, #004A86);
     font-size: 14px;
     font-weight: 300;
     line-height: 20px;
 }

 .tc-actions {
     text-align: right;
 }

 .tc-action {
     display: inline-flex;
     align-items: center;
     gap: 10px;
     text-decoration: none;
     color: #0b4f8c;
     font-weight: 500;
 }

 .tc-action i {
     font-size: 16px;
 }

 .tc-action:hover {
     opacity: .85;
 }

 .tc-action--danger {
     color: #e11d48;
 }

 .tc-status-badge {
     display: inline-flex;
     align-items: center;
     padding: 8px 14px;
     border-radius: 999px;
     font-weight: 600;
     background: transparent;
 }

 .tc-status-badge.is-done {
     color: #84cc16;
 }

 .tc-status-badge.is-progress {
     color: #f59e0b;
 }

 .tc-col a.text-link {
     color: var(--primary-base, #004A86);
     text-align: center;
     font-size: 14px;
     font-weight: 300;
     line-height: 20px;
     text-decoration: none;
 }


 .status-finish {
     color: #97C21E;
     font-size: 16px;
     font-weight: 500;
     line-height: 24px;
 }

 .status-open {
     color: var(--amarelo, #FECD06);
     font-size: 16px;
     font-weight: 500;
     line-height: 24px;
 }

 .alert-info {
     border-radius: 10px;
     border: 1px solid #DBEAFE;
     background: #EFF6FF;
     color: #4276BA;
     font-size: 14px;
     font-weight: 400;
     line-height: 20px;
 }

 /**** FOOTER **********************************************************************************************************/
 footer {
     color: #6B7280;
     font-size: 12px;
     font-weight: 400;
     line-height: 16px;
 }

 footer .separator {
     border-right: 1px #D7D7D7 solid;
 }


 /* REPORT */
 .report {
     --level-color: #004A86;
 }

 .report.level-1 {
     --level-color: #004A86;
 }

 .report.level-2 {
     --level-color: #FECD06;
 }

 .report.level-3 {
     --level-color: #4276BA;
 }

 .report.level-4 {
     --level-color: #97C21E;
 }

 .logo {
    display: none;
 }

 .container.report {
     width: 900px;
     margin: 0 auto;
 }

 .score {
     margin-top: 85px;
 }

 .score-circle {
     width: 285px;
     height: 285px;
     border: 8px solid #004A86;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
 }

 .score-circle-inner {
     max-width: 150px;
 }

 .score-circle-label {
     color: #004A86;
     font-size: 12px;
     line-height: 16px;
     margin-bottom: 12px;
 }

 .score-circle-value {
     color: #004A86;
     font-size: 62px;
     font-weight: 700;
     line-height: 1;
     margin-bottom: 8px;
 }

 .score-circle-subtitle {
     color: #004A86;
     font-size: 16px;
     font-weight: 800;
     line-height: 24px;
 }

 .level-icon svg {
     fill: red;
 }

 .top-subtitle {
     color: #6A7282;
     font-size: 14px;
     font-weight: 400;
     line-height: 20px;
     letter-spacing: 0.35px;
     text-transform: uppercase;
 }

 .top-title {
     color: #004A86;
     font-size: 36px;
     font-weight: 700;
     line-height: 40px;
 }

 .top-resume {
     color: #364153;
     font-size: 16px;
     font-weight: 400;
     line-height: 26px;
     border-radius: 14px;
     background: #F9FAFB;
     display: flex;
     width: 548px;
     height: 158px;
     padding: 24px 24px 0 28px;
     flex-direction: column;
     align-items: flex-start;
 }

 .maturity-progress {
     width: 100%;
     max-width: 548px;

 }

 .maturity-progress-track {
     display: grid;
     grid-template-columns: repeat(4, 1fr);
     align-items: center;
     margin-bottom: 8px;
     border-top-left-radius: 999px;
     border-bottom-left-radius: 999px;
 }

 .maturity-segment {
     height: 14px;
     background: #E5E7EB;
     border-radius: 0;
 }

 .maturity-segment:first-child {
     border-top-left-radius: 999px;
     border-bottom-left-radius: 999px;
 }

 .maturity-segment:last-child {
     border-top-right-radius: 999px;
     border-bottom-right-radius: 999px;
 }

 .maturity-segment.is-active {
     background: #004A86;

 }

 .maturity-segment.is-last-active {
     background: #004A86;
     border-top-right-radius: 999px;
     border-bottom-right-radius: 999px;
 }

 .maturity-progress-labels {
     display: grid;
     grid-template-columns: repeat(4, 1fr);
     gap: 8px;
 }

 .maturity-progress-labels span {
     font-size: 14px;
     line-height: 1.2;
     color: #004A86;
     text-align: center;
 }

 .maturity-card {
     border: 1px solid #E5E7EB;
     border-radius: 18px;
     padding: 22px 24px;
     background: #fff;
 }

 .maturity-card .title {
     color: #282929;
     font-size: 18px;
     font-weight: 800;
     line-height: 28px;
 }

 .maturity-card .values {
     color: #6A7282;
     font-size: 14px;
     font-weight: 500;
     line-height: 20px;
 }

 .maturity-card .badge {
     color: #FFF;
     font-size: 14px;
     font-weight: 500 !important;
     line-height: 20px;
     background: var(--level-color);
 }

 .maturity-card-active {
     border: 8px solid var(--level-color);
 }

 .maturity-card-active .title {
     color: var(--level-color);
 }

 .position-card {
     border: 1px solid #D1D5DC;
     border-radius: 18px;
     padding: 20px 22px;
     background: #F9FAFB;
     min-height: 112px;
 }

 .position-card-green {
     border-color: #97C21E;
     background: rgba(151, 194, 30, 0.05);
 }

 .position-card-blue {
     border-color: #4276BA;
     background: rgba(66, 118, 186, 0.05);
 }

 .position-card-label {
     color: #6B7280;
     font-size: 13px;
     margin-bottom: 12px;
 }

 .position-card-value {
     font-size: 38px;
     font-weight: 700;
     line-height: 1;
     color: #6A7282;
     margin-top: 32px;
 }

 .position-card-green .position-card-value {
     color: #97C21E;
 }

 .position-card-blue .position-card-value {
     color: #4276BA;
 }

 .chart-card {
     border: 1px solid #E5E7EB;
     border-radius: 22px;
     background: #fff;
     padding: 26px;
     min-height: 420px;
 }

 .legend-item {
     display: inline-flex;
     align-items: center;
     gap: 8px;
     color: #6B7280;
 }

 .legend-color {
     width: 12px;
     height: 12px;
     border-radius: 3px;
     display: inline-block;
 }

 .legend-min {
     background: #AEB7C2;
 }

 .legend-company {
     background: #97C21E;
 }

 .legend-max {
     background: #4276BA;
 }

 .next-steps-card {
     border: 1px solid #004A86;
     border-radius: 18px;
     background: rgba(0, 74, 134, 0.05);
     padding: 32px;
     color: #364153;
     font-size: 16px;
     font-weight: 400;
     line-height: 26px;
 }

 .chart-card {
     border: 1px solid #E5E7EB;
     border-radius: 22px;
     padding: 28px;
     min-height: 420px;
 }

 .chart-card canvas {
     max-width: 420px;
 }

 /**** ALERTAS  ***********************************************************************************************/
 .alert {
    border-radius: 30px !important;
    padding: 17px 25px !important;
    font-size: 14px !important;
    font-weight: 400 !important;
    line-height: 20px !important;
 }
.alert.alert-success{
    border: 1px solid #97C21E;
    background: rgba(151, 194, 30, 0.10);
    color: #97C21E;
}

.alert.alert-danger {
    background: #FFE2E2;
}



/**** SWEET ALERT COMPANIES  ********************************************************************************/

.company-delete-popup {
    width: 600px !important;
    max-width: calc(100vw - 32px) !important;
    border-radius: 28px !important;
    padding: 36px 5px 30px !important;
}

.company-delete-close {
    color: #6b7280 !important;
    font-size: 34px !important;
    top: 18px !important;
    right: 20px !important;
}

.company-delete-html {
    margin: 0 !important;
}

.company-delete-modal {
    text-align: center;
}

.company-delete-icon-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: 24px;
}

.company-delete-icon-circle {
    width: 152px;
    height: 152px;
    border-radius: 999px;
    background: #fde2e2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.company-delete-title {
    color: #282929;
    font-size: 30px;
    font-weight: 700;
    line-height: 32px; /* 106.667% */
    margin-top:25px;
}

.company-delete-subtitle {
    margin: 18px 0 30px;
    color: #4A5565;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px; /* 150% */
}

.company-delete-card {
    text-align: left;
    border: 1px solid #e5e7eb;
    border-radius: 24px;
    padding: 28px 30px;
    background: #fafafa;
    margin-bottom: 30px;
}

.company-delete-card-label {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 4px;
}

.company-delete-card-name {
    color: #282929;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px; /* 150% */
    margin-bottom: 28px;
}

.company-delete-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    margin-bottom: 24px;
}

.company-delete-card-value {
    color: #364153;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px; /* 142.857% */
}

.company-delete-warning {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    border-radius: 10px;
    border: 1px solid #FEE685;
    background: #FFFBEB;
    padding: 18px 20px;
}

.company-delete-warning-icon {
    width: 20px;
    height: 20px;
    border: 2px solid #2f2f2f;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    color: #2f2f2f;
    flex-shrink: 0;
    margin-top: 1px;
}

.company-delete-warning-text {
    color: #973C00;
    font-size: 12px;
    font-weight: 400;
    line-height: 16px; /* 133.333% */
}

.company-delete-description {
    max-width: 780px;
    margin: 0 auto 26px;
    color: #475569;
    font-size: 14px;
    line-height: 1.5;
}

.company-delete-actions {
    width: 100%;
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin: 0 !important;
}

.company-delete-cancel,
.company-delete-confirm {
    height: 74px;
    border-radius: 999px !important;
    padding: 0 26px !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    border: none;
    box-shadow: none !important;
    font-size: 14px !important;
    font-weight: 300 !important;
    line-height: 20px !important;
}

.company-delete-cancel {
    background: #ffffff !important;
    color: #2f2f2f !important;
    border: 1px solid #d7dce3 !important;
}

.company-delete-confirm {
    background: #ff000f !important;
    color: #ffffff !important;
}

.company-delete-confirm .btn-icon {
    display: inline-flex;
    align-items: center;
    margin-right: 10px;
}

@media (max-width: 768px) {
    .company-delete-popup {
        padding: 24px 10px 10px !important;
        border-radius: 22px !important;
    }

    .company-delete-icon-circle {
        width: 112px;
        height: 112px;
    }

    .company-delete-title {
        font-size: 2.2rem;
    }

    .company-delete-subtitle,
    .company-delete-description {
        font-size: 1rem;
    }

    .company-delete-grid,
    .company-delete-actions {
        grid-template-columns: 1fr !important;
    }

    .company-delete-cancel,
    .company-delete-confirm {
        height: 62px;
    }
}

/**** MOBILE  ***********************************************************************************************/

 @media (max-width: 767.98px) {

     .actions, .logo {
         display: none !important;
     }

     .container {
         padding: 0 15px;
     }

     .container.report {
         width: 100% !important;
     }

     .top-title {
        font-size: 28px;
font-weight: 700;
line-height: 40px; /* 111.111% */
     }
     .table-card__head {
         display: none;
     }

     .table-card__row {
         grid-template-columns: 1fr;
         gap: 10px;
     }

     .tc-actions {
         text-align: left;
     }

     .score {
                     margin-top: 20px !important;

     }
     .score-circle {
         width: 250px;
         height: 250px;
        margin-bottom: 40px !important;

     }

     .score-circle-value {
         font-size: 52px;
     }

     .chart-card {
         min-height: auto;
     }

     .top-resume {
         width: 100%;
         height: auto;
     }

      .maturity-card {
        font-size: 12px; }

.maturity-card .title {
    font-size: 16px; }

.maturity-card .values {
    font-size: 12px; }



    .maturity-card-inner {
        flex-direction: column;
        align-items: stretch;
    }

    .maturity-badge {
        width: 100%;
        justify-content: center;
        margin-top: 12px;
    }


 }


 @media (max-width: 576px) {
     .container {
         padding: 0 15px;
     }

     .hero-simple,
     .hero-spacer {
         min-height: 600px;
     }

     h2.cta-title {
         font-size: 36px;
         font-weight: 700;
         line-height: 45px;
         padding-bottom: 30px;
     }

     .cta-sub {
         font-size: 20px;
         font-weight: 400;
         line-height: 28px;
         padding-bottom: 30px;
     }

     footer .logos {
         margin-top: 40px;
     }

     .logos.gap-3 {
         gap: 0 !important;
     }

     .logos .pl-30 {
         padding-left: 15px;
     }

     .logos .pr-30 {
         padding-right: 15px;
     }

     h1.show404 {
         font-size: 150px
     }
 }

 /* 2 cards em md */
 @media (min-width: 768px) {
     .goals-slider {
         grid-auto-columns: calc(50% - 15px);
     }
 }

 /* 4 cards em lg */
 @media (min-width: 992px) {
     .goals-slider {
         grid-auto-columns: calc(25% - 20px);
         gap: 10px;
     }
 }


/***** PRINT *************************************************************************************/


 @media print {

    @page {
        size: A4;
        margin: 10mm;
    }

    html,
    body {
        margin: 0 !important;
        padding: 0 !important;
        background: #fff !important;
        -webkit-print-color-adjust: exact !important;
        print-color-adjust: exact !important;
    }

    .container,
    .esg-report-page,
    .report {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        padding-top: 0 !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .btn,
    .no-print {
        display: none !important;
    }

    .logo {
        display: inline !important;
    }

    /* topo */
    .report-header-row {
        display: flex !important;
        flex-wrap: nowrap !important;
        align-items: flex-start !important;
        margin: 0 0 28px 0 !important;
    }

    .report-header-main {
        width: 70% !important;
        max-width: 70% !important;
        flex: 0 0 70% !important;
    }

    .report-header-meta {
        width: 30% !important;
        max-width: 30% !important;
        flex: 0 0 30% !important;
        text-align: right !important;
    }

    .report-main-title {
        font-size: 26px !important;
        line-height: 1.02 !important;
        max-width: none !important;
        width: 100% !important;
        margin-bottom: 10px !important;
        margin-top: 20px !important;
    }

    /* score + bloco lateral */
    .report-score-row {
        display: flex !important;
        flex-wrap: nowrap !important;
        align-items: center !important;
        margin: 0 0 36px 0 !important;
    }

    .report-score-col {
        width: 25% !important;
        max-width: 34% !important;
        flex: 0 0 34% !important;
        padding-right: 18px !important;
    }

    .report-summary-col {
        width: 705% !important;
        max-width: 66% !important;
        flex: 0 0 66% !important;
        padding-left: 20px !important;
    }

    .score-circle {
        width: 210px !important;
        height: 210px !important;
        margin: 0 auto !important;
    }

    .top-title {
        font-size: 32px !important;
        line-height: 1.08 !important;
        margin-bottom: 10px !important;
    }

    .top-resume {
        font-size: 16px !important;
        line-height: 1.55 !important;
        margin-bottom: 20px !important;
        margin-left: 5px;
        width: 100%;
    }

    .maturity-progress {
        width: 100% !important;
        max-width: none !important;
         margin-left: 5px;
    }

     .maturity-card {
        padding: 15px 24px;
     }
    .maturity-card-inner {
        display: flex !important;
        flex-direction: row !important;
        align-items: flex-start !important;
        justify-content: space-between !important;
    }

    .maturity-badge {
        display: inline-flex !important;
        width: auto !important;
        margin-top: 0 !important;
        white-space: nowrap !important;
        flex-shrink: 0 !important;
    }

    .position {
        width: 33% !important;
    }

    .position-card-value {
        margin-top: 12px;
    }

    .next-steps-card {
        padding: 16px;
    }


    footer.border-top  {
        border-top: none !important;
    }

    footer.border-top .logos {
         margin-top: 0px !important;
     }

     .py-4 {
        padding: 0 !important;
      }

    /* evitar quebras feias */
    .report-header-row,
    .report-score-row,
    .maturity-card,
    .chart-card,
    .next-steps-card,
    .position-card {
        page-break-inside: avoid !important;
        break-inside: avoid !important;
    }
}

@media (max-width: 991.98px) {
    .no-mobile {
        display: none !important;
    }

    .only-mobile {
        display: flex !important;
    }

    .steps-wrap {
        margin: 0 !important;
    }

    .table-card {
        border: 0;
        background: transparent;
        border-radius: 0;
        overflow: visible;
    }

    .table-card__head {
        display: none;
    }

    .table-card__row {
        display: grid;
        grid-template-columns: 1fr auto;
        grid-template-areas:
            "company company"
            "start status"
            "finish cycle"
            "report actions";
        gap: 18px 20px;
        min-height: auto;
        padding: 28px;
        margin-bottom: 20px;
        background: #fff;
        border: 1px solid #d9dee8;
        border-radius: 28px;
    }

    .table-card__row:last-child {
        border-bottom: 1px solid #d9dee8;
    }

    .tc-col {
        padding: 0;
    }

    .tc-company {
        grid-area: company;
    }

    .tc-start {
        grid-area: start;
    }

    .tc-finish {
        grid-area: finish;
    }

    .tc-cycle {
        grid-area: cycle;
    }

    .tc-status {
        grid-area: status;
    }

    .tc-report {
        grid-area: report;
    }

    .tc-actions {
        grid-area: actions;
        align-self: end;
        justify-self: end;
        text-align: right;
    }

    .tc-company::before,
    .tc-start::before,
    .tc-finish::before,
    .tc-cycle::before,
    .tc-status::before {
        display: block;
        margin-bottom: 0px;
        font-size: 12px;
        font-weight: 400;
        color: #0d57a1;
    }

    .tc-company::before {
        content: "Nome da Empresa";
    }

    .tc-start::before {
        content: "Data de Início";
    }

    .tc-finish::before {
        content: "Data de Fim";
    }

    .tc-cycle::before {
        content: "Ciclo";
    }

    .tc-status::before {
        content: "Status";
    }

    .tc-company {
        font-size: 20px;
        font-weight: 700;
        color: #2c2c2c;
    }

    .tc-start,
    .tc-finish,
    .tc-cycle,
    .tc-status {
        font-size: 16px;
        color: #3f4b63;
    }

    .tc-report-link {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
        width: 170px;
        min-height: 44px;
        padding: 0 24px;
        border-radius: 999px;
        background: #0d57a1;
        color: #fff !important;
        font-size: 16px;
        font-weight: 500;
        text-decoration: none;
    }

    .tc-report-link svg,
    .tc-report-link i {
        flex-shrink: 0;
        display: none;
    }

    .tc-action {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        border-radius: 50%;
        border: 1px solid #f6b8b8;
        background: #fff;
    }
}