* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;

}

html {
    scroll-behavior: smooth;
}

:root {
    --primaria: #1E1E2F;
    --secundaria: #4C5C68;
    --escuro: #121212;
    --mais-escuro: #0A0A0A;
    --claro: #F4F4F4;
    --vidro: rgba(255, 255, 255, 0.06);
}
.logo-img {
    width: 90px;
    
    
}

body {
    background-color: #F4F4F4;
    color: var(--claro);
    
}


.inicio-texto {
    /* Remove absolute positioning */
    position: static; /* or remove this property */
    font-size: 4rem;
    color: #272626;
    margin-bottom: 20px; /* Use relative margins */
    padding: 0 1rem; /* Adjust padding for smaller screens */
    max-width: 800px; /* Optional: limit width on large screens */
}

.inicio-p {
    /* Remove absolute positioning */
    position: static; /* or remove this property */
    font-size: 1.5rem;
    color: #161616;
    margin-bottom: 40px; /* Use relative margins */
    padding: 0 1rem; /* Adjust padding for smaller screens */
    max-width: 700px; /* Optional: limit width on large screens */
}

.inicio-botoes {
    display: flex; /* Use flexbox for buttons */
    gap: 20px; 
    flex-wrap: wrap; 
    justify-content: center; 
}

.menu-link-contato2 {
    color: #ffffff;
    background: #0374dd; 
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: bold;
    text-decoration: none;
    white-space: nowrap;
    display: inline-block; 
}

.servicos {
    
    background: #ffffff; 
    color: #0374dd; 
    border: 1.2px solid #0374dd;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: bold;
    text-decoration: none;
    white-space: nowrap;
    display: inline-block; 
}

.logo {
    display: flex;
    gap: 5px;
    /* Espaço entre as palavras */
    align-items: center;
    font-size: 24px;
}

.vida {


    color: #000000;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    position: absolute;
    left: 130px;
    font-weight:500;
  

}
.sobre-vida {
font-size: 14px;
}




.navegacao {
    position: fixed;
    top: 0;
    background: #ffffff;
    width: 100%;
    z-index: 100;
    padding: 0.7rem 2rem;

    display: flex;
    justify-content: space-between;
    align-items: center;

}

.menu {
    display: flex;
    justify-content: right;
    list-style: none;
    gap: 3rem;


}

.menu-link {
    text-decoration: none;
    color: #3A3A3A;
    font-weight: 600;
    padding: 0.7rem;


}




.menu-link:hover {

    color: #0f89fc;

}


.menu-link-contato {
    background: #0374dd;
    padding: 1rem 2rem;
    border-radius: 8px;
    color: var(--claro);
    font-weight: bold;
    text-decoration: none;

}

.menu-link-contato:hover {
    background: #0462bb;
    color: var(--claro);
}

.cabecalho {
    background-image: url('../img/quadro-de-equipamento-medico-na-mesa.jpg');
    background-repeat: no-repeat; 
    background-size: cover; 
    background-position: center;
    padding: 100px 2rem 50px;
    min-height: 100vh;
    display: flex; 
    flex-direction: column; 
    justify-content: center; 
    align-items: center; 
    text-align: center; 
}

h1 {
    font-size: 2.5rem;
    color: #ffffff;
    font-weight: bold;
    margin: 15px;
}

.cabebecalho-sub-titulo {
    font-size: 2rem;
    color: var(--claro);
    margin: 15px;
}


.sobre {
    padding: 6rem 2rem;
    background-color: #f4f4f4; 
}

.sobre-titulo {
    text-align: center; 
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #0A0A0A;
    padding-right: 0; 
    margin-top: 0; 
}


.sobre-paragrafo {
    flex: 1; 
    font-size: 1.30rem;
    color: #3A3A3A;
    line-height: 1.5;
    padding: 0; 
}

.img-familia {
    flex-shrink: 0; 
    max-width: 40%; 
    height: auto; 
    border-radius: 8px; 
    object-fit: cover; 
}
    


    .sobre-caixa {
        display: flex; 
        flex-direction: row; 
        align-items: center; 
        gap: 40px; 
        max-width: 1200px; 
        margin: 0 auto; 
        padding: 0 1rem; 
    }


.info-projetos {
    color: #ffffff !important;
    font-weight: bold;
    margin-bottom: 10px;
}

.paragrafo-projetos {
    color: #ffffff !important;
    line-height: 1.5;
}


.caixa-texto-projeto {
    background: #ffffff;
    padding: 20px;
    
    
  
}

.projetos {
    padding: 6rem 2rem;
    

}

.projetos-caixa {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    

}

.projetos-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    backdrop-filter: blur(5px);
    border: 2px solid rgba(0, 0, 0, 0.199);
    overflow: hidden;
    transition: all 0.4s ease;
    cursor: pointer;
    





}


.projetos-titulo {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #0A0A0A;

}

.paragrafo-servicos {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 50px;
    color: #0A0A0A;
    
}

.projetos-card:hover {
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.07);
    transform: translateY(-10px) scale(1.04);
}

.projetos-imagem {
    height: 200px;
    width: 100%;
    object-fit: cover;
    display: block;
}






.paragrafo-projetos {
    
    line-height: 1.25rem;

}

.info-projetos {
    color: #3A3A3A !important;
    margin-bottom: 5px;
    
    
}




@keyframes flutuar {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}




.projetos-card {
    text-decoration: none;
    color: inherit;
    display: block;
    
}

