*,
*::before,
*::after {
  box-sizing: border-box;
}

html, body {
  overflow-x: hidden;
  width: 100%;
}
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
    overflow: visible;
}

.menu a,
.main-menu a,
.nav-menu a{
  position: relative;
  text-decoration: none;
  color: #000;
  padding-bottom: 4px;
}

.menu a::after,
.main-menu a::after,
.nav-menu a::after{
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 1.5px;
  background-color: #000;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.como-comprar {
  max-width: 960px;
  margin: 0 auto;
  padding: 80px 24px;
}

.como-header h1 {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 12px;
}

.como-header p {
  font-size: 18px;
  color: #666;
  max-width: 640px;
  margin-bottom: 64px;
}

.como-steps {
  display: flex;
  flex-direction: column;
  gap: 56px;
}

.como-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  column-gap: 24px;
  align-items: flex-start;
}

.step-number {
  font-size: 48px;
  font-weight: 800;
  line-height: 1;
  margin-top: 40px;
  color: #000;
}

.step-content h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
}

.step-content p {
  font-size: 16px;
  color: #555;
  max-width: 560px;
}

/* CTA */
.como-cta {
  margin-top: 80px;
}

.como-cta .btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #3ad066;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  padding: 16px 28px;
  border-radius: 8px;
  text-decoration: none;
}

.como-cta small {
  display: block;
  margin-top: 12px;
  color: #777;
  font-size: 14px;
}

.menu a:hover::after,
.main-menu a:hover::after,
.nav-menu a:hover::after{
  width: 100%;
}

.home-intro {
    padding: 50px 0 10px;
}

.home-intro h1 {
    margin-top: 20px;
    margin-bottom: 10px;
}

.breadcrumb {
    font-size: 14px;
    color: #777;
}
.layout-grid {
    grid-template-columns: 260px 1fr;
    align-items: flex-start;
    gap: 40px;
    overflow: visible;
}

.home-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.home-content {
    padding: 40px 0 80px;
    min-height: calc(100vh - 300px);
}

/* SIDEBAR */

.sidebar {
    padding-top: 10px;
}

.sidebar h3 {
    margin-bottom: 20px;
}

.filter-box {
    border-top: 1px solid #ddd;
    padding-top: 20px;
}

.single-produto {
  margin-top: 40px;
}

.price-filter {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.price-filter input {
    width: 80px;
    padding: 8px;
}

.price-filter button {
    padding: 8px 12px;
    cursor: pointer;
}

/* PRODUTOS */
.products-header {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 32px;
}

.products-area {
    margin-top: 0;
}

.product-card {
    display: flex;
    flex-direction: column;
}

.product-card h4 {
    margin-top: 14px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
}
.product-image {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}
.product-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.4s ease;
}
.product-image .img-hover {
    opacity: 0;
}
.product-card:hover .img-hover {
    opacity: 1;
}
.product-card:hover .img-default {
    opacity: 0;
}
.product-gallery {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto 80px;
  padding: 0 20px;
}

.product-slider {
  position: relative;
  overflow: hidden;
}

.topbar {
  background: #1f3b24;
  overflow: hidden;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.topbar-rotator {
  height: 15px;
  position: relative;
  width: 100%;
  max-width: 1200px;
  text-align: center;
}
.topbar-rotator span {
  position: absolute;
  left: 50%;
  transform: translateX(150%);
  opacity: 0;
  white-space: nowrap;
  color: #fff;
  font-size: 13px;
  letter-spacing: 0.5px;
  transition: all 0.6s ease;
  text-transform: uppercase;
}
.topbar-rotator span.active {
  transform: translateX(-50%);
  opacity: 1;
}
.topbar-rotator span.exit {
  transform: translateX(-250%);
  opacity: 0;
}

.main-header {
    border-bottom: 1px solid #eee;
    padding: 20px 0;
    z-index: 999;
    background: #fff;
    transition: padding 0.3s ease;
    box-shadow: none;
}

.header-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
}

.header-search {
    display: flex;
    align-items: center;
    max-width: 620px;
}

.header-search input {
    flex: 1;
    padding: 12px 14px;
    border: 1px solid #ddd;
    border-radius: 6px 0 0 6px;
    font-size: 14px;
    width: 250px;
}

