@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

*{
    margin: 0;
    padding: 0;
    border: 0;
    box-sizing: border-box;
    font-family: sans-serif;
}

.introduction{
    background: url('./assets/backgroundSection-1.png');
    background-size: cover;
    min-height: 100vh;
    min-width: 100vw;
    display: flex;
    justify-content: center;
}

.introduction-content{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: left;
}

.introduction-content figure img{
    width: 80%;
}

.introduction-content p{
    font-size: 25px;
    color: #fff;
    display: flex;
    margin-left: 2%;
    
}

/* Section welcome */

.welcome{
    background: #2654a4;;
    background-size: cover;
    min-height: 100vh;
    min-width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
}

.welcome-content{
    display: flex;
    justify-content: center;
    align-items: center;
}

.welcome-content figure img{
    width: 100%;
}

.welcome-content p{
    width: 100%;
    font-size: 3rem;
    color: #fff;
    display: flex;
    margin-left: 2%;
}

/* Section benefit */

.benefit{
    background: #2654a4;;
    background-size: cover;
    min-height: 100vh;
    min-width: 100vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: left;
}

.benefit-logo img{
    width: 40%;
    position: relative;
}

.benefit-logo {
    position: relative;
    display: inline-block; /* Garante que o ::after respeite o tamanho da logo */
    
}

.benefit-logo::after {
    content: '';
    display: block;
    width: 40%;
    height: 5px;
    background: #fff;
    position: absolute;
    left: 0;
}

.benefit-img {
    max-width: 100%;
    height: auto;
    display: block;
    padding: 6% 0px 0px 6%;
    margin-left: auto;
    margin-right: auto;
}

/* Section  contabilityDatas*/

