/* --- BOTÕES --- */
.btn-primary-outline {
    display: inline-block;
    padding: 6px 30px;
    background-color: #2b2b2b;
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 14px;
    transition: var(--transition);
}

.btn-primary-outline:hover {
    transform: scale(1.05);
    background-color: #000;
}

/* --- HERO SECTION --- */
.hero-section {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    background-color: #ff0000;
}

.parallax-layer {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    will-change: transform;
}

.bg-red {
    background-image: url('../../../img/pages/home/bg.webp');
    opacity: 0.6;
}

.people-foreground {
    position: relative;
    width: 100%;
    max-width: 966px;
    display: flex;
    justify-content: space-between;
    overflow: hidden;
}

.media-item {
    display: none;
}

.media-item.active {
    display: block;
    width: 100%;
}

.media-item img {
    width: 100%;
    /* height: 100%;
    object-fit: cover; */
}

.video-wrapper {
    width: 100%;
    aspect-ratio: 16 / 9;

    -webkit-mask-image: url(../../../img/pages/home/mascara-videos.png);
    mask-image: url(../../../img/pages/home/mascara-videos.png);
    -webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center center;

    /* Centraliza o vídeo dentro do espaço caso a tela estique */
    margin: 0 auto;
}

.video-wrapper {
    margin-top: 20px;
}

.video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (min-width: 1400px) {
    .video-wrapper {
        max-width: 966px;
        /* O mesmo max-width do seu people-foreground */
    }
}

.hero-container {
    position: relative;
    z-index: 3;
    padding: 0 5%;
    color: white;
    height: 100vh;
    display: flex;
    justify-content: center;
}

.hero-text {
    margin-top: 10em;
    max-width: 410px;
}

.hero-text h1 {
    font-size: 4rem;
    line-height: 1;
    margin-bottom: 20px;
    font-family: var(--font-title);
}

.hero-text p {
    font-size: 1.2rem;
    max-width: 400px;
}

.hero-footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 150px;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 4;
}

.hero-footer p {
    color: #00f2b1;
    font-weight: bold;
}

/* --- DASHBOARD & STATS SECTION --- */
.dashboard-section {
    margin-top: -17em;
    position: relative;
    z-index: 3;
    min-height: 80vh;
    max-height: 860px;
}

.faixa-titulo {
    display: flex;
}

.dashboard-section .gradient {
    position: relative;
}

.stats-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    /* align-items: center; */
    padding-top: 100px;
}

.stats-container {
    width: 100%;
    max-width: 1350px;
    margin: 0 auto;
    padding: 0 20px;
}

.stats-grid-top {
    display: flex;
    justify-content: center;
    gap: 100px;
    margin-bottom: 80px;
}

.stat-card {
    display: flex;
    align-items: center;
    gap: 25px;
}

.anim-counter {
    display: inline-block;
}

.stat-image-mask {
    width: 260px;
    height: 260px;
    border-radius: 20px;
    overflow: hidden;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.stat-image-mask img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.stat-number {
    font-size: 4.5rem;
    color: #2b2b2b;
    line-height: 0.9;
    margin-bottom: 10px;
}

.stat-detail {
    font-size: 16px;
    font-weight: bold;
    color: #2b2b2b;
    line-height: 1.3;
}

.stats-grid-bottom {
    display: flex;
    justify-content: center;
    gap: 120px;
    margin-bottom: 50px;
}

.stat-icon-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.stat-icon {
    width: 60px;
    height: auto;
}

.img-and-data {
    display: flex;
    align-items: center;
    gap: 10px;
}

.icon-number {
    display: block;
    font-size: var(--h2-size);
    color: #2b2b2b;
    line-height: 1;
    font-weight: bold;
}

.stat-icon-info {
    display: flex;
    gap: 20px;
}

.icon-text {
    font-size: 16px;
    line-height: 140%;
    font-weight: bold;
    color: #2b2b2b;
}

.stats-footer {
    text-align: center;
    margin-top: 30px;
}

@media (min-width: 2300px) {
    .dashboard-section {
        max-height: 1050px;
    }
}


/* --- IMPACT SECTION --- */
.impact-section {
    padding: var(--section-padding);
    background-color: var(--bg-color);
    overflow: hidden;
    padding-bottom: 0;
}

.impact-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1350px;
    margin: 0 auto;
    gap: 50px;
}

