@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');


/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    font-family: Montserrat, Arial, sans-serif;
    line-height: 1.2;
    color: #333;
    background-color: #f5f5f5;
    overflow-x: hidden;
    height: 100%;
    margin: 0;
    padding: 0;
}

header {
    position: fixed;
    top: 0;
    width: 100%;
    background: #182947;
    /* Alterado para cinza */
    color: #ffffff;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    /* Sombra projetada adicionada */
    padding: 0 1.5rem 0 1.5rem;
}

header img {
    width: 130px;
}

.logo_ibge {
    margin-top: 0.5em;
}

main {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.slide {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: white;
    border: 1px solid #ddd;
    /* margin-bottom: 1rem;*/
}

/* Ocultar a modal por padrão */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    /* Fundo escuro semi-transparente */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    /* Inicialmente invisível */
    pointer-events: none;
    /* Evita interação antes da animação */
    transition: opacity 0.3s ease;
}

/* Modal ativa */
.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

/* Estilo da modal */
.modal {
    background: #fff;
    padding: 20px;
    max-width: 90%;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    position: relative;
    text-align: center;
    background-size: 485px 685px;
    background: url('images/modal.png') center/cover no-repeat;
    height: 685px;
    width: 485px;
}

@media (max-width: 600px) {
    .modal {
        background-size: 345px 485px;
        height: 485px;
        width: 345px;
    }
}

@media (max-height: 800px) and (min-width: 1024px) {
    .modal {
        background-size: 435px 585px;
        height: 585px;
        width: 435px;
    }
}


@media (max-height: 800px) and (min-width: 1399px) {
    .modal {
        background-size: 415px 585px;
        height: 585px;
        width: 415px;
    }
}

/* Botão de fechar */
.close-btn {
    position: absolute;
    top: 0;
    right: 12px;
    font-size: 24px;
    cursor: pointer;
}

.mobile-only {
    display: none;
}

h1 {
    font-size: 2.5rem;
    line-height: 130%;
    margin: 10rem 2rem 1rem 10%;
    text-align: left;
    color: #0D5D3C;
}

h2 {
    font-size: 1.5rem;
    margin-left: 10%;
    line-height: 130%;
    margin-right: 1rem;
}

h3 {
    margin-left: 15%;
}

li h3 {
    margin-left: 0;
}

u {
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

li p {
    font-size: 1.1rem;
    margin-left: 0;
}

#slide10 p {
    line-height: 180%;
    margin-bottom: 0;
}

#slide10 li p {
    line-height: 120%;
    font-size: 1em;
}

.white .topics p {
    font-size: 1.2em;
}

p {
    font-size: 1.2em;
    margin-bottom: 0.5rem;
    margin-left: 10%;
    width: 70%;
}

p.dense-txt {
    line-height: 2rem;
    margin-bottom: 2%;
}

nav {
    margin-top: 1rem;
}

nav {
    position: fixed;
    top: 4rem;
    /* Ajustado para aparecer abaixo do header */
    padding: 1em 0 0 0;
    transform: translateX(-105%);
    /* Menu fora da tela inicialmente */
    width: 30%;
    height: calc(100% - 1.5rem);
    /* Ajusta altura para não sobrepor o header */
    background: #ffffff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.5s ease-in-out;
    /* Transição suave */
    z-index: 9;
}

nav.show {
    transform: translateX(0%);
    /* Move o menu para dentro da tela */
}

nav ul {
    flex-direction: column;
    list-style: none;
    margin: 0;
}

nav ul li {
    padding: 0.5rem;
    padding-left: 2em;
    padding-right: 2em;
    transition: color 0.5s;
}

nav ul li:hover {
    background-color: #FFCC00;
    transition: color 0.5s;
}

nav ul li:active,
nav ul li.active {
    background-color: #FFCC00;
}

nav ul li:last-child {
    border-bottom: none;
}

nav a {
    text-decoration: none;
    color: #000000;
    font-size: 1rem;
    font-family: Montserrat, Arial, Helvetica, sans-serif;

}

.menu-toggle {
    background: none;
    border: none;
    color: #ffffff;
    font-size: 3rem;
    cursor: pointer;
    position: relative;
    z-index: 1100;
}

.slide {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.column {
    flex: 1;
    height: 100%;
    display: flex;
    justify-content: left;
    flex-direction: column;
}

.column-white {
    flex: 1;
    height: 100%;
    display: flex;
    justify-content: left;
    flex-direction: column;
}

.text-column {
    background: #FDB829;
    box-sizing: border-box;
    /* overflow: scroll; */
}

.text-column-white {
    background: #ffffff;
    box-sizing: border-box;
}

.subheader {
    background-color: #FDB829;
    height: 225px;
    width: 100%;
    margin-top: 0;
}


.white-h2 {
    margin: 10rem 2rem 1rem 10%;
    text-transform: uppercase;
    font-weight: 1000;
    font-size: 3em;
}

.white-h3 {
    text-transform: uppercase;
    font-weight: 1000;
    font-size: 2em;
}

.white-p {
    line-height: 200%;
    margin-bottom: 2em;
    width: 60%;

}

.white-p.dense-txt {
    line-height: 150%;
}

#slide4 .white-p2 {
    max-width: 640px;
}

.white-p2 {
    line-height: 200%;
    margin-bottom: 2em;
    width: 50%;

}

.yellow-box {
    width: 41%;
    background-color: #FFCC00;
    font-size: 1.1em;
    float: right;
    margin: 0 35% 0 auto;
    padding: 1em;
    font-weight: bold;
}

.green-box {
    width: 41%;
    background-color: #EDE822;
    border-radius: 15px;
    float: right;
    margin: 0 35% 0 auto;
    padding: 1em;

    font-size: 1.1em;
    /* font-weight: bold; */
}