.contabilityDatas{
    background: #2654a4;
    background-size: cover;
    min-height: 100vh;
    min-width: 100vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.contabilityDatas__title{
    text-transform: uppercase;
    text-align: right;
    color: #fff;
    font-size: 2rem;
    position: relative;
    
}

.contabilityDatas-contents__content p{
    margin-top:20%;
    font-weight: 500;
}

.contabilityDatas-contents__content img{
    max-width: 100%;
}

.contabilityDatas__title::after{
    content: '';
    width: 100%;
    height: 5px;
    background: #fff;
    position: absolute;
    top: 90px;
    left: 0px;
}
.contabilityDatas-contents__content{
    display: flex;
    font-size: 2rem;
    font-weight: 600;
    color: #fff;
    text-align: justify;
    margin-top:20%;
    flex-wrap: wrap;
    justify-content: center;
}

/* Section app */

.app{
    background: #2654a4;
    background-size: cover;
    min-height: 100vh;
    min-width: 100vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.app img{
    width: 100%;
    max-width: 400px;
    align-self: start;
    margin-left: -120px;
}

.app div{
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-self: start;
}

.app h1 {
    color: #fff;
    font-size: 2rem;
    text-align: center;
    align-self: start;
    margin-right: 200px;
    max-width: 600px; /* Limita o tamanho do texto para manter a responsividade */
    text-transform: uppercase;
}

.app h1::after {
    content: ''; /* Adiciona a linha */
    display: block;
    width: 100%;
    height: 5px; /* Altura da linha */
    background-color: #fff; /* Cor da linha */
    margin: 10px 0 auto 0; /* Centraliza a linha */
  
}

.app p{
    font-size: 1.3rem;
    max-width: 600px;
    text-align: justify;
    font-weight: 500;
    color: #fff;
}

/* Section magazines */

.magazines {
    background:rgb(37, 82, 160);
    text-align: center;
    padding: 50px 20px;
}

.magazines__title {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 10px;
    text-transform: uppercase;
    font-weight: bold;
    position: relative; /* Necessário para o uso do ::after */
}



.magazines__title::after {
    content: ''; /* Adiciona a linha */
    display: block;
    width: 50%;
    height: 5px; /* Altura da linha */
    background-color: #fff; /* Cor da linha */
    margin: 10px auto 0; /* Centraliza a linha */
  
}
  
.magazines p {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 30px;
}

.magazines-contents {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.magazine-item {
    width: 300px;
    height: 400px;
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.magazine-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Section solicitations */

/* Section solicitations */
.solicitations {
    background-color: rgb(37, 82, 160);; /* Fundo azul */
    padding: 50px 20px;
    text-align: center;
    color: #fff;
}



.solicitations-title h1 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.solicitations-title::after{
    content: '';
    display: block;
    width: 50%;
    height: 5px;
    background-color: #fff;
    margin: 10px auto 0;
}


.solicitations-title .solicitations-subtitle {
    color: #F57900; /* Texto em laranja */
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.solicitations-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
}

.solicitations-image img {
    width: 400px;
    max-width: 100%;
    border-radius: 10px;
    
}

.solicitations-text {
    max-width: 400px;
    text-align: justify;
    font-size: 1.4rem;
    line-height: 1.5;
    margin-bottom: 50px;
}

/* Section map */

/* Section map */
.map {
    background-color: rgb(37, 82, 160); /* Fundo azul */
    padding: 50px 20px;
    text-align: center;
    color: #fff;
}

.map-title {
    font-size: 2.5rem;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 10px;
}



.map-underline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
}

.map-underline::before {
    content: '';
    display: inline-block;
    width: 60%; /* Comprimento da linha pontilhada */
    height: 5px;
    background-image: linear-gradient(to right, #C4E538 80%, transparent 70%);
    background-size: 12px 2px; /* Tamanho dos traços */
    border-radius: 5px;
}


.map-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.map-image img {
    width: 400px;
    max-width: 100%;
    border-radius: 10px;

}

.map-text {
    max-width: 400px;
    text-align: left;
    font-size: 1rem;
    line-height: 1.6;
}

/* Section Proposal */

.proposal {
    background: #fff;
    padding: 50px 20px; /* Adicionado para dar espaçamento interno */
    overflow: hidden; /* Garante que os conteúdos fiquem dentro da seção */
    max-width: 1200px; /* Define um limite máximo para o conteúdo */
    margin: 0 auto; /* Centraliza a seção na página */
    box-sizing: border-box; /* Inclui padding e border no tamanho total */
}

.imgs{
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.imgs img{
    max-width: 100%;
}

.imgs-new{
    display: flex;
    flex-direction: column;
    align-items: start;
}

.imgs .logo{
    width: 20%;
}

.data{
    display: flex;
    flex-direction: column;

    margin-block: 20px;
    text-align: end;
}

.data p{
    font-weight: 100;
    font-size: 14px;
}

.enterprise{
    display: flex;
    left: 0;
    position: relative;
    gap: 20px;
    margin: 0px auto 20px 0%;
    flex-wrap: wrap;
}



.block{
    width: 400px;
    height: 50px;
    background: rgb(217, 217, 217);
    border-radius: 10px;
}

.row{
    width: 5px;
    height: 50px;
    border-radius: 10px;
    background: #F57900;
}   

.proposal .proposal__text{
    text-align: justify;
    width: 100%;
}

.proposal h4{
    margin-right: auto;
    margin-left: 40%;
    position: relative;
}

.proposal h4::after{
    content: '';
    width: 500px;
    height: 1px;
    background: #F57900;
    position: absolute;
    bottom: 15px;
}

/* Section description */

.description {
    background: #fff;
    background-size: cover;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    flex-direction: column;
}

.description h1{
    margin-bottom: 5%;
    color: #F57900;
    text-align: center;
}

.description__block {
 position: relative;
 display: flex;
 align-items: flex-start;
 max-width: 100%;
 padding: 30px;
}

.block-orange {
    width: 60px;
    height: 99%;
    max-height: 100%;
    background: #F57900;
    border-radius: 5px;
    position: absolute;
    left: 15px;
    top: 5px;
}

.block-text {
    background: #faf4f4;
    padding: 20px;
    gap: 20px;
    border-radius: 5px;
    text-align: justify;
    letter-spacing: 1px;
    position: relative; /* Para evitar problemas de layout */
}

.block-text span{
    font-weight: bold;
}

/* Section price */

.price{
    background: rgb(37, 82, 160);
    background-size: cover;
    min-height: 100vh;
    min-width: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    gap: 100px;
    flex-wrap: wrap;
}

.price-img{
    margin-top: auto;
}

.price-img img{
    max-width: 100%;
}

.price-text{
    display: flex;
    flex-direction: column;
    gap: 50px;
    text-align: left;
    align-items: right;
}

.price-text .text{
    font-size: 1.5rem;
    font-weight: bold;
    color: #fff;
    text-align: center;
    padding: 30px;
}

.price-text .text span{
    color: #F57900;
}

.price-block {
    margin-bottom: 200px;
    margin-left: auto;
    margin-right: auto;
}

.price-block p {
    text-align: center;
    font-size: 22px;
    background: #fcfbfb;
    padding: 20px;
    border-radius: 10px;
    font-weight: 600;
    color: #545454;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.price-block span{
    color: #000;
}


.textoValor{
    font-size: 16px;
    max-width: 350px;
    text-align: center;
}
/* Section Footer */
.footer {
    background: url(./assets/backgroundFooter.png);
    background-size: cover;
    min-height: 100vh; /* Garante que o footer tenha altura mínima */
    color: #fff;
    padding: 50px 0 100px; /* Espaço extra inferior para evitar sobreposição */
    text-align: center;
    justify-content: center;
    display: flex;
    align-items: center;
    position: relative; /* Remove o absolute */

}

.footer-content {
    max-width: 1200px; /* Define uma largura máxima */
    margin: 0 auto;
    padding: 20px;
    width: 100%;
    
}

.footer-logo img {
    max-width: 100%;
    margin: 0 auto 10px;
}

.footer h2 {
    font-size: 2rem;
    margin: 10px 0;
}

.footer p {
    font-size: 1rem;
    margin: 5px 0;
}

.footer-info {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 30px 0;
}

.footer-address,
.footer-contact {
    flex: 1;
    margin: 10px;
}


.footer-address p,
.footer-contact p {
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    color: #fff;
    text-decoration: none;
}

.footer-address p:hover,
.footer-contact p:hover {
    transform: translateX(10px);
    color: #2758eb;
}

.footer-bottom {
    width: 100%;
    background: #2654a4;
    margin-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 20px;
    display: flex;
    justify-content: center;
    gap: 15px;
    position: absolute;
    bottom: 0;
    left: 0;
    flex-wrap: wrap;
}

.footer-bottom p {
    margin: 10px 0px;
    font-size: 1rem;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 5px;
}

.footer-socials a {
    margin: 0 10px;
    color: #C4E538;
    font-size: 1.0rem;
    text-decoration: none;
    margin-bottom: 10px;
}

.footer-socials a:hover {
    color: #fff;
    transform: scale(1.2);
}

.footer-contact p {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
 }
 
 .footer-socials a img{
    width: 40px;
    height: 40px;
    transition: all 0.3s;
 }
 
 .footer-socials a img:hover {
    transform: scale(1.2);
}
 
 .footer-socials{
     margin-bottom: 20px;
 }
 

@media (max-width: 500px) {
    .welcome-content p {
    width: 100%;
    font-size: 2rem;
    color: #fff;
    display: flex;
    margin-left: 2%;
 }
 
 .footer-info {
    flex-direction: column;
 }
 
 .footer-content{
     display: flex;
    flex-direction: column;
    align-items: center;
 }
 
 .price{
     gap: 0;
 }
 
 .price-img img{
    width: 420px;
    max-width: 100%;
 }

 .benefit-img{
    max-width: 90%;
 }

 .app h1{
    margin: 0;

 }
 
 .app{
     gap: 40px;
 }

 .app h1::after{
    width: 80%;
    margin: 10px auto 0;
 }

 .app p{
    max-width: 330px;
    align-self: center;
 }
 
  .app img {
    width: 100%;
    max-width: 300px;
    justify-self: center;
    margin-inline: auto;
}
}
