* {
  box-sizing: border-box;
}

.row::after {
  content: "";
  clear: both;
  display: block;
}

[class*="col-"] {
  float: left;
  padding: 0px;
}

html { overflow-x: hidden; }

body { 
  margin: 0px;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  line-height: 1.6;
}

body img { border: 0; }

body a {
  text-decoration: none; 
  color: #38707d;
  transition: all 0.3s ease;
}

/* ===== HEADER MODERNO ===== */
.header {
  background-color: white;
  color: #324999;
  padding: 0 15px;
  height: auto;
  min-height: 120px;
  box-shadow: 0 2px 20px rgba(0,0,0,0.1);
  position: relative;
  z-index: 1000;
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 15px 0;
}

.logo-section {
  flex: 0 0 auto;
}

.logo-section img {
  max-width: 280px;
  height: auto;
  transition: transform 0.3s ease;
}

.logo-section img:hover {
  transform: scale(1.05);
}

.nav-section {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.links-logados {
  background-color: #F7F7F7;
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  color: #324999;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  margin-right: 20px;
}

.links-logados a { 
  color: #324999;
  transition: color 0.3s ease;
}

.links-logados a:hover {
  color: #f18b43;
}

.menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: block;
  gap: 30px;
}

.menu li {
  margin: 0;
}

.menu li a {
  color: #324999;
  font-weight: 600;
  font-size: 16px;
  padding: 8px 0;
  position: relative;
}

.menu li a:hover {
  color: #f18b43;
}

.menu li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #f18b43;
  transition: width 0.3s ease;
}

.menu li a:hover::after {
  width: 100%;
}

.ativo a { 
  color: #f18b43;
}

.ativo a::after {
  width: 100%;
}

/* ===== HERO SECTION ATUALIZADA ===== */
.hero-section {
  background: linear-gradient(135deg, #38707d 0%, #324999 100%);
  color: white;
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('img/fundo-logo.png') center/cover no-repeat;
  opacity: 0.1;
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.2;
}

.hero-content p {
  font-size: 1.3rem;
  margin-bottom: 30px;
  opacity: 0.9;
  max-width: 600px;
}

.cta-button {
  display: inline-block;
  background: linear-gradient(45deg, #6b4290, #f18b43);
  color: white;
  padding: 16px 32px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(107, 66, 144, 0.3);
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(107, 66, 144, 0.4);
  color: white;
}

/* ===== SEÇÃO DE DESTAQUE ===== */
.featured-section {
  background-color: #e7e7e7;
  padding: 60px 20px;
}

.featured-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* ===== BUSCA ATUALIZADA ===== */
.search-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 80px 20px;
  position: relative;
}

.search-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #f18b43, #6b4290, #324999, #38707d);
}

.search-container {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.search-section h2 {
  color: #324999;
  font-size: 2.5rem;
  margin-bottom: 40px;
  font-weight: 700;
  position: relative;
  padding-bottom: 15px;
}

.search-section h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: #f18b43;
  border-radius: 2px;
}

