:root {
    /* Cores principais */
    --azul-principal: #26678A;
    --azul-escuro: #1d4f6b;
    --azul-claro: #6b8a9e;
    
    --rosa-principal: #F49FB6;
    --rosa-escuro: #e55a78;
    --rosa-claro: #FAD4D8;
    --rosa-pastel: #FBE4E6;
    
    /* Cores secundárias */
    --verde-whatsapp: #25D366;
    --verde-whatsapp-escuro: #128C7E;
    --rosa-instagram: #E0BFD3;
    
    /* Cores de texto */
    --texto-escuro: #2B2B2B;
    --texto-cinza: #5E5E5E;
    --texto-claro: #ffffff;
}

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    text-decoration: none;
       font-family: 'Poppins', sans-serif;
   
}
::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}

::-webkit-scrollbar-track {
  background: #e0e0e0;
}

::-webkit-scrollbar-thumb {
  background-color: var(--azul-principal);
  border-radius: 6px;
  border: 2px solid #e0e0e0;
}

::-webkit-scrollbar-thumb:hover {
  background-color: var(--azul-escuro);
}

html,body{
   height: 100%;   
}

@font-face {
    font-family: 'tan-pearl';
    src: url('./tan-pearl.otf') format('opentype');
    font-weight: bold;
    font-style: normal;
}

.clear{
  clear: both
}

.header {
    background-color: #fff;
    padding: 20px 2%;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row-reverse;
}

.logo {
    font-family: 'tan-pearl', serif;
    color: var(--azul-principal);
    font-size: 48px;
    margin: 0;
    order: 2;
    margin-left: -80px;
}

/* MENU */
.menu-toggle {
    font-size: 30px;
    cursor: pointer;
    color: #3a6298;
    order: 3;
    margin-left: -45px;
}

.menu-desktop ul {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
    font-family: 'Poppins', serif;
}

.menu-desktop li a {
    color: var(--azul-principal);
    font-weight: bold;
    font-size: 18px;
    position: relative;
    text-decoration: none;
    transition: color 0.3s;
    font-family: 'Poppins', serif;
}

.menu-desktop li a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0;
    height: 2px;
    background-color: var(--rosa-principal);
    transition: width 0.3s;
}

.menu-desktop li a:hover::after,
.menu-desktop li a.active::after {
    width: 100%;
}

.menu-desktop li a:hover,
.menu-desktop li a.active {
    color: var(--rosa-principal);
}

.sidebar {
  position: fixed;
  top: 0;
  right: -300px; /* Escondido à direita */
  left: auto; /* Remove a propriedade left */
  width: 300px;
  height: 100%;
  background-color: var(--azul-escuro);
  box-shadow: -4px 0 15px rgba(0, 0, 0, 0.1); /* Sombra invertida */
  padding: 20px 20px 20px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1001;
  overflow-y: auto;
}

.sidebar.active {
  right: 0; /* Mostra vindo da direita */
  left: auto; /* Remove a propriedade left */
}

.sidebar ul {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-top: 10px
}

.sidebar ul li {
  margin: 25px 0;
  transition: transform 0.3s ease;
}

.sidebar ul li:hover {
  transform: translateX(5px);
}

.sidebar ul li a {
  color:var(--rosa-claro);
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  display: block;
  border-radius: 6px;
  transition: all 0.3s ease;
  padding: 8px 12px;
  font-size: 17px;
  font-family: 'Poppins', serif;
}

.sidebar ul li a:hover {
  color: var(--rosa-escuro);
  width: 100%;
}

.sidebar-logo {
  width: 120px;
  height: auto;
  margin: 0 auto 15px;
  display: block;
  transition: transform 0.3s ease;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: 1000;
}

.overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.menu-toggle {
  cursor: pointer;
  z-index: 1100;
  transition: transform 0.3s ease;
}

.menu-toggle:hover {
  transform: scale(1.1);
}

.menu-toggle {
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.menu-toggle.hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateX(-20px);
}



/*Onde Nos Encontrar*/
.onde-encontrar {
   max-width: 1200px;
   margin: 0 auto;
   padding: 40px 20px;
   text-align: center;
   font-family: 'Poppins', sans-serif;
}
.titulo-centralizado {
    font-size: 32px;
    color: #2B2B2B;
    font-family: 'Poppins', sans-serif;
    margin-top: 25px;
    margin-bottom: 30px;
}

.titulo-centralizado span {
    color: #d85a7f;
}

.subtitulo {
   color: #666;
   margin-bottom: 30px;
}

.grid-parceiros {
   display: grid;
   grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
   gap: 25px;
   padding: 20px;
}

.card-parceiro {
   background: #fff;
   border-radius: 12px;
   overflow: hidden;
   box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
   transition: transform 0.3s;
}

.card-parceiro:hover {
   transform: translateY(-5px);
}

.foto-parceiro {
   width: 100%;
   height: 200px;
   object-fit: cover;
}

.card-info {
   padding: 20px;
}

.card-info h3 {
   margin: 0;
   color: #d85a7f; /* Cor temática */
}

.endereco {
   color: #555;
   margin: 10px 0;
   font-size: 14px;
}