.header-search button {
    padding: 0 14px;
    height: 44px;
    border: 1px solid #ddd;
    border-left: none;
    background: #f2f2f2;
    border-radius: 0 6px 6px 0;
    cursor: pointer;
}
.header-logo {
    text-align: center;
    font-size: 32px;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.header-logo a {
    text-decoration: none;
    color: #000;
}

.header-logo img{
    height: 80px;

}
.header-icons {
    display: flex;
    justify-content: flex-end;
    gap: 20px;
    font-size: 20px;
}

.header-icons .icon {
    position: relative;
    cursor: pointer;
}

.header-icons small {
    position: absolute;
    top: -6px;
    right: -10px;
    background: #000;
    color: #fff;
    font-size: 10px;
    padding: 2px 5px;
    border-radius: 50%;
}
.main-menu ul {
    display: flex;
    justify-content: center;
    gap: 40px;
    list-style: none;
    padding: 15px 0;
    margin: 0;
}

.home-carousel, .home-carousel {
    height: auto;
    position: relative;
    max-width: 100%;
    width: 100%;
    overflow: hidden;
}

.home-carousel,
.carousel-track,
.carousel-slide {
  max-width: 100%;
  overflow: hidden;
}

.home-carousel img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.7);
    border: none;
    font-size: 24px;
    padding: 10px 14px;
    cursor: pointer;
    z-index: 10;
    max-width: 48px;    
}

.carousel-arrow.prev {
    left: 20px;
}

.carousel-arrow.next {
    right: 20px;
}

.home-carousel:hover .carousel-arrow {
    opacity: 1;
}
.home-carousel-dots {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}

.carousel-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}
.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
}

.carousel-dot.active {
    background: #fff;
}

.carousel-track {
    width: 100%;
    overflow: hidden;
}

.carousel-inner {
    display: flex;
    width: 100%;
    transition: transform 0.6s ease-in-out;
}