.green-box a,
.green-box a:hover {
    font-weight: bold;
    text-decoration: none;
    color: #000;
}

.image-column2 {
    background: url('images/4.jpg') center/cover no-repeat;
}

.image-column3 {
    background: url('images/5.jpg') center/cover no-repeat;
}

.image-column4 {
    background: url('images/6.jpg') center/cover no-repeat;
}

.image-column5 {
    background: url('images/7.jpg') center/cover no-repeat;
}

.image-column6 {
    background: url('images/8.jpg') center/cover no-repeat;
}

.image-column7 {
    background: url('images/9.jpg') center/cover no-repeat;
}


.image-column8 {
    background: url('images/10.jpg') center/cover no-repeat;
}

.menu-selector {
    /*margin-top: -40px;*/
    top: 0.5em;

}


.scroll-button {
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    background: none;
    border: none;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1;
    transition: all 0.3s ease;
}

.scroll-button svg {
    width: 24px;
    height: 24px;
    transition: fill 0.3s ease;
}

.scroll-button.yellow svg {
    fill: #FDB829;
    /* Amarelo */
}

.scroll-button.green svg {
    fill: #0D5D3C;
    /* Verde */
}

.scroll-button.up {
    top: 6em;
}

.scroll-button.down {
    bottom: 10px;
}

.scroll-button.down.first-arrow {
    bottom: 90px;
}

.scroll-button.hidden {
    display: none;
}

.topics {
    text-align: left;
    width: 80%;
    margin: 1em 2rem 2rem 12%;
    /* list-style-image: url('images/ul-img.svg'); */
    line-height: 150%;
}