.impact-content {
    flex: 1;
}

.impact-title {
    font-family: var(--font-title);
    font-size: var(--h2-size);
    color: var(--text-color);
    line-height: 1.1;
    margin-bottom: 25px;
    text-align: center;
    margin-top: 0px;
}

.impact-description {
    font-size: 16px;
    font-weight: bold;
    color: var(--text-color);
    max-width: 500px;
    margin-bottom: 30px;
    line-height: 1.4;
}

.impact-illustration {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
}

.main-hand {
    max-width: 100%;
    height: auto;
    margin-bottom: -45px;
}

/* --- PARTNERS SECTION --- */
.partners-section {
    background-color: #1a1a1a;
    padding: 100px 0;
    color: #ffffff;
    overflow: hidden;
}

.partners-container {
    display: flex;
    align-items: center;
    gap: 80px;
    max-width: 1350px;
    margin: 0 auto;
}

.partners-text {
    flex: 0 0 420px;
}

.partners-text h2 {
    font-family: var(--font-title);
    font-size: var(--h2-size);
    line-height: 1.1;
    margin-bottom: 20px;
}

.partners-text p {
    font-size: 16px;
    font-weight: bold;
    max-width: 500px;
    margin-bottom: 30px;
    line-height: 1.4;
}

.partners-slider {
    flex: 1;
    overflow: hidden;
    position: relative;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.partners-slider .slider-track {
    /* animation: scrollInfinite 25s linear infinite; */
    gap: 60px !important;
}

.slider-track {
    display: flex;
    align-items: center;
    width: max-content;
    gap: 60px;
    /* animation: scrollInfinite 25s linear infinite; */
}

.slider-track img {
    height: 80px;
    width: auto;
    transition: var(--transition);
}

.slider-track img:hover {
    filter: grayscale(0) brightness(1);
    opacity: 1;
}

.slider-track:hover {
    animation-play-state: paused;
}

@keyframes scrollInfinite {
    0% {
        transform: translate3d(0, 0, 0);
    }

    100% {
        transform: translate3d(-50%, 0, 0);
    }
}

/* --- RESPONSIVIDADE E AJUSTES DE TELA --- */
@media (max-width: 1600px) {
    .hero-section {
        height: 100%;
        max-height: 670px;
    }

    .hero-text {
        margin-top: 3em;
    }

    .dashboard-section {
        margin-top: -6.8em;
    }
}

@media (max-height: 700px) {
    .hero-section {
        height: 110vh;
        max-height: 750px !important;
    }
}

@media (max-width: 1200px) {
    .stats-overlay {
        position: relative;
        padding: 50px 0;
    }

    .stats-grid-top {
        gap: 40px;
    }

    .stat-number {
        font-size: 3.5rem;
    }
}

@media (max-width: 1024px) {
    .partners-container {
        flex-direction: column;
        text-align: center;
    }

    .partners-text {
        flex: 1;
    }
}

@media (max-width: 992px) {
    .impact-container {
        flex-direction: column;
        text-align: center;
    }

    .impact-description {
        margin: 0 auto 30px;
    }

    .impact-illustration {
        margin-top: 50px;
    }
}

@media (max-width: 768px) {

    .stats-grid-top,
    .stats-grid-bottom,
    .stat-card,
    .stat-icon-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .stat-image-mask {
        width: 220px;
        height: 220px;
    }

    .stats-grid-bottom {
        gap: 40px;
    }

    .icon-number {
        font-size: 2.5rem;
    }
}

/* --- SECTION VOZES --- */
.vozes-section {
    background-image: url(../../../img/pages/home/bg-3.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-color: var(--accent-color);
    padding: 80px 0;
    overflow: hidden;
}

.vozes-header {
    text-align: center;
    margin-bottom: 50px;
}

.vozes-header p {
    max-width: 520px;
    margin: 0 auto;
    font-weight: bold;
    line-height: 140%;
}

#vozes-slider {
    width: 100%;
    max-width: 1550px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
    cursor: grab;
}

.vozes-card {
    position: relative;
    width: 300px;
    height: 400px;
    border-radius: 30px;
    overflow: hidden;
    flex-shrink: 0;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.vozes-card:hover {
    transform: translateY(-5px);
}

.vozes-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vozes-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    padding-left: 50px;
    background: linear-gradient(transparent, rgba(51, 51, 51, 0.8), rgba(51, 51, 51, 1), rgba(51, 51, 51, 1));
    color: white;
    box-sizing: border-box;
}

.vozes-content .detalhe {
    background-image: url(../../../img/pages/home/detalhe-1.png);
    background-repeat: no-repeat;
    background-position: top left;
    position: absolute;
    top: 56px;
    left: 21px;
    width: 20px;
    height: calc(100% - 89px);
}

.vozes-content h3 {
    color: #ff0000;
    font-size: 1.4rem;
    margin-bottom: 5px;
    line-height: 1.1;
    text-transform: uppercase;
}

.vozes-content p {
    font-size: 14px;
    line-height: 1.3;
    color: #fff;
    margin: 0;
}

/* --- ESTILOS DO MODAL DE VÍDEO --- */
.video-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-modal.active {
    display: flex;
    opacity: 1;
}

.video-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
}

