header {
    width: 100%;
    padding: 28px 8%;
    position: sticky;
    top: 0;
    background-color: var(--color-primary-1);
    z-index: 3;
}

#navbar {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#nav_logo {
    font-size: 24px;
    color: #0c344f;
}

#nav_list {
    display: flex;
    list-style: none;
    gap: 48px;
}

.nav-item a {
    text-decoration: none;
    color: #0c344f;
    font-weight: 600;
}

.nav-item.active a {
    color: #0c344f;
    border-bottom: 3px solid var(--color-primary-4);
}

#mobile_btn {
    display: none;
}

#mobile_menu {
    display: none;
}

@media screen and (max-width: 1170px) {
    #nav_list,
    #navbar .btn-default {
        display: none;
    }

    #mobile_btn {
        display: block;
        border: none;
        background-color: transparent;
        font-size: 1.5rem;
        cursor: pointer;
    }

    #mobile_menu.active {
        display: flex;
        flex-direction: column;
        align-items: center;
        color: #0c344f;
    }

    #mobile_nav_list {
        display: flex;
        flex-direction: column;
        gap: 12px;
        margin: 12px 0px;
        color: #0c344f;
    }

    #mobile_nav_list .nav-item {
        list-style: none;
        text-align: center;
    } 
}


:root {
    --color-primary-1: #fff;
    --color-primary-2: #ffe8b4;
    --color-primary-3: #f8d477;
    --color-primary-4: #ffe100;
    --color-primary-5: #fabd1a;
    --color-primary-6: #e9a209;

    --color-neutral-0: #fff;
    --color-neutral-1: #1d1d1d;
}

* {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--color-primary-1);
}

section {
    padding: 28px 8%;
}

.btn-default {
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-primary-5);
    border-radius: 12px;
    padding: 10px 14px;
    font-weight: 600;
    box-shadow: 0px 0px 10px 2px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: background-color .3s ease;
   color: #000;
    text-decoration: none;
    border: none;
    outline: none;
    
}

.btn-default:hover {
    background-color: var(--color-primary-3);
}


/*primeira parte do site*/

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  font-family: 'Arial', sans-serif;
  height: 100%;
  scroll-behavior: smooth;
}

.hero {
  background-image: url('capa1.png'); /* Coloque aqui o nome da imagem de fundo */
  background-size: cover;
  background-position: center;
  min-height: 70vh;
  color: white;
  display: flex;
  align-items: center;
  padding: 0 5%;
  position: relative;
}



.hero-content {
  z-index: 2;
  max-width: 600px;
}

.small-title {
  font-size: 16px;
  opacity: 0.8;
}

h1 {
  font-size: 40px;
  margin: 10px 0;
}

.subtitle {
  font-size: 18px;
  margin-bottom: 20px;
}

.benefits {
  list-style: none;
  margin-bottom: 30px;
}

.benefits li {
  margin-bottom: 10px;
  font-size: 16px;
}

.cta-button {
  display: inline-block;
  padding: 12px 24px;
  background-color: #f9bd1a;
  color: #000;
  font-weight: bold;
  text-decoration: none;
  border-radius: 5px;
  transition: background 0.3s ease;
}

.cta-button:hover {
  background-color: #f3db9d;
}


@media screen and (max-width: 1170px){

.hero {
  background-image: url('primeirofundocelular.png'); /* Coloque aqui o nome da imagem de fundo */
  background-size: cover;
  background-position: center;
  min-height: 75vh;
  color: white;
  display: flex;
  align-items: center;
  padding: 0 5%;
  position: relative;
}
h1 {
  font-size: 30px;
  margin: 10px 0;
}
.benefits li {
  margin-bottom: 10px;
  font-size: 19px;
}

.subtitle {
  font-size: 19px;
  margin-bottom: 20px;
}

}


/*sobre nós*/