.barra-top-home {
    display: flex;
    flex: 1;
    flex-direction: row;
    width: 100%;
    height: 50%;
    bottom: 0;
    padding-top: 10%;
    /* header */
    padding-right: 15%;
    padding-left: 15%;
    /* background: rgb(46,40,100); */
    /* background: linear-gradient(180deg, rgba(46,40,100,1) 0%, rgba(0,159,227,1) 100%); */
    background: linear-gradient(to left, #27AAE1, #1276BB);
}

.barra-top-home .title-home {
    padding-right: 15%;
    padding-left: 5%;
    
    margin-top: auto;
    margin-bottom: auto;
}

.barra-top-home .subtitle-h2 {
    color: black;
    font-weight: 800;
    font-style: normal;
    font-size: 27px;
    margin-left: 0;
    line-height: 100%;
}
@media (min-height: 768px) {
    .barra-top-home .subtitle-h2 {
        line-height: 130%;
        margin: auto;
    }
}


.barra-foot {
    width: 100%;
    height: 75px;
    bottom: 0;
    background-color: #EDE822;
}

.imgHome {
    width: 36%;
    /* position: absolute; */
    /* right: 5em; */
}

.barra-foot-orange {
    width: 100%;
    height: 75px;
    bottom: 0;
    background: rgb(233, 81, 37);
    background: linear-gradient(90deg, rgba(233, 81, 37, 1) 0%, rgba(255, 204, 0, 1) 100%);
}

.barra-foot-home {
    flex: 1;
    display: flex;
    justify-content: space-around;
    /* width: 100%; */
    /* height: 10%; */
    padding-right: 15%;
    padding-left: 15%;
    padding-bottom: 2%;
    padding-top: 2%;
    /* bottom: 0; */
    background: linear-gradient(to left, #27AAE1, #1276BB);
}

.barra-foot-home .description-home {
    font-style: normal;
    margin: auto 0;
}

.barra-foot-home img {
    width: 20%;
}

.footer-home {

    width: 100%;
    height: 70px;
    bottom: 0;
    z-index: 9;
    background: #182947;
}

.ilust-familia {
    margin: 0 1em -5px 3em;
    width: 50%;
    max-width: 380px;
    float: right;
}

.ilust-busto-thumbs {
    margin: 0 1em -5px 3em;
    width: 25%;
    float: right;
}

.ilust-produtos {
    right: 0em;
    width: 34%;
    position: absolute;
    margin-top: -26%;
}

.ilust-menino-thumbs {
    width: 8%;
    right: 20%;
    position: absolute;
    margin-top: -20%;
}

.ilust-grupo {
    width: 80%;
    margin: 0 10% -5px 10%;
    margin-top: -40%;
}

.ilust-row {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: center;
}

.ilust-houses {
    display: flex;
    width: 10%;
    margin: 10px;
}

.ilust-arrow {
    display: flex;
    width: 10%;
    margin: 10px;
}

.ilust-house {
    display: flex;
    width: 10%;
    margin: 10px;
    padding: 10px;
    background-color: #EDE822;
    border-radius: 20%;
}

.ilust-grupo-silhueta {
    width: 80%;
    margin: 0 10% -5px 10%;
}

.ilust-temas {
    width: 55%;
    display: flex;
    position: relative;
    margin: 6em auto;
    max-height: 400px;
}

.ilust-gastos {
    width: 33%;
    right: 0em;
    margin-top: -16%;
    position: absolute;
}

.ilust-objetivos {
    width: 20%;
    right: 20%;
    margin-top: -20%;
    position: absolute;
}

.ilust-calendario {
    width: 20%;
    right: 5%;
    margin-top: -20%;
    position: absolute;
}

.ilust-gato {
    width: 30%;
    right: 2em;
    position: absolute;
    margin-top: -44%;
    z-index: 0;
}

.ilust-bandeira {
    width: 30%;
    right: 10%;
    position: absolute;
    margin-top: -30%;
    z-index: 0;
}

.ilust-brasil {
    width: 20%;
    position: absolute;
    right: 2em;
    margin-top: -10%;
}

.topics-especificos p {
    font-size: 1.2rem;
    font-weight: 400;
}

.logo_agro {
    width: 100px;
    margin-left: 2rem;
    margin-right: 1rem;
    margin-bottom: -6px;
}

.columns-container {
    display: flex;
    gap: 40px;
    /* Espaço entre colunas */
}

.nav-link {
    display: inline-block;
    padding: 0.5rem 1rem;
    margin: 0 0.5rem;
    background: #4CAF50;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-size: 1rem;
}

.nav-link:hover {
    background: #45a049;
}

.site-title {
    line-height: 150%;
    color: white;
    margin: 0.5em 0 0.5em 1em;
    font-weight: normal;
    font-size: 2em;
    padding-right: 0.5em;
}

.title-break {
    display: none;
}

/* MENU HAMBURGUER */
.menu-selector {
    position: relative;
    width: 35px;
    height: 25px;
    float: right;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;
}

.menu-selector span {
    display: block;
    position: absolute;
    height: 6px;
    width: 100%;
    background: #1A9DD9;
    opacity: 1;
    left: 0;
    border-radius: 2 px;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
}

.menu-selector span:nth-child(1) {
    top: 2px;
}

.menu-selector span:nth-child(2),
.menu-selector span:nth-child(3) {
    top: 12px;
}

.menu-selector span:nth-child(4) {
    top: 22px;
}

.menu-open .menu-selector span:nth-child(1),
.menu-toggle[aria-expanded="true"] .menu-selector span:nth-child(1) {
    top: 18px;
    width: 0%;
    left: 50%;
}

.menu-open .menu-selector span:nth-child(2),
.menu-toggle[aria-expanded="true"] .menu-selector span:nth-child(2) {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}

.menu-open .menu-selector span:nth-child(3),
.menu-toggle[aria-expanded="true"] .menu-selector span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.menu-open .menu-selector span:nth-child(4),
.menu-toggle[aria-expanded="true"] .menu-selector span:nth-child(4) {
    top: 18px;
    width: 0%;
    left: 50%;
}

/* HOME */
.home-box {
    height: calc(100vh - 80px);
    width: 100%;
    height: 0;
}

.home-box-independente {
    position: absolute;
    top: 0;
}

.home-image-column {
    display: flex;
    flex-direction: row;
    background: #fff;
    height: calc(100vh - 80px);
    width: 100%;
    justify-content: center;
}

@media (min-width: 1450px) {
    .home-image-column {
        background: #fff url('images/bg-agro.svg') top center;
    }
}

.home-block-pb-btn {
    cursor: pointer;
}

.home-block-pb-btn:hover {
    opacity: 0;
}

.tooltip {
    opacity: 0;
    transition: all 250ms ease;
}

svg .graf-square {
    fill: #e6e6e6;
}

.tooltip-color {
    fill: #fdb813;
}

.box-2,
.box-7 {
    transform: scaleX(1.35) translate(-18px, 0px);
}

.tooltip-stroke {
    stroke: #fdb813;
    stroke-miterlimit: 10;
    stroke-width: 1px;
}

.tooltip-text {
    font-size: 14px;
    font-family: Montserrat, Arial, Helvetica, sans-serif;
    letter-spacing: -0.04em;
}

.home-link-btn:hover .tooltip {
    opacity: 1;
}

.home-main-logo-img {
    position: absolute;
    max-height: calc(100vh - 250px);
    top: 100px;
}

.slide-footer {
    background: #071d41;
    height: 80px;
    margin-top: calc(100vh - 80px);
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* social */
.social-media ul {
    margin: 0;
    padding: 0;
    display: flex;
    margin-top: 1em;
    margin-left: 1em;
}

.social-icon {
    width: 35px;
    list-style: none;
    padding: 0;
    margin: 0;
    margin-right: 5px;
    fill: #fff
}

.social-icon.tiktok path {
    fill: #fff
}

.social-icon .icon-bg {
    transition: fill 250ms ease-out
}

.social-icon .icon-logo {
    transition: fill 150ms ease-out;
    fill: #fff
}

.social-icon.youtube:hover .icon-logo {
    fill: #d03b3b
}

.social-icon.instagram:hover .icon-logo {
    fill: #c54173
}

.social-icon.tiktok:hover path {
    fill: #fe004f
}

.social-icon.facebook:hover .icon-logo {
    fill: #5176c9
}

.social-icon.whatsapp:hover .icon-logo {
    fill: #25d366
}

.social-icon.twitter {
    width: 21px;
    padding-top: 8px;
    margin: 0 12px 0 7px
}

.social-icon.bluesky {
    margin: 0 5px 0 1px
}

.social-icon.twitter:hover .icon-logo {
    fill: #858585
}

.social-icon.bluesky:hover .icon-logo {
    fill: #1084fe
}

.footer-logos {
    position: absolute;
    bottom: 0.5em;
    right: 0;
}

.logo-mpo {
    width: 200px;
    margin-right: 25px;
}

.logo-govbr {
    width: 105px;
    margin-right: 45px;
}

.phone-number {
    color: black;
    text-decoration: none;
}

/***********
 * MOBILE  *
 ***********/

@media (max-width: 600px) {
    .home-image-column {
        background: #fff url('images/bg-agro2.svg') top center;
        background-size: cover;
    }

    #bg-graf-agro {
        display: none;
    }

    .slide-footer {
        justify-content: flex-start;
    }

    .footer-logos {
        /* display: none; */
        zoom: .7;
        margin-right: 20px;
    }

    .social-media {
        zoom: .75;
        margin-left: 20px;
    }

    .social-icon {
        width: 32px;
        margin: 0px;
    }

    .social-icon.twitter {
        width: 19px;
        margin: 0;
    }

    .social-icon.bluesky {
        margin: 0px 0px 0 1px;
    }

    .logo-mpo {
        width: 150px;
        margin-right: 0;
    }

    .logo-govbr {
        width: 75px;
        margin-right: 0;
    }
}

footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 1rem 0;
}

/* Acessibilidade */
.nav-link:focus {
    outline: 3px solid #ff9800;
}

.slide {
    min-height: 100vh;
    scroll-snap-align: start;
    /* Para compatibilidade adicional com navegadores modernos */
}

.slide:focus {
    outline: none;
}

ul li::marker {
    font-size: 2em;

}

::-moz-selection {
    /* Code for Firefox */
    color: #fff;
    background: #0D5D3C;
}

::selection {
    color: #fff;
    background: #0D5D3C;
}

.bg-white {
    background-color: #fff;
}

.barra-top-home h1 {
    color: #fff;
    text-transform: uppercase;
    /* font-size: 4em; */
    /* width: 40%; */
    /* text-align: center; */
    font-weight: 900;
    /* margin-top: 3.5em;*/
    margin-top: 0;
    margin-left: 0;

}

.barra-foot-home h2 {
    color: #fff;
    font-weight: 400;
    /* font-style: italic; */
    font-size: 1.7em;
    width: 60%;
    /* text-align: center; */
    margin-top: 1em;
}

.oquee-container {
    display: flex;
    flex-direction: row;
    width: 80%;
    margin: 0 auto 2em;
}

.oquee-box1 {
    flex: 1;
    background-color: #FFCC00;
    font-size: 1.2em;
    padding: 1em;
    max-width: 35%;
    border-radius: 2em;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.oquee-box2 {
    flex: 1;
    font-size: 1.5em;
    max-width: 35%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #bb181b;
}

.oquee-seta {
    margin: 2em 1em 2em 1.5em;
    width: 40px;
    display: flex;
    align-items: center;
}

.quemresponde-container {
    display: flex;
    max-width: 660px;
    margin-left: 10%;
}

.quemresponde-box1 {
    flex: 1;
    margin-right: 10%;
    font-size: 1.4em;
    font-style: italic;
    font-weight: bold;
}

.quemresponde-box2 {
    flex: 1;
    font-size: 1.4em;
    font-style: italic;
}


.participacao-title {
    color: #fff;
    text-transform: uppercase;
    font-size: 2em;
    width: 40%;
    text-align: left;
    font-weight: 900;
    margin-top: 15%;  /* 15-09 */
    line-height: 150%;
}

.text-participacao {
    height: 90%;
}

.subtexto-participacao-h2 {
    color: #fff;
    font-weight: 400;
    font-style: italic;
    font-size: 1.6em;
    width: 40%;
    text-align: left;
    margin-top: 1em;
    margin-bottom: 1em;
}

.subtexto-participacao-p {
    color: #fff;
    width: 40%;
    font-size: 1.2em;
    line-height: 150%;
}

.subtexto-participacao-p2 {
    color: #fff;
    font-weight: bold;
    font-style: italic;
    font-size: 1.6em;
    width: 40%;
    text-align: left;
    margin-top: 1em;
}

#slide7 {
    color: white;
}

#slide7 p {
    width: 80%;
    margin-bottom: 5%;
}