.video-modal-content {
    position: relative;
    width: 90%;
    max-width: 900px;
    background: #1e1e1e;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    z-index: 10000;
}

.video-modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: #ff3b3b;
    font-size: 40px;
    cursor: pointer;
    transition: color 0.2s;
    line-height: 1;
}

.video-modal-close:hover {
    color: #ffffff;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 8px;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* --- SECTION PARTICIPAR --- */
.join-section {
    padding: 100px 0;
    background-color: var(--bg-color);
}

.join-container {
    max-width: 1350px;
    margin: 0 auto;
    padding: 0 20px;
}

.join-content {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 60px;
}

.join-illustration {
    flex: 1;
}

.join-illustration img {
    max-width: 100%;
    height: auto;
}

.join-text {
    flex: 1;
}

.join-text h2 {
    font-family: var(--font-title);
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 30px;
    color: #2b2b2b;
    max-width: 428px;
}

.join-text p {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 20px;
    color: #2b2b2b;
    font-weight: bold;
}

/* --- BOTÕES DE AÇÃO --- */
.join-actions {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
}

.action-btn {
    height: 140px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    text-align: center;
    text-decoration: none;
    transition: transform 0.3s ease;
    overflow: hidden;
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
}

.action-btn:hover {
    transform: scale(1.02);
}

.action-btn span {
    color: white;
    font-size: 20px;
    line-height: 1.2;
    z-index: 2;
    font-weight: bold;
    max-width: 130px;
}

.action-btn:nth-child(4) span {
    color: var(--secondary-color);
}

.action-btn:nth-child(1) {
    background-image: url('../../../img/pages/home/action-1.png');
}

.action-btn:nth-child(2) {
    background-image: url('../../../img/pages/home/action-2.png');
}

.action-btn:nth-child(3) {
    background-image: url('../../../img/pages/home/action-3.png');
}

.action-btn:nth-child(4) {
    background-image: url('../../../img/pages/home/action-4.png');
}

/* --- MEDIA SECTION (Na Mídia) --- */
#media-on-media.media-section {
    padding: 100px 0;
    background-color: #fff;
    width: 100%;
    overflow: hidden;
}

#media-on-media .media-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
}

#media-on-media h2.impact-title {
    font-family: var(--font-title);
    font-size: var(--h2-size);
    color: #2b2b2b;
    margin-bottom: 15px;
}

#media-on-media .media-subtitle {
    font-size: 16px;
    font-weight: bold;
    color: #2b2b2b;
    line-height: 1.4;
    text-transform: uppercase;
    max-width: 510px;
    margin: 0 auto;
}

/* --- SLIDER ESTRUTURAL (Baseado no GSAP) --- */
#media-slider.slider-container {
    width: 100%;
    max-width: 1550px;
    margin: 0 auto;
    overflow: hidden;
    cursor: grab;
    z-index: 5;
}

#media-slider.slider-container:active {
    cursor: grabbing;
}

.media-track.slider-track {
    display: flex;
    gap: 25px;
    padding: 20px 0 40px;
    width: max-content;
}

/* --- CARD DE MÍDIA --- */
#media-on-media .media-card {
    position: relative;
    width: 420px;
    min-height: 345px;
    flex-shrink: 0;
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.16);
    display: flex;
    flex-direction: column;
    cursor: pointer;
    transition: transform 0.2s ease;
}

