
  /*paleta de cores*/
  :root {
    --cor__principal:#473131;
    --cor__secundaria:#776161;    
    --cor__paleta1:#d8a7a7;
    --cor__paleta2:#d8b7a7;
    --cor__paleta3:#d8c0a7;
    --cor__background:#e6cbb1;
    --cor__border:#c7b6b6;    
  }
  .hide, .oculto {
    display: none;
  }

.cor-primaria { color: var(--cor__primaria); } 
.cor-secundaria { color: var(--cor__secundaria); } 
.cor-background { background-color: var(--cor__background); } 
.cor-borda { border-color: var(--cor__borda); } 

.cor-normal { 
    color: var(--cor__primaria);
    background-color: var(--cor__background);
}

.cor-invertida { 
    color: var(--cor__background);
    background-color: var(--cor__primaria);
}

.perfil-img-av {
    background-image: url('../imagens/perfil_av.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: #fff;
    margin-left: -35px;
    margin-top: -45px;
    box-shadow: 0 0 4px #000000c7;    
}

.whatsapp-cta-btn, .whatsapp-cta-btn-footer {
    width: max-content;
    background: #22b300;
    color: #fff !important;
    border-radius: 32px;
    padding: 12px 32px 12px 28px;
    font-size: 1.2rem;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 2px 12px #0002;
    border: none;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    text-decoration: none;
}

.whatsapp-cta-btn-footer {
    background: #25d366 !important;
    color: #1b3b2f !important;
}

.whatsapp-cta-btn i, .whatsapp-cta-btn-footer i {
    transition: transform 0.5s cubic-bezier(.68,-0.55,.27,1.55), color 0.2s;
}
.whatsapp-cta-btn:hover {
    background: #25d366;
    color: #1b3b2f !important;
    box-shadow: 0 4px 20px #1b3b2f33;
}
.whatsapp-cta-btn-footer:hover {
    background: #1b3b2f;
    color: #fff !important;
    box-shadow: 0 4px 20px #1b3b2f33;
}
.whatsapp-cta-btn:hover i, .whatsapp-cta-btn-footer:hover i {
    transform: rotate(360deg) scale(1.2);
    color: #1b3b2f;
}

.textura-tecido-menu {
    /*background-image: url(midias/textura1.png);*/
    border: 0;
    border-bottom: 2px;
    border-style: dashed;
}  

.textura-tecido-page {
    /*background-image: url(midias/textura1.png);*/
    border: 0;
    border-bottom: 2px;
    border-style: dashed;
}  

.textura-tecido-card {
    /*background-image: url(midias/textura1.png);*/
    border: 0;
    border-bottom: 2px;
    /*border-style: dashed;*/
}  

.logo_img {
    width: 70px !important;
    border-radius: 20px;
    border: 0px solid red;
}

.logo_text {
  float: right;
  font-size:medium;
  margin-left: 10px;
  margin-top: 5px;
}

.offcanvas-logo {
  margin: 10px;
  justify-self: center;
  width:100%;
  text-align: center;
}

.offcanvas-logo_text {
  font-size: large;
}

.offcanvas-logo_img {
  /*width:50%;*/
  margin: 20px;
}


/* Menu PadrÃ£o */
.menu-scroll {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background-color: var(--cor__background);
    color: var(--cor__secundaria);
    transform: translateY(0); /* Menu visÃ­vel */
    opacity: 1; /* Totalmente visÃ­vel */
    /*transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease;*/
    transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease, opacity 0.3s ease;
  }
  
  /* Menu em estado invertido (scroll ativo) */
  .menu-scroll.scrolled {
    background-color: var(--cor__secundaria);
    /*color: var(--cor__background);*/
  }

 /* Menu Oculto - Movido para cima */
 .menu-scroll.hidden {
    transform: translateY(-100%); /* Menu fora da tela */
    opacity: 0.9; /* Opcional para um efeito de desaparecimento */
  }
  
  /* Menu Retornando */
  .menu-scroll.visible {
    transform: translateY(0); /* Volta ao topo */
    opacity: 1; /* Reaparece */
  }
  
  /* Links do Menu */
  .nav-link {
    position: relative;
    color: inherit; /* Herdar cor do menu */
    transition: color 0.3s ease;
  }
  
  .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--cor__principal);
    transition: all 0.3s ease;
    transform: translateX(-50%);
  }
  
  .nav-link:hover::after {
    width: 100%;
  }
  
  /* Navbar Brand (Logo) */
  .navbar-brand img {
    /*height: auto;*/
    transition: filter 0.3s ease;
  }
  
  .menu-scroll.scrolled .navbar-brand img {
    filter: brightness(0.8); /* Escurece a logo no estado scrolled */
  }
  
  /* Offcanvas */
  .offcanvas {
    background-color: var(--cor__background);
  }
  
  .offcanvas .nav-link {
    font-size: 1.2rem;
    padding: 15px;
    border-bottom: 1px dashed var(--cor__secundaria);
    text-align: center;
    transition: color 0.3s ease, background-color 0.3s ease;
  }
  
  .offcanvas .nav-link:hover {
    color: var(--cor__principal);
    background-color: var(--cor__secundaria);
  }
  
  .offcanvas-title {
    font-size: 1.5rem;
    color: var(--cor__secundaria);
  }
  


