
:root {
  --white-color:                  #FFFFFF;
  --primary-color:                #0172b6;
  --section-bg-color:             #f9f9f9;
  --dark-color:                   #000000;
  --grey-color:                   #fcfeff;
  --text-secondary-white-color:   rgba(255, 255, 255, 0.98);
  --title-color:                  #565758;
  --p-color:                      #343434;

  --body-font-family:           'Noto Sans JP', sans-serif;

  --h1-font-size:               72px;
  --h2-font-size:               42px;
  --h3-font-size:               36px;
  --h4-font-size:               32px;
  --h5-font-size:               24px;
  --h6-font-size:               22px;
  --p-font-size:                14px;
  --copyright-text-font-size:   14px;
  --custom-link-font-size:      12px;

  --font-weight-light:          300;
  --font-weight-normal:         400;
  --font-weight-bold:           600;
  --font-weight-black:          900;
}

body,
html {
  height: 100%;
}

body {
    background: var(--white-color);
    font-family: var(--body-font-family);    
    position: relative;
}

/*---------------------------------------
  TYPOGRAPHY               
-----------------------------------------*/

h2,
h3,
h4,
h5,
h6 {
  color: var(--dark-color);
  line-height: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: var(--font-weight-bold);
}

h1,
h2 {
  font-weight: var(--font-weight-black);
}

h1 {
  font-size: var(--h1-font-size);
  line-height: normal;
}

h2 {
  font-size: var(--h2-font-size);
}

h3 {
  font-size: var(--h3-font-size);
}

h4 {
  font-size: var(--h4-font-size);
}

h5 {
  font-size: var(--h5-font-size);
}

h6 {
  font-size: var(--h6-font-size);
}

p {
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-light);
  letter-spacing: 0.5px;
}

.text-secondary-white-color {
  color: var(--text-secondary-white-color);
}

a, 
button {
  touch-action: manipulation;
  transition: all 0.3s;
}

a {
  color: var(--p-color);
  text-decoration: none;
}

a:hover {
  color: var(--primary-color);
}

::selection {
  background: var(--dark-color);
  color: var(--white-color);
}

.custom-underline {
  border-bottom: 2px solid var(--white-color);
  color: var(--white-color);
  padding-bottom: 4px;
}

.videoWrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  z-index: -100;
}

.custom-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.overlay {
  background: linear-gradient(to top, #000, transparent 90%);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}


 .btn-opus {
        display: inline-block;
        padding: 14px 28px;
        background-color: #6BAFDC; /* azul escuro - pode ajustar */
        color: #ffffff;
        font-size: 18px;
        font-weight: 600;
        border-radius: 8px;
        text-decoration: none;
        transition: 0.3s ease;
    }

    .btn-opus:hover {
        background-color: #3558c5; /* clareamento no hover */
        color: #6BAFDC;
        box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    }

.ul-cubo {
    list-style: none;
    padding-left: 0px;
    color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-light);
    font-weight: 300;
    font-style: oblique;
  letter-spacing: 0.5px;
}

.ul-cubo li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
}

.ul-cubo li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 13px;
    width: 10px;
    height: 10px;
    background-color: #0172b6; /* cor do cubo */
    transform: rotate(0deg);  /* cria efeito de cubo/diamante */
}


/*---------------------------------------
  CUSTOM LINK               
-----------------------------------------*/
.custom-links {
  max-width: 230px;
}

.custom-link {
  position: relative;
  overflow: hidden;
  z-index: 1;
  display: inline-block;
  transition: all .3s cubic-bezier(.645,.045,.355,1);
}

.custom-link::after {
  content: "";
  width: 0;
  height: 2px;
  bottom: 0;
  position: absolute;
  left: auto;
  right: 0;
  z-index: -1;
  transition: width .6s cubic-bezier(.25,.8,.25,1) 0s;
  background: currentColor;
}

.custom-link:hover::after {
  width: 100%;
  left: 0;
  right: auto;
}

.custom-link:hover,
.custom-link:hover::after {
  color: var(--white-color);
}

b,
strong {
  font-weight: var(--font-weight-bold);
}

/*---------------------------------------
  NAVIGATION               
-----------------------------------------*/

.navbar {
  z-index: 9;
  right: 0;
  left: 0;
  padding-top: 5px;
  padding-bottom: 5px;
}

.navbar-brand {
  color: var(--primary-color);
  font-size: 15px;
    
  background-image: url(../images/LOGO_opus4.png);
    background-repeat: no-repeat;
    background-position: left;
    background-size: 15px ;
    margin: 0px 10px 0px 0px;               /* todas as laterais com 10px */
    margin-left: 0;  
    
    
    
    
  font-weight: var(--font-weight-bold);
}