.search-form {
  background: white;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.search-form select {
  width: 100%;
  padding: 16px;
  margin: 12px 0;
  border: 2px solid #e9ecef;
  border-radius: 10px;
  font-size: 16px;
  font-family: inherit;
  background: white;
  color: #495057;
  transition: all 0.3s ease;
}

.search-form select:focus {
  outline: none;
  border-color: #38707d;
  box-shadow: 0 0 0 3px rgba(56, 112, 125, 0.1);
}

.search-form input[type="submit"] {
  width: 100%;
  background: linear-gradient(45deg, #38707d, #324999);
  color: white;
  padding: 16px;
  border: none;
  border-radius: 10px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 20px;
}

.search-form input[type="submit"]:hover {
  background: linear-gradient(45deg, #f18b43, #6b4290);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(241, 139, 67, 0.3);
}

/* ===== CONTEÚDO DE TEXTO ATUALIZADO ===== */
.content-section {
  padding: 80px 20px;
  background: #f8f8f8;
  text-align: center;
  position: relative;
}

.content-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #f18b43, #6b4290, #324999, #38707d);
}

.content-section h2 {
  color: #38707d;
  font-size: 2.5rem;
  margin-bottom: 30px;
  font-weight: 700;
}

.search-text-form {
  max-width: 600px;
  margin: 0 auto;
}

.search-text-form input[type="text"] {
  width: 70%;
  padding: 14px;
  border: 2px solid #e9ecef;
  border-radius: 8px 0 0 8px;
  font-size: 16px;
  margin-right: -4px;
}

.search-text-form button {
  width: 30%;
  padding: 14px;
  background: #38707d;
  color: white;
  border: 2px solid #38707d;
  border-radius: 0 8px 8px 0;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.search-text-form button:hover {
  background: #324999;
  border-color: #324999;
}

/* ===== ARTIGOS EM DESTAQUE ===== */
.featured-articles {
  background: #e7e7e7;
  padding: 60px 20px;
}

.main-article {
  max-width: 1200px;
  margin: 0 auto 60px;
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  display: flex;
  flex-wrap: wrap;
}

.article-image {
  flex: 1;
  min-width: 300px;
}

.article-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-content {
  flex: 2;
  min-width: 300px;
  padding: 40px;
}

.article-content h1 {
  color: #38707d;
  font-size: 2rem;
  margin-bottom: 20px;
  line-height: 1.3;
}

.article-content h1 a {
  color: inherit;
}

.article-content h1 a:hover {
  color: #f18b43;
}

.article-excerpt {
  color: #495057;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.read-more {
  color: #f18b43;
  font-weight: 600;
  font-size: 1rem;
}

.read-more:hover {
  text-decoration: underline;
}

.articles-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.article-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.article-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.article-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.article-card-content {
  padding: 25px;
}

.article-card h2 {
  color: #38707d;
  font-size: 1.3rem;
  margin-bottom: 15px;
  line-height: 1.4;
}

.article-card h2 a {
  color: inherit;
}

.article-card h2 a:hover {
  color: #f18b43;
}

.article-card p {
  color: #495057;
  line-height: 1.5;
  margin-bottom: 15px;
}

/* ===== MOTIVOS SECTION ATUALIZADA ===== */
.reasons-section {
  background: white;
  padding: 80px 20px;
}

.reasons-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.reasons-section h1 {
  color: #38707d;
  font-size: 2.5rem;
  margin-bottom: 50px;
  font-weight: 700;
}

.reasons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-bottom: 50px;
}

.reason-item {
  background: #f8f9fa;
  padding: 25px;
  border-radius: 10px;
  border-left: 4px solid #f18b43;
  transition: all 0.3s ease;
}

.reason-item:hover {
  background: white;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  transform: translateY(-3px);
}

.reason-item span {
  color: #324999;
  font-weight: 600;
  font-size: 1.1rem;
}

.reasons-image {
  margin-top: 40px;
}

.reasons-image img {
  max-width: 300px;
  height: auto;
}

/* ===== FOOTER ATUALIZADO ===== */
.footer {
  background: linear-gradient(135deg, #38707d 0%, #324999 100%);
  color: white;
  padding: 60px 20px 30px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-nav {
  text-align: center;
  margin-bottom: 40px;
}

.footer-nav h3 {
  margin-bottom: 25px;
}

.footer-nav a {
  color: #f18b43;
  font-weight: 600;
  margin: 0 15px;
  font-size: 1.1rem;
}

.footer-nav a:hover {
  color: white;
}

.footer-links {
  text-align: center;
  margin-bottom: 40px;
}

.footer-links a {
  color: #e9ecef;
  font-size: 0.9rem;
  margin: 0 10px;
  line-height: 2;
}

.footer-links a:hover {
  color: #f18b43;
}

.footer-links p {
  margin-top: 20px;
  color: #adb5bd;
  font-size: 0.8rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.social-links a {
  margin-right: 15px;
}

.social-links img {
  transition: transform 0.3s ease;
}

.social-links img:hover {
  transform: scale(1.1);
}

.footer-logo img {
  max-width: 150px;
  opacity: 0.8;
}

/* ===== RESPONSIVIDADE ATUALIZADA ===== */
@media screen and (max-width: 1024px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .menu ul {
    gap: 20px;
  }
}

@media screen and (max-width: 768px) {
  .header-container {
    flex-direction: column;
    text-align: center;
    padding: 15px;
  }
  
  .nav-section {
    flex-direction: column;
    width: 100%;
    margin-top: 15px;
  }
  
  .links-logados {
    margin: 10px 0;
    order: -1;
  }
  
  .menu ul {
    flex-direction: column;
    gap: 10px;
  }
  
  .hero-content h1 {
    font-size: 2rem;
  }
  
  .hero-content p {
    font-size: 1.1rem;
  }
  
  .search-text-form {
    display: flex;
    flex-direction: column;
  }
  
  .search-text-form input[type="text"],
  .search-text-form button {
    width: 100%;
    border-radius: 8px;
    margin: 5px 0;
  }
  
  .main-article {
    flex-direction: column;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}

@media screen and (max-width: 480px) {
  .hero-section {
    padding: 60px 20px;
  }
  
  .hero-content h1 {
    font-size: 1.8rem;
  }
  
  .search-section h2,
  .content-section h2,
  .reasons-section h1 {
    font-size: 2rem;
  }
  
  .search-form,
  .article-content {
    padding: 25px;
  }
  
  .articles-grid {
    grid-template-columns: 1fr;
  }
  
  .reasons-grid {
    grid-template-columns: 1fr;
  }
}

/* Mantenha suas classes de grid existentes */
.col-1 {width: 8.33%;}
.col-2 {width: 16.66%;}
.col-3 {width: 25%;}
.col-4 {width: 33.33%;}
.col-5 {width: 41.66%;}
.col-6 {width: 50%;}
.col-7 {width: 58.33%;}
.col-8 {width: 66.66%;}
.col-9 {width: 75%;}
.col-10 {width: 83.33%;}
.col-11 {width: 91.66%;}
.col-12 {width: 100%;}

/* Mantenha outras classes existentes que não foram modificadas */
pre {
  font-family: inherit;
  font-size: 16px;
  width: 100%;
  overflow: auto;
  padding: 10px;
  background-color: #f8f8f8;
  border: 1px solid #ddd;
  white-space: pre-wrap;
  word-wrap: break-word;
  border-radius: 5px;
  box-shadow: 1px 1px 1px rgba(0,0,0,0.3);
}

/* ... mantenha o resto do seu CSS original que não foi modificado ... */



.header {
  background-color:white;
  color: #324999;
  padding-left: 15px;
  font-size: 30px;
  height: 160px;
  vertical-align: middle;
    
  }

  

  .links-logados {
    float: right; 
    margin-right: 2%;
    text-align: center;
    width: auto;   
    height: auto;
    padding-right: 30px; color:#324999;    
    font-weight: bold;
    padding-left: 20px; 
    padding-right: 20px;
    padding-top: 5px;
    padding-bottom: 10px; 
    margin-bottom: 2px;
    font-size: 14px;
    background-color: #F7F7F7;
    box-shadow: 1px 1px 2px 0px rgba(0,0,0,0.75);
    border-radius: 3%;
    margin-top: -2px;
  }
  .links-logados a { color: #324999; padding-top: 0px;}

  .links-logados a:hover {
    font-weight: bolder;    
    color: #f18b43;
  }

  .links-logados {
    position: fixed; right: 0px; top: 3px; font-size: 14px; z-index: 1000;
  }

  .menu {
    text-align: right;
    float: right;
    vertical-align: middle;
    padding-top: 0px;
  }
  .menu ul {
    list-style: none;
    padding-top: 70px;
    padding-right: 30px;
  }

  .menu li {
    padding-left: 20px;
    display: inline;
  }

  .menu li a {
    color: #324999;
    text-decoration: none;
  }

  .menu li a:hover {
    color: #f18b43;
  }

  .ativo a { color: #f18b43; }

  

  #form-container {
    width: 400px;
    height: 500px;
    padding: 115px;
    padding-top: 60px;
    padding-left: 92px;
    background-color: #F7F7F7;
    border-radius: 2%;
    position: relative;
  }

  #form-container img {width: 180px;}

  .hide-div {
    position: absolute; top: 5px; right: 15px; cursor: pointer; font-weight: bold; font-size: 16px;

  }

  #login-form {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
  }


  form       /* Input styles */
  input, textarea {
    width: 30ch;
    padding: 12px 20px;
    margin: 8px 0;
    box-sizing: border-box;
    border: 1px solid #ccc;
    border-radius: 4px;
    background-color: #fff;
    resize: vertical;
  }

  /* Submit button styles */
  form input[type=submit] {
    width: 200px;
    background-color: #6b4290;
    color: white;
    padding: 14px 20px;
    margin: 8px 0;
    border: none;
    border-radius: 4px;
    cursor: pointer;
  }

  #teste {
    font-size: 21px;
    padding: 100px;
    padding-top: 50px;
    text-align: justify;
    height: 503px;
  }

  #teste a {
    color: #f18b43;   
  }

.especialistas {
    float: left; 
    margin-top: 10px;

    width: 70%; 
    height: 450px; 
    box-shadow: 1px 2px 2px 3px #ccc;
    padding: 20px;
    border-radius: 5px;

}

#segunda {background-color: #e7e7e7; height: 350px; color: #38707d; padding: 0px;}


#busca {  
    margin: 0;    
    width: 100%; 
    height: 430px; 
    padding: 0px;
    background-color: #eee;
}

#opcoes {
  width: 100%; background-color: #6c4190; height: 560px;
  padding-top: 60px;
  background-image: linear-gradient(#e7e7e7, #f18b43);
}
#opcoes h2 {color: #38707d;}

#setaltura {
   height: 400px;
}

#terceira {
  background-color: #f18b43; height: 400px; color: white; padding: 100px; padding-right: 20%; font-size: 21px;
}

select {

    /* border: none;
    outline: none;
    background: transparent;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    */
    border-radius: 10px;
    margin: 0;
    width: 450px;
    padding: 10px;
    font-size: 20px;
    color: #324999;
}


button:hover { color: #38707d; background-color: white;}

.button {
  background-color: #38707d;
  border: 1px;
  color: white;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  cursor: pointer;
  border-radius: 10px;  
}

.conversa {
  color: #fff;
  margin-bottom: 0px;  
  height: 300px;
  padding: 50px;
  padding-left: 13%;
  padding-right: 13%;  
  font-size:16px;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}


#img-conversa {
  border-radius: 5%;
  float: left;
  width: 200px;
  margin-top: 10px;
  margin-bottom: 10px;
    
}
  

.elementor-icon-list-items {
  columns: 2;
  -webkit-columns: 2;
  -moz-columns: 2;
  list-style: none;
    width: 97%;
  padding-top: 0px;  
  font-weight: bold;
}
.elementor-icon-list-item {
  padding: 20px;
  padding-top: 10px;
}

.elementor-icon-list-item a {
    color: #f18b43;
}
.motivos {
  padding-top: 100px;
  padding-bottom: 100px;
  padding-left: 20px;
  padding-right: 20px;  
  font-size: 21px;    
}

.aside {
  background-color: #38707d;
  padding: 0px;
  color: #ffffff;
  text-align: center;
  height: 503px;
  /*box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);*/
}




#conteudo-footer {
  padding: 30px;
  padding-top: 30px;
    
}