#media-on-media .media-card:hover {
    transform: translateY(-5px);
}

#media-on-media .card-date {
    font-size: 12px;
    color: #6e6e6e;
}

.card-image-mask {
    width: 100%;
    height: 210px;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
}

.card-image-mask img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#media-on-media .card-tag {
    background-color: #ff0000;
    color: #ffffff;
    font-weight: bold;
    font-size: 14px;
    text-transform: uppercase;
    padding: 5px 20px;
    width: 100%;
    position: absolute;
    top: 190px;
    left: 0;
    z-index: 2;
    border-radius: 0 10px 10px 0;
}

.card-body {
    padding: 20px 20px 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

#media-on-media .card-body h3 {
    font-weight: bold;
    font-size: 1.4rem;
    color: #ff0000;
    line-height: 1.2;
    margin: 0;
}

#media-on-media .card-body p {
    font-size: 18px;
    color: #2b2b2b;
    line-height: 1.4;
    margin: 0;
}

#media-on-media .media-footer {
    text-align: center;
    margin-top: 30px;
}

/* --- SECTION PARCERIAS --- */
#parcerias-que-alimentam.parcerias-section {
    background-color: #2b2b2b;
    padding: 90px 0 0 0;
    position: relative;
    overflow: hidden;
    width: 100%;
    background-image: url('../../../img/pages/home/bg-4.png');
    background-size: cover;
    background-repeat: no-repeat;
}

#parcerias-que-alimentam .waves-decor {
    position: absolute;
    width: 300px;
    height: 300px;
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.8;
    z-index: 1;
}

#parcerias-que-alimentam .waves-top-right {
    top: -50px;
    right: -50px;
    background-image: url('sua-onda-branca-topo.png');
}

#parcerias-que-alimentam .waves-bottom-left {
    bottom: -50px;
    left: -50px;
    background-image: url('sua-onda-branca-baixo.png');
}

#parcerias-que-alimentam .container {
    position: relative;
    z-index: 5;
    width: 100%;
    margin: 0 auto;
}

#parcerias-que-alimentam .parcerias-header {
    margin-bottom: 50px;
    text-align: center;
}

#parcerias-que-alimentam h2.impact-title.white-text {
    font-family: var(--font-title);
    font-size: var(--h2-size);
    color: #ffffff;
    margin: 0 auto;
}

/* --- ESTRUTURA DO SLIDER --- */
#parcerias-que-alimentam #parcerias-slider.slider-container {
    width: 100%;
    max-width: 1550px;
    margin: 0 auto;
    overflow: hidden;
    cursor: grab;
    z-index: 5;
}

#parcerias-que-alimentam #parcerias-slider.slider-container:active {
    cursor: grabbing;
}

#parcerias-que-alimentam .slider-track {
    display: flex;
    gap: 30px;
    width: max-content;
    padding: 20px 0 80px;
    will-change: transform;
}

/* --- CARD PARCERIA --- */
#parcerias-que-alimentam .parceria-card-onlyimg {
    position: relative;
    max-width: 750px;
    height: auto;
    border-radius: 30px;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

#parcerias-que-alimentam .parceria-card-onlyimg img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    border-radius: 30px;
}

/* --- SECTION GESTÃO --- */
.gestao-section {
    background-color: rgb(244 244 237 / 90%);
    max-width: 100%;
    margin: 0 auto;
    padding: 40px 40px;
    min-height: 250px;
    display: flex;
    align-items: center;
}

.gestao-section .container {
    max-width: 1350px;
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
}

.gestao-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.gestao-title h2 {
    font-size: 54px;
    line-height: 1;
    font-family: var(--font-title);
    color: #2b2b2b;
    margin: 0;
    font-weight: 800;
}

.gestao-docs {
    display: flex;
    gap: 80px;
}

.doc-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    text-decoration: none;
    width: 100px;
    transition: transform 0.3s ease;
    pointer-events: none;
}

.doc-item:hover {
    transform: translateY(-5px);
}

.doc-item img {
    width: 65px;
    height: auto;
    margin-bottom: 15px;
}

.doc-item span {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    color: #2b2b2b;
    line-height: 1.2;
}

