.fundo {
    position: relative;
    min-height: 100vh;
    background: #202020;
    z-index: 1;
    overflow: hidden;
    color: rgb(255, 255, 255);
}

.fundo::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(
        to top,
        rgba(206, 166, 58, 0.473),
        rgba(0, 0, 0, 0)
    );
    pointer-events: none;
}

/* CONTAINER PRINCIPAL */
.quadrado-text {
    margin: 300px 200px 200px;
    border: 8px solid rgb(219, 165, 18);
    display: flex;
    justify-content: center;
}

/* CONTEÚDO INTERNO (DUAS COLUNAS) */
.conteudo {
    display: flex;
    align-items: flex-start; /* alinhamento pelo topo */
    gap: 60px;
    
}

/* COLUNAS */
.cont-left,
.cont-rigth {
    margin: 20px;
}



.cont-left {
    margin-left: 50px;
    max-width: 700px;
}

/* TEXTO */
.textos {
    display: flex;
    flex-direction: column;
    padding: 40px;
}

 h3{
    margin-top: 100px;
    font-size: 21px;
    color: #5d5d5d;
    margin-bottom: 30px;
    font-weight: lighter;
    font-family: Arial, Helvetica, sans-serif;
}

hr{
    border: none;
    height: 1px;
    width: 100%;
    background-color: rgb(218, 167, 0);
    margin-bottom: 30px;
}

.cont-rigth span{
    color: #727272;
    font-weight: bold;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-size: 25px;
    margin-bottom: 30px;
}

.cont-rigth p{
    font-size: 20px;
    margin-bottom: 200px;
    color: #5d5d5d;
}

.cont-left p{
    font-size: 20px;
    margin-bottom: 200px;
    color: #5d5d5d;
}

.cont-rigth hr{
    margin-right: 0;
    width: 620px;
}

/* TÍTULOS */
.textos h1,
.textos h2 {
    margin-top: 0; /* remove desnível */
}

.textos h1 {
    font-size: 50px;
    margin-right: 77px;
    font-weight: bold;
    margin-bottom: 35px;
}

.textos h2 {
    font-size: 20px;
    font-weight: lighter;
    margin-bottom: 35px;
}

/* PARÁGRAFOS */
.textos p {
    font-size: 21px;
    margin-bottom: 18px;
    font-weight: lighter;
}

/* ÍCONES */
.textos i {
    margin-right: 10px;
    font-size: 26px;
    font-weight: 100;
    font-family: 'Courier New', Courier, monospace;
}

/* IMAGEM (se houver) */
.img {
    padding: 0;
    margin: 0;
}


.flexwp{
    gap: 50px;
    display: flex;
    justify-content: center;
    
}

.flexwp p{
    font-size: 25px; 
    margin-top: 30px;
    margin-bottom: 30px;
    color: #4f4f4f;
    font-weight: 400;
}

.flexwp a{
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-size: 15px; 
    margin-top: 40px;
    color: #a38634;
    font-weight: bold;
    text-decoration: none;
}

.flexwp a:hover{
    text-decoration: underline;
}

.flexwp i{
    position: absolute;
    font-size: 25px;
}

.cont-two{
    background-color: #eaeaea;
    border-top: 1px solid #bd9100;
    padding-bottom: 200px;
}

.cont-two hr{
width: 89%;
margin-left: 85px;
height: 0.5px;
}

.cont-two h2{
    margin-top: 70px;
    font-size: 22px;
    color: #4f4f4f;
    font-weight: lighter;
    font-family: 'Times New Roman', Times, serif;
    margin-left: 85px;
    margin-bottom: 40px;
}


@media (max-width: 1024px){
    .conteudo{
        display: flex;
        flex-direction: column;
        gap: 10px;
        margin-bottom: 50px;
    }

    .quadrado-text{
        display: flex;
        flex-direction: column-reverse;
        margin: 130px 20px 20px;
    border: 3px solid rgb(219, 165, 18);
    
    }

    .quadrado-text img{
        width: 100%;
        
    }
    
}


@media (max-width: 768px) {

   


    .cont-two {
      padding-bottom: 50px;
    }
  
    .cont-two h2 {
      font-size: 20px;
      text-align: center;
      margin-left: 0;
    }
  
    .cont-two hr {
      width: 80%;
      margin-left: 0;
    }
  
    .flexwp {
      flex-direction: column;     /* empilha imagens */
      align-items: center;
      gap: 30px;
      padding: 0 20px;
    }
  
    .flexwp img {
      width: 100%;
      height: auto;               /* mantém proporção */
    }
  
    .flexwp p {
      font-size: 18px;
      text-align: center;
    }
  
    .flexwp a {
      font-size: 14px;
      display: inline-block;
      margin-top: 10px;
    }
  }