.box-cesta {
    font-style: italic;
    font-size: 1.1em;
    background-color: #FFCC00;
    font-weight: bold;
    padding: 1% 2%;
    margin-bottom: 2em;
    width: 25%;
    margin-left: 10%;
}

#slide9 .list-and-image {
    display: flex;
    margin-right: 12%;
}

#slide10 .list-and-image {
    display: flex;
    margin-right: 12%;
}

#slide12 .imgRodape {
    right: 10%;
}

.imgRodape {
    bottom: 10%;
}

/***********
 * TABLET  *
 ***********/

@media (min-width: 600px) and (max-width: 1024px) {

    nav {
        width: 90%;
        top: 2em;
    }

    nav ul {
        padding: 0;
    }

    nav ul li {
        padding: 0.5rem;
        padding-left: 2em;
        padding-right: 2em;
        transition: color 0.5s;
    }

    .logo-mpo {
        width: 150px;
        margin-right: 15px;
    }

    .logo-govbr {
        width: 70px;
        margin-right: 15px;
    }

    .title-break {
        display: initial;
    }

    .title-dash {
        display: none;
    }

    .site-title {
        line-height: 95%;
        font-size: 1.6em;
    }

    .site-title span {
        font-size: 0.7em;
    }

    .menu-toggle {
        top: 0;
    }

    .slide {
        flex-direction: column;
        height: auto;
    }


    .image-column3 {
        background: url(images/5.jpg) center 30% / cover no-repeat;
    }

    .image-column4 {
        background: url(images/6.jpg) center 30% / cover no-repeat;
    }

    .image-column2 .image-column3 .image-column4 .image-column5 .image-column6 .image-column7 .image-column8 {
        height: 20%;
        width: 100%;
    }

    .image-column2,
    .image-column3,
    .image-column4,
    .image-column5,
    .image-column6,
    .image-column7,
    .image-column8 {
        flex: 1;
        display: flex;
        align-items: stretch;
        /* Faz com que as divs filhas ocupem a altura total */
        min-height: 150px;
        /* Altura mínima */
        max-height: 200px;
        /* Altura máxima */
        overflow: auto;
        /* Adiciona uma barra de rolagem se o conteúdo for muito grande */
    }

    .text-column {
        height: 80%;
        display: flex;
        justify-content: flex-start;
        padding: 1rem 2rem 1rem 2rem;
    }

    h1 {
        font-size: 1.5rem;
        margin: 1rem 2rem 1rem 0;
        text-align: left;
    }

    h2 {
        font-size: 1.1rem;
        margin: 0;
    }

    .white h3 {
        margin: 1rem 1rem 0 2rem;
    }

    .white .topics {
        margin: 1em 2rem 1em 3rem;

    }

    .topics li::marker {
        font-size: 2rem;
    }

    .white .topics li::marker {
        font-size: 2em;
    }

    .white .topics p {
        margin: 0;
        width: 80%;
        font-size: 1.2em;
    }

    .white p {
        width: 80%;
        margin: 0 1rem 0 2rem;

    }


    .white ul h2 {
        margin: 0;
        font-size: 1.1em;
    }


    .columns-container {
        flex-direction: column;
    }

    .topics {
        width: 80%;
        margin-left: 3rem;
    }

    p {
        font-size: 1.1rem;
        width: 100%;
        margin-left: 0;
        padding-left: 3%;
        padding-right: 3%;
    }


    .topics p {
        font-size: 1.1rem;
        width: 100%;
    }

    .topics li {
        font-size: 1em;
    }

    #slide10 p:last-child {
        margin-top: 0.3em;
    }

    .ilust-gastos {
        width: 30%;
        margin-top: -10%;
    }

    .subheader {
        height: 180px;
    }

    .white-h2 {
        margin: 8rem 2rem 1rem 2rem;
        font-size: 1.7em;

    }

    .white-p {
        line-height: 150%;
        width: 90%;

    }

    .box-cesta {
        font-style: italic;
        font-size: 1.1em;
        background-color: #FFCC00;
        font-weight: bold;
        padding: 1% 2%;
        margin-bottom: 2em;
        margin-left: 3%;
        width: 403px;
    }

    .yellow-box {
        margin: 0 auto 0 3%;
        width: 40%;
    }

    .green-box {
        margin: 0 auto;
        width: 75%;
    }

    .logo_agro {
        margin-left: 0;
    }

    .arrow-icon {
        width: 60%;

    }

    .scroll-button.up {
        top: 5em;
    }

    /* .barra-top-home h1 {
        color: #fff;
        text-transform: uppercase;
        width: 40%;
        text-align: center;
        font-weight: 900;
        margin-top: 4.5em;
    } */

    /* .barra-top-home h1 {
        font-size: 3em;
        margin-left: 5%;

    } */

    .barra-top-home {
        padding-right: 10%;
        padding-left: 10%;
    }

    .barra-top-home .title-home {
        padding-right: 5%;
        display: flex;
        flex-direction: column;
        justify-content: center;
    
        margin-top: 0;
        margin-bottom: 0;
    }

    .barra-foot-home {
        padding-right: 10%;
        padding-left: 10%;
        align-items: center;
    }

    .barra-foot-home h2 {
        font-size: 1.5em;
        margin-left: 5%;
    }


    .oquee-container {
        margin: 0 auto 1em;
    }

    .oquee-box1 {
        border-radius: 1em;
    }

    .oquee-box2 {}

    .oquee-seta {
        width: 15px;
    }

    .quemresponde-container {
        margin-left: 4%;
        margin-top: 1em;
    }

    .quemresponde-box1 {
        font-size: 1.2em;
    }

    .quemresponde-box2 {}

    #slide9 p {
        width: 80%;
        font-size: 1.4em;
        line-height: 150%;
    }

    #slide11 .white-p {
        font-size: 1.3em;
    }

    #slide13 h2 {
        font-size: 1.4em;
        margin-left: 3%;
        width: 50%;
    }

    .participacao-title {
        margin-top: 15%; /* 15-09 */
        width: 100%;
        padding: 0px 20px;
        font-size: 1.5em;
        line-height: 117%;
        margin-bottom: 1.5rem;
    }

    .subtexto-participacao-p {
        width: 100%;
        padding: 0px 20px;
    }

    .subtexto-participacao-p2 {
        width: 100%;
        padding: 0px 20px;
    }

    .menu-selector {
        top: 0.2em;

    }



}