/* Hero Section */
.hero-section {
  position: relative;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /*background-color: rgba(0, 0, 0, 0.5);*/
  background-color: var(--cor__principal);
  opacity: 0.6;
  z-index: 1; 
}

.hero-section .container {
  position: relative;
  z-index: 2; /* Coloca o conteÃºdo acima da pelÃ­cula */
}

.hero-section {
    position: relative;
    height: 100vh;
    /*background-image: url('midias/fotos/licensed-image (3).jpg');*/
    /*background-image: url('midias/sala.jpg');*/
    background-size: cover;
    background-position: center;
    overflow: hidden;
  }
  
  /* Background Video */
  .video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
  }
  
  .video-background video,
  .video-background iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(10px); /* Desfoque */
    transform: scale(1.1); /* Zoom leve */
  }
  
  /* Overlay para deixar o fundo marrom */
  .hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--cor__background);
    opacity: 0.1;
    /*background-color: rgba(71, 49, 49, 0.1); */

    z-index: 2; /* Fica acima do vÃ­deo/imagem */
  }
  
  /* ConteÃºdo */
  .hero-section .container {
    position: relative;
    z-index: 3; /* SobrepÃµe o overlay */
    color: var(--cor__secundaria);
  }
  
  /* TÃ­tulos e Textos */
  .hero-title {
    /*font-size: 3.5rem;*/
    font-weight: bold;
    color: #fff;
    text-transform: uppercase;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.4);
  }
  
  .hero-title .highlight {
    color: var(--cor__paleta3);
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
    color: #fff;
    margin-top: 10px;
  }
  
  /* BotÃ£o do WhatsApp */
  .hero-btn a {
    background-color: var(--cor__principal);
    color: #fff;
    font-size: 1.2rem;
    font-weight: bold;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    position: relative;
    transition: background-color 0.3s ease, transform 0.3s ease;
  }

 .btn-whatsapp {
    display: flex;
    justify-content: center;
  }

 .btn-whatsapp a {

    background-color: var(--cor__principal);
    color: #fff;
    font-size: 1.2rem;
    font-weight: bold;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    position: relative;

  }
  
  .whatsapp-link {
    display: inline-flex;
    align-items: center; /* Centraliza verticalmente */
    text-decoration: none;
    color: var(--cor__secundaria);
    transition: transform 0.3s ease, background-color 0.3s ease;
  }
  
  .whatsapp-text {
    display: inline-block;
    line-height: 1;
    margin-right: 10px; /* EspaÃ§amento entre texto e Ã­cone */
  }
  
  .whatsapp-icon {
    margin-left: 10px;
    line-height: 1;
    transition: transform 0.3s ease, color 0.3s ease;
  }
  
  /* Efeito hover */
  .whatsapp-link:hover .whatsapp-icon {
    transform: rotate(360deg);
    color: #25D366; /* Verde do WhatsApp */
  }
  
  .whatsapp-link:hover {
    transform: scale(1.05);
    background-color: var(--cor__principal);
    color: #25D366; /* Verde do WhatsApp */
  }
  
    
  
  /* CTA Section Generic CSS */
  .cta-section {
    position: relative;
    background-size: cover;
    background-attachment: fixed; /* Efeito Parallax */
    background-position: center;
    background-repeat: no-repeat;
    padding: 50px 0;
    color: #fff;
  }
  
  .cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--cor__secundaria);
    opacity: 0.8;
    z-index: 0;
  }
  
  /* ConteÃºdo */
  .cta-content {
    position: relative;
    z-index: 1; /* SobrepÃµe a pelÃ­cula */
  }
  
  .cta-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4); /* Leve sombra para destacar o texto */
    line-height: 1.4;
    text-transform: capitalize;
  }
  
  .cta-btn {
    position: relative;
    z-index: 1; /* SobrepÃµe a pelÃ­cula */
  }
    

  
  /* Parallax Animation */
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
 /* SessÃ£o 1 */
