:root {
  --main-color: #6c788e;
  --secondary-color: #a6aec1;
  --third-color: #cfd5e1;
  --fourth-color: #ededf2;
  --fifth-color: #fcfdff;
  --accent-color: #8ecae6;
  --success-color: #b7e4c7;
  --blackblack: #222;
  --font-color: #444;
  --green-correct: #6bcb77;
  --header-color: #3b646b;
  --wp-color: #55cd6c;
  --wp-color2: #68d47f;
  --wp-color3: #4abf6c;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
}

a {
  text-decoration: none;
}

body {
  background: var(--fourth-color);
  color: var(--font-color);
}

/* Header */
.header {
  width: 100%;
  background: var(--third-color);
}

.logo-texto {
  padding: 20;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
  padding: 0 24px;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  gap: 1rem;
}

.header-content-left {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.header-content-right {
  display: flex;
  align-items: center;
}

.header-content a {
  text-decoration: none;
}

.logo {
  width: 80px;
  height: 80px;
}

.logo-texto {
  padding: 1rem;
}

.about-us {
  background: var(--main-color);
  color: var(--fifth-color);
  border: none;
  padding: 0.9rem 2rem;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
}

.about-us:focus,
.about-us:active {
  outline: none;
  box-shadow: none;
}

.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  transition: transform 0.2s;
}
.whatsapp-float:hover {
  transform: scale(1.1);
}
.whatsapp-float img {
  display: block;
  border-radius: 50%;
}

/* First Section */
.first-section {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  margin-top: 45px;
  padding: 3rem 0 2rem 0;
  background: var(--fifth-color);
  border-radius: 0 0 16px 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.text-fs {
  max-width: 430px;
}

.title-fs h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--blackblack);
  margin-bottom: 1.1rem;
  line-height: 1.2;
}

.content-fs {
  font-size: 1.1rem;
  color: var(--font-color);
  margin-bottom: 0.5rem;
}

.img-fs img {
  width: 400px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  object-fit: cover;
}

/* Orçamento Section */
.orcamento-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--third-color);
  padding: 2rem 2.5rem;
  margin: 2.5rem 0 0 0;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.buttons-group {
  display: flex;
  gap: 1rem;
}

.wp-orcamento-btn {
  background: var(--wp-color);
  color: var(--fifth-color);
  border: none;
  padding: 0.9rem 2rem;
  border-radius: 6px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.wp-orcamento-btn:hover {
  background: var(--wp-color3);
}

.orcamento-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--main-color);
}

.orcamento-btn {
  background: var(--main-color);
  color: var(--fifth-color);
  border: none;
  padding: 0.9rem 2rem;
  border-radius: 6px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
}

.orcamento-btn:hover {
  background: var(--secondary-color);
  color: var(--main-color);
}

/* Serviços Section */
.servicos-section {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 2.5rem;
  padding: 3rem 0;
  background: var(--fifth-color);
  border-radius: 10px;
  margin-top: 2.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.servicos-lista {
  max-width: 400px;
  flex: 1;
}

.servicos-titulo {
  font-size: 2rem;
  margin-bottom: 2rem;
  font-weight: 700;
  color: var(--main-color);
}

.servico {
  margin-bottom: 2rem;
}

.servico strong {
  display: block;
  font-size: 1.15rem;
  margin-bottom: 0.3rem;
  color: var(--main-color);
  font-weight: 600;
}

p {
  text-align: justify;
}

.servico p {
  font-size: 1rem;
  color: var(--font-color);
  text-align: justify;
}

.servicos-img img {
  width: 400px;
  height: 940px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
}

/* FAQ Section */
.faq-section {
  margin-top: 2.5rem;
  background: var(--fifth-color);
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
  padding: 2rem 1.5rem;
}

.faq-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--main-color);
}

.faq-question {
  width: 100%;
  background: var(--third-color);
  border: none;
  text-align: left;
  font-size: 1.1rem;
  font-weight: 500;
  padding: 1rem;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--main-color);
  border-radius: 6px;
  margin-bottom: 0.5rem;
}

.faq-question.active,
.faq-question:hover {
  background: var(--secondary-color);
  color: var(--fifth-color);
}

.faq-answer {
  background: var(--fourth-color);
  padding: 0.7rem 1.5rem 0.7rem 2.5rem;
  color: var(--main-color);
  font-size: 1rem;
  display: none;
  border-radius: 0 0 8px 8px;
  animation: fadeIn 0.3s;
  margin-bottom: 0.5rem;
}

.icon-faq {
  width: 24px;
  height: 24px;
  display: inline-block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Depoimentos Section */
.depoimentos-section {
  margin-top: 3rem;
  margin-bottom: 2rem;
}

.depoimentos-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--blackblack);
  margin-bottom: 2.2rem;
}

.depoimentos-lista {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.depoimento-card {
  background: var(--fifth-color);
  border: 1.5px solid var(--third-color);
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(108, 120, 142, 0.04);
  padding: 2rem 1.7rem 1.2rem 1.7rem;
  flex: 1 1 320px;
  max-width: 370px;
  min-width: 260px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: box-shadow 0.2s, border-color 0.2s, transform 0.3s ease;
}

.depoimento-card:hover {
  border-color: var(--secondary-color);
  box-shadow: 0 4px 16px rgba(108, 120, 142, 0.1);
  transform: translateY(-10px);
}

.depoimento-text {
  font-size: 1.18rem;
  color: var(--main-color);
  margin-bottom: 2rem;
  font-weight: 500;
  line-height: 1.5;
  font-style: italic;
}

.depoimento-user {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.depoimento-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--secondary-color);
}