.carousel-slide {
    min-width: 100%;
    height: 70vh;
    position: relative;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

body{
    padding-top: 160px;
}

body.scrolled .main-header {
    padding: 10px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}

body.scrolled .header-logo {
    transform: scale(0.9);
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background: #fff;
}


.header-icons {
    display: flex;
    gap: 18px;
}

.header-icons a{
    color: #000;
    font-size: 22px;
    opacity: 0.7;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.header-icons a:hover{
    opacity: 1;
    transform: translateY(-2px);
}

.search-results {
    padding: 60px 20px;
    max-width: 1280px;
    margin: 0 auto;
    min-height: 60vh;
}

.search-header h1 {
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 40px;
    margin-top: 100px;
    text-align: center;
}

.search-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.search-item a {
    text-decoration: none;
    color: #000;
    display: flex;
    flex-direction: column;
}
.search-item .img-container {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 4px;
    background: #f4f4f4;
    margin-bottom: 12px;
}

.search-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.search-item:hover img {
    transform: scale(1.05);
}

/* Título Discreto */
.search-item h2 {
    font-size: 14px; /* Pequeno */
    font-weight: 500; /* Peso médio */
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
    line-height: 1.4;
    text-align: left; /* Alinhado à esquerda como na vitrine */
    color: #333;
}

.search-no-results {
    text-align: center;
    padding: 80px 0;
}

.btn-voltar {
    display: inline-block;
    margin-top: 20px;
    text-decoration: underline;
    color: #000;
}

/* PAGINAÇÃO */
.pagination {
    text-align: center;
    margin-top: 40px;
}

.page-numbers {
    padding: 8px 12px;
    color: #000;
    text-decoration: none;
}

.page-numbers.current {
    font-weight: bold;
    border-bottom: 1px solid #000;
}

/* MOBILE (2 por linha no celular) */
@media (max-width: 768px) {
    .search-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .search-header h1 {
        font-size: 22px;
        margin-top: 180px;
    }
}

.page-contato a,
.template-contato a {
  color: #000;
  text-decoration: none;
  border-bottom: 1px solid rgba(0,0,0,0.3);
  transition: border-color 0.2s ease, color 0.2s ease;
}

.page-contato a:hover,
.template-contato a:hover {
  color: #000;
  border-bottom-color: #000;
}

/* MOBILE */
@media (max-width: 768px) {
body {
    padding-top: 130px;
}
.qs-title{
    margin-top: 120px;
}

.site-header {
    position: fixed;
}
.como-comprar h1 {
font-size: 34px;
margin-top: 120px;
}

.como-intro {
font-size: 18px;
}

.como-step {
grid-template-columns: 1fr;
}

.step-number {
font-size: 28px;
}

.como-cta {
text-align: center;
}
.header-grid {
grid-template-columns: 1fr;
gap: 16px;
}

.header-search {
order: 2;
}

.header-search input {
width: 420px;
}

.header-logo {
order: 1;
}

.header-icons {
order: 3;
justify-content: center;
}

.main-menu ul {
flex-wrap: wrap;
gap: 16px;
}

.carousel-slide {
height: 55vh;
}

.carousel-arrow {
width: 44px;
height: 44px;
display: flex;
align-items: center;
justify-content: center;
}
.carousel-arrow.prev {
left: 12px;
}

.carousel-arrow.next {
right: 12px;
}
.home-carousel {
padding: 0;
}  
.produto-hero {
margin-bottom: 40px;
}

.produto-hero img {
aspect-ratio: 4 / 5;
object-fit: cover;
}

.products-grid,
.grid-inspiracoes {
grid-template-columns: 1fr 1fr;
gap: 16px;
}
section {
padding: 48px 16px;
}

h1, h2 {
line-height: 1.2;
}

.home-carousel {
margin: 0;
border-radius: 0;
width: 100%;
margin-left: 0;
}

.home-carousel img {
min-height: 320px;
object-position: center;
}
.blog-page{
    margin-top: 120px;
}
.whatsapp-float {
width: 50px;
height: 50px;
right: 16px;
bottom: 16px;
inset: auto 24px 24px auto;
}
.home-grid {
grid-template-columns: 1fr;
gap: 32px;
}

.home-grid img {
width: 100%;
height: auto;
border-radius: 6px;
}

.home-grid h3 {
font-size: 16px;
margin-top: 8px;
text-align: left;
}
.topbar {
background: #1f3b24;
font-size: 12px;
padding: 8px 12px;
text-align: center;
}

.header-main {
display: flex;
flex-direction: column;
gap: 12px;
padding: 16px;
}

.logo {
text-align: center;
font-size: 28px;
}

.search-box {
width: 100%;
}

.menu {
display: flex;
justify-content: center;
gap: 16px;
flex-wrap: wrap;
font-size: 14px;
}

.post-container {
margin-top: 180px!important;
}
.post-thumb {
margin: 24px 0;
}

.post-header h1 {
font-size: 30px;
}


.quem-somos {
padding: 60px 16px;
}

.qs-title {
font-size: 36px;
margin-bottom: 32px;
}

.qs-highlight {
font-size: 22px;
}

.qs-grid {
grid-template-columns: 1fr;
gap: 40px;
}

.single-produto {
margin-top: 80px;
}
.qs-footer p {
font-size: 18px;
}
.blog-grid {
grid-template-columns: repeat(2, 1fr);
}

.blog-grid {
grid-template-columns: 1fr;
}

.post-header h1 {
font-size: 30px;
}

.contato{
margin-top: 120px;
}

.contato-container {
display: flex;
flex-direction: column;
gap: 32px;
}

.contato-info,
.contato-form {
width: 100%;
}
.wpcf7 input,
.wpcf7 textarea {
font-size: 16px;
padding: 14px 16px;
}

.wpcf7 textarea {
min-height: 140px;
}
.contato h1 {
font-size: 32px;
margin-bottom: 12px;
}

.contato p {
font-size: 16px;
line-height: 1.5;
}
.post-share {
padding-top: 24px;
}

.post-share-links {
flex-wrap: wrap;
gap: 16px;
}
}

/* ===== GALERIA ESTILO WESTWING ===== */

.galeria-editorial {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
  max-width: 1600px;
  margin: 80px auto;
  padding: 0 40px;
}

.galeria-editorial figure {
  margin: 0;
  overflow: hidden;
  border-radius: 18px;
}

.galeria-editorial img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* tamanhos */
.galeria-editorial .item {
  grid-column: span 3;
  grid-row: span 3;
}

.galeria-editorial .grande {
  grid-column: span 6;
  grid-row: span 6;
}

.galeria-editorial .horizontal {
  grid-column: span 6;
  grid-row: span 3;
}

.galeria-editorial .vertical {
  grid-column: span 3;
  grid-row: span 6;
}

.produto-descricao,
.produto-intro {
  max-width: 720px;
  margin: 24px auto 40px;
  text-align: center;
}

/* === LIGHTBOX === */

@keyframes zoomIn {
  from {
    transform: scale(0.92);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.zoomable {
  cursor: zoom-in;
}

/* =========================================
   LIGHTBOX FIX (Adicione ao final do CSS)
   ========================================= */

#lightbox {
  position: fixed; /* Essencial para cobrir a tela */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9); /* Fundo preto transparente */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99999;
  
  /* Oculto por padrão */
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

/* Quando ativo (via JS), ele aparece */
#lightbox.active {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

#lightbox img {
  max-width: 90%;
  max-height: 90vh;
  box-shadow: 0 0 20px rgba(0,0,0,0.5);
  border: 4px solid #fff;
  border-radius: 4px;
  transform: scale(0.95);
  transition: transform 0.3s ease;
}

#lightbox.active img {
  transform: scale(1);
}

/* Botão de Fechar */
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  background: none;
  border: none;
  color: #fff;
  font-size: 40px;
  cursor: pointer;
  z-index: 100001;
}

