/*
Theme Name: MerakiArtsBrasil Personalizado
Theme URI: https://www.merakiartsbrasil.com
Author: Meraki Arts Brasil
Author URI: https://www.merakiartsbrasil.com
Description: Tema personalizado.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: Meraki Arts Brasil
*/

@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body, html {
  font-family: "Open Sans", sans-serif;
      scroll-behavior: smooth;
      background-color: #EBE0D0;
    }

html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  max-width: 100%;
}


.wpforms-container button[type=submit] {
background-color: #641A1D !important;
color: #fff !important;
}


p {
  white-space: pre-line;
}

main {
    flex: 1; /* Faz o conteúdo principal ocupar o espaço restante */
    min-height: 100vh;
    height: auto;
}

    header {
      background: #641A1D;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0px 0%;
      position: absolute;
      width: 100%;
      z-index: 10;
height: 67px;
    }

    .logo {
    flex: 0 0 40%;
    text-align: left;
}

.endereco {
    flex: 0 0 35%;
    text-align: left;
}

.powered {
    flex: 0 0 25%;
    text-align: left;
}

    .nav {
      flex: 0 0 50%;
      display: flex;
      justify-content: center;
      gap: 20px;
    }

    .nav a {
      text-decoration: none;
      color: #fff;
      font-weight: bold;
    }
    
    .nav a:not(:last-child)::after {
  content: " | ";
  margin: 0 10px; /* Espaço ao redor do separador */
  color: #fff;  /* Cor do separador */
}


    .social {
      flex: 0 0 12%;
      text-align: right;
      padding-right: 2%;
    }

    .social i {
      margin-left: 10px;
      font-size: 1.2rem;
      color: #fff;
    }

    .hero {
    height: 300px;
    background: url(images/fundoinicio.jpg) center / cover no-repeat;
    display: flex;
    align-items: center; /* centraliza verticalmente */
    justify-content: left;
    padding: 0 5%;
    text-align: left;
}


    .hero-text {
      width: 100%;
      padding: 20px;
      animation: fadeIn 2s ease-out;
    }
    
    h1.slogantitke {
    color: #fff;
    font-size: 3em;
}

p.slogantext {
    color: #fff;
    font-size: 1.4em;
    text-align: right;
    width: 25%;
    float: right;
}

.slogantext {
    color: #fff;
    float: right;
    font-size: 2.2em;
    width: 7%;
    margin-right: 7%;
    margin-top: 7%;
}

section#quemsomos {
    margin-top: -10px;
}

    section#sobre-escritorio {
    background-image: url(images/fundokaline.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /* Permite que a altura seja automática com base no conteúdo */
    padding: 60px 0%; /* ou outro valor confortável */
    display: flex;
    flex-direction: column;
    justify-content: center;
    }

    .caixas {
    display: flex;
    justify-content: space-around;
    padding: 50px 5%;
    min-height: 180px;
    height: auto;
    }

    .caixa {
      width: 30%;
      text-align: center;
      padding: 20px;
      background: #fff;
      box-shadow: 0 0 10px rgba(0,0,0,0.1);
      transition: transform 0.3s ease, opacity 0.3s ease;
    }

    .caixa:hover {
      transform: translateY(-5px);
      opacity: 0.9;
    }
    
    .caixa.caixa1, .caixa.caixa2, .caixa.caixa3 {
    background-size: cover !important;
    background-position: top !important;
    margin-top: -15%;
    max-height: 350px;
}
    
    .caixa p {
    color: #fff;
    line-height: normal;
    letter-spacing: normal;
    }

    .caixas h3 {
    color: #fff;
    margin: 5%;
    font-size: 1.4em;
    font-weight: 600;
    }

    .caixa i {
      font-size: 2rem;
      margin-bottom: 10px;
      display: block;
    }

    .caixa.\31 st {
    background-color: orange;
    background-size:cover;
    }

    .caixa.\32 nd {
    background-color: pink;
    background-size:cover;
    }

    .caixa.\33 rd {
    background-color: green;
    background-size:cover;
    }

    .texto-imagem {
    display: flex;
    align-items: center;
    padding: 0% 0% 0% 5%;
    gap: 100px;
    background-color: #641A1D;
    height: 300px;
    margin-top: 9%;
    margin-bottom: 9%;
    }

    .texto {
      flex: 0 0 61%;
      color: #fff;
    }

    .imagem {
      flex: 0 0 33%;
    }

    .imagem img {
      width: 100%;
      border-radius: 0px;
    }


/* Animações específicas */
.caixa1 {
  animation: slideFromLeft 1s ease-out forwards;
  animation-delay: 0.2s;
}

.caixa2 {
  animation: slideFromBottom 1s ease-out forwards;
  animation-delay: 0.4s;
}

.caixa3 {
  animation: slideFromRight 1s ease-out forwards;
  animation-delay: 0.6s;
}