.navbar-expand-lg .navbar-nav .nav-link {
  padding-right: 10px;
  padding-left: 10px;
}

.navbar-nav .nav-link::after {
  content: "\f140";
  font-family: bootstrap-icons;
  display: inline-block;
  margin-left: 10px;
  color: var(--primary-color);
  opacity: 0;
  -webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
  -moz-transition: opacity 0.3s, -moz-transform 0.3s;
  transition: opacity 0.3s, transform 0.3s;
  -webkit-transform: translateY(10px);
  -moz-transform: translateY(10px);
  transform: translateY(10px);
}

.navbar-nav .nav-link:hover::after {
  opacity: 1;
  -webkit-transform: translateY(0px);
  -moz-transform: translateY(0px);
  transform: translateY(0px);
}

.navbar-nav .nav-link {
  color: var(--p-color);
  font-size: 14px;
  font-weight: var(--font-weight-bold);
  position: relative;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-item.active .nav-link::after {
  color: var(--primary-color);
  opacity: 1;
  -webkit-transform: translateY(0px);
  -moz-transform: translateY(0px);
  transform: translateY(0px);
}

.navbar-nav .nav-item.active .nav-link,
.nav-link:focus, 
.nav-link:hover {
  color: var(--dark-color);
}

.nav-link:focus {
  color: var(--p-color);
}

.navbar-toggler {
  border: 0;
  padding: 0;
  cursor: pointer;
  margin: 0;
  width: 30px;
  height: 35px;
  outline: none;
}

.navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
  background: transparent;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before,
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transition: top 300ms 50ms ease, -webkit-transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease, -webkit-transform 300ms 350ms ease;
  top: 0;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before {
  transform: rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transform: rotate(-45deg);
}

.navbar-toggler .navbar-toggler-icon {
  background: var(--dark-color);
  transition: background 10ms 300ms ease;
  display: block;
  width: 30px;
  height: 2px;
  position: relative;
}

.navbar-toggler .navbar-toggler-icon:before,
.navbar-toggler .navbar-toggler-icon:after {
  transition: top 300ms 350ms ease, -webkit-transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease, -webkit-transform 300ms 50ms ease;
  position: absolute;
  right: 0;
  left: 0;
  background: var(--dark-color);
  width: 20px;
  height: 2px;
  content: '';
}

.navbar-toggler .navbar-toggler-icon:before {
  top: -8px;
}

.navbar-toggler .navbar-toggler-icon:after {
  top: 8px;
}

/*---------------------------------------
  HERO              
-----------------------------------------*/
.hero {
  position: relative;
  overflow: hidden;
}

@media screen and (min-width: 992px) {
  .hero {
    height: 100vh;
  }

  .custom-video,
  .news-detail-image {
    object-fit: cover;
    width: 100vw;
    height: 100vh;
  }

  .sticky-wrapper {
    position: relative;
    bottom: 76px;
  }
}

.heroText {
  position: absolute;
  z-index: 9;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 85%;
  text-align: center;
}

/*---------- quadro ------------------*/

.info-frame {
    animation: slideUp 0.9s ease-out forwards;
    opacity: 0;
    transform: translateY(30px);
}

/* Brilho suave ao passar o mouse */
.info-frame:hover {
    box-shadow: 0 0 18px rgba(0, 150, 90, 0.4);
    transition: 0.3s;
}

/* Keyframes */
@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.overlay-wrapper {
    position: relative;
    overflow: hidden;
}

/* QUADRO SOBREPOSTO */
.info-overlay {
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(6px);
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 0 20px rgba(0,0,0,0.25);
    border-radius: 0 15px 15px 0;
    transition: 0.9s ease;
}

/* QUANDO ENTRAR NA TELA */
.info-overlay.animate {
    left: 0;
}

/* TÍTULO */
.info-overlay h4 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 15px;
}

/* TEXTO */
.info-overlay p {
   
    line-height: 1.6;
    color: var(--p-color);
    font-size: 18px;
    font-weight: var(--font-weight-bold);
}




/* aqui do quadro*/







/*fim*/


/* SUAVIZAÇÃO NA IMAGEM */
.overlay-wrapper img {
    transition: 0.6s;
}

.overlay-wrapper:hover img {
    filter: brightness(0.8);
}


.overlay-wrapper {
    position: relative;
    overflow: hidden;
}

/* Imagem */
.overlay-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