.sobre-nos {
  background-image: url('fundosobrenos.png'); /* Substitua com sua imagem de fundo */
  background-size: cover;
  background-position: center;
  padding: 80px 5%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.sobre-nos .conteudo {
  display: flex;
  flex-direction: column;
  max-width: 1200px;
  width: 100%;
}

.sobre-nos .imagem img {
  /*max-width: 100%;*/
  max-width: 450px;
  border-radius: 8px;
  display: block;
}

.sobre-nos .texto {
  max-width: 600px;
  color: #111;
  margin-top: 40px;
}

.sobre-nos .texto h3 {
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1px;
  margin-bottom: 8px;
  color: #777;
}

.sobre-nos .texto h2 {
  font-size: 36px;
  margin-bottom: 16px;
}

.sobre-nos .texto p {
  font-size: 18px;
  line-height: 1.6;
}

/* Layout lado a lado em telas maiores */
@media (min-width: 768px) {


  .sobre-nos .conteudo {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
  }

  .sobre-nos .imagem {
    flex: 1;
   
  }

  .sobre-nos .texto {
    flex: 1;
    margin-top: 0;
  }

  .sobre-nos img{
    max-width: 200px;
  }



}

@media (max-width: 768px){

.sobre-nos .texto h2 {
  font-size: 30px;
  margin-bottom: 16px;
}

.sobre-nos .texto p {
  font-size: 16px;
  line-height: 1.6;
}

.sobre-nos {
  background-image: url('segundocel.png'); /* Substitua com sua imagem de fundo */
  background-size: cover;
  background-position: center;
  padding: 80px 5%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.sobre-nos .imagem img {
  /*max-width: 100%;*/
  max-width: 350px;
  border-radius: 8px;
  display: block;
}


}


/*serviços*/


/* ===== Reset ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  background: #fff;
  color: #333;
}



.servicos {
  text-align: center;
  padding: 60px 20px;
  background: #0b3451;
}

.servicos h2 {
  font-size: 2.5rem;
  color: #fff;
  margin-bottom: 40px;
  font-weight: bold;
}

.servicos-container {
  display: grid;
  grid-template-columns: repeat(5, 1fr); /* 5 por linha no desktop */
  gap: 30px;
  justify-content: center;
}

.servico-card {
  background: #fff;
  border: 1px solid #eee;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

.servico-card img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  margin-bottom: 15px;
}

.servico-card h3 {
  font-size: 1rem;
  margin-bottom: 10px;
  color: #222;
}

.servico-card p {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 20px;
}

.btn-servico {
  display: inline-block;
  padding: 10px 20px;
  border: 2px solid #f9bd1a;
  color: #f9bd1a;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.btn-servico:hover {
  background: #f9bd1a;
  color: #fff;
}

/* ===== Responsividade ===== */
@media (max-width: 1024px) {
  .servicos-container {
    grid-template-columns: repeat(3, 1fr); /* 3 por linha no tablet */
  }
}

@media (max-width: 768px) {
  .servicos-container {
    grid-template-columns: repeat(1, 1fr); /* 1 por vez no celular */
  }

  .servicos h2 {
  font-size: 2.0rem;
  color: #fff;
  margin-bottom: 40px;
  font-weight: bold;
}

.servico-card p {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 20px;
}
}

/*portifolio*/


.portfolio {
  text-align: center;
  padding: 60px 20px;
  /*background: #f9f9f9;*/
  background-image: url('fundosobrenos.png'); /* Substitua com sua imagem de fundo */
  background-size: cover;
  background-position: center;
  padding: 80px 5%;
  
}

.portfolio h3 {
  font-size: 0.9rem;
  font-weight: 600;
  color: #555;
  margin-bottom: 10px;
}

.portfolio h2 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 30px;
}

.carousel {
  position: relative;
  overflow: hidden;
  max-width: 1200px;
  margin: 0 auto 30px;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.slide {
  min-width: calc(100% / 3); /* 3 imagens no desktop */
  box-sizing: border-box;
  padding: 10px;
}

.slide img {
  width: 100%;
  border-radius: 10px;
  display: block;
}

.prev,
.next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  color: #333;
  z-index: 10;
}

.prev { left: 10px; }
.next { right: 10px; }

.portfolio-btn .btn {
  display: inline-block;
  padding: 12px 24px;
  background: #c4a052;
  color: #fff;
  border-radius: 5px;
  font-weight: bold;
  text-decoration: none;
  transition: 0.3s;
}

.portfolio-btn .btn:hover {
  background: #a7833f;
}

/* Responsivo */
@media (max-width: 768px) {
  .slide {
    min-width: 100%; /* 1 imagem por vez no celular */
  }

  .portfolio {
  text-align: center;
  padding: 60px 20px;
  /*background: #f9f9f9;*/
  background-image: url('segundocel.png'); /* Substitua com sua imagem de fundo */
  background-size: cover;
  background-position: center;
  padding: 80px 5%;
  
}

.portfolio h2 {
  font-size: 1.9rem;
  font-weight: bold;
  margin-bottom: 30px;
}

}



.avaliacoes {
  text-align: center;
  padding: 60px 20px;
   background-image: url('fundoAvaliacoes.png'); /* Substitua com sua imagem de fundo */
  background-size: cover;
  background-position: center;
  padding: 80px 5%;
  
}

.avaliacoes h2 {
  font-size: 2.2rem;
  margin-bottom: 40px;
  color: #ffff;
}

.avaliacoes-container {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.avaliacao-box {
  background: #fff;
  padding: 25px;
  width: 320px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  border-radius: 8px;
  text-align: left;
  position: relative;
}

.avaliacao-box h3 {
  font-size: 1.2rem;
  margin-bottom: 5px;
}

.avaliacao-box .subtitulo {
  display: block;
  font-size: 0.9rem;
  color: #888;
  margin-bottom: 15px;
}

.avaliacao-texto {
  position: relative;
  font-size: 0.95rem;
  line-height: 1.5;
  color: #333;
}

.avaliacao-texto i {
  color: red;
  font-size: 20px;
}

.avaliacao-texto i.fa-quote-left {
  position: absolute;
  top: -10px;
  left: -5px;
}

.avaliacao-texto i.fa-quote-right {
  display: block;
  text-align: right;
  margin-top: 10px;
}

@media (max-width: 768px){
  .avaliacoes h2 {
  font-size: 1.5rem;
  margin-bottom: 40px;
  color: #ffff;
}

.avaliacao-texto {
  position: relative;
  font-size: 1.0rem;
  line-height: 1.5;
  color: #333;
}
}


/* ======= Seção de Contato ======= */
.contato {
  padding: 60px 0;
  background-image: url('fundosobrenos.png'); /* Substitua com sua imagem de fundo */
  background-size: cover;
  background-position: center;
  padding: 80px 5%;
  font-family: 'Arial', sans-serif;
}

.contato-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  padding: 0 20px;
}

