/* ------------------------------
   RESET BÁSICO
   Remove margens e paddings padrões
--------------------------------*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  /* ------------------------------
     ESTILOS GERAIS
  --------------------------------*/

  
  .container {

  /*
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
  */
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
  
  }

  
  /* ------------------------------
     CABEÇALHO FIXO
  --------------------------------*/
  


  .site-header {
    position: fixed;          /* Fixa no topo */
    top: 0;
    left: 0;
    width: 100%;

    /* Fundo transparente estilo vidro */
    background: rgba(255, 255, 255, 0.15); /* 15% branco */
    backdrop-filter: blur(10px);           /* efeito de desfoque */
    -webkit-backdrop-filter: blur(10px);   /* suporte Safari */


    color: #fff;
    padding: 10px 0;
    z-index: 1000;            /* Garante que fica acima do conteúdo */
    border-bottom: 1px solid rgba(255, 255, 255, 0.3); /* linha sutil */
  }
  
  .site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  .logo-img {
    height: 100px; /* Mantém a proporção da logo */
  }

  /* ------------------------------
     MENU DE NAVEGAÇÃO
  --------------------------------*/
  .nav {
    display: flex;
    gap: 170px;
  }
  
  .nav a {
    color: #426b72;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
  }
  
  .nav a:hover,
  .nav a.active {
    color: #ade6e8; /* Cor azure ao passar o mause no menu  */
  }
  
  /* Botão hamburguer (só aparece no mobile) */
  .nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 26px;
    color: #fff;
    cursor: pointer;
  }

    /* ------------------------------
              video do inicio  
    --------------------------------*/  

.video-container {
  margin-top: -10px;         /* sobe o vídeo encostando no topo */
  padding-top: 0;
}

.video-container video {
  display: block;
  margin: 0;
  width: 100%;
  height: auto;
}



  /* ------------------------------
/* === Texto sobre o vídeo === */
.video-texto {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  text-align: center;
  width: 80%;
  z-index: 10;
}

.video-texto h1 {
  font-size: 2.8rem;
  margin-bottom: 10px;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.6);
}