.sessao1 {
    position: relative;
    width: 100%;
    margin: 0;
    padding: 0;
  }
  
  .sessao1-container {
    /*
    padding-left: 0;
    padding-right: 0;
    */
    padding: 20px;
    position: relative;
  }
  
  /* Quadro interno */
  .sessao1-card {
    position: relative;
    padding: 20px;
    background-color: var(--sessao1-card-bg1); /* Cor dinÃ¢mica */
    /*border-radius: 8px;*/
    overflow: hidden;
    height: 300px;
    /*
    min-height: 200px;
    max-height: 200px;
    */
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
    /*margin-bottom: 15px;  Apenas para celular (col-12) */
  }
  
  /* Cor dinÃ¢mica para cada quadro */
  .sessao1-card:nth-child(1) {
    background-color: var(--cor__paleta1);
  }
  
  .sessao1-card:nth-child(2) {
    background-color: var(--cor__paleta2);
  }
  
  .sessao1-card:nth-child(3) {
    background-color: var(--cor__paleta3);
  }
  
  /* Texto */
  .sessao1-title {
    font-size: 1.2rem;
    font-weight: bold;
    color: #fff;
  }
  
  .sessao1-text {
    font-size: 0.9rem;
    color: #fff;
    line-height: 1.4;
  }
  
  /* Ãcone principal Ã  esquerda */
  .sessao1-icon i {
    font-size: 2.5rem;
    color: #fff;
    margin-right: 15px;
  }
  
  /* Ãcone de fundo (marca d'Ã¡gua) */
  .sessao1-card::before {
    content: '';
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    font-size: 8rem;
    color: rgba(255, 255, 255, 0.1);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1);
    transition: transform 0.3s ease;
    z-index: 0;
  }
  
  .sessao1-card[data-icon]::before {
    content: attr(data-icon); /* Usa o mesmo Ã­cone que o principal */
  }
  
  /* Hover no quadro */
  .sessao1-card:hover::before {
    transform: translate(-50%, -50%) scale(1.2); /* Zoom no Ã­cone de fundo */
  }
  
  .sessao1-card:hover {
    /* transform: translateY(-5px);  Leve elevaÃ§Ã£o no hover */
  }
  
  /* ConteÃºdo sobrepÃµe Ã­cone de fundo */
  .sessao1-content {
    z-index: 1;
  }
  
  /* SessÃ£o CTA2 */
.cta2-section {
    position: relative;
    background-size: cover;
    background-attachment: fixed; /* Efeito Parallax */
    background-position: center;
    background-repeat: no-repeat;
    padding: 50px 0;
    color: #fff;
  }
  
  .cta2-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--cor__background);
    opacity: 0.8;
    z-index: 0;
  }
  
  /* ConteÃºdo */
  .cta2-content {
    position: relative;
    z-index: 1; /* SobrepÃµe a pelÃ­cula */
  }
  
  .cta2-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4); /* Leve sombra para destacar o texto */
    line-height: 1.4;
    text-transform: capitalize;
  }
  
  .cta2-btn {
    position: relative;
    z-index: 1; /* SobrepÃµe a pelÃ­cula */
  }
  
  /* Sessao2 Wrapper */