/* Keyframes */
@keyframes slideFromLeft {
  0% {
    transform: translateX(-100px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideFromRight {
  0% {
    transform: translateX(100px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideFromBottom {
  0% {
    transform: translateY(100px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}


.post img {
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.post-content p {
    line-height: 1.7;
    color: #333;
}

@media (max-width: 767px) {
    .post .col-md-5 {
        margin-bottom: 1.5rem;
    }
}

.col-md-7 {
    float: right;
    width: 75%;
}

.col-md-5.mb-4.mb-md-0 {
    width: 20%;
    float: left;
margin: 2%;
}

 
    section.servicos {
      background-color: #FEFFFF;
      background-size: cover;
      display: block;
      padding: 5%;
      gap: 40px;
      height: auto;
    }

.container-categorias {
    display: block;
    position: relative;
    gap: 40px;
    margin: 40px 0;
    flex-wrap: wrap;
background-color: #FEFFFF;
width: 100%;
padding: 5% 10%;
}

.container-categorias.categnoticia {
    display: flex;
    position: relative;
    gap: 40px;
    margin: 40px 0;
    flex-wrap: wrap;
background-color: #EBE0D0;
padding: 5%;
}

.coluna {
    flex: 1;
    min-width: 100%;
}

.categoria h3 {
    text-align: center;
    font-size: 1.5rem;
}

.posts-box {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: left;
}

.posts-box .thumb img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 0px;
}


.post-item {
    width: calc(25% - 14px);
    text-align: center;
    background-color: #E6E7E8;
    margin: 0 auto;
}

.post-item a {
    color: #641A1D;
    font-weight: bold;
    text-decoration: none !important;
}

.post-item.noticiapt {
    width: 20%;
    text-align: center;
    margin: 0 auto;
background-color: transparent;
}

.post-item.noticiapt .excerpt {
    font-size: 0.95em;
    color: #641A1D;
    line-height: 1.4em;
    margin-bottom: 10%;
text-align: left;
}

.post-item.noticiapt .read-more {
    position: relative;
    bottom: 10px;
    right: 10px;
    float: right;
text-align: right;
font-size: small;
}

.post-item.noticiapt .read-more a {
    color: #fff;
    background-color: #641A1D !important;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    padding: 5px 10px;
}

.post-item.noticiapt .read-more a:hover {
    color: #f0c040; /* cor de destaque ao passar o mouse */
}

.col-sm-4.post-item .read-more {
    float: right;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: small;
}

.col-sm-4.post-item .read-more a {
color: #641A1D;
font-weight: bold;
}

.thumb img {
    width: 148px;
    height: auto;
    display: block;
    margin: 0 auto 10px;
}

.post-title {
    font-size: 1rem;
    margin: 0 auto;
    color: #641A1D;
    font-weight: 700;
    letter-spacing: 1px;
    width: 100%;
    text-align: center;
    padding: 5%;
}

.categoria.coluna, .post-title {
    color: #641A1D;
}

.post-item.noticiapt .post-title, .post-item.noticiapt a{
    background-color: #EBE0D0 !important;
color: #641A1D;
text-align: left;
padding: 5% 0%;
}

/* Vertical Separator */
.separator {
    width: 235px; /* thickness of the separator */
    height: 46px; /* or auto / 100% depending on layout */
    background-image: url(images/separtor.png);
    background-repeat: no-repeat; /* repeats vertically */
    background-size: auto; /* scales nicely within width */
margin: 0 auto;
    margin-bottom: 5%;
}


section.contato {
    background-repeat: no-repeat;
    color: #641A1D;
    padding-top: 150px;
    background-size: 100%;
}

section#contato h2 {
    padding-left: 5%;
    font-size: 2em;
}

main.container.my-5, main.container.mt-5 {
    background-color: #F0EFEF;
color: #641A1D;
display: grid;
}

main.container.mt-5 p {
color: #641A1D;
}

#contato h2 {
    background-size: auto;
    background-position: left;
    background-repeat: no-repeat;
    color: #641A1D;
    padding: 30px 20px;
    text-align: left;
    border-radius: 8px;
    margin-bottom: 30px;
}


.fa-brands, .fab {
    font-weight: 900;
    color: #641A1D;
}

.fa-solid, .fas {
    font-weight: 900;
    color: #641A1D;
}

    .contato-info {
      display: flex;
      gap: 40px;
      padding-top: 40px;
      background: #F0EFEF;
      padding: 20px;
     padding: 50px 5% 30px;
    }

    .contato-esquerda {
      width: 50%;
    }
    
    .contato-esquerda h3 {
    font-size: 2em;
    margin-bottom: 5%;
}

.contato-esquerda p {
    padding-bottom: 10px;
    font-weight: 600;
    font-size: 1em;
}


    .contato-direita {
      width: 50%;
    }

    .contato-esquerda i {
      margin-right: 10px;
    }

    form input, form textarea {
      width: 100%;
      padding: 10px;
      margin-bottom: 10px;
      border: none;
      border-radius: 4px;
    }

    footer {
      display: flex;
      padding: 20px 5%;
      background: #641A1D;
      color: #fff;
      flex-wrap: wrap;
      align-items: center;
width: 100%;
    }

footer a {
    text-decoration: none;
    color: #fff;
}

.footer_meraki {
    background-color: #581315;
    margin: 0 auto;
    text-align: center;
    padding: 10px;
}

ul.footer-list {
    list-style: none;
}

    @keyframes fadeIn {
      0% { opacity: 0; transform: translateY(20px); }
      100% { opacity: 1; transform: translateY(0); }
    }

    @media (max-width: 768px) {
      header, .hero, section.caixas, section.texto-imagem, section.servicos, .contato-info, footer {
        flex-direction: column;
        text-align: left;
        }

header { position: unset; }

      .hero-text, .caixa, .texto, .imagem, .categoria, .contato-esquerda, .contato-direita {
        width: 100%;
      }
      
      .hero-text {
          padding-top: 100px;
      }

.slogantext {
    float: none;
}
      
      .nav a:not(:last-child)::after {
    display: none;
}

.nav {
    padding: 0px 5%;
display: none;
}

.social {
display: none;
}

.caixas {
    display: block;
    justify-content: space-around;
    padding: 0px 0%;
    min-height: 255px;
    height: auto;
    width: 100%;
    margin: 0 auto;
}

.container-categorias {
        display: flex;
        position: relative;
        gap: 40px;
        margin: 50% 0 10% 0;
        flex-wrap: wrap;
    }
    
    section.contato {
    background-repeat: no-repeat;
    color: #641A1D;
    padding-top: 0px;
    background-size: 100%;
}

article.post {
    display: block;
    padding: 5% 5% !important;
    font-family: 'Open Sans';
    font-size: inherit;
}
.col-md-5.mb-4.mb-md-0 {
    width: 100%;
}

.col-md-7 {
    float: unset;
    width: 100%;
    height: auto;
    text-align: left !important;
}

.separator {
    width: 2px;
    background-color: #ccc;
    height: auto;
    display: none;
}

.post-item {
    width: 100%;
    text-align: center;
    margin: 0 auto;
}

.post-item.noticiapt {
    width: 100%;
}

.logo {
    width: 100%;
            margin: 0 auto;
        display: contents;
}

    footer .logo, .endereco, .powered {
        width: 100%;
        margin-top: 20px;
    }

section#contato h2 {
    padding-left: 5%;
    font-size: 1em;
}

#contato h2 {
    background-image: url(images/fundotitulocontato.png);
    background-size: 35%;
    background-position: left;
    background-repeat: no-repeat;
    color: #fff;
    padding: 10px 10px;
    text-align: left;
    border-radius: 0px;
    margin-bottom: 0px;
}

  .texto-imagem {
    flex-direction: column;
    padding: 1rem;
height: auto;
gap: 10px;
  }

     .texto-imagem img {    padding-right: 10%;}

  .imagem, .texto {
    width: 100%;
    max-width: 100vw;
  }

  .imagem img.Kaline {
    width: 100vw;
    height: auto;
  }

  .conteudo {
    padding-top: 1rem;
  }


.caixa.caixa1, .caixa.caixa2, .caixa.caixa3 {
    background-size: cover !important;
    background-position: top !important;
    margin-top: -15%;
    min-height: 350px;
    width: 100vw !important;
    margin: 0 auto;
}

      .icone-box div {
        width: 45%;
        margin: auto;
      }
    }
    
    .wpforms-container input[type=date], .wpforms-container input[type=datetime], .wpforms-container input[type=datetime-local], .wpforms-container input[type=email], .wpforms-container input[type=month], .wpforms-container input[type=number], .wpforms-container input[type=password], .wpforms-container input[type=range], .wpforms-container input[type=search], .wpforms-container input[type=tel], .wpforms-container input[type=text], .wpforms-container input[type=time], .wpforms-container input[type=url], .wpforms-container input[type=week], .wpforms-container select, .wpforms-container textarea {
    display: block;
    width: 100%;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    float: none;
    background-color: #fff !important;
    border-color: #ccc;
    border-style: solid;
    border-width: 2px;
    height: 25px;
}

.wpforms-container .wpforms-field {
    padding: 5px 0 !important;
    position: relative;
}

.wpforms-container .wpforms-field-label {
    display: block;
    font-weight: 700;
    float: none;
    font-size: 1em !important;
}

.wpforms-container button[type=submit] {
    border-color: #ccc;
    border-style: solid;
    border-width: 2px;
    padding: 5px;
    float: right !important;
    color: #fff;
}
    .social a {
  text-decoration: none;
}

article.post {
    display: block;
    padding: 10% 5%;
    font-family: 'Open Sans';
    font-size: inherit;
}

.post-header.mb-4 {
    margin-bottom: 2%;
}

.post-footer {
    margin-top: 5%;
}

section.post-content.mb-5 p {
    text-align: justify;
    line-height: 150%;
    font-size: inherit;
    font-family: 'Open Sans';
    letter-spacing: 1px;
}
		