@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('header.css');
@import url('home.css');
@import url('menu.css');
@import url('testimonials.css');
@import url('footer.css');

:root {
    --color-primary-1: #c0cfeb;
    --color-primary-2: #c0cfeb;
    --color-primary-3: #849bc7;
    --color-primary-4: #23385e;
    --color-primary-5: #23385e;
    --color-primary-6: #172434;

    --color-dourado: #cfbaa2;

    --color-neutral-0: #fff;
    --color-neutral-1: #1d1d1d;
}

body {
    overflow-x: hidden;
}

/* RESET (topo) */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* CORREÇÃO GLOBAL */
body {
    overflow-x: hidden;
}


/* HOME / SHAPE */
.shape {
    position: absolute;
    right: 0;
    max-width: 100vw;
    overflow: hidden;
}

* {
    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;
}

.btn-default:hover {
    background-color: var(--color-primary-3);
}

.social-media-buttons {
    display: flex;
    gap: 18px;
}

.social-media-buttons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 40px;
    background-color: var(--color-neutral-0);
    font-size: 1.25rem;
    border-radius: 10px;
    text-decoration: none;
    color: var(--color-neutral-1);;
    box-shadow: 0px 0px 12px 4px rgba(0, 0, 0, 0.1);
    transition: box-shadow .3s ease;
}

.social-media-buttons a:hover {
    box-shadow: 0px 0px 12px 8px rgba(0, 0, 0, 0.1);
}

.section-title {
    color: var(--color-primary-6);
    font-size: 1.563rem;
}

.section-subtitle {
    font-size: 2.1875rem;
} 



.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;

    width: 68px;   /* um pouco maior */
    height: 68px;

    background-color: #6FCF97; /* verde mais suave */
    color: white;

    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 30px; /* ícone proporcional */
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);

    z-index: 999;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.whatsapp-float:hover {
    transform: scale(1.05); /* mais sutil */
    background-color: #5DBE84; /* levemente mais forte no hover */
    box-shadow: 0 6px 14px rgba(0,0,0,0.2);
}






/* FONTE PREMIUM (garanta no <head>) */
/* Poppins ou Inter */

/* TEXTO SUPERIOR (pequeno) */
#cta .overline {
    font-size: 0.9rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
}

/* TÍTULO PRINCIPAL */
#cta .title {
    font-size: 3.2rem;
    line-height: 1.2;
    color: #ffffff;
    font-weight: 600;

    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

/* DESCRIÇÃO */
#cta .description {
    font-size: 1.15rem;
    line-height: 1.6;
    color: rgba(255,255,255,0.85);
    max-width: none;
}

/* ESPAÇAMENTO */
#cta {
    gap: 18px;
}

/* RESPONSIVO */
@media screen and (max-width: 1170px) {
    #cta {
        text-align: center;
        align-items: center;
    }

    #cta .title {
        font-size: 2.3rem;
    }

    #cta .description {
        font-size: 1rem;
    }
}