.botao-mapa {
   display: inline-block;
   padding: 8px 16px;
   background: #d85a7f;
   color: white;
   text-decoration: none;
   border-radius: 20px;
   font-size: 14px;
   transition: background 0.3s;
}

.botao-mapa:hover {
   background: #c04a6a;
}
.depoimentos {
    max-width: 1200px;
    margin: 50px auto;
    padding: 0 20px;
    text-align: center;
}

.depoimentos h2 {
    color: #d85a7f;
    font-size: 2rem;
}

.depoimentos .subtitulo {
    color: #666;
    margin-bottom: 40px;
}

.depoimentos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.card-depoimento {
    background: #fff;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: left;
    display: flex;
    flex-direction: column;
}

.avatar-cliente {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 20px;
    border: 3px solid #f8d1dc;
}

.avatar-cliente img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.texto-depoimento {
    flex: 1;
}

.texto-depoimento p {
    font-style: italic;
    color: #555;
    line-height: 1.6;
    position: relative;
    padding-left: 20px;
}

.texto-depoimento p::before {
    content: '"';
    font-size: 3rem;
    color: #f8d1dc;
    position: absolute;
    left: -15px;
    top: -15px;
    opacity: 0.5;
}

.info-cliente {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
}

.info-cliente .nome {
    font-weight: bold;
    color: #d85a7f;
}

.info-cliente .local {
    font-size: 0.9rem;
    color: #777;
    margin-top: 5px;
}

.info-cliente .local i {
    margin-right: 5px;
}

.whatsapp-float {
  position: fixed;
 width: 60px;
  height: 60px;
  bottom: 40px;
  right: 40px;
  background-color: var(--verde-whatsapp);
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  box-shadow: 2px 2px 3px #999;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.whatsapp-float:hover {
  background-color: var(--verde-whatsapp-escuro);
  transform: scale(1.1);
}

.whatsapp-float img {
  width: 35px;
  height: 35px;
}

.whatsapp-float::after {
  content: "Fale conosco!";
  position: absolute;
  left: -120px;
  width: 110px;
  background: white;
  color: var(--verde-whatsapp);
  padding: 5px;
  border-radius: 5px;
  font-size: 12px;
  opacity: 0;
  transition: opacity 0.3s;
}

.whatsapp-float:hover::after {
  opacity: 1;
}


.footer-corporativo {
    background-color: var(--rosa-claro);
    color: white;
    padding: 60px 0 30px;
    font-family: 'Arial', sans-serif;
}

.container-footer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3 {
    font-family: 'Poppins', serif;
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--azul-escuro);
    text-align: center;
}

.footer-col p {
    color: var(--azul-principal);
    margin-bottom: 15px;
    line-height: 1.6;
    font-family: 'Poppins', serif;
    font-size: 15px;
    text-align: center;
}
.footer-social{
     text-align: center;
}
.footer-social a {
    color: var(--azul-escuro);
    font-size: 1.5rem;
    transition: all 0.8s;
    text-align: center;
   
}

.footer-bottom, .footer-bottom a {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    color: var(--azul-escuro);
    font-size: 0.9rem;
}

/* Ícones de contato */
.footer-col i {
    margin-right: 10px;
    color: var(--dourado);
    width: 30px;
    text-align: center;
}

/* Ícones de contato */
.footer-col i {
    margin-right: 10px;
    color: var(--dourado);
    width: 30px;
    text-align: center;
}

@media (min-width: 902px) {
  .sidebar {
    right: auto; /* Remove a posição right */
    left: -300px; /* Escondido à esquerda */
    box-shadow: 4px 0 15px rgba(0, 0, 0, 0.1); /* Sombra no lado correto */
  }
  
  .sidebar.active {
    left: 0; /* Mostra vindo da esquerda */
    right: auto;
  }
}
/* Responsividade */

 @media (max-width: 900px) {
   .whatsapp-float::before{
        display: none;
    }
     .header-container {
    flex-direction: row; /* Alinha itens em linha */
    justify-content: flex-start; /* Alinha à esquerda */
    padding: 15px 20px;
  }
   .sidebar {
    width: 85%;
    max-width: 300px;
    right: -100%; /* Escondido à direita */
    left: auto;
    padding: 25px 15px;
    background-color: var(--azul-escuro);
    box-shadow: -5px 0 15px rgba(0,0,0,0.1); /* Sombra invertida */
  }
  
  .sidebar.active {
    right: 0; /* Mostra vindo da direita */
    left: auto;
  }


  .logo {
    order: 1; /* Nome do site no meio */
    margin-left: auto; /* Empurra para o centro */
    margin-right: auto; /* Centraliza o logo */
    font-size: 36px; /* Tamanho menor para mobile */
    text-align: center;
    width: calc(100% - 80px); /* Espaço para o ícone */
  }

  .menu-toggle {
    order: 1; /* Ícone primeiro (esquerda) */
    margin-left: 0;
    font-size: 24px;
    z-index: 1100;
  }  .menu-desktop {
    display: none; /* Esconde menu desktop */
  }
  .footer-col {
    text-align: center;
}
.whatsapp-float:hover,
    .whatsapp-float::after{
       transform: none;
        box-shadow: none;
        
    }
     
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-float img {
        width: 30px;
        height: 30px;
    }
    
}