#conteudo-footer a { color: #f18b43;}

#imagem-rodape img {
    max-width: 350px; 
    margin-top: 20px;
    padding-top: 200px;
  }

  
  #links-rodape {
    font-size: 9px;
    
  }
  
  #links-rodape a {
    color: #F7F7F7;
    
  }

  #links-rodape p {
    font-size: 10px;
  }
  

.logos { padding-left: 15%}
.logos img { margin-right: 20px; padding-top: 50px; }

/* For desktop: */
.col-1 {width: 8.33%;}
.col-2 {width: 16.66%;}
.col-3 {width: 25%;}
.col-4 {width: 33.33%;}
.col-5 {width: 41.66%;}
.col-6 {width: 50%;}
.col-7 {width: 58.33%;}
.col-8 {width: 66.66%;}
.col-9 {width: 75%;}
.col-10 {width: 83.33%;}
.col-11 {width: 91.66%;}
.col-12 {width: 100%;}




    /* Define o estilo dos 4 textos/notícias anteriores na capa */
        /* Main container style */
        #main-container {
          width: 80%;
          min-height: 500px;
          margin: 0 auto;
          
          
          padding-top: 60px;
          padding-left: 3%;
          margin-bottom: 40px;
          
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            grid-gap: 1em;
                    
        }
    
        /* Column style */
        .column {
          flex: 1;
          text-align: justify;
          padding: 20px;
        }
        .column h1 {
          font-size: 30px;
          color:#38707d;
          text-align: left;

        }
    
        /* Image style */
        .column img {
          max-height: 180px;
          max-width: 200px;
          margin-right: 20px;
          
        }