/***********
 * MOBILE  *
 ***********/

@media (min-width: 390px) and (max-width: 600px) {
    #slide3 .white-p {
        font-size: 1em;
    }

    #slide3 .oquee-box1 p {
        font-size: 1em;
    }

    #slide3 .column-white.text-column-white {
        margin-top: 28px;
    }

    #slide3 .oquee-container {
        margin-bottom: 0px;
    }

    #slide4 .white-p {
        font-size: 1em;
    }

    #slide6 .white-p {
        font-size: 1em !important;
    }

    #slide7 h2 {
        margin-bottom: 20px;
    }

    #slide7 p {
        font-size: 1em;
    }

    #slide8 .white-p {
        font-size: 1em;
    }

    #slide10 p {
        font-size: 1rem;
    }

    #slide11 .white-p {
        font-size: 1em;
    }

    #slide12 li {
        font-size: 1em;
    }
}


/*****************
 * SMALL MOBILE  *
 *****************/

@media (max-width: 600px) {
    .desktop-only {
        display: none;
    }

    .mobile-only {
        display: block
    }

    header {
        padding-left: 0.5em;
        padding-right: 0.5em;
        height: 50px;
    }


    .barra-foot {
        width: 100%;
        height: 45px;
        bottom: 0;
        background-color: #EDE822;
    }

    .barra-foot-orange {
        width: 100%;
        height: 45px;
        bottom: 0;
        background: rgb(233, 81, 37);
        background: linear-gradient(90deg, rgba(233, 81, 37, 1) 0%, rgba(255, 204, 0, 1) 100%);
    }

    .ilust-objetivos {
        right: 10%;
    }

    .ilust-familia {
        margin: 0 1em -5px 3em;
        width: 80%;
    }

    .ilust-busto-thumbs {
        width: 25%;
        position: absolute;
        right: 4%;
        margin-top: 30%;
    }

    .box-cesta {
        font-style: italic;
        font-size: 1.1em;
        background-color: #FFCC00;
        font-weight: bold;
        padding: 1% 2%;
        margin-bottom: 2em;
    }

    ul li::marker {
        font-size: 1.5em;

    }

    .arrow-icon {
        width: 70%;
    }

    .scroll-button.up {
        top: 3.5em;
    }

    .scroll-button.down {
        bottom: 0;
    }

    .site-title {
        font-size: 1.3em;
        line-height: 90%;
        margin-left: 0.5em;
    }

    .site-title span {
        font-size: 0.7em;
        display: none;
    }

    .white-h2 {
        margin-top: 10em;
        font-size: 1.3em;
        margin: 7rem 2rem 3em 2rem;
    }

    .white-h3 {
        font-size: 1.1em;
        margin: 1em 1.6em 0 1.6em;
    }

    .white-p {
        font-size: 0.8em;
        line-height: 130%;
        margin: 1rem 1rem 0 2rem;
        width: 100%;
        margin: 0px;
        padding: 20px;
        text-align: left;
    }

    .menu-toggle {
        font-size: 0.7em;
    }

    .menu-selector {
        transform: scale(70%);
    }

    .logo_ibge {
        width: 100px;
    }

    .title-break {
        display: initial;
    }

    .title-dash {
        display: none;
    }

    nav {
        width: 90%;
        top: 2em;
    }

    nav ul {
        padding: 0;
    }

    nav ul li {
        padding: 0.4rem;
        padding-left: 2em;
        padding-right: 2em;
        transition: color 0.5s;
    }

    .slide {
        flex-direction: column;
        height: auto;
    }

    .image-column2 .image-column3 .image-column4 .image-column5 .image-column6 .image-column7 .image-column8 {
        height: 20%;
        width: 100%;
    }

    .image-column3 {
        background: url(images/5.jpg) center 30% / cover no-repeat;
    }

    .image-column4 {
        background: url(images/6.jpg) center 30% / cover no-repeat;
    }

    .image-column2,
    .image-column3,
    .image-column4,
    .image-column5,
    .image-column6,
    .image-column7,
    .image-column8 {
        flex: 1;
        display: flex;
        align-items: stretch;
        /* Faz com que as divs filhas ocupem a altura total */
        min-height: 150px;
        /* Altura mínima */
        max-height: 200px;
        /* Altura máxima */
        overflow: auto;
    }

    .text-column {
        height: 80%;
        display: flex;
        justify-content: flex-start;
        padding: 1rem 2rem 1rem 2rem;
    }

    h1 {
        font-size: 1.5rem;
        margin: 1rem 2rem 0 0;
        text-align: left;
    }

    h2 {
        font-size: 1.1rem;
        margin: 0;
    }



    .white .topics {
        margin: 0 2rem 0 3rem;
    }

    .white .topics.dense-txt {
        margin: 0 0 0 1rem;
        width: 100%;
    }

    .topics li::marker {
        background-position: left center;
    }

    .white .topics li::marker {
        background-position: left center;
    }

    .white .topics p {
        margin: 0;
        width: 80%;
        font-size: 0.8em;
    }


    .white ul h2 {
        margin: 0;
    }


    .columns-container {
        flex-direction: column;
    }

    .topics {
        margin-left: 3rem;
        margin-top: 1em;
        margin-bottom: 0;
    }

    p {
        font-size: 0.8rem;
        width: 100%;
        margin-left: 0;
    }

    p.dense-txt {
        line-height: 1.1rem;
    }
    #slide11 p.dense-txt {
        line-height: 1rem;
        font-size: 0.7rem;
    }


    .topics p {
        font-size: 0.8rem;
        width: 100%;

    }

    .subheader {
        height: 180px;
    }

    .white-h2 {
        margin: 6rem 2rem 0 2rem;
        text-align: left !important;
        margin-top: 0px;
        margin-left: 20px;
    }

    .logo_agro {
        margin-left: 0;
    }

    .scroll-button.down.first-arrow {
        bottom: 70px;
    }

    .scroll-button.down.first-arrow.at-home {
        bottom: 80px;
    }

    .barra-top-home {
        height: 90%;
        flex-direction: column;
        padding-left: 2%;
        padding-right: 2%;
    }

    .barra-top-home .title-home {
        padding-right: 5%;
        display: flex;
        flex-direction: column;
        width: 100%;
    
        margin-top: 0;
        margin-bottom: 0;
    }

    .barra-top-home h1 {
        width: 100%;
        line-height: 100%;
        font-size: 2em;
        padding: 0px 20px;
        max-width: 450px;
        margin: auto;
        margin-top: 5%;
        text-align: center;
    }

    .barra-top-home h2 {
        color: #fff;
        font-weight: 400;
        font-style: italic;
        font-size: 1.7em;
        width: 100%;
        text-align: center;
        font-size: 1.3em;
        max-width: 450px;
        margin: auto;
        padding: 0 40px;
        margin-top: 20px;

    }

    .barra-foot-home {
        align-self: center;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .barra-foot-home .description-home {
        width: 100%;
        padding: 0px 30px;
        font-size: 1.2rem;
        margin-top: 0;
        margin-bottom: 10%;
    }
    .barra-foot-home img {
        width: 40%;
    }

    .imgHome {
        width: 60%;
        /* position: absolute; */
        /* right: initial; */
        margin-left: auto;
        margin-right: auto;
        margin-top: 5%;
        /* max-height: 40vh; */
        /* transform: translate(50%); */
        /* left: -20vw; */
        top: 15%;
    }

    .oquee-container {
        flex-direction: column;
    }

    .oquee-box1 {
        max-width: 100%;
        text-align: center;
    }

    .oquee-seta {
        /* margin: auto;
        transform: rotate(90deg);
        width: 20px; */
        display: none;
    }

    .oquee-box2 {
        text-align: center;
        max-width: 100%;
        font-size: 1em;
        margin-top: 20px;
    }

    .yellow-box {
        width: 100%;
    }

    .green-box {
        width: 100%;
    }

    .column-white.text-column-white {
        text-align: left;
        padding: 20px;
        justify-content: center;
        padding-top: 50px;
    }

    .ilust-gato {
        display: none;
    }

    .ilust-bandeira {
        display: none;
    }

    .ilust-houses,
    .ilust-arrow,
    .ilust-house {
        width: 20%;
    }

    ul.topics-especificos p {
        margin-bottom: 0px;
    }

    .quemresponde-container {
        flex-direction: column;
        margin: 0px;
        margin-top: 20px;
        gap: 30px;
    }

    .quemresponde-box1 {
        margin: 0px;
    }

    #slide3 .column-white.text-column-white {
        margin-top: 60px;
    }

    #slide5 img {
        width: 20%;
        margin-top: -30%;
    }

    #slide6 img {
        width: 20%;
        margin-top: -60%;
        right: 4%;
    }

    #slide6 .white-h2 {
        margin-left: 2%;
    }

    #slide6 .column-white.text-column-white {
        margin-top: 47px;
    }

    #slide6 .white-p {
        /* font-size: .9em !important; */
        text-align: left !important;
        padding-left: 0;
        padding-right: 0;
        margin-left: 2%;
    }

    #slide6 .green-box {
        width: 70%;
        margin-left: 2%;
    }

    #slide6 .box-cesta {
        width: 100%;
        margin: 0;
        font-size: 1.05em;
    }

    #slide7 p {
        width: 100%;
    }

    #slide7 .topics {
        margin-left: 15px;
        width: 100%;
    }

    #slide8 .white-h2 {
        margin-left: 0;
    }

    #slide8 .white-p {
        padding-left: 0px;
        padding-right: 0px;
    }
    #slide8 .topics {
        margin-left: 2rem;
    }


    #slide8 .column-white.text-column-white {
        justify-content: center;
        gap: 10px;
        line-height: 30px;
    }

    #slide9 .white-h2 {
        margin-left: 2rem;
        margin-bottom: 20px;
    }

    #slide9 p {
        font-size: 1em;
        line-height: 130%;

        padding-left: 0;
        margin-left: 2rem;
    }
    #slide9 li p {
        margin-left: 0;
    }

    #slide9 .list-and-image {
        margin-left: 2rem;
    }

    #slide10 .white-h2 {
        margin-left: 2rem;
    }

    #slide10 .column-white.text-column-white {
        padding-top: 80px;
    }

    #slide10 ul {
        margin: 0px;
        margin-left: 20px;
        width: inherit;
    }

    #slide10 ul p {
        width: 100%;
        margin: 0px;
    }

    #slide10 p {
        margin-top: 20px;
        line-height: 130%;
        
        padding-left: 2rem;
    }
    #slide10 li p {
        padding-left: 0;
    }

    #slide10 .list-and-image {
        margin-left: 2rem;
    }

    #slide10 li p {
        font-size: .7em;
    }

    #slide10 .ilust-gastos {
        display: none;
    }

    #slide11 .white-h2 {
        margin-left: 0px;
        margin-bottom: 1rem;
    }

    #slide11 .white-p {
        padding-left: 0px;
    }

    #slide11 p {
        /* margin-left: 2rem;  */
        padding-left: 0;
    }

    #slide12 ul p {
        line-height: 18px;
    }

    #slide12 .participacao-title,
    #slide13 .participacao-title {
        width: 100%;
        padding: 25px 20px 0px 20px;
        font-size: 1.5em;
        line-height: 117%;
        margin-bottom: 1.5rem;
    }

    #slide12 .subtexto-participacao-h2,
    #slide13 .subtexto-participacao-h2 {
        width: 100%;
        padding: 0px 20px;
        font-size: 1.4em;
    }

    #slide12 .subtexto-participacao-p,
    #slide13 .subtexto-participacao-p {
        width: 100%;
        padding: 0px 20px;
        font-size: 1.0em;
    }

    #slide12 .subtexto-participacao-p2,
    #slide13 .subtexto-participacao-p2 {
        width: 100%;
        padding: 0px 20px;
        font-size: 1.1em;
    }

    #slide12 .imgRodape,
    #slide13 .imgRodape {
        bottom: 25%;
        width: 35% !important;
        right: 35%;
    }

    #slide12 .rodape,
    #slide13 .rodape {
        height: 45px !important;
    }

    #slide12 img,
    #slide13 img {
        width: 80% !important;
    }

    /* .footer-home{
        height: 50px;
    } */

    .footer-logos {
        position: initial;
        float: right;
        margin-top: 15px;
    }

    .social-media {
        float: left;
    }
}