.video-texto p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.5;
  text-shadow: 1px 1px 6px rgba(0,0,0,0.5);
}
    /* ------------------------------
     Inicio cuidados
  --------------------------------*/  
  .iniciocuidados{
    display: flex;
    justify-content: center;   /* centraliza os cards */
    align-items: center;       /* alinha no eixo vertical */
    gap: 40px;                 /* espaço entre os cards */
    margin: 30px 0;
    text-align: center;        /* centraliza o texto dentro do card */
    
  }
  .iniciocuidados img {
  width: 280px;              /* tamanho das imagens */
  }

  /* ------------------------------
     Logo utilizado na pagina 
  --------------------------------*/  

  .logopagina{
    height: 400px; /* Mantém a proporção da logo */
    display: center;
    align-items: center;
  }
  /* ------------------------------
     Informação principal da pagina inicio  (seção inicial do index)
  --------------------------------*/
  .hero {
    padding: 30px 0 60px; /* Espaço maior por causa do header fixo */
    background: #fff; /* linear-gradient(135deg, #004aad, #0077ff); */
    color: #46b7a9;
    text-align: left;
  }
  
  .hero-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .hero .accent {
    color: #426b72; /* Destaca parte do texto cor azure apagado */
  }
  
  .hero-cta {
    margin-top: 20px;
  }
  
  .btn {
    display: inline-block;
    padding: 10px 20px;
    margin-right: 10px;
    background: #ade6e8;
    color: #426b72;
    font-weight: bold;
    border-radius: 5px;
    text-decoration: none;
    transition: background 0.3s;
  }
  
  .btn:hover {
    background: #426b72 ;
    color: #fff;
  }
  
  .btn-ghost {
    background: transparent;
    border: 2px solid #ade6e8;
    color: #426b72;
  }
  
  .btn-ghost:hover {
    background: #426b72;
    color: #fff;
  }
  
  /* ------------------------------
     SEÇÕES INTERNAS
  --------------------------------*/
  .about,
  .features,
  .contact {
    padding: 100px 0 60px;
    background: #fff;
  }
  
  .card {
    background: #f1f1f1;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);

  }
  
  /* ------------------------------
     FORMULÁRIO
  --------------------------------*/
  .form {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  
  .field-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }
  
  .field-row input {
    flex: 1;
    padding: 10px;
  }
  
  textarea {
    padding: 10px;
    resize: vertical;
  }
  
  .form-actions {
    display: flex;
    align-items: center;
    gap: 15px;
  }
  
  .form-msg {
    font-size: 14px;
    color: #004aad;
  }
  
  /* ------------------------------
     RODAPÉ
  --------------------------------*/
  .site-footer {
    background: #222;
    color: #ccc;
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;
  }
 
  /* ------------------------------
     BOTÃO WHATSAPP FIXO
  --------------------------------*/
  .whatsapp-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    background: #25d366;
    padding: 10px 12px;
    border-radius: 50px;
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    transition: transform 0.3s;
  }
  
  .whatsapp-btn:hover {
    transform: scale(1.05);
  }
  
  .whatsapp-icon {
  width: 48px;
  height: auto; /* mantém a proporção da imagem */
  }
  
  .whatsapp-tooltip {
    display: none;
  }
  
  .whatsapp-btn:hover .whatsapp-tooltip {
    display: inline;
  }
  
  /* ------------------------------
     RESPONSIVIDADE MOBILE
  --------------------------------*/
  @media (max-width: 768px) {

      /* Tablets e celulares */
  body {
    padding: 10px;
  }
  .container {
    flex-direction: column;
  }
    #video-banner, .video-container {
    height: 250px;
  }

    /*
    .nav {
      display: none;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);

    position: absolute;
    top: 60px;
    right: 0;
    width: 200px;
    padding: 20px;
    border-left: 1px solid rgba(255, 255, 255, 0.3);
    }
  
    .nav.show {
      display: flex;               //Mostra menu quando ativo
    }
  
    .nav-toggle {
      display: block;             //Botão hamburguer visível
    }
  
    .hero-inner {
      flex-direction: column;
      text-align: center;
    
    }
    */
  /* Fundo escuro atrás */
  .nav-overlay {
    position: fixed;
    top: 60px; /* começa abaixo do header */
    left: 0;
    width: 100%;
    height: calc(100vh - 60px);
    background: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(2px);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
    z-index: 900;
  }

  .nav-overlay.show {
    opacity: 1;
    visibility: visible;
  }

  /* ================================
        MENU LATERAL
  ================================= */
  .nav {
    position: fixed;
    top: 60px; /* abaixo do header */
    right: -70%; /* escondido */
    width: 70%;
    height: calc(100vh - 50px);
    max-height: 80vh; /* impede que fique enorme */
    padding: 10px 20px;

    display: flex;
    flex-direction: column;

    background: rgba(250, 250, 250, 0.85);
    backdrop-filter: blur(10px);
    border-left: 2px solid rgba(255, 255, 255, 0.4);

    transition: right 0.35s ease;
    z-index: 1000;
  }

  .nav.show {
    right: 0;
  }

  /* Links */
  .nav a {
    color: #426b72;
    font-size: 1.3rem;
    padding: 10px;
    border-bottom: 1px solid rgba(150, 150, 150, 0.2);
    font-weight: bold;
  }

  .nav a:last-child {
    border-bottom: none;
  }

  /* Botão do menu */
  .nav-toggle {
    display: block;
    position: relative;
    z-index: 1100;
  }
  
  .logopagina {
      height: auto;
      max-width: 50%;
      margin: 0 auto;
      display: block;
  }

    .iniciocuidados{
    flex-direction: column;
    gap: 20px;
  }

  .iniciocuidados img{
    width: 70%;
  }
  
   .bannerinicio{
    height: auto;
    max-width: 100%;
  }

   .secao-infos {
      flex-direction: column;
      align-items: center;
  }
   .infos {
      height: auto;
      width: 50%;
      margin: 100px;
  }
  
  }

  /*--------------------------------
    === Video da pagina inicio ===
    --------------------------------*/


/* Contêiner responsivo do vídeo */
.video-container {
  position: relative;
  width: 100%;
  max-height: 600px; /* altura máxima do bloco de vídeo */
  overflow: hidden;
}

.video-container
 {
  margin-top: 0;
  padding-top: 0;
}

/* Faz o vídeo ocupar todo o espaço */
.video-container iframe,
.video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover; /* cobre toda a área */
}

/* Camada colorida por cima do vídeo */
.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  /* Cor da paleta com transparência */
  background: rgba(94, 235, 245, 0.4); /* azul translúcido */
  
  /* efeito vidro opcional */
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
/*--------------------------------
    === Banner da pagina inicio ===
    --------------------------------*/