/* SessÃ£o 2 */
.sessao2 {
    /*background-color: #ffe6f0; */
    background-color: #e6cbb1;
    padding: 30px 15px;
    margin: 20px;
    border-radius: 20px;
  }
  
  .sessao2-title {
    font-size: 2rem;
    text-align: center;
    color: #333;
    margin-bottom: 30px;
  }
  
  /* Coluna da Imagem */
  .sessao2-image-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .sessao2-image {
    width: 100%;
    max-width: 500px;
    border-radius: 10px;
    object-fit: cover;
  }
  
  /* Coluna da Lista */
  .sessao2-list-container {
    padding: 15px;
  }
  
  .sessao2-list {
    list-style: disc;
    padding-left: 20px;
    margin: 0 0 20px;
    font-size: 1.2rem;
    color: #333;
    line-height: 1.6;
  }
  
  .sessao2-logo {
    margin-top: 20px;
    text-align: center;
  }
  
  .sessao2-logo img {
    /*max-width: 100px;*/
   /* border-radius: 50%;*/
  }
  
  /* Responsividade: Imagem como Marca D'Ã¡gua */
  @media (max-width: 991px) {
    .sessao2 {
      position: relative;
    }
  
    .sessao2-image-container {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 0;
      opacity: 0.1; /* Torna a imagem semi-transparente */
    }
  
    .sessao2-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
  
    .sessao2-list-container {
      position: relative;
      z-index: 1; /* Garante que a lista fique sobre a imagem */
      background-color: rgba(255, 255, 255, 0.2); /* Fundo branco semi-transparente */
      border-radius: 10px;
      padding: 20px;
    }
  }
  
  /* SessÃ£o 3 */
  .sessao3 {
    padding: 50px 15px;
  }

  .sessao3-card {
    background-color: var(--cor__secundaria);
    color: #dee2e6;
    border-radius: 10px;
    padding: 20px;
    position: relative;
    overflow: hidden;
    text-align: center;
    /*display: flex;*/
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
  }
  
  .sessao3-card::before {
    content: attr(data-title);
    font-size: 8rem;
    color: rgba(255, 255, 255, 0.1);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
    pointer-events: none;
  }
  
  .sessao3-card:hover {
    transform: translateY(-5px);
  }
  
  .sessao3-title {
    color: white;
    text-align-last: center;
    font-size: 2.5rem;
    /*font-weight: bold;*/
    /*margin-bottom: 15px;*/
    z-index: 1;
  }   
  .sessao3-titlecard {
    color: white;
    text-align-last: center;
    font-size: 1.5rem;
    /*font-weight: bold;*/
    /*margin-bottom: 15px;*/
    z-index: 1;
  }  
  .sessao3-subtitle {
    color: var(--cor__background);
    text-align-last: center;
    font-size: 1.5rem;
    /*font-size: 1.5rem;*/
    /*font-weight: bold;*/
    margin: 0px;
    margin-bottom: 15px;
    z-index: 1;
  }
  
  .sessao3-text {
    font-size: 1rem;
    text-align: justify;
    z-index: 1;
    margin-bottom: 67px;
  }
  
  .sessao3-btn {
    margin-top: 15px;
    z-index: 1;
    justify-content: center;
    position: absolute;
    bottom: 8px;
    /*margin: auto 25%;*/
    width: -webkit-fill-available   
  }
  
  /* SessÃ£o Sobre */
.sobre {
    background-color: #fff;
    padding: 50px 15px;
  }
  
  .sobre-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  
  .sobre-title {
    font-size: 2rem;
    font-weight: bold;
  }
  
  .sobre-subtitle {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 20px;
  }
  
  .sobre-text {
    font-size: 1rem;
    line-height: 1.6;
    text-align: justify;
  }
  
  .sobre-btn {
    margin-top: 20px;
  }
  
  .sobre-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  }
  
/* Imagem no Mobile */
.sobre-image-mobile img {
    display: none;
    gap: 15px;
    margin-bottom: 15px;
    align-items: center;
    width: 100%;
  }

  /* Ajustes de Responsividade */