@media (max-width: 768px) {
    .video-wrapper {
        margin-bottom: 40px;
    }

    .hero-section {
        height: auto;
    }

    .hero-container {
        flex-direction: column;
        height: auto;
    }

    .hero-text {
        margin-top: 0px;
        margin-bottom: 20px;
        margin-inline: auto;
    }

    .hero-text h1 {
        margin-top: 0px;
        font-size: 2.5rem;
    }

    .hero-text p {
        font-size: 1rem;
        margin: 0 auto;
    }

    .stats-overlay {
        position: relative;
        padding: 40px 15px;
    }

    /* DASHBOARD SECTION */
    .dashboard-section {
        margin-top: -40px;
        max-height: none;
        overflow: hidden;
    }

    .dashboard-section .gradient .gradient-img {
        width: 320%;
        position: absolute;
        top: 0;
    }

    .faixa-titulo {
        display: flex;
        justify-content: center;
        overflow: hidden;
    }

    .faixa-titulo img {
        width: 150%;
        margin: 0 auto;
    }

    .stat-image-mask {
        width: 100%;
        max-width: 140px;
        height: auto;
        aspect-ratio: 1/1;
    }

    .stat-card {
        flex-direction: unset;
        align-items: center;
        text-align: center;
    }

    .stats-container {
        padding: 0;
    }

    .stat-number {
        font-size: 2.1rem;
        text-align: start;
        margin-top: 0;
    }

    .stat-image-mask img {
        margin-top: 20px !important;
    }

    .stat-detail {
        text-align: start;
        font-size: 12px;
    }

    .stat-detail br {
        display: none;
    }

    .stat-icon-info {
        flex-direction: column;
        gap: 0px;
    }

    .stats-grid-top {
        margin-bottom: 40px;
        gap: 50px;
    }

    /* IMPACT SECTION */

    .impact-section {
        padding: 40px 20px;
    }

    .impact-container {
        gap: 10px;
    }

    .impact-title {
        font-size: 2.5rem;
    }

    .impact-description {
        text-align: start;
    }

    /* PARTNERS SECTION */
    .partners-section {
        padding: 40px 20px;
    }

    .partners-container {
        gap: 20px;
    }

    .partners-text h2 {
        font-size: 2.5rem;
        text-align: start;
        margin-top: 0px;
    }

    .partners-text p {
        text-align: start;
    }

    /* VOZES SECTION */

    .vozes-section {
        background-size: 250%;
        background-position-x: 22%;
        background-position-y: top;
        padding: 40px 0;
    }

    .impact-title {
        font-size: 2.5rem;
        max-width: 330px;
        margin: 20px auto;
    }

    .impact-content .impact-title {
        margin: unset;
        margin-bottom: 20px;
    }

    .vozes-header p {
        max-width: 300px;
        margin: 0 auto;
        font-weight: bold;
        line-height: 140%;
    }

    /* JOIN SECTION */

    .join-section {
        padding: 40px 0;
    }

    .join-content {
        flex-direction: column-reverse;
        gap: 0px;
        margin-bottom: 20px;
    }

    .join-text h2 {
        font-size: 2.5rem;
        margin-top: 0px;
    }

    .join-actions {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .join-actions .action-btn {
        height: 80px;
    }

    .join-actions .action-btn span {
        font-size: 14px;
    }

    /* NA MIDIA SECTION */

    #media-on-media .media-card {
        width: 320px;
        min-height: 380px;
    }

    #media-on-media .card-body h3 {
        font-size: 22px !important;
    }

    #media-on-media .card-body p {
        font-size: 16px !important;
    }

    #media-on-media.media-section {
        padding: 40px 0;
    }

    #media-on-media h2.impact-title {
        font-size: 2.5rem;
        text-align: start;
    }

    #media-on-media .media-subtitle {
        max-width: 370px;
    }

    /* PARCERIAS QUE ALIMENTAM SECTION */
    #parcerias-que-alimentam.parcerias-section {
        background-size: 250%;
        background-position-x: 22%;
        background-position-y: top;
        padding: 40px 0;
        padding-bottom: 0;
    }

    #parcerias-que-alimentam h2.impact-title.white-text {
        font-size: 2.5rem;
    }

    .gestao-section .container {
        flex-direction: column;
    }

    .gestao-title h2 {
        text-align: center;
        font-size: 2.5rem;
    }

    .gestao-docs {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-top: 50px;
    }

    .doc-item {
        margin: 0 auto;
    }
}