 :root {
     --brand: #F05557;
     --ink: #3D3E3E;
     --bg: #fff;
     --bg-soft: #f7f7f7;
     --muted: #6b6b6b;
     --accent: #ffedee;
     --radius: 16px;
     --shadow: 0 10px 30px rgba(0, 0, 0, .08)
 }

 * {
     box-sizing: border-box
 }

 html {
     scroll-behavior: smooth
 }

 body {
     margin: 0;
     font: 16px/1.6 system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, 'Helvetica Neue', Arial, 'Noto Sans', sans-serif;
     color: var(--ink);
     background: var(--bg)
 }

 a {
     color: var(--brand);
     text-decoration: none
 }

 img {
     max-width: 100%;
     display: block
 }

 .container {
     max-width: 1140px;
     margin-inline: auto;
     padding: 0 20px
 }

 header.site-header {
     position: sticky;
     top: 0;
     z-index: 1000;
     background: rgba(255, 255, 255, .9);
     backdrop-filter: saturate(180%) blur(10px);
     border-bottom: 1px solid #eee
 }

 .nav {
     display: flex;
     align-items: center;
     justify-content: space-between;
     gap: 16px;
     height: 70px
 }

 .logo img {
     height: 64px
 }

 #logo img {
  max-width: 160px;     /* tamanho máximo do logo em desktop */
  height: auto;
}

@media (max-width: 768px) {
  #logo img {
    max-width: 120px;   /* reduz suavemente em tablets */
  }
}

@media (max-width: 480px) {
  #logo img {
    max-width: 100px;   /* tamanho menor para celulares */
  }
}

 nav ul {
     list-style: none;
     display: flex;
     gap: 22px;
     margin: 0;
     padding: 0
 }

 nav a {
     color: var(--ink);
     font-weight: 600;
     opacity: .9;
     padding: 8px 10px;
     border-radius: 10px
 }

 nav a.active,
 nav a:hover {
     background: var(--accent)
 }

 .cta {
     display: inline-flex;
     align-items: center;
     gap: 10px;
     background: var(--brand);
     color: #fff;
     padding: 12px 18px;
     border-radius: 14px;
     box-shadow: var(--shadow);
     font-weight: 700
 }

 section {
     padding: 20px 0
 }

 .hero {
     padding: 20px 0;
     background-image: radial-gradient(60% 60% at 80% -10%, #ffe7e8 0%, transparent 60%), radial-gradient(50% 50% at -10% 10%, #fff3f3 0%, transparent 60%)
 }

 .hero-grid {
     display: grid;
     grid-template-columns: 1.2fr .8fr;
     gap: 40px;
     align-items: center
 }

 .kicker {
     font-weight: 800;
     letter-spacing: .12em;
     color: var(--brand)
 }

 .headline {
     font-size: clamp(28px, 4vw, 44px);
     line-height: 1.15;
     margin: 10px 0 10px;
     font-weight: 900;
     color: var(--ink)
 }

 .sub {
     color: var(--muted);
     font-size: 1.05rem
 }

 .pill-list {
     display: flex;
     flex-wrap: wrap;
     gap: 10px;
     margin-top: 22px
 }

 .pill {
     background: #fff;
     border: 1px solid #eee;
     border-radius: 999px;
     padding: 10px 14px;
     box-shadow: var(--shadow);
     font-weight: 700
 }

 .hero-card {
     background: #fff;
     border: 1px solid #eee;
     border-radius: var(--radius);
     padding: 14px;
     box-shadow: var(--shadow)
 }

 .shot {
     aspect-ratio: 16/9;
     border-radius: 12px;
     overflow: hidden;
     border: 1px solid #eee
 }

 .shot img {
     width: 100%;
     height: 100%;
     object-fit: cover
 }

 h2.section-title {
     font-size: clamp(22px, 3vw, 34px);
     margin: 0 0 10px;
     font-weight: 900
 }

 p.section-sub {
     margin: 0 0 30px;
     color: var(--muted)
 }

 /* .cards {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 18px
 }

 .card {
     background: #fff;
     border: 1px solid #eee;
     border-radius: var(--radius);
     padding: 22px;
     box-shadow: var(--shadow)
 } */

 .cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 30px;
}

.card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
  transition: transform 0.2s ease;
}
.card:hover {
  transform: translateY(-6px);
}

.card img.icon-card {
  width: 96px;
  height: 96px;
  margin-bottom: 16px;
  border-radius: 10%;
  object-fit: contain;
  background: #f9f9f9;
  padding: 10px;
  border: 2px solid #F05557; /* cor da marca */
}