.depoimento-nome {
  display: block;
  font-weight: 600;
  color: var(--blackblack);
  font-size: 1rem;
}

.depoimento-desc {
  display: block;
  font-size: 1rem;
  color: var(--secondary-color);
  margin-top: 0.1rem;
}

/* Contato Section */
.contato-section {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  background: var(--third-color);
  padding: 2.5rem 2rem 1.5rem 2rem;
  margin-top: 2rem;
  border-radius: 8px;
}

.contato-col-esq h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--blackblack);
  margin-bottom: 1.5rem;
}

.contato-col-dir {
  text-align: left;
  margin-top: 0.2rem;
}

.contato-col-dir p {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--blackblack);
  margin-bottom: 0.5rem;
}

.reveal {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 0.7s cubic-bezier(0.5, 0, 0.1, 1),
    transform 0.7s cubic-bezier(0.5, 0, 0.1, 1);
  will-change: opacity, transform;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal.delay-1 {
  transition-delay: 0.2s;
}
.reveal.delay-2 {
  transition-delay: 0.4s;
}
.reveal.delay-3 {
  transition-delay: 0.6s;
}

@media (max-width: 900px) {
  .first-section,
  .servicos-section {
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    padding: 2rem 0 1rem 0;
  }
  .img-fs img,
  .servicos-img img {
    max-width: 100%;
    width: 100%;
  }
  .servicos-img img {
    margin-top: 1.5rem;
  }
  .servicos-lista {
    max-width: 100%;
  }
  .depoimentos-lista {
    flex-direction: column;
    gap: 1.5rem;
  }
  .depoimento-card {
    max-width: 100%;
    min-width: 0;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 10px;
  }
  .header-content {
    height: 60px;
    gap: 0.7rem;
  }
  .header-content-left {
    margin-bottom: 7px;
  }
  .logo-texto {
    margin-bottom: 8px;
  }
  #logo.logo {
    margin-top: 20px;
    margin-bottom: 2px;
  }
  .first-section,
  .servicos-section {
    padding: 1rem 0 0.5rem 0;
    border-radius: 0;
    box-shadow: none;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .orcamento-section,
  .faq-section,
  .servicos-section,
  .depoimentos-section,
  .contato-section {
    padding: 1.2rem 0.8rem;
    margin: 1.2rem 0 0 0;
    border-radius: 8px;
  }
  .servicos-titulo,
  .faq-title,
  .depoimentos-title,
  .contato-col-esq h2 {
    font-size: 1.3rem;
  }

  .depoimentos-lista {
    display: flex;
    align-items: center;
  }

  .depoimento-card {
    padding: 0.8rem 0.7rem 0.7rem 0.7rem;
    width: 500px;
  }
  .contato-section {
    flex-direction: column;
    gap: 1.2rem;
    align-items: flex-start;
    padding: 1.2rem 0.8rem;
  }
}

@media (max-width: 660px) {
  .header-content {
    height: 56px;
    gap: 0.2rem;
    padding: 0 6px;
  }
  .header-content-left {
    gap: 0.2rem;
  }
  .logo {
    width: 32px;
    height: 32px;
  }
  .logo-texto {
    padding: 0rem;
    margin-top: 5px;
    height: 30px;
    object-fit: contain;
  }
  .about-us {
    padding: 0.3rem 0.5rem;
    font-size: 0.82rem;
    border-radius: 4px;
  }
  .header-content-right {
    margin-left: auto;
  }
  .first-section {
    gap: 0.7rem;
    margin-top: 20px;
    padding: 1rem !important;
  }
  .servicos-section {
    padding: 1rem !important;
  }
  .orcamento-title {
    font-size: 1.2rem !important;
  }
  .orcamento-btn {
    padding: 0.5rem 1.2rem;
    font-size: 1rem;
  }
  .wp-orcamento-btn {
    padding: 0.5rem 1.2rem;
    font-size: 1rem;
  }
  .faq-question {
    font-size: 1rem;
    padding: 0.7rem;
  }
  .faq-answer {
    font-size: 0.97rem;
    padding: 0.5rem 1rem 0.5rem 1.5rem;
  }
  .depoimento-text {
    font-size: 1.3rem !important;
  }
  .depoimento-avatar {
    width: 32px;
    height: 32px;
  }
  .contato-col-esq h2 {
    font-size: 1.05rem;
    margin-bottom: 0.8rem;
  }
  .contato-col-dir p {
    font-size: 0.98rem;
  }
}

@media (max-width: 400px) {
  .header-content {
    height: 48px;
    gap: 0.1rem;
    padding: 0 2px;
  }
  .logo {
    width: 28px;
    height: 28px;
  }
  .logo-texto {
    height: 22px;
    margin-top: 2px;
    padding: 0;
  }
  .about-us {
    padding: 0.4rem 0.7rem;
    font-size: 0.78rem;
    border-radius: 3px;
  }
  .header-content-right {
    margin-left: auto;
  }
  .header-content-left {
    margin-bottom: 13px;
  }
}

@media (max-width: 320px) {
  .header-content {
    height: 44px;
    gap: 0.05rem;
    padding: 0 2px;
  }
  .logo {
    width: 24px;
    height: 24px;
  }
  .logo-texto {
    height: 22px;
    margin-top: 1px;
    padding: 0;
  }
  .about-us {
    padding: 0.3rem 0.5rem;
    font-size: 0.67rem;
    border-radius: 2px;
  }
  .header-content-right {
    margin-left: auto;
  }
  .orcamento-title {
    font-size: 1rem !important;
  }
}