/* ======= Texto do lado esquerdo ======= */
.contato-info {
  flex: 1;
}

.contato-info h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #000;
}

.contato-info p {
  font-size: 16px;
  color: #333;
  margin-bottom: 15px;
}

.contato-info strong {
  font-size: 18px;
  color: #000;
}

/* ======= Formulário ======= */
.contato-form {
  flex: 1;
  background: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0px 4px 20px rgba(0,0,0,0.1);
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.contato-form input,
.contato-form select,
.contato-form textarea {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 4px;
  background: #f5f5f5;
  font-size: 15px;
  color: #333;
  transition: all 0.3s ease;
}

.contato-form input:focus,
.contato-form select:focus,
.contato-form textarea:focus {
  background: #fff;
  outline: 2px solid #007bff;
}

/* Inputs lado a lado (nome e email) */
.contato-form input:nth-child(1),
.contato-form input:nth-child(2) {
  flex: 1;
  min-width: calc(50% - 8px);
}

.contato-form textarea {
  min-height: 120px;
  resize: vertical;
}

/* Botão */
.contato-form button {
  width: 100%;
  padding: 14px;
  background: #0b3451;
  color: #fff;
  border: none;
  font-size: 16px;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contato-form button:hover {
  background: #f9bd1a;
}

/* ======= Responsividade ======= */
@media (max-width: 900px) {
  .contato-container {
    flex-direction: column;
    align-items: center;
  }

  .contato-info {
    text-align: center;
  }

  .contato-form {
    width: 100%;
  }

  .contato-form input:nth-child(1),
  .contato-form input:nth-child(2) {
    min-width: 100%;
  }

  .contato {
  padding: 60px 0;
  background-image: url('segundocel.png'); /* Substitua com sua imagem de fundo */
  background-size: cover;
  background-position: center;
  padding: 80px 5%;
  font-family: 'Arial', sans-serif;
}
.contato-info p {
  font-size: 18px;
  color: #333;
  margin-bottom: 15px;
}
}





/* ===== Localização ===== */
/* ===== Localização ===== */
.localizacao {
  position: relative;
  padding: 80px 20px;
  color: #fff;
  background-image: url('fundoLoc.png'); /* Coloque aqui o nome da imagem de fundo */
  background-size: cover;
  background-position: center;
  min-height: 50vh;
}

.localizacao .overlay {
 
  padding: 60px 20px;
  border-radius: 10px;
}

.localizacao h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 40px;
  font-weight: 700;
}

.map-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.map-box {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.map-box iframe {
  width: 100%;
  height: 350px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.map-box p {
  margin-top: 12px;
  font-size: 16px;
  color: #fff;
  text-align: center;
}

@media (max-width: 900px){
  .localizacao h2 {
  text-align: center;
  font-size: 30px;
  margin-bottom: 40px;
  font-weight: 700;
}

.map-box p {
  margin-top: 12px;
  font-size: 19px;
  color: #fff;
  text-align: center;
}

}

.footer {
  background-color: #fff;
  color: black;
  padding: 50px 0 25px;
  font-family: 'Segoe UI', sans-serif;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px;
  box-sizing: border-box;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.footer-col {
  flex: 1;
  min-width: 250px;
}

.logo-footer {
  font-size: 24px;
  font-weight: bold;
  color: #ff6ec4;
}

.logo-footer span {
  color: #ffc37f;
}

.footer-social {
  margin-top: 15px;
}

.footer-social a {
  display: inline-block;
  margin-right: 10px;
}

.footer-social img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
}

.footer-bottom {
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  border-top: 1px solid #333;
  padding-top: 20px;
  font-size: 14px;
}

.footer-links a {
  color: #aaa;
  margin-left: 20px;
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-credit {
  text-align: center;
  margin-top: 20px;
  font-size: 13px;
  color: #ccc;
}

.footer-credit span {
  color: #ff6ec4;
}


.footer-social {
  margin-top: 20px;
  text-align: center;
}

.footer-social a {
  margin: 0 10px;
  font-size: 24px;
  text-decoration: none;
}

.footer-social .instagram i {
  color: #f9a8d4; /* rosa claro */
}

.footer-social .facebook i {
  color: #93c5fd; /* azul claro */
}

@media (max-width: 900px){

}

.whatsapp-link {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
}

.whatsapp-icon {
  width: 60px; /* Tamanho do ícone */
  height: auto;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.whatsapp-icon:hover {
  transform: scale(1.1);
}