@media (max-height: 800px) {
    #slide12 .imgRodape,
    #slide13 .imgRodape {
        bottom: 12%;
    }
}

@media (max-height:740px) and (max-width:600px) {
    .imgHome {
        /* top: 410px; */
        max-height: 30vh;
    }
}

/* Específico para a tela extremamente achatada */
@media (max-height:800px) and (min-width:1025px) {

    p,
    p.dense-txt {
        font-size: 1.1rem;
        line-height: 140%;
        margin-bottom: 0.5rem;
    }

    .ilust-gastos {
        width: 30%;
        right: 2em;
        margin-top: -14%;
        position: absolute;
    }

    #slide9 p {
        font-size: 1.3em;
        line-height: 150%;
    }

    h1 {
        font-size: 1.4rem;
        margin-top: 6rem;
    }

    h2 {
        font-size: 1.2rem;
        margin-right: 2rem;
    }

    li p {
        font-size: 1rem;
        line-height: 140%;
        margin-bottom: 0;
    }

    .white-h2 {
        margin-top: 8rem;
        font-size: 2em;
    }

    .subheader {
        height: 160px;
    }

    .white .topics p {
        font-size: 1rem;
        margin-bottom: 0;
    }

    nav ul li {
        padding-bottom: 0.5em;
        padding-top: 0.5em;
    }

    .yellow-box {
        margin: 15px auto 0 10%;
        font-size: 1em;
    }

    .green-box {
        margin: 15px auto 0 10%;
        font-size: 1em;
    }

    #slide4 .white-p2 {
        margin-bottom: 0.7em;
    }

    .scroll-button {
        height: 35px;
        width: 35px;
    }
}