/* Quadro azul */
.info-blue-box {
    position: absolute;
    top: 0;
    left: -50%; /* começa fora da tela (como no seu efeito) */

    width: auto;          /* ajusta conforme o conteúdo */
    max-width: 90%;       /* limite de largura */
    height: auto;         /* ajusta conforme o texto */

    background: #0172b6 url(../images/portfolio/fun.png);
    color: #fff;

    display: flex;
    flex-direction: column;
    justify-content: center;

    transition: 0.9s ease-in-out;
    box-shadow: 5px 0 20px rgba(0,0,0,0.25);

    padding: 10px 10px;
    font-size: 18px;

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    border-bottom-left-radius: 30px;
    border-top-right-radius: 30px;
}
/* Quando entrar na tela */
.info-blue-box.animate {
    left: 00;
}

/* Estilo de título */
.info-blue-box h4 {
      color: var(--p-color);
        font-size: 16px;
        font-weight: var(--font-weight-bold);
    vertical-align: middle;
    margin-bottom: 18px;
}

/* Texto */
.info-blue-box p {
     color: #ffffff;
    font-size: 16px;
    font-weight:300;
    line-height: 1.6;
}

/* Efeito hover na imagem */
.overlay-wrapper:hover img {
    filter: brightness(0.75);
    transition: 0.5s ease;
    
}

.cont{
    font-size: 16px;
    font-weight:300;
    line-height: 1.6;
    
}

/*---------------------------------------
  pagina inicial         
-----------------------------------------*/
.about-image,
.team-image {
  width: 100%;
  height: 100%;
  max-height: 635px;
  min-height: 635px;
  object-fit: cover;
  
}
.about-image2,
.team-image2 {
  width: 100%;
  height: 100%;
  
  max-height: 935px;
  min-height: 450px;
  object-fit: cover;
  
    
}
.esg h2,h5{
color: #fff;    
    
}

.team-image3 {
  width: 100%;
  height: 100%;

}
.info-box-opus {
    background: #0172b6;  
    position: relative;
    background: #0172b6 url(../images/portfolio/fun.png) ; /* azul escuro moderno */
    background-size: cover;      /* Ajuste total */
    background-position: center; /* Centralizada */
    background-repeat: no-repeat;
    z-index: 2;
}

/* compliance*/

/* Reduz altura geral da seção */
#compliance.section-padding {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
}

/* Reduz altura do quadro azul */
.info-box-opus {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
    display: flex;
    align-items: center;
}

/* Reduz altura do interior do quadro */
.info-box-opus .d-flex {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
}

/* Imagens laterais mais compactas */
.about-image,
.team-image2 {
    max-height: 420px;      /* Ajuste fino da altura */
    object-fit: cover;
}

/* Evita colunas gigantes em telas grandes */
#compliance .col-lg-6,
#compliance .col-lg-3 {
    max-height: 450px;
    overflow: hidden;
}
/* fim*/


.team-thumb {
  background: var(--white-color);
  position: absolute;
  bottom: 0;
  right: 0;
  width: 80%;
  padding: 45px 20px 45px 35px;
  
  border-top-left-radius: 35px;    /* superior direito */
}

.team-thumb2 {
  background: var(--white-color);
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  padding: 50px 50px 50px 50px;
}

.carousel-control-next, 
.carousel-control-prev {
  top: auto;
  bottom: 0.3rem;
}

.carousel-control-prev {
  right: 4rem;
  left: auto;
}

.carousel-control-next-icon, 
.carousel-control-prev-icon {
  background-color: var(--dark-color);
  background-size: 60% 60%;
  border-radius: 100px;
  width: 3rem;
  height: 3rem;
}
/*quadros*/
/* Vídeo de fundo */
.quadros-container video.bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 60%;
    object-fit: cover;
    z-index: -1;
    opacity: 0.8; /* suaviza o vídeo */
    filter: blur(0px);
}

/* Container principal */
.quadros-container {
    position: relative;       /* necessário para o vídeo ficar atrás */
    display: flex;
    gap: 10px;
    width: auto;
    font-weight: 300;
    height: auto;
    padding: 20px 10px 10px 10px;
    box-sizing: border-box;
    overflow: hidden;         /* impede o vídeo de ultrapassar */
}/* Estilo base dos quadros */
.quadro {
    flex: 1;
    padding: 20px;
    color: #fff;
    
    
    backdrop-filter: blur(1px);
    box-shadow: 0 8px 25px rgba(00, 00, 00, 0.10);
    
    /*background: #0172b6;*/
    
    background: linear-gradient(
        to bottom,
        rgba(1, 114, 182, 0.50) 0%,   /* 10% opacidade no topo */
        
        rgba(1, 114, 182, 1.00) 100% /* cor sólida embaixo */
    );
}
    border: 1px;
    position: relative;
    
    background-size: cover;      /* Ajuste total */
    background-position: center; /* Centralizada */
    background-repeat: no-repeat;
    
    transform: translateX(-40px);
    animation: fadeSlide 1.2s ease forwards;

    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Delay moderno para entrada suave */