.projetos-card *,
.projetos-card:visited *,
.projetos-card:link *,
.projetos-card:hover * {
    text-decoration: none !important;
    color: rgba(27, 27, 27, 0.9) !important;
}





.depoimentos-caixa {
    display: flex;
    
    align-items: center;
    margin-top: 0%;
    
}


.depoimentos-titulo {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #0A0A0A;
    margin-top: 40%; 
    position: static;
}

.depoimentos {
    scroll-margin-top: 220px; /* faz o scroll parar 100px antes */
    
    
}

.depoimentos-imagem {
   background-color: #0374dd;
}

.depoimentos-card {
    text-decoration: none;
    color: inherit;
    display: block;
    
}







.depoimentos-caixa {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    

}

.depoimentos-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    backdrop-filter: blur(5px);
    
    overflow: hidden;
    transition: all 0.4s ease;
    cursor: pointer;
    





}


.depoimentos-titulo {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #0A0A0A;
    margin-top: 4rem; 
    position: static; 
}


.projetos-card:hover {
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.07);
    transform: translateY(-10px) scale(1.04);
}



.caixa-texto-depoimentos {
    background: #e2e2e259;
    padding: 20px;
    
    
    
  
}




.paragrafo-depoimentos {
    
    line-height: 1.25rem;
    font-style: italic;
    color: #413e3e;
    margin-top: 10%;
    margin-bottom: 2%;
    
    
    

}

.depoimentos-card:hover {
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.07);
    transform: translateY(-10px) scale(1.04);
}

.info-depoimentos {
    color: #313131 !important;
    margin-bottom: 20px;

    

}

.sobre-titulo-depoimentos {
    
        color: #4b4848;
        
        font-size: 0.9rem;
    margin-bottom: 10px;    
    margin-top: -10%;
    
     
    
    
    
    
}

.depoimentos-card a,
.depoimentos-card a:visited,
.depoimentos-card a:hover,
.depoimentos-card a * {
    color: #161616;
    text-decoration: none !important;
    font-style: italic;
    
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #e0ecff;
    color: #2b55d4;
    font-weight: bold;
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
  }

  .depoimento-topo {
    display: flex;
    align-items: center;
    gap: 20px;
    
   
    
    
    
  }
  
  .info-nome {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-bottom: -38px
    
  }


  .contatos-section {
    padding: 4rem 2rem;
    background: #f4f4f4;
    margin-top: 10px;
  }
  
  .contatos-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .contato-info {
    flex: 1;
    background: #135eea;
    color: white;
    padding: 2rem;
    border-radius: 12px;
  }
  
  .contato-info h2, .contato-info h3 {
    color: white;
    margin-bottom: 1rem;
  }
  
  .contato-info p {
    margin-bottom: 1rem;
    font-size: 1rem;
  }
  
  .contato-info i {
    margin-right: 8px;
  }
  
  .contato-formulario {
    flex: 1;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
  }
  
  .contato-formulario h2 {
    margin-bottom: 1.5rem;
    color: #222;
  }
  
  .contato-formulario form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  
  .contato-formulario input,
  .contato-formulario select,
  .contato-formulario textarea {
    padding: 1rem;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1rem;
  }
  
  .contato-formulario button {
    background: #135eea;
    color: white;
    padding: 1rem;
    border: none;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
  }
  
  .contato-formulario button:hover {
    background: #0d47c2;
  }







  .linha-info {
    display: flex;
    align-items: flex-start;
    gap: 10px; 
  }
  
  .linha-info i {
    margin-top: 4px; 
  }

/* CSS (resumo) */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
  }
  
  .menu-toggle {
    display: none;
    font-size: 28px;
    background: none;
    border: none;
    cursor: pointer;
  }
  
  .nav-links {
    display: flex;
    gap: 20px;
    list-style: none;
  }

  .mapa {
    width: 100%;
    
    border-radius:  8px;
  }
  
  

  
  @media (max-width: 1000px) {
    

    .cabecalho {
        background-image: url('../img/img.jpg');
    }
    .menu {
        display: none;
        position: absolute;
        top: 70px;
        right: 20px;
        background: white;
        flex-direction: column;
        gap: 1rem;
        padding: 1rem 2rem;
        border-radius: 12px;
        box-shadow: 0 0 12px rgba(0, 0, 0, 0.15);
        z-index: 999;
    }
    
  

    .projetos-imagem {
        height: 52%;
        


    }

    .projetos-card {
      height: 320px;
    }
 
   
   


    .menu.show {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }

    
    .inicio-texto {
        font-size: 2.5rem; 
    }

    .inicio-p {
        font-size: 1.2rem; 
    }

    

    .inicio-botoes {
        flex-direction: column; 
        align-items: center; 
        width: 100%; 
    }

    .menu-link-contato2,
    .servicos {
        width: 80%; 
        max-width: 300px; 
        text-align: center;
    }
    

    
    .sobre-caixa {
        flex-direction: column; 
        text-align: center; 
    }

    .img-familia {
        max-width: 110%; 
        margin-bottom: -5rem; 
    }

    .sobre-paragrafo {
        font-size: 1rem; 
    }
   

    
    .depoimentos {
        margin-top: 2rem; 
    }
}


.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    text-align: center;
    font-size: 30px;
    z-index: 1000;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease;
    text-decoration: none;
  }
  
  .whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #1ebe5d;
  }