@media (max-height:620px) and (min-width:1180px) {
    /* .barra-top-home h1 {
        color: #fff;
        text-transform: uppercase;
        font-size: 3em;
        width: 100%;
        text-align: center;
        font-weight: 900;
        margin-top: 2.5em;
    } */

    .white-p {
        line-height: 150%;
        font-size: 1em;
    }

    .ilust-temas {
        max-height: 370px;
    }

    .topics-especificos p {
        font-size: 1.2em;
    }

    .white-h2 {
        font-size: 2em;
    }

    .ilust-gastos {
        width: 30%;
        margin-top: -15%;
    }

    .white .topics li {
        line-height: 120%;
    }

    .subtexto-participacao-p2 {
        font-size: 1.2em;
    }

    .subtexto-participacao-p {
        font-size: 1.1em;
    }

    .subtexto-participacao-h2 {
        font-size: 1.2em;
    }

    p {
        font-size: 1.1rem;
        line-height: 140%;
    }

    h1 {
        font-size: 1.4rem;
        margin-top: 6rem;
    }

    h2 {
        font-size: 1.2rem;
        margin-right: 2rem;
    }

    li p {
        font-size: 1rem;
        line-height: 140%;
        margin-bottom: 0;
    }

    .white-h2 {
        margin-top: 7rem;
    }

    .subheader {
        height: 160px;
    }

    .white .topics p {
        font-size: 1rem;
        margin-bottom: 0;
    }

    nav ul li {
        padding-bottom: 0.5em;
        padding-top: 0.5em;
    }

    .yellow-box {
        margin: 10px 35% 0 auto;
    }

    .green-box {
        margin: 10px 35% 0 auto;
    }
}