/* ===== MOBILE ===== */
@media (max-width: 900px) {
  .galeria-editorial {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    padding: 0 16px;
  }

  .galeria-editorial .item,
  .galeria-editorial .grande,
  .galeria-editorial .horizontal,
  .galeria-editorial .vertical {
    grid-column: span 2;
    grid-row: auto;
  }
}

.btn-whatsapp {
  display: inline-block;
  background: #25d366;
  color: #fff;
  padding: 14px 26px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
}

.btn-whatsapp.grande {
  font-size: 18px;
  padding: 18px 32px;
}

.cta-info {
  display: block;
  font-size: 13px;
  color: #777;
  margin-top: 8px;
}
.produto-hero {
  max-width: 900px;
  margin: 0 auto 80px;
}
.produto-hero img {
  width: 100%;
  height: auto;
  border-radius: 6px;
}

.produto-descricao {
  max-width: 680px;
  margin: 80px auto;
  font-size: 18px;
  line-height: 1.7;
}

.produto-divider {
  width: 80px;
  height: 2px;
  background: #000;
  margin: 80px auto;
  opacity: 0.1;
}

.produto-cta {
  text-align: center;
  padding: 80px 24px;
}


.produto-cta-final {
  text-align: center;
  margin: 120px 0;
}

.produto-cta-final h3 {
  font-size: 26px;
  margin-bottom: 24px;
}

.produto-relacionados {
  margin-top: 120px;
}

.grid-inspiracoes {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.grid-inspiracoes img {
  width: 100%;
  display: block;
}

.grid-inspiracoes h4 {
  margin-top: 10px;
  font-size: 16px;
}

.thumbs img {
  width: 100%;
  cursor: pointer;
  opacity: .6;
}

.thumbs img:hover {
  opacity: 1;
}

.btn-consulta {
  display: inline-block;
  background: #79aeda;
  color: #fff;
  padding: 14px 24px;
  border-radius: 6px;
  margin: 20px 0;
  text-decoration: none;
}

.produtos-similares .grid-produtos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.7);
  border: none;
  font-size: 40px;
  padding: 10px 16px;
  cursor: pointer;
  z-index: 5;
  color: #000;
  line-height: 1;
}

.nav.prev { left: 10px; }
.nav.next { right: 10px; }

.nav:hover {
  background: rgba(255,255,255,0.9);
}
.blog-page {
  padding: 80px 0;
  min-height: calc(100vh - 300px);
}
.blog-header {
  margin-bottom: 64px;
}

.blog-header h1 {
  font-size: 48px;
  font-weight: 700;
}

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

.blog-card {
  display: flex;
  flex-direction: column;
}

  .blog-content h2 {
    font-size: 20px;
  }

.blog-card a {
  text-decoration: none;
  color: inherit;
}

.blog-card a:visited,
.blog-card a:hover,
.blog-card a:active {
  color: inherit;
}

.blog-thumb img {
  width: 100%;
  height: auto;
  border-radius: 6px;
}

.blog-content {
  margin-top: 16px;
}

.blog-category {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #888;
}

.blog-content h2 {
  font-size: 20px;
  margin: 8px 0;
  position: relative;
}

.blog-card:hover h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background: #000;
}

.blog-content p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

.post-container {
  margin-top: 80px;
  max-width: 780px;
}