@media screen and (min-width: 480px) and (max-width: 850px) { 

  .column img {
    margin-right: 100%;
  }

.col-4 img {
 padding-top: 50px; 
}

}

@media screen and (min-width: 870px) and (max-width: 1700px) { 
  #teste {
    font-size: 18px;
    padding: 50px; 
    height: 503px;  
  }


  .header img {
      width: 380px;
  }

  

  .column h1 {
    text-align: left;

  }

  .menu {
    text-align: left;

  }
  .menu li {
    font-size: 18px;  
    font-weight: bold; 
  }
  .menu ul {
    padding-top: 60px;
    padding-left: 0px;
  }
  
  .conversa { font-size: 15px;  height: auto; }

  #terceira {
    font-size: 18px;
    padding: 50px;
    
  }

  .textos img {width: default}

    /* For mobile phones: 
    [class*="col-"] {
    width: 100%;    
  } */

}



@media screen and (min-width: 550px) and (max-width: 870px) { 
  body {
    font-size: 16px;
  }  
  #teste {
    font-size: 14px;
    padding: 50px;
    height: auto;
    
  }



  .header img {
      width: 380px;
  }

 
  .menu {
    text-align: left;

  }
  .menu li {
    font-size: 16px;   margin-bottom: 10px; 
    font-weight: bold; 
  }
  .menu ul {
    padding-top: 0px;
    padding-left: 0px;
    padding-right: 0px;
  }


  
  .especialistas {
      margin-left: 0;
      width: 100%;
  }

  .conversa { font-size: 14px; }

      .column {
        text-align: justify;
      }
      
  /* Image style */
        .column img {
          max-height: 180px;
          max-width: 200px;
          clear: both;
          margin-right: 100%;
        }

        .column h1 {
          text-align: left;
          
  
        }        

  #setaltura { height: auto; }

  #terceira {
  padding: 50px;
  font-size: 14px;
  height: auto;
}

  #busca {
    height: 590px;
  }

  #iframe {min-height: 480px;}


  .textos img {
       max-width: 100%;
  }
  
  #imagem-rodape img {
    max-width: 350px; 
    margin-top: 0px;
    padding-top: 0px;
  }

  
  .elementor-icon-list-items {
    font-size: 14px;
  }

  select {

    /* border: none;
    outline: none;
    background: transparent;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    */
    border-radius: 10px;
    margin: 0;
    width: 270px;
    padding: 10px;
    font-size: 12px;
    color: #6b4290;
}
  
  /* For mobile phones: */
  [class*="col-"] {
    width: 100%;    
  }

  

    /* Define o estilo dos 4 textos/notícias anteriores na capa */
        /* Main container style */
        #main-container {
          width: 100%;
          font-size: 14px;
                    
        }


        /* .extra { display: none; } */
}