.bannerinicio{
  width: 100%;
  height: auto;          /* deixa a imagem responsiva */
  display: block;
  margin: 20px;
  object-fit: cover;     /* impede distorção */

}

/*--------------------------------
    === Valores da empresa e botão para  ===
--------------------------------*/
.infos {
  height: 200px;
  grid-template-columns: repeat(3, auto); /* 3 colunas automáticas */
  margin: 40px 60px;
  gap: 40px;
}

/*------------------------------------------------------
    === INFORMAÇÕES DA EMPRESA NO FINAL DA PAGINA   ===
----------------------------------------------------*/
.footer {
  background: #f4f9fb;
  padding: 40px 20px;
  color: #1c3d5a;
  font-family: Arial, sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
}
.footer-container2{
  display: flex;
  flex-direction: column; /* deixa em coluna */
  align-items: flex-start; /* alinha à esquerda (ou center se quiser centralizar) */
}
.footer-col {
   margin-bottom: 20px;
}

.footer-logo {
  max-width: 200px;
}

.footer h4 {
  margin-bottom: 10px;
  font-size: 16px;
  color: #426b72;
}

.footer p, 
.footer a {
  font-size: 14px;
  color: #426b72;
  text-decoration: none;
}

.footer-social a img {
  width: 28px;
  margin-right: 10px;
  filter: invert(22%) sepia(32%) saturate(350%) hue-rotate(170deg) brightness(95%) contrast(90%);
  transition: transform 0.3s;
}

.footer-social a img:hover {
  transform: scale(1.2);
  color: #ade6e8;
}

.footer-bottom {
  text-align: center;
  margin-top: 20px;
  border-top: 1px solid #ccc;
  padding-top: 10px;
  font-size: 13px;
  color: #555;
}


/*--------------------------------
    === Botão Quem Somos   ===
--------------------------------*/
 .botaoquemsomos {
    display: flex;
    justify-content: center; /* centraliza no eixo horizontal */
    padding: 10px 20px;
    margin-right: 10px;
    background: #ade6e8;
    color: #426b72;
    font-weight: bold;
    border-radius: 5px;
    text-decoration: none;
    transition: background 0.3s;
  }

 .botaoquemsomos-ghost {
    background: transparent;
    border: 2px solid #ade6e8;
    color: #426b72;
  }
  
  .botaoquemsomos-ghost:hover {
    background: #426b72;
    color: #fff;
  }
/*--------------------------------
    === Pagina Serviços ===
--------------------------------*/
  .servicoscard_img {
     width: 100%;
     max-height: 600px;
     object-fit: cover;
     border-radius: 15px;
     box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  }
  .cardservicos {
  background: #e0f7f7;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.cardservicos:hover {
  transform: translateY(-5px);
}
.cardservicos h3 {
  color: #2c5c6f;
  margin-bottom: 10px;
}

.cardservicos p {
  color: #333;
  line-height: 1.6;
}

/*--------------------------------
    === Pagina Empresa ===
--------------------------------*/
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f7f9fa;
}

/* Cabeçalho da fundadora */
.fundadora-header {
  text-align: center;
  margin: 30px auto;
}

.fundadora-header img {
  max-width: 700px;
  width: 100%;
  height: auto;
}

/* Card da fundadora */
.empresa {
  display: flex;
  align-items: center;
  background: #ffffff;
  max-width: 900px;
  margin: 40px auto;
  border-radius: 15px;
  box-shadow: 0px 4px 10px rgba(0,0,0,0.1);
  overflow: hidden;
    /* 🔽 Força a disposição em coluna */
  display: flex;
  flex-direction: column;
  align-items: center;
}

.empresa-img {
  width: 100%;      /* ocupa toda a largura do card */
  height: auto;     /* mantém proporção */
  object-fit: contain; /* garante que não estique */
  border-bottom: 3px solid #e0e0e0;
}

.empresa-text {
  padding: 30px;
  width: 60%;
}

.empresa-text h2 {
  color: #2c3e50;
  margin-bottom: 15px;
}

.empresa-text p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}

/*--------------------------------
    === Pagina Contato ===
--------------------------------*/

  .contatocard_img {
     width: 100%;
     max-height: 600px;
     object-fit: cover;
     border-radius: 15px;
     box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  }
  .cardcontato {
  background: #e0f7f7;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.cardcontato:hover {
  transform: translateY(-5px);
}
.cardcontato h3 {
  color: #2c5c6f;
  margin-bottom: 10px;
}

.cardcontato p {
  color: #333;
  line-height: 1.6;
}