.card h3 {
  margin: 12px 0 8px;
  font-size: 1.3rem;
  color: #3D3E3E;
}
.card p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.5;
}

 /* .card h3 {
     margin: 0 0 6px;
     font-size: 1.1rem
 } */

.card ul {
  text-align: left;           /* força alinhamento à esquerda */
  padding-left: 20px;         /* espaço para o marcador/bolinha */
  margin: 12px 0 0;           /* espaçamento superior */
}

.card ul li {
  margin-bottom: 6px;         /* espaço entre linhas */
  line-height: 1.4;           /* altura da linha para legibilidade */
}
 /* .split {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 26px;
     align-items: start
 } */

 .split {
  display: grid;
  grid-template-columns: 1fr 1fr; /* duas colunas */
  gap: 20px; /* espaçamento entre colunas e linhas */
     align-items: start
}

 .feature {
     background: #fff;
     border: 1px solid #eee;
     border-radius: var(--radius);
     padding: 18px;
     box-shadow: var(--shadow)
 }

 .feature+.feature {
     margin-top: 14px
 }

 .bullet {
     display: flex;
     gap: 14px
 }

 .bullet i {
     width: 28px;
     height: 28px;
     border-radius: 8px;
     background: var(--accent);
     color: var(--brand);
     display: grid;
     place-items: center;
     font-weight: 900;
     flex: 0 0 28px
 }

 .collage {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 14px
 }

 .collage .shot {
     aspect-ratio: 4/3
 }

 .tiles {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 18px
 }

 .tile {
     background: #fff;
     border: 1px solid #eee;
     border-radius: var(--radius);
     padding: 18px;
     box-shadow: var(--shadow)
 }

 .thumb {
     aspect-ratio: 16/9;
     border-radius: 12px;
     overflow: hidden;
     border: 1px solid #eee;
     margin-bottom: 12px
 }

 .about {
     background: var(--bg-soft)
 }

 form.contact {
     display: grid;
     gap: 14px;
     max-width: 640px
 }

 .field {
     display: grid;
     gap: 6px
 }

 .field input,
 .field textarea {
     padding: 12px 14px;
     border: 1px solid #ddd;
     border-radius: 12px;
     font: inherit
 }

 .field textarea {
     min-height: 120px;
     resize: vertical
 }

 footer {
     padding: 30px 0;
     background: #111;
     color: #ddd
 }

 footer .brand {
     display: flex;
     align-items: center;
     gap: 12px;
     font-weight: 800
 }

 .foot-grid {
     display: grid;
     grid-template-columns: 2fr 1fr 1fr;
     gap: 24px
 }

 .foot-grid a {
     color: #ddd;
     opacity: .9
 }

 @media (max-width:960px) {

     .hero-grid,
     .split {
         grid-template-columns: 1fr
     }

     .cards {
         grid-template-columns: 1fr 1fr
     }

     .tiles {
         grid-template-columns: 1fr 1fr
     }

     .cta {
         display: none
     }
 }

 @media (max-width:640px) {

     .cards,
     .tiles {
         grid-template-columns: 1fr
     }
 }

.icon-card {
  width: 56px;              /* aumenta o tamanho da imagem */
  height: 56px;
  padding: 10px;            /* espaço interno */
  border-radius: 50%;       /* círculo */
  background: #f9f9f9;      /* fundo leve para destacar */
  border: 2px solid #F05557;/* borda na cor da marca */
  object-fit: contain;      /* mantém proporção da imagem */
}

h3 {
  display: flex;
  align-items: center;
  font-size: 1.25rem;
  gap: 12px;                /* espaço entre o círculo e o texto */
}

.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 20px;
  right: 20px;
  background-color: #25D366;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.whatsapp-float img {
  width: 60px;
  height: 60px;
}
.whatsapp-float:hover {
  transform: scale(1.05);
}

/* carrossel de clientes */
.swiper {
  width: 100%;
  height: 80px;              /* altura fixa só para logos */
  margin: 30px auto 0;
  padding: 0;
  overflow: hidden;
}

.swiper-wrapper {
  align-items: center;
}

.swiper-slide {
    width: auto !important;        /* deixa a largura do slide igual ao conteúdo */
  flex: 0 0 auto;                /* impede encolher/esticar no flex */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;               /* espaço entre logos */
  box-sizing: border-box;

  /* display: flex;
  justify-content: center;
  align-items: center;
  height: 100%; */
}