@media screen and (min-width: 1px) and (max-width: 550px) { 
  body {
    font-size: 16px;
  }  
  #teste {
    font-size: 14px;
    padding: 50px;
    height: auto;
    
  }

.col-4 img {
 padding-top: 50px; 
}

  .header img {
      width: 380px;
  }

  .links-logados a { font-size: 11px;}

  .links-logados a:hover {
    font-weight: bolder;    
    color: #f18b43;
  }

  

  .menu {
    text-align: left;

  }
  .menu li {
    font-size: 12px;   
    font-weight: bold; 
  }
  .menu ul {
    padding-top: 0px;
    padding-left: 0px;
    padding-right: 5px;;
    margin-top: 0px;
    padding-bottom: 10px;
  }


  .especialistas {
      margin-left: 0;
      width: 100%;
  }

  .conversa { font-size: 14px; }


  #setaltura { height: auto; }

  #terceira {
  padding: 50px;
  font-size: 14px;
  height: auto;
}

  #busca {
    height: 590px;
  }

  #iframe {min-height: 480px;}

  .back { font-size: 5px;}
  .conversa h1 { margin-top: 200px; }

  .textos img {
       max-width: 100%;
  }
  
  #imagem-rodape img {
    max-width: 350px; 
    margin-top: 0px;
    padding-top: 0px;
  }

  
  .elementor-icon-list-items {
    font-size: 14px;
  }

  select {

    /* border: none;
    outline: none;
    background: transparent;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    */
    border-radius: 10px;
    margin: 0;
    width: 270px;
    padding: 10px;
    font-size: 12px;
    color: #6b4290;
}
  
  /* For mobile phones: */
  [class*="col-"] {
    width: 100%;    
  }


    /* Define o estilo dos 4 textos/notícias anteriores na capa */
        /* Main container style */
        #main-container {
          width: 100%;
          font-size: 14px;
          grid-template-columns: none;
          grid-template-columns: 1fr;
          overflow-x: auto;
                    
        }