.post-header {
  margin-bottom: 32px;
}

.post-header h1 {
  font-size: 40px;
  line-height: 1.2;
}

.post-text p {
  margin-bottom: 24px;
}

.post-text h2 {
  font-size: 26px;
  margin: 56px 0 16px;
}

.post-text img {
  width: 100%;
  height: auto;
  margin: 48px 0;
  border-radius: 6px;
}

.post-thumb {
  margin: 40px 0;
}

.post-thumb img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 6px;
}

.post-category {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #888;
  margin-bottom: 12px;
}

.post-share {
  margin: 64px 0px;
  padding-top: 32px;
  border-top: 1px solid #eaeaea;
}

.post-share-label {
  display: block;
  font-size: 14px;
  color: #888;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.post-share-links {
  display: flex;
  gap: 24px;
}

.post-share-links a {
  font-size: 15px;
  color: #000;
  text-decoration: none;
  border-bottom: 1px solid rgba(0,0,0,0.3);
  padding-bottom: 2px;
}

.post-share-links a:hover {
  border-bottom-color: #000;
}

.post-text {
  font-size: 17px;
  line-height: 1.7;
}
.contato {
  padding: 80px 24px;
}

.contato a {
  color: #000;
  text-decoration: none;
  border-bottom: 1px solid rgba(0,0,0,0.3);
  transition: border-color 0.2s ease, color 0.2s ease;
}

.contato a:hover {
  border-bottom-color: #000;
}

.contato-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: flex-start;
}

.contato-info h1 {
  font-size: 42px;
  margin-bottom: 16px;
}

.contato-info p {
  font-size: 18px;
  color: #555;
  max-width: 420px;
  margin-bottom: 32px;
}

.contato-info ul {
  list-style: none;
  padding: 0;
}

.contato-info li {
  margin-bottom: 20px;
  font-size: 16px;
}

/* FORM */
.contato-form form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contato-form input,
.contato-form textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 6px;
  border: 1px solid #ddd;
  font-size: 15px;
  font-family: inherit;
}

.contato-form textarea {
  min-height: 160px;
  resize: vertical;
}

.contato-form input:focus,
.contato-form textarea:focus {
  outline: none;
  border-color: #000;
}

/* BOTÃO */
.contato-form input[type="submit"] {
  background: #79aeda;
  color: #fff;
  border: none;
  padding: 16px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
}

.contato-form input[type="submit"]:hover {
  opacity: 0.9;
}
.wpcf7-not-valid-tip {
  font-size: 13px;
  color: #d63636;
}

.wpcf7-response-output {
  margin-top: 20px;
  font-size: 14px;
}
.wpcf7 input[type="submit"] {
  background: #9ec5e5;
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 16px;
  font-size: 16px;
  cursor: pointer;
}

.wpcf7 input[type="submit"]:hover {
  background: #88b4d8;
}
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 16px;
  font-family: inherit;
  background: #fff;
}

.wpcf7 input::placeholder,
.wpcf7 textarea::placeholder {
  color: #999;
  font-size: 15px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.wpcf7 input:focus,
.wpcf7 textarea:focus {
  border-color: #000;
}

.wpcf7 input:focus,
.wpcf7 textarea:focus {
  box-shadow: 0 0 0 2px rgba(0,0,0,0.05);
}

.whatsapp-float {
    position: fixed;
    inset: auto 24px 24px auto;
    right: 24px;
    bottom: 24px;
    width: 56px;
    height: 56px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.whatsapp-float:hover {
    transform: scale(1.08);
    box-shadow: 0 12px 26px rgba(0,0,0,0.35);
}

.whatsapp-float svg {
  width: 26px;
  height: 26px;
}

/* =========================
   QUEM SOMOS
========================= */

.quem-somos {
  padding: 80px 20px;
  background: #fff;
}

.qs-container {
  max-width: 1100px;
  margin: 0 auto;
}

.qs-breadcrumb {
  font-size: 14px;
  color: #888;
  margin-bottom: 24px;
}

.qs-breadcrumb a {
  color: #888;
  text-decoration: none;
}

.qs-breadcrumb strong {
  color: #000;
  font-weight: 500;
}

.qs-title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 48px;
}

.qs-block {
  max-width: 720px;
  margin-bottom: 64px;
}

.qs-highlight {
  font-size: 28px;
  line-height: 1.3;
  margin-bottom: 24px;
}

.qs-highlight strong {
  font-weight: 700;
}

.qs-block p {
  font-size: 18px;
  line-height: 1.7;
  color: #333;
}

.qs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  margin-bottom: 80px;
}