@media (max-width: 992px) {
    .sobre-image-mobile img {
      display: flex;
    }
    .sobre-image img {
      display:none;
    }
 }

 /* SessÃ£o Testemunhos */
 
 /* SessÃ£o Testemunhos */
.testemunhos {
    background-color: #f9f9f9;
    padding: 50px 15px;
    text-align: center;
  }
  
  .testemunhos-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 30px;
    color: var(--cor__principal);
  }
  
  /* Testemunhos Card */
  .testemunhos-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: auto; /* Centraliza o card */
    height: 100%;
  }
  
  .testemunhos-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .testemunhos-author {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--cor__principal);
  }
  
  .testemunhos-rating i {
    color: #f4c430; /* Cor das estrelas */
    font-size: 1rem;
  }
  
  .testemunhos-comment {
    font-size: 1rem;
    line-height: 1.5;
    text-align: justify;
    color: #333;
  }
  
  /* Controles do Carrossel */
  .carousel-item {
    margin-bottom: 10px;
  }

  .carousel-control-prev-icon,
  .carousel-control-next-icon {
    background-color: var(--cor__background); /* Cor personalizada para os Ã­cones */
    border-radius: 50%;
    padding: 10px;
  }
  
  /* Responsividade */
  @media (max-width: 991px) {
    .testemunhos-card {
      margin-bottom: 20px;
    }
  }
  
  .cta3-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /*background-color: var(--cor__background);*/
    background-color:  var(--cor__secundaria);
    opacity: 0.8;
    z-index: 0;
  }
  
/* SessÃ£o FAQ */
.faq {
    padding: 50px 15px;
    position: relative;
    overflow: hidden;
    z-index: 0;
  }
  
  .faq::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /*background-image: url('midias/fotos/Digitalizado_20241126-1243-02.jpg');*/
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Efeito Parallax */
    opacity: 0.5; /* Semi-transparÃªncia */
    z-index: -1; /* Coloca a imagem abaixo do conteÃºdo */
  }
  
  .faq::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: white;
    opacity: 0.5; /* Semi-transparÃªncia para a cor */
    z-index: -1;
  }
  
  
  .faq-title {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--cor__principal);
    margin-bottom: 20px;
  }
  
  .faq-list {
    list-style: disc;
    padding-left: 20px;
    margin-bottom: 30px;
    color: #333;
    font-size: 1rem;
    line-height: 1.5;
  }
  
  .faq-subtitle {
    font-size: 1.5rem;
    color: var(--cor__secundaria);
    margin-bottom: 20px;
  }
  
  .faq-section-title {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--cor__principal);
    margin-top: 20px;
  }
  
  .faq-text {
    font-size: 1rem;
    color: #333;
    line-height: 1.6;
  }
  
  /* Accordion */
  .accordion-button {
    font-size: 1rem;
    font-weight: bold;
    color: var(--cor__principal);
  }
  
  .accordion-button i {
    color: var(--cor__principal);
  }
  
  .accordion-body {
    font-size: 0.9rem;
    color: #333;
    text-align: justify;
  }
  
  /* Footer */
  .footer {
    background-color: var(--cor__background);
    background-color: #b99787 ; /*var(--cor__principal);*/
    padding: 50px 15px;
    position: relative;
  }
  
  
  .footer::before {
    content: "";
    /*background-image: url(midias/fotos/Digitalizado_20241126-1249-08.jpg);*/
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
  }
  
  .footer .container {
    position: relative;
    z-index: 1;
  }
  
  .footer-logo img {
    max-width: 250px;
    margin-bottom: 15px;
	border-radius: 10px;
  }
  
@media (max-width: 992px) {
    .footer-logo img {
      max-width: 100%;
  	  margin-bottom: 15px;
    }	
 }
  
  
  .footer-horarios h4,
  .footer-contatos strong {
    font-size: 1.2rem;
    font-weight: bold;
  }
  
  .footer-horarios p,
  .footer-contatos p {
    font-size: 1rem;
    margin: 5px 0;
    line-height: 1.5;
  }
  