/* apaga as notícias que têm classe extra
    .extra { display: none; } sdajksdjaskdjaksjkdajskjdkasjkd
    .extra { display: none; }
    */


    #botao-horarios { 
      width: auto; background-color: #6b4290; height: auto; margin: 2px; width: 80%; font-size: 11px;
    } 

    /* Define o estilo dos 4 textos/notícias anteriores na capa */
        /* Main container style */
        #main-container {
          width: 90%;
          min-height: 300px;
          margin: 0 auto;
          
          
          padding-top: 100px;
          padding: 3%;
          
          
            display: grid;
            grid-template-columns: repeat(1, 1fr);
            overflow-x: hidden;
            grid-gap: 1em;
                    
        }


      .column img {
        clear: both;
        margin-right: 100%;
      }

      
      


      .column h1 {

                text-align: left;

      }

}





/* CORREÇÃO ESPECÍFICA PARA TABLETS (400px - 850px) */
@media screen and (min-width: 400px) and (max-width: 850px) {
  .header {
    background: white !important;
    border-bottom: 1px solid #e0e0e0 !important; /* Linha sutil para separar */
    box-shadow: 0 2px 10px rgba(0,0,0,0.1) !important;
  }
  
  .artigo-completo {
    margin-top: 0 !important;
    padding-top: 40px !important;
    background: white;
  }
  
  
  
  /* Garante que o header ocupe toda a largura */
  .header .col-12 {
    background: white !important;
    margin: 0 !important;
    padding: 0 !important;
  }
}