.quadro2 { animation-delay: 0.2s; 
border-radius: 35px 0px 0px 0px;}
.quadro1 { animation-delay: 0.4s; 
border-radius: 35px 0px 0px 0px;}
.quadro3 { animation-delay: 0.6s; 
border-radius: 0px 0px 35px 0px;
}

/* Títulos */
.quadro h2 {
    font-size: 20px;
    margin-bottom: 5px;
    font-weight: 500;
    letter-spacing: 2px;
    color: #fff;
    text-shadow: 2px 2px 2px rgba(10, 10, 10, 0.3);
    letter-spacing: -0.2px;
    
    
}





/* Textos */
.quadro p {
    font-size: 16px;
    line-height: 1.6;
    letter-spacing: -0.1px;
    font-weight: 300;
    color: #fff;
    text-shadow: 1px 1px 5px #000;
    text-align: justify;
}

/* Animação moderna */
@keyframes fadeSlide {
    0% {
        opacity: 0;
        transform: translateX(-45px);
        filter: blur(6px);
    }
    60% {
        opacity: 1;
        transform: translateX(5px);
        filter: blur(2px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
        filter: blur(0px);
    }
}

/* Responsividade para telas menores */
@media (max-width: 900px) {
    .quadros-container {
        flex-direction: column;
        height: auto;
    }
    
    .quadro {
        height: auto;
    }
}

/* vídeo */




/*fim vídeo*/
/*---------------------------------------
  PORTFOLIO               
-----------------------------------------*/
.portfolio-thumb {
  position: relative;
  overflow: hidden;
}

.portfolio-info {
  margin: 5px 10px 20px 20px;
}

/*---------------------------------------
  NEWS & EVENTS               
-----------------------------------------*/

.news,
.related-news {
  background: var(--section-bg-color);
}

.news-thumb {
  position: relative;
}

.news-category {
  background: var(--white-color);
  position: absolute;
  z-index: 9;
  top: 0;
  left: 0;
  padding: 4px 4px;
  display: inline-block;
}

.news-text-info {
  margin: 0 20px;
}

.news-title {
  margin-top: 15px;
  margin-bottom: 15px;
}

.news-title-link {
  color: var(--title-color);
  display: inline-block;
}

.news-title-link:hover {
  color: var(--dark-color);
}

.portfolio-image,
.news-image {
  display: block;
  transition: transform 0.6s ease-out;
}

.news-image-hover {
  display: inline-block;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: all .3s cubic-bezier(.645,.045,.355,1);
  padding-bottom: 4px;
  height: 100%;
}

.news-image-hover::after {
  content: "";
  width: 0;
  height: 4px;
  bottom: 0;
  position: absolute;
  left: auto;
  right: 0;
  z-index: -1;
  transition: width .6s cubic-bezier(.25,.8,.25,1) 0s;
  background: #198754;
}

.news-image-hover-warning::after {
  background: #ffc107;
}

.news-image-hover-primary::after {
  background: #0d6efd;
}

.news-image-hover-success::after {
  background: #198754;
}

.news-image-hover:hover::after {
  width: 100%;
  left: 0;
  right: auto;
  z-index: 9;
}

.image-popup:hover .portfolio-image,
.news-image-hover:hover .news-image {
  transform: scale(1.02);
}

.news-two-column {
  min-height: 199px;
  margin-bottom: 16px;
}

.news-two-column .news-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.social-share-link,
.social-share-link + span {
  color: rgba(255, 255, 255, 0.65);
}

/*---------------------------------------
  SECTION               
-----------------------------------------*/
.section-padding {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

/*---------------------------------------
  CONTACT              
-----------------------------------------*/
.contact-info {
  padding: 40px;
}

.contact-form .form-control {
  border-radius: 0;
  font-weight: var(--font-weight-normal);
  padding-top: 12px;
  padding-bottom: 12px;
}

.contact-form button[type='submit'] {
  background: var(--dark-color);
  border: none;
  border-radius: 100px;
  color: var(--white-color);
  font-weight: var(--font-weight-bold);
  text-transform: uppercase;
  padding: 16px;
  transition: all 0.6s ease-out;
}

.contact-form button[type='submit']:hover {
  background: var(--primary-color);
}

.form-label {
  color: var(--p-color);
  font-weight: var(--font-weight-bold);
}

.map-iframe {
  display: block;
  filter: grayscale(100);
}

/*---------------------------------------
  SITE FOOTER               
-----------------------------------------*/
.site-footer {
  background: var(--dark-color);
  padding-top: 4.5rem;
  padding-bottom: 2.5rem;
}

.site-footer .custom-link {
  color: rgba(255, 255, 255, 0.65);
  font-size: var(--p-font-size);
}

.site-footer .custom-link:hover,
.site-footer .social-icon-link:hover {
  color: var(--white-color);
}

.copyright-text {
  color: rgba(255, 255, 255, 0.45);
  font-size: var(--copyright-text-font-size);
}

/*---------------------------------------
  SOCIAL ICON               
-----------------------------------------*/
.social-icon {
  margin: 0;
  padding: 0;
}

.social-icon li {
  list-style: none;
  display: inline-block;
  vertical-align: top;
}

.social-icon-link {
  color: rgba(255, 255, 255, 0.45);
  font-size: 1rem;
  display: inline-block;
  vertical-align: top;
  margin-top: 4px;
  margin-bottom: 4px;
  margin-right: 15px;
}

.social-icon-link:hover {
  color: var(--primary-color);
}

/*---------------------------------------
  RESPONSIVE STYLES               
-----------------------------------------*/
@media screen and (min-width: 1600px) {
  .news-two-column {
    min-height: 232.5px;
  }
}

@media screen and (max-width: 991px) {
  h1 {
    font-size: 48px;
  }

  h2 {
    font-size: 36px;
  }

  h3 {
    font-size: 32px;
  }

  h4 {
    font-size: 28px;
  }

  h5 {
    font-size: 20px;
  }

  h6 {
    font-size: 18px;
  }

  .navbar {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .section-padding {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .team-thumb {
    left: 0;
    width: auto;
  }

.team-thumb2 {
    left: 0;
    width: auto;
  }    
    
  .news-two-column {
    height: auto !important;
    min-height: inherit;
  }

  .news .col-12 .news-two-column:first-child {
    margin-bottom: 38px;
  }
}

@media screen and (max-width: 767px) {
  .news-detail-title {
    font-size: 36px;
  }
}

@media screen and (max-width: 360px) {
  h1 {
    font-size: 32px;
  }

  .heroText p {
    font-size: 14px;
  }
}

@media screen and (max-width: 359px) {
  .news-detail-title {
    font-size: 22px;
  }
}


.painel-overlay{
position:fixed;
top:0;
right:-100%;
width:100%;
height:100%;
background:rgba(0,0,0,0.6);
transition:0.4s;
z-index:9999;
display:flex;
justify-content:flex-end;
}

.painel-overlay.ativo{
right:0;
}

.painel-overlay2{
position:fixed;
top:0;
right:-100%;
width:100%;
height:100%;
background:rgba(0,0,0,0.6);
transition:0.4s;
z-index:9999;
display:flex;
justify-content:flex-end;
}

.painel-overlay2.ativo{
right:0;
}

.painel-conteudo{
background:#fff;
width:500px;
max-width:100%;
height:100%;
padding:40px;
overflow-y:auto;
box-shadow:-10px 0 30px rgba(0,0,0,0.2);
animation:slide .4s;
}

.painel-conteudo2{
background:#fff;
width:500px;
max-width:100%;
height:100%;
padding:40px;
overflow-y:auto;
box-shadow:-10px 0 30px rgba(0,0,0,0.2);
animation:slide .4s;
}

@keyframes slide{
from{
transform:translateX(100%);
}
to{
transform:translateX(0);
}
}

.fechar{
position:absolute;
top:15px;
right:20px;
border:none;
background:none;
font-size:26px;
cursor:pointer;
}

.conteudo-texto{
  margin-top: 20px;
  line-height: 2.2;
  font-weight: 500; /* mais forte */
  letter-spacing: 1px; /* melhora presença do texto */
  color: #000000; /* deixa visualmente mais forte */
  text-align: justify;
}

.conteudo-texto2{
margin-top: 20px;
  line-height: 1.6;
  font-weight: 500; /* mais forte */
  letter-spacing: 0.5px; /* melhora presença do texto */
  color: #000000; /* deixa visualmente mais forte */
  text-align: justify;
}

@media(max-width:768px){

.painel-conteudo{
width:100%;
padding:25px;
}
    
.painel-conteudo2{
width:100%;
padding:25px;
}

}