@media (max-height:600px) and (min-width:1299px) {
    /* .barra-top-home h1 {
        color: #fff;
        text-transform: uppercase;
        font-size: 3em;
        width: 100%;
        text-align: center;
        font-weight: 900;
        margin-top: 2.5em;
    } */

    .white-p {
        line-height: 150%;
        font-size: 1.1em;

    }

    #slide3 .white-p {
        width: 70%;
    }

    .ilust-temas {
        max-height: 420px;
    }

    .topics-especificos p {
        font-size: 1.2em;
    }

    .white-h2 {
        font-size: 2em;
    }

    .ilust-gastos {
        width: 30%;
        margin-top: -15%;
    }

    .white .topics li {
        line-height: 120%;
    }

    .subtexto-participacao-p2 {
        font-size: 1.2em;
    }

    .subtexto-participacao-p {
        font-size: 1.1em;
    }

    .subtexto-participacao-h2 {
        font-size: 1.2em;
    }
}


@media (height:480px) and (width:624px) {
    p {
        font-size: 0.7em;
    }

    .topics p {
        font-size: 0.7em;
    }

    .white .topics p {
        font-size: 0.7em;
    }


}

@media (min-width:1660px) {
    .menu-selector {
        top: 0.5em;
    }

    .barra-foot-home h2 {
        font-size: 2em;
        margin-top: 2em;
    }

    .white-h2 {
        margin: 8% 2rem 1rem 10%;
    }

    #slide6 .white-h2 {
        margin: 10rem 2rem 1rem 10%;
    }

    .yellow-box {
        margin: 0 auto 0 10%;
        width: initial;
    }

    .green-box {
        margin: 0 auto 0 10%;
        width: initial;
    }

    .ilust-temas {
        max-height: 700px;
    }

    #slide3 p {
        font-size: 1.4em;
        width: 70%;
    }

    #slide3 .text-column-white {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    #slide3 .white-h2 {
        margin: 8rem 2rem 1rem 10%;
    }

    #slide6 .white-p,
    #slide6 .green-box {
        width: 55%;
    }

    #slide9 p {
        line-height: 200%;
    }

    #slide10 li p {
        margin-bottom: 0;
        font-size: 1.2em;
        line-height: 150%;
    }

    .ilust-familia {
        max-width: 605px;
    }

    .participacao-title {
        font-size: 3em;
    }

    .subtexto-participacao-p {
        font-size: 1.5em;
    }

}

@media (max-width:1600px) {
    .site-title span {
        display: none;
    }
}

@media (min-width: 600px) and (max-width: 1154px) {
    .site-title {
        line-height: 100%;
        font-size: 1.6em;
    }

}

@media (min-width:1024px) and (max-width:1154px) {
    .menu-selector {
        top: 0.2em;
    }

    nav {
        top: 2em;
    }
}

@media (max-width: 480px) and (max-height: 640px) {
    .imgHome {
        width: 40%;
    }
    .barra-top-home .subtitle-h2 {
        font-size: 20px;
    }
}

@media (max-height: 650px) {
    .ilust-objetivos {
        width: 15%;
        margin-top: -15%;
    }

    .barra-top-home {
        padding-top: 10%;
    }
    .barra-top-home .subtitle-h2 {
        font-size: 18px;
    }

    #slide12 .imgRodape {
        width: 25% !important;
    }
}

@media (max-width: 360px) {
    .barra-top-home {
        padding-top: 15%;
    }
    .social-media {
        margin-left: 0;
    }

    #slide8 .topics p {
        line-height: 100%;
    }

    #slide11 .green-box {
        font-size: 0.8rem;
    }

    #slide12 .imgRodape {
        width: 25% !important
    }
}