.swiper-slide img {
  max-height: 80px;
  max-width: 160px;
  object-fit: contain;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

/* segurança extra para telas bem pequenas */
@media (max-width: 480px){
  .swiper { height: 72px; }
  .swiper .swiper-slide img { max-height: 52px; max-width: 150px; }
}

/* carrossel da equipe */
.sobreSwiper {
  height: 300px;             /* altura maior para fotos da equipe */
}

.sobreSwiper .swiper-slide-equipe img {
  max-height: 280px;         /* mantém respiro dentro do swiper */
  max-width: 100%;           /* ocupa toda a largura possível */
  object-fit: cover;         /* preenche mantendo proporção */
  border-radius: 8px;        /* opcional, arredonda cantos */
}

#chat-container {
  display: none;
  width: 90vw;
  /* ocupa até 90 % da largura visível */
  max-width: 420px;
  /* nunca ultrapassa 420 px */
  height: 70vh;
  /* até 70 % da altura da viewport */
  max-height: 800px;
  /* mas não mais que 600 px */
  box-sizing: border-box;
  border: 2px solid #F05557;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  margin: 40px auto;
  border-radius: 8px;
  padding: 10px;
  background: #fff;
  scroll-margin-top: 120px;
  /* ancora abaixo do topo fixo */
  overflow-x: auto;
}

#toggle-chat-btn {
  position: fixed;
  bottom: 90px;
  right: 25px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #F05557;
  color: #fff;
  border: none;
  padding: 12px 20px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, .25);
  transition: background .3s;
  z-index: 10000;
}

#toggle-chat-btn:hover {
  background: #d94446;
}

#toggle-chat-btn img {
  width: 24px;
  height: 24px;
}

.chat-wrapper {
  text-align: center;
}

/* Ajustes extras para telas menores */
@media (max-width: 480px) {
  #chat-container {
    height: 60vh;
    max-height: none;
  }
}

.chat-header {
  background-color: #F05557;
  color: white;
  padding: 10px 16px;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  border-bottom: 1px solid #ccc;
}

.chat-toggle-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background-color: #F05557;
  border: none;
  border-radius: 50%;
  box-shadow: 0 4px 12px #0004;
  cursor: pointer;
  z-index: 10000;
}

.chat-toggle-btn img {
  width: 32px;
  height: 32px;
}

.contato {
  padding: 60px 0;
}

form input,
form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
}

form button {
  background: #F05557;
  color: #fff;
  border: none;
  padding: 12px 20px;
  border-radius: 6px;
  cursor: pointer;
}

form button:hover {
  background: #d74345;
}

.modal-loading {
  position: fixed;
  inset: 0;
  /* top/right/bottom/left: 0 */
  background: rgba(0, 0, 0, 0.55);
  /* overlay escurecido */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2000;
  /* acima do header */
}

.modal-loading .modal-content {
  background: #fff;
  padding: 30px 40px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  font-size: 1.1rem;
  color: #3D3E3E;
}


/* Dropdown no menu de navegação */
.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  right: 0;
  /* ✅ alinha a borda direita do submenu ao botão */
  /* left: 0;  <-- remova ou comente esta linha */

  background: #fff;
  list-style: none;
  margin: 0;
  padding: 10px 0;
  min-width: 180px;
  border-radius: 6px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  z-index: 999;
  display: none;
}

.dropdown-menu li a {
  display: block;
  padding: 10px 20px;
  color: #3D3E3E;
  white-space: nowrap;
  text-align: left;
}

.dropdown-menu li a:hover {
  background-color: #f4f4f4;
  color: #F05557;
}

/* Mostrar dropdown ao hover */
.dropdown:hover .dropdown-menu {
  display: block;
}


.social-contato .social-links {
  display: flex;
  gap: 12px;
  margin-top: 10px;
}

.icon-social {
  width: 24px;   /* ajuste o tamanho */
  height: 24px;
  display: block;
  transition: transform 0.2s ease;
}

.icon-social:hover {
  transform: scale(1.15);
}

.curiosidade {
  margin-top: 30px;
  padding: 20px;
  border-left: 4px solid var(--brand, #F05557);
  background: #f9f9f9;
  border-radius: 8px;
}
.curiosidade h3 {
  margin-top: 0;
  color: var(--brand, #F05557);
}
.curiosidade p {
  margin: 8px 0 0;
  color: var(--ink, #3D3E3E);
}