
/* 
Paleta de cores harmonizada
Função | Cor | Hex
Primária	Laranja viva	#ED672C
Fundo neutro	Cinza bem claro	#F3F3F3
Título texto	Quase preto	#1A1A1A
Subtítulo texto	Cinza médio	#6E6E6E
Botão hover	Laranja escuro	#D6521F
Ícones extras	Branco e preto	#FFFFFF, #000000
 */


*{
    margin: 0px;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #ffffff;
  font-family: Arial, sans-serif;
}

h1{
    font-size: 70px;
}

h2{
    font-size: 40px;
}

h3{
    font-size: 20px;
}

.logo {
  display: flex;
  align-items: center; /* centraliza verticalmente */
  gap: 10px;          /* espaçamento entre logo e texto */
  text-decoration: none;
}

.logo img {
  height: 50px;         /* ou o tamanho que desejar */
  object-fit: contain;
}

.logo h1 {
  font-size: 30px;
  color: rgb(237, 103, 44);
}

.header {
    box-sizing: border-box;
    width: 100%;
    background: #ffffff;
    padding: 10px 100px;
    display: grid;
    /* justify-content: space-between; */
    align-items: center;
    position: relative;
    place-items: center;
}

.nav-links {
    display: flex;
    gap: 10px;
    
}

 footer {
    text-align: center;
    padding: 20px;
    font-size: 14px;
    color: #666;
}

.footer-link-disfarce {
    text-align: center;
    font-size: 14px;
    text-decoration: none;
    color: #666;
}

.nav-links a {
    padding: 10px 10px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 20px;
    color: rgb(237, 103, 44);
    
    transition: all 0.2s ease-in-out;
    border: 0px solid;
}

.nav-links a:hover {
    background: rgba(255, 255, 255, 0.55);
    transform: translateY(-1px);
    box-shadow: 0 6px 14px rgba(0,0,0,0.1), inset 0 0 4px rgba(255,255,255,0.6);
}

.nav-links a:active {
    transform: scale(0.98);
    box-shadow: inset 0 0 8px rgba(0, 0, 0, 0.2);
}

button {
    padding: 15px 30px;
    border-radius: 30px;
    background-color: #ED672C;
    color: #ffffff;
    font-weight: 600;
    font-size: 16px;
    border: none;
    cursor: pointer;
    transition: 0.3s;
}

button:hover {
  background-color: #D6521F;
  transform: translateY(-2px);
}

button:active {
  transform: scale(1);
}


.main-container {
    display: flex;
    gap: 30px;
    justify-content: center;
    scroll-snap-type: x mandatory;
    overflow-y: auto;
}

main {
    background: #F3F3F3;
    padding: 20px;
    margin: 10px 0px;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
    flex: 1 1 40%;
}


.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 60px 100px;
  background-color: #f3f3f3;
  flex-wrap: wrap;
}

.hero-texto {
  flex: 1 1 500px;
  max-width: 600px;
}

.hero-texto h1 {
  font-size: 56px;
  color: #1a1a1a;
  margin-bottom: 20px;
}

.hero-texto p {
  color: #666;
  font-size: 18px;
  margin-bottom: 20px;
}

.hero-texto button {
  background-color: #ed672c;
  color: #fff;
  padding: 14px 30px;
  border: none;
  border-radius: 30px;
  font-weight: bold;
  font-size: 16px;
  cursor: pointer;
}

.hero-imagem {
  flex: 1 1 400px;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 600px;
}

.hero-imagem img {
  max-width: 100%;
  height: auto;
}


.container{
    padding: 40px 100px ;
    max-width: 100%;
} 

.container h2{
    color: #1A1A1A;
    font-weight: 400px;
    font-size: 40px;
}
.container h3{
    color: #6E6E6E;
    font-size: 20px;
}

.container h4{
    color: #6E6E6E;
    font-size: 15px;
}

/* 
=============================================
===================CONTATO===================
=============================================
*/

.contato {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  padding: 60px 40px;
  background: #F3F3F3;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
}

.contato-1 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  padding: 40px;
  flex: 1 1 300px;
  padding: 100px;
}

.contato-2 {
  flex: 1 1 500px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  padding-right: 200px;
  max-width: 700px;
}

.contato-1 h2,
.contato-2 h2 {
  font-size: 40px;
  color: #1A1A1A;
  margin-bottom: 20px;
}

.contato-1 button {
  width: 200px;
}

.form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

.input-span {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.input-span input,
.input-span select,
.input-span textarea {
  width: 100%;
  border: 1px solid #ccc;
  box-sizing: border-box;
}

.label {
  font-weight: 600;
  color: #1A1A1A;
}

.form input,
.form select,
.form textarea {
  width: 100%;
  padding: 14px 18px;
  border: none;
  border-radius: 8px;
  background-color: #e0e0e0;
  font-size: 15px;
  color: #1A1A1A;
  outline: none;
  transition: 0.3s;
}

.form input:focus,
.form select:focus,
.form textarea:focus {
  background-color: #fff;
  border: 2px solid #ED672C;
}

textarea {
  resize: vertical;
  min-height: 100px;
}

.submit {
  padding: 16px;
  border-radius: 30px;
  background-color: #ED672C;
  color: #ffffff;
  font-weight: 600;
  font-size: 16px;
  border: none;
  cursor: pointer;
  transition: 0.3s;
  width: 100%;
}

.submit:hover {
  background-color: #D6521F;
  transform: translateY(-2px);
}

.submit:active {
  transform: scale(1);
}


.container-depoimentos {
  padding: 60px 40px;
  background: #ffffff;
  text-align: center;
}

.depoimentos-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.depoimento-box {
  background: #f3f3f3;
  padding: 30px 25px;
  border-radius: 16px;
  max-width: 350px;
  text-align: left;
  box-shadow: 0 20px 18px rgba(0, 0, 0, 0.178);
  position: relative;
  transition: 0.3s ease;
}

.depoimento-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.08);
}

.aspas {
  font-size: 90px;
  color: #ED672C;
  margin-bottom: 0px;
}

.depoimento-text {
  font-size: 15px;
  color: #6E6E6E;
  line-height: 1.6;
  margin-bottom: 20px;
}

.depoente {
  font-weight: bold;
  color: #1A1A1A;
  font-size: 14px;
  text-align: right;
}
.container-servicos {
  padding: 60px 20px;
  text-align: center;
  background-color: #fff;
}

.container-servicos h2 {
  font-size: 36px;
  color: #1A1A1A;
  margin-bottom: 10px;
}

.container-servicos h3 {
  font-size: 18px;
  color: #6E6E6E;
  margin-bottom: 40px;
  font-weight: 400;
}

.servicos-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
}

.servico-box {
  background-color: #F3F3F3;
  padding: 40px 20px;
  border-radius: 20px;
  text-align: center;
  width: 100%;
  max-width: 250px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.178);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}


.servico-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.servico-box img {
  width: 100px;
  height: 100px;
  margin-bottom: 15px;
}

.servico-box span {
  color: #1A1A1A;
  font-weight: 700;
  font-size: 17px;
  line-height: 1.4;
}

/* Responsivo */
@media (max-width: 768px) {
  .servico-box {
    max-width: 100%;
    flex: 1 1 100%;
  }
}