.qs-item h3 {
  font-size: 20px;
  margin-bottom: 16px;
}

.qs-item p {
  font-size: 16px;
  line-height: 1.7;
  color: #444;
}

.qs-footer {
  border-top: 1px solid #eee;
  padding-top: 48px;
  text-align: center;
}

.qs-footer p {
  font-size: 20px;
  margin-bottom: 32px;
}

.qs-cta {
  display: inline-block;
  padding: 14px 28px;
  background: #000;
  color: #fff;
  text-decoration: none;
  border-radius: 40px;
  font-size: 16px;
  transition: all 0.3s ease;
}

.qs-cta:hover {
  background: #222;
}

#footer-definitivo {
    background-color: #000 !important;
    color: #fff !important;
    padding: 80px 20px 40px !important;
    border-top: 1px solid #1a1a1a;
    clear: both;

    width: 100vw !important; /* Força largura da janela inteira */
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw !important; /* Puxa para a esquerda */
    margin-right: -50vw !important; /* Puxa para a direita */
    box-sizing: border-box;
}

#footer-definitivo .footer-wrapper {
    max-width: 1280px;
    margin: 0 auto;
    display: flex !important;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
}

/* --- COLUNA ESQUERDA --- */
#footer-definitivo .footer-col-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 450px;
    text-align: left;
}

#footer-definitivo .footer-logo-link img {
    height: 45px;
    width: auto;
    margin-bottom: 24px;
    filter: brightness(0) invert(1);
    display: block;
}

#footer-definitivo .footer-tagline {
    font-size: 16px;
    color: #ccc;
    margin-bottom: 30px;
    line-height: 1.5;
    text-align: left;
}

/* Contatos: Links Limpos */
#footer-definitivo .footer-contact-info a {
    color: #fff !important;
    text-decoration: none !important;
    border: none !important;
    font-size: 15px;
    display: block;
    margin-bottom: 8px;
    opacity: 0.8;
}

#footer-definitivo .footer-contact-info a:hover {
    opacity: 1;
    text-decoration: underline !important; /* Underline no hover */
}

/* Ícones Sociais */
#footer-definitivo .footer-social-icons {
    margin-top: 20px;
    display: flex;
    gap: 20px;
}

#footer-definitivo .footer-social-icons a {
    color: #fff !important;
    font-size: 22px;
    text-decoration: none !important;
    border: none !important;
}

/* --- COLUNA DIREITA (MENU) --- */
#footer-definitivo .footer-col-right {
    text-align: right;
    padding-top: 10px;
}

#footer-definitivo .footer-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

#footer-definitivo .footer-nav-list li {
    margin-bottom: 14px;
}

/* LINKS DO MENU:
   - Sem nada no estado normal
   - Underline no Hover
   - Reset do ::after para matar o efeito antigo 
*/
#footer-definitivo .footer-nav-list a {
    color: #fff !important;
    text-decoration: none !important; /* Remove linha padrão */
    border: none !important; /* Remove bordas */
    font-size: 16px;
    font-weight: 500;
    opacity: 0.8;
    position: relative;
    padding: 0;
}

/* Mata o efeito de linha animada antigo */
#footer-definitivo .footer-nav-list a::after,
#footer-definitivo .footer-logo-link::after {
    display: none !important; 
    content: none !important;
}

/* AQUI ESTÁ O UNDERLINE NO HOVER */
#footer-definitivo .footer-nav-list a:hover {
    opacity: 1;
    text-decoration: underline !important;
    text-underline-offset: 4px; /* Afasta um pouco a linha do texto */
}

#footer-definitivo .copyright-text {
    margin-top: 40px;
    font-size: 12px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* === MOBILE (Ocultar Menu) === */
@media (max-width: 768px) {
    #footer-definitivo .footer-wrapper {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 40px;
    }

    #footer-definitivo .footer-col-left {
        align-items: center;
        text-align: center;
        max-width: 100%;
    }
    
    #footer-definitivo .footer-tagline {
        text-align: center;
    }

    /* ESCONDE O MENU NO MOBILE */
    #footer-definitivo .footer-col-right {
        display: none !important;
    }
}