.areas {
  padding: 80px 20px;
  background: linear-gradient(135deg, #f5f7fa, #eef2f7);
  font-family: 'Poppins', sans-serif;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.titulo-secao {
  text-align: center;
  font-size: 34px;
  margin-bottom: 50px;
  color: #172434;
}

/* GRID 4 POR LINHA */
.grid-areas {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

@media (max-width: 1024px) {
  .grid-areas { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .grid-areas { grid-template-columns: 1fr; }
}

/* CARD */
.card-area {
  position: relative;
  padding: 20px;
  border-radius: 16px;
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(10px);
  overflow: hidden;
  transition: all 0.4s ease;
  border: 1px solid rgba(255,255,255,0.3);
}

/* BORDA ANIMADA */
.card-area::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  padding: 1px;
  background: linear-gradient(120deg, #0ea5e9, #2563eb, transparent, #0ea5e9);
  -webkit-mask: 
    linear-gradient(#fff 0 0) content-box, 
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: 0.4s;
}

/* BRILHO */
.shine {
  position: absolute;
  top: -100%;
  left: -100%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(255,255,255,0.4), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s;
}

/* HOVER */
.card-area:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

.card-area:hover::before {
  opacity: 1;
  animation: borderMove 3s linear infinite;
}

.card-area:hover .shine {
  opacity: 1;
}

/* ANIMAÇÃO BORDA */
@keyframes borderMove {
  0% { background-position: 0% }
  100% { background-position: 300% }
}

/* CONTEÚDO */
.icon {
  font-size: 22px;
  color: #2563eb;
  margin-bottom: 10px;
}

.card-area h3 {
  font-size: 16px;
  margin-bottom: 3px;
  color: #172434;
}

.card-area h4 {
  font-size: 13px;
  color: #64748b;
  margin-bottom: 8px;
}

.card-area p {
  font-size: 13.5px;
  color: #555;
  line-height: 1.4;
}

.tag {
  display: inline-block;
  margin-top: 8px;
  padding: 4px 8px;
  font-size: 11px;
  background: #e0f2fe;
  color: #0284c7;
  border-radius: 20px;
}

/* DESTAQUE */
.destaque {
  background: linear-gradient(180deg, rgba(255,255,255,0.9), #f8fbff);
}


.foto-premium {
  position: relative;
  display: inline-block;
  border-radius: 20px;
  padding: 3px; /* cria a borda */
  background: linear-gradient(135deg, #d4af37, #ffffff, #d4af37);
  overflow: hidden;

  width: 432px;
  height: 517px;
  object-fit: cover; /* 🔥 evita distorcer */
}

/* IMAGEM */
.foto-premium img {
  display: block;
  width: 100%;
  border-radius: 18px;
  transition: transform 0.4s ease;
}

/* BRILHO */
.foto-premium::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.4),
    transparent
  );
  transform: skewX(-25deg);
}

/* HOVER */
.foto-premium:hover img {
  transform: scale(1.05);
}

.foto-premium:hover::after {
  animation: brilho 1s;
}

/* ANIMAÇÃO */
@keyframes brilho {
  100% {
    left: 150%;
  }
}










#faq-atendimento {
  background: #23385e !important; /* FORÇA o azul */
  padding: 90px 20px;
  font-family: 'Poppins', sans-serif;
}

.container-faq {
  max-width: 800px;
  margin: 0 auto;
}

/* ATENDIMENTO */
.atendimento-container {
  display: flex;
  justify-content: flex-start;
  gap: 20px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.box-atendimento {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(10px);
  width: 140px;
  height: 80px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: 0.3s;
  border: 1px solid rgba(255,255,255,0.1);
}

.box-atendimento:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,0.1);
}

.box-atendimento i {
  font-size: 18px;
  color: #23385e;
  margin-bottom: 5px;
}

.box-atendimento p {
  font-size: 12px;
  color: white;
    text-align: center;
  width: 100%;
}

/* TÍTULO PREMIUM */
.faq-title {
  text-align: center;
  font-size: 32px;
  color: white;
  margin-bottom: 40px;
  font-weight: 600;
}

.faq-title span {
  font-style: italic;
  color: #d4af37;
}

/* FAQ */
.faq-item {
  margin-bottom: 12px;
  border-radius: 10px;
  overflow: hidden;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
}

/* BOTÃO */
.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  padding: 18px;
  color: white;
  font-size: 15px;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question span {
  font-size: 20px;
  transition: 0.3s;
}

/* RESPOSTA */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer p {
  padding: 0 18px 18px;
  color: #ddd;
  font-size: 14px;
}

/* ATIVO */
.faq-item.active .faq-answer {
  max-height: 200px;
}

.faq-item.active .faq-question span {
  transform: rotate(45deg);
}

/* MOBILE */
@media (max-width: 600px) {
  .faq-title {
    font-size: 24px;
  }
}






#robotica {
  background: #f5f7fa;
  padding: 100px 20px;
  font-family: 'Poppins', sans-serif;
}

.robotica-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}

/* TEXTO */
.robotica-text {
  flex: 1;
  min-width: 300px;
}

.robotica-title {
  font-size: 32px;
  color: #172434;
  margin-bottom: 20px;
}

.robotica-title span {
  color: #d4af37;
  font-style: italic;
}

.robotica-text p {
  color: #444;
  margin-bottom: 15px;
  line-height: 1.6;
}

/* IMAGENS */
.robotica-images {
  flex: 1;
  min-width: 300px;
  position: relative;
  height: 400px;
}

.robotica-images img {
  position: absolute;
  width: 280px;
  border-radius: 16px;
  object-fit: cover;

  border: 3px solid #ffffff;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);

  transition: 0.3s;
}

/* imagem principal */
.img-1 {
  top: 0;
  left: 0;
  z-index: 2;
}

/* imagem sobreposta */
.img-2 {
  bottom: 0;
  right: 0;
  transform: rotate(6deg);
}

/* hover leve */
.robotica-images img:hover {
  transform: scale(1.03);
}

/* RESPONSIVO */
@media (max-width: 900px) {
  .robotica-container {
    flex-direction: column;
    text-align: center;
  }

  .robotica-images {
    height: 300px;
  }

  .robotica-images img {
    position: relative;
    width: 80%;
    margin: 10px auto;
    transform: none;
  }
}




