:root {
  --cor-primaria: #004080;
  --cor-secundaria: #fdb913;
  --fundo: #f4f4f4;
  --texto: #333;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
  background: var(--fundo);
  color: var(--texto);
}

header {
  background: transparent;
  position: fixed;
  width: 100%;
  z-index: 1000;
  padding: 1rem 0;
  transition: background 0.3s;
}

header.scrolled {
  background-color: rgba(0, 0, 0, 0.95); /* preto quase opaco */
  transition: background-color 0.3s ease;
}

.empresa p {
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.6;
  font-size: 1.1rem;
}


.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  height: 90px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: white;
  padding: 2rem;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 10px;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

.btn {
  background: #f47c20;
  padding: 1rem 2rem;
  color: white;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
}

.servicos {
  padding: 4rem 2rem;
  text-align: center;
  background: white;
}

.servicos h2 {
  color: #ff5d17;
  font-size: 2rem;
  margin-bottom: 2rem;
}

/* Container principal */
.cards-container {
  max-width: 1200px;
  margin: 2rem auto;
  padding: 0 20px;
}

/* Linha de cards */
.cards-row {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

/* Card individual */
.card {
  background: white;
  width: 300px;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Container do ícone */
.card-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.card-icon img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.card h3 {
  color: black;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.card p {
  color: var(--texto);
  font-size: 0.9rem;
  line-height: 1.5;
  margin-top: auto;
}

/* Responsividade */
@media (max-width: 1000px) {
  .cards-row {
    gap: 1.5rem;
  }
  .card {
    width: 280px;
    padding: 1.5rem;
  }
}

@media (max-width: 768px) {
  .card {
    width: 100%;
    max-width: 350px;
    margin-bottom: 1.5rem;
  }
}

.empresa, .contato {
  padding: 4rem 2rem;
  background: white;
  text-align: center;
}

.empresa h2, .contato h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.social-buttons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 8px;
  color: white;
  font-weight: bold;
  text-decoration: none;
  font-size: 1rem;
  transition: background 0.3s;
  width: 250px; /* mesmo tamanho para todos */
  box-sizing: border-box;
}

.social-btn img {
  width: 24px;
  height: 24px;
}

/* WhatsApp */
.social-btn.whatsapp {
  background-color: #25D366;
}

.social-btn.whatsapp:hover {
  background-color: #1ebc59;
}

/* Facebook */
.social-btn.facebook {
  background-color: #1877f2;
}

.social-btn.facebook:hover {
  background-color: #0e5ed3;
}

/* Instagram */
.social-btn.instagram {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

.social-btn.instagram:hover {
  opacity: 0.9;
}

/* Rodapé */
.rodape-personalizado {
  background-color: #ff5d17;
  color: #000;
  padding: 3rem 1rem;
  font-size: 0.95rem;
}

.rodape-conteudo {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
  padding-bottom: 2rem;
  align-items: center;
}

.rodape-conteudo .coluna h3,
.rodape-conteudo .coluna h4 {
  margin-bottom: 1rem;
  font-weight: bold;
}

.rodape-conteudo ul {
  list-style: none;
  padding: 0;
}

.rodape-conteudo ul li {
  margin-bottom: 0.5rem;
}

.rodape-conteudo ul li a {
  color: black;
  text-decoration: none;
}

.rodape-conteudo ul li a:hover {
  text-decoration: underline;
}

.rodape-info {
  text-align: center;
  font-size: 0.9rem;
}

.rodape-info p {
  margin: 0.5rem 0;
}

.rodape-info a {
  color: black;
  text-decoration: none;
}

.rodape-info a:hover {
  text-decoration: underline;
}

footer hr {
  border: none;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  margin-bottom: 1.5rem;
}

.logo-rodape {
  height: 80px;
  display: block;
  margin: 0 auto 1rem auto;
}

.social-rodape {
  list-style: none;
  padding: 0;
}

.social-rodape li {
  margin-bottom: 0.5rem;
}

.social-rodape a {
  color: black;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  font-weight: 500;
}

.icon-social {
  width: 20px;
  height: 20px;
  object-fit: contain;
  filter: none;
}

/* Mover apenas a coluna "Páginas" um pouco para a esquerda */
.rodape-conteudo .coluna:nth-child(2) {
  margin-left: -150px; /* Ajustar */
}

/* Mover apenas a coluna "Siga-nos" um pouco para a esquerda */
.rodape-conteudo .coluna:nth-child(3) {
  margin-left: -320px; /* Ajustar */
}

/* mover apenas "Siga-nos" verticalmente */
.rodape-conteudo .coluna:nth-child(3) {
  position: relative;
  top: -14px;
}

/* Mobile layout (under 768px) */
@media (max-width: 768px) {
  /* Center the logo and brand text */
  .rodape-conteudo > .coluna:first-child {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    margin-bottom: 20px;
  }

  /* Keep your existing perfect grid layout */
  .rodape-links-duplo {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    width: 100%;
    margin-top: 20px;
  }

  /* Páginas - left aligned (unchanged) */
  .rodape-links-duplo .coluna:first-child {
    text-align: left;
    justify-self: start;
    padding-left: 10px;
  }

  /* Siga-nos - right aligned (unchanged) */
  .rodape-links-duplo .coluna:last-child {
    text-align: right;
    justify-self: end;
    padding-right: 10px;
  }

  /* Remove any negative margins (unchanged) */
  .rodape-conteudo .coluna {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  /* Adjust social icons alignment (unchanged) */
  .social-rodape {
    align-items: flex-end;
  }

  /* Ensure consistent spacing (unchanged) */
  .rodape-conteudo .coluna h4 {
    margin-bottom: 15px;
    font-size: 1.1rem;
  }

  .rodape-conteudo .coluna li {
    margin-bottom: 8px;
  }

  /* Rodapé inferior responsivo */
.rodape-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1rem 2rem;
  gap: 0.5rem;
  word-break: break-word;
}

.rodape-info p {
  margin: 0.2rem 0;
  font-size: 0.95rem;
  line-height: 1.5;
}
}

.obras-container {
  margin-top: 2rem;
  text-align: center;
}

#btn-ver-obras {
  padding: 0.6rem 1.2rem;
  font-size: 1rem;
  background: #f47c20;
  color: white;
  border: none;
  cursor: pointer;
  border-radius: 8px;
}

#obras-section {
  margin-top: 1.5rem;
  text-align: left;
  max-width: 600px;
  margin-inline: auto;
  padding: 1rem;
  background: #fff8f0;
  border-radius: 8px;
  box-shadow: 0 0 5px rgba(0,0,0,0.1);
}

#obras-section ul {
  padding-left: 1rem;
}

.hidden {
  display: none;
}

/* Botão mobile escondido no desktop */
.menu-mobile-toggle {
  display: none;
}

/* Menu móvel oculto por padrão */
.menu-mobile-links {
  display: flex;
  flex-direction: column;
  background: white;
  padding: 1rem;
  position: absolute;
  top: 80px;
  right: 20px;
  z-index: 999;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
  border-radius: 8px;
}

.menu-mobile-links a {
  padding: 0.5rem 1rem;
  color: #333;
  text-decoration: none;
  font-weight: 500;
}

.menu-mobile-links.hidden {
  display: none;
}

#btn-menu-mobile {
  background: transparent;
  border: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: #333;
}

/* Botão mobile escondido no desktop */
.menu-mobile-toggle {
  display: none;
}

/* Menu móvel oculto por padrão */
.menu-mobile-links {
  display: flex;
  flex-direction: column;
  background: white;
  padding: 1rem;
  position: absolute;
  top: 80px;
  right: 20px;
  z-index: 999;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
  border-radius: 8px;
}

.menu-mobile-links a {
  padding: 0.5rem 1rem;
  color: #333;
  text-decoration: none;
  font-weight: 500;
}

.menu-mobile-links.hidden {
  display: none;
}

#btn-menu-mobile {
  background: transparent;
  border: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: #333;
}

/* Versão mobile ativa */
@media (max-width: 768px) {
  .menu-desktop .menu-item-desktop {
    display: none; /* oculta "Início" original */
  }

  .menu-mobile-toggle {
    display: block; /* mostra o botão ☰ */
  }

  #menu-mobile-links {
    width: 200px;
  }

  /* --- NOVAS REGRAS ADICIONADAS --- */
  .menu-desktop ul li:not(.menu-mobile-toggle) {
    display: none;
  }

  .menu-mobile-toggle {
    display: block !important;
  }

  nav ul {
    justify-content: flex-end;
    gap: 0;
  }

 /* Alinha o botão com a logo e ajusta posicionamento */
  .menu-mobile-toggle {
    margin-left: 15px; /* Ajuste conforme necessário */
    order: -1; /* Move o botão para antes dos itens (esquerda) */
  }

  /* Ajusta o container do header para alinhar logo + botão */
  header .container {
    justify-content: flex-start; /* Alinha itens à esquerda */
    gap: 10px; /* Espaço entre logo e botão */
  }

  /* Remove margens/paddings extras do botão */
  #btn-menu-mobile {
    padding: 0;
    margin: 0;
    font-size: 1.8rem;
  }
}

@media (max-width: 768px) {
  header .container {
    display: grid;
    grid-template-columns: auto min-content;
    align-items: center;
  }
  
  .menu-desktop {
    justify-self: end;
  }
  
  #btn-menu-mobile {
    transform: translateX(-8px); /* Ajuste fino */
  }
}

/* Estilo do botão */
.btn-obras {
  background-color: #ff5d17;
  color: white;
  border: none;
  padding: 12px 24px;
  font-size: 1.1rem;
  border-radius: 5px;
  cursor: pointer;
  display: block;
  margin: 30px auto;
  transition: background-color 0.3s;
}

.btn-obras:hover {
  background-color: #e04e0d;
}

/* Estilo da seção de obras */
.conteudo-obras {
  max-width: 1000px;
  margin: 0 auto;
  padding: 30px;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0,0,0,0.1);
}

/* Estilo do slideshow */
.slideshow-container {
  position: relative;
  margin: 30px auto;
  max-width: 800px;
}

.slide {
  display: none;
  animation: fade 1s;
}

.slide.active {
  display: block;
}

.slide img {
  width: 100%;
  border-radius: 8px;
}

.slide-text {
  padding: 15px;
  text-align: center;
}

.slide-prev, .slide-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0,0,0,0.5);
  color: white;
  border: none;
  padding: 15px;
  cursor: pointer;
  border-radius: 50%;
  font-size: 18px;
}

.slide-prev {
  left: 10px;
}

.slide-next {
  right: 10px;
}

@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}

/* Versão mobile */
@media (max-width: 768px) {
  .conteudo-obras {
    padding: 15px;
  }
  
  .btn-obras {
    padding: 10px 20px;
    font-size: 1rem;
  }
}

/* ===== SLIDESHOW PROFISSIONAL ===== */
/* Container principal - ampliado */
.slideshow-container {
  position: relative;
  margin: 50px auto;
  max-width: 1000px;
  padding: 30px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

/* Slides */
.slide {
  display: none;
  animation: fade 1s ease-in-out;
}

.slide.active {
  display: block;
}

/* Imagens - tamanho aumentado e tratamento profissional */
.slide img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  border: 1px solid #ddd;
}

/* Textos do slide */
.slide-text {
  padding: 25px 40px;
  text-align: center;
}

.slide-text h4 {
  color: #ff5d17;
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.slide-text p {
  color: #333;
  font-size: 1.1rem;
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto;
}

/* Controles - apenas setas transparentes */
.slide-prev, .slide-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: transparent !important;
  color: #ff5d17 !important;
  border: none;
  font-size: 3rem;
  cursor: pointer;
  opacity: 0.7;
  transition: all 0.3s ease;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  padding: 0;
}

.slide-prev:hover, .slide-next:hover {
  opacity: 1;
  transform: translateY(-50%) scale(1.1);
  background: transparent !important;
}

.slide-prev {
  left: 15px;
}

.slide-next {
  right: 15px;
}

/* Indicadores de slide (opcional) */
.slide-indicators {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.slide-indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ccc;
  cursor: pointer;
  transition: all 0.3s;
}

.slide-indicator.active {
  background: #ff5d17;
  transform: scale(1.2);
}

/* Animações */
@keyframes fade {
  from { opacity: 0.4 }
  to { opacity: 1 }
}

/* ===== VERSÃO MOBILE ===== */
@media (max-width: 768px) {
  .slideshow-container {
    padding: 15px;
    margin: 30px auto;
    max-width: 95%;
  }
  
  .slide img {
    height: 300px;
  }
  
  .slide-text {
    padding: 15px;
  }
  
  .slide-text h4 {
    font-size: 1.4rem;
  }
  
  .slide-text p {
    font-size: 1rem;
  }
  
  .slide-prev, .slide-next {
    font-size: 2rem;
    width: 40px;
    height: 40px;
  }
  
  .slide-prev {
    left: -15px;
  }
  
  .slide-next {
    right: -15px;
  }
}

.small-text {
  font-size: 0.9rem;
  line-height: 1.5;
  margin-top: 0.5rem;
}

.card {
  /* Mantenha seus estilos atuais e adicione: */
  min-height: 250px; /* Altura uniforme */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* ===== CARROSSEL DE CARDS ===== */
.cards-carousel {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 50px;
}

.cards-container {
  overflow: hidden;
  position: relative;
  margin: 0 auto;
}

.cards-page {
  display: none;
  justify-content: center;
  gap: 30px;
  transition: transform 0.5s ease;
}

.cards-page.active {
  display: flex;
  animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
  from { opacity: 0.5; }
  to { opacity: 1; }
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  font-size: 2rem;
  color: var(--cor-primaria);
  cursor: pointer;
  z-index: 10;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.carousel-arrow:hover {
  color: var(--cor-secundaria);
  transform: translateY(-50%) scale(1.1);
}

.carousel-arrow.prev {
  left: 0;
}

.carousel-arrow.next {
  right: 0;
}

.carousel-indicators {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.carousel-indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ccc;
  cursor: pointer;
  transition: all 0.3s;
}

.carousel-indicator.active {
  background: var(--cor-primaria);
  transform: scale(1.2);
}

/* Ajuste nos cards para o carrossel */
.cards-page .card {
  flex: 0 0 calc(33.333% - 20px);
  max-width: calc(33.333% - 20px);
  margin: 0;
}

/* Responsividade do carrossel */
@media (max-width: 1000px) {
  .cards-page .card {
    flex: 0 0 calc(50% - 15px);
    max-width: calc(50% - 15px);
  }
}

@media (max-width: 768px) {
  .cards-carousel {
    padding: 0 30px;
  }
  
  .cards-page {
    flex-wrap: wrap;
  }
  
  .cards-page .card {
    flex: 0 0 100%;
    max-width: 350px;
    margin-bottom: 1.5rem;
  }
  
  .carousel-arrow {
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
  }
}

.carousel-arrow {
  color: #ff5d17 !important; /* Cor laranja */
}

.carousel-arrow:hover {
  color: #e04e0d !important; /* Laranja mais escuro no hover */
}

.carousel-indicator.active {
  background: #ff5d17 !important; /* Indicador ativo laranja */
}

.conteudo-obras h3 {
  color: #ff5d17;
  font-size: 2rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.slide-prev, .slide-next {
  color: #ff5d17 !important;
}

.slide-prev:hover, .slide-next:hover {
  color: #e04e0d !important;
}

.slide-indicator.active {
  background: #ff5d17;
}

/* Mantenha os estilos existentes e adicione: */

/* Efeito Flip para Desktop */
@media (min-width: 769px) {
    .card:hover .card-inner {
        transform: rotateY(180deg);
    }
}

/* Efeito Flip para Mobile */
@media (max-width: 768px) {
    .card.flipped .card-inner {
        transform: rotateY(180deg);
    }
}

/* Estilos compartilhados (funcionam em ambos) */
.card {
    width: 300px;
    height: 200px;
    perspective: 1000px;
    margin: 15px;
}

.card-inner {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.6s;
}

.card-front, .card-back {
    width: 100%;
    height: 100%;
    position: absolute;
    backface-visibility: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    text-align: center;
}

.card-front {
    background-color: #f8f9fa;
}

.card-back {
    background-color: #fff;
    transform: rotateY(180deg);
}

.card-back img {
    max-width: 100%;
    max-height: 120px;
    margin-bottom: 10px;
    border-radius: 5px;
}

/* ===== CARDS FLIP ===== */
.flip-card-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 20px;
}

.flip-card {
    width: 300px;
    height: 200px;
    perspective: 1000px;
    margin: 15px;
}

.flip-card-inner {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.6s;
}

.flip-card.flipped .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front, .flip-card-back {
    width: 100%;
    height: 100%;
    position: absolute;
    backface-visibility: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    text-align: center;
}

.flip-card-front {
    background-color: #f8f9fa;
}

.flip-card-back {
    background-color: #fff;
    transform: rotateY(180deg);
}

.flip-card-back img {
    max-width: 100%;
    max-height: 120px;
    margin-bottom: 10px;
    border-radius: 5px;
}

/* Desktop - hover */
@media (min-width: 769px) {
    .flip-card:hover .flip-card-inner {
        transform: rotateY(180deg);
    }
}

/* Mobile - clique */
@media (max-width: 768px) {
    .flip-card.flipped .flip-card-inner {
        transform: rotateY(180deg);
    }
}

/* ===== CARDS FLIP PARA SERVIÇOS ===== */
.service-flip-card {
    width: 300px;
    height: 200px;
    perspective: 1000px;
    margin: 15px;
}

.service-flip-card-inner {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.6s;
}

.service-flip-card.flipped .service-flip-card-inner {
    transform: rotateY(180deg);
}

.service-flip-card-front, .service-flip-card-back {
    width: 100%;
    height: 100%;
    position: absolute;
    backface-visibility: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    text-align: center;
}

.service-flip-card-front {
    background-color: #f8f9fa;
}

.service-flip-card-back {
    background-color: #fff;
    transform: rotateY(180deg);
}

/* Desktop - hover */
@media (min-width: 769px) {
    .service-flip-card:hover .service-flip-card-inner {
        transform: rotateY(180deg);
    }
}

/* Mobile - clique */
@media (max-width: 768px) {
    .service-flip-card.flipped .service-flip-card-inner {
        transform: rotateY(180deg);
    }
}

/* Estilo para a imagem no verso do card - Versão quadrada */
.service-flip-card-back img {
  width: 80px; /* Tamanho fixo para harmonia */
  height: 80px; /* Tamanho fixo para harmonia */
  object-fit: cover; /* Garante que a imagem preencha o espaço */
  margin-bottom: 15px;
  border: 3px solid #ff5d17;
  background-color: white;
  box-shadow: 0 0 10px rgba(255, 93, 23, 0.3);
  padding: 3px; /* Espaço entre borda e imagem */
  border-radius: 5px; /* Cantos levemente arredondados */
}

/* Ajustes para manter layout consistente */
.service-flip-card-back {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  text-align: center;
}

.service-flip-card-back p {
  margin-top: 15px;
  font-size: 0.9rem;
  line-height: 1.4;
  width: 100%; /* Garante que o texto não ultrapasse */
}

.service-flip-card-back img {
  transition: all 0.3s ease;
}

.service-flip-card-back img:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px rgba(255, 93, 23, 0.5);
}

/* Ajustes para o carrossel de serviços */
.cards-carousel {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 50px;
}

.cards-container {
    overflow: hidden;
    position: relative;
    margin: 0 auto;
}

.cards-page {
    display: none;
    justify-content: center;
    gap: 30px;
    transition: transform 0.5s ease;
    flex-wrap: wrap;
}

.cards-page.active {
    display: flex;
    animation: fadeIn 0.5s ease;
}

.service-flip-card {
    width: 300px;
    height: 250px;
    perspective: 1000px;
    margin: 15px;
}

.service-flip-card-inner {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.6s;
}

.service-flip-card.flipped .service-flip-card-inner {
    transform: rotateY(180deg);
}

.service-flip-card-front, .service-flip-card-back {
    width: 100%;
    height: 100%;
    position: absolute;
    backface-visibility: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    text-align: center;
}

.service-flip-card-front {
    background-color: #f8f9fa;
}

.service-flip-card-back {
    background-color: #fff;
    transform: rotateY(180deg);
}

/* Desktop - hover */
@media (min-width: 769px) {
    .service-flip-card:hover .service-flip-card-inner {
        transform: rotateY(180deg);
    }
}

/* Mobile - clique */
@media (max-width: 768px) {
    .service-flip-card.flipped .service-flip-card-inner {
        transform: rotateY(180deg);
    }
}

@keyframes fadeIn {
    from { opacity: 0.5; }
    to { opacity: 1; }
}

/* Estilo do carrossel */
.cards-carousel {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 50px;
}

.cards-container {
    overflow: hidden;
    position: relative;
    margin: 0 auto;
}

.cards-page {
    display: none;
    justify-content: center;
    gap: 30px;
    transition: transform 0.5s ease;
    flex-wrap: wrap;
}

.cards-page.active {
    display: flex;
    animation: fadeIn 0.5s ease;
}

/* Estilo dos cards */
.service-flip-card {
    width: 300px;
    height: 250px;
    perspective: 1000px;
    margin: 15px;
}

.service-flip-card-inner {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.6s;
}

.service-flip-card-front, 
.service-flip-card-back {
    width: 100%;
    height: 100%;
    position: absolute;
    backface-visibility: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    text-align: center;
}

.service-flip-card-front {
    background-color: #f8f9fa;
}

.service-flip-card-back {
    background-color: #fff;
    transform: rotateY(180deg);
}

/* Efeitos de hover e clique */
@media (min-width: 769px) {
    .service-flip-card:hover .service-flip-card-inner {
        transform: rotateY(180deg);
    }
}

@media (max-width: 768px) {
    .service-flip-card.flipped .service-flip-card-inner {
        transform: rotateY(180deg);
    }
}

@keyframes fadeIn {
    from { opacity: 0.5; }
    to { opacity: 1; }
}

/* Setas do carrossel */
.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    font-size: 2rem;
    color: #ff5d17;
    cursor: pointer;
    z-index: 10;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.carousel-arrow:hover {
    color: #e04e0d;
    transform: translateY(-50%) scale(1.1);
}

.carousel-arrow.prev {
    left: 0;
}

.carousel-arrow.next {
    right: 0;
}

.service-flip-card-back img {
  width: 280px; /* Aumentei o tamanho */
  height: 160px; /* Altura menor para formato retangular */
  object-fit: cover; /* Mantém a proporção cobrindo o espaço */
  margin-bottom: 15px;
  border: 3px solid #ff5d17;
  background-color: white;
  box-shadow: 0 0 10px rgba(255, 93, 23, 0.3);
  padding: 3px;
  border-radius: 5px; /* Cantos levemente arredondados */
  transition: all 0.3s ease;
}

/* ESTILOS ESPECÍFICOS PARA AS IMAGENS DO SLIDESHOW DE OBRAS */
.slideshow-container .slide img {
  width: 100%;
  height: 500px; /* Altura maior para o slideshow */
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  border: 1px solid #ddd;
}

/* Versão mobile para o slideshow */
@media (max-width: 768px) {
  .slideshow-container .slide img {
    height: 300px;
  }
}

/* Ajuste no padding do card-back para acomodar a imagem maior */
.service-flip-card-back {
  padding: 15px; /* Reduzi um pouco o padding */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* Estilos para a página de política de privacidade */
.politica-privacidade {
  padding: 4rem 2rem;
  max-width: 900px;
  margin: 2rem auto;
  background: white;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.politica-privacidade h2, 
.politica-privacidade h3 {
  color: #ff5d17;
  margin: 2rem 0 1rem;
}

.politica-privacidade ul {
  padding-left: 2rem;
  margin: 1rem 0;
}

.politica-privacidade li {
  margin-bottom: 0.5rem;
}

.contato {
  padding: 7rem 1rem 4rem 1rem; /* maior top padding para compensar o header fixo */
}

/* ===== ESTILOS ESPECÍFICOS DA LOJA ===== */
.loja-container {
  padding-top: 120px;
  background-color: #f9f9f9;
}

.loja-banner {
  background: linear-gradient(rgba(0, 64, 128, 0.8), rgba(0, 64, 128, 0.8)), 
              url('images/banner-loja.jpg') center/cover;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  margin-bottom: 40px;
}

.loja-banner h1 {
  font-size: 3rem;
  margin-bottom: 15px;
}

.loja-banner p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
}

.loja-filtros {
  background-color: white;
  padding: 20px 0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  margin-bottom: 30px;
}

.filtros-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.search-box {
  flex-grow: 1;
  display: flex;
  max-width: 500px;
}

.search-box input {
  flex-grow: 1;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 5px 0 0 5px;
  font-size: 1rem;
}

.search-box button {
  background-color: #ff5d17;
  color: white;
  border: none;
  padding: 0 20px;
  border-radius: 0 5px 5px 0;
  cursor: pointer;
  transition: background 0.3s;
}

.search-box button:hover {
  background-color: #e04e0d;
}

.sort-box {
  display: flex;
  align-items: center;
  gap: 10px;
}

.sort-box label {
  font-weight: 500;
}

.sort-box select {
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
  background-color: white;
}

.produtos-grid {
  padding: 30px 0;
}

.produtos-grid .container {
  display: flex;
  gap: 30px;
}

.filtros-laterais {
  width: 250px;
  flex-shrink: 0;
  background: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.filtros-laterais h3 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  color: #004080;
  padding-bottom: 10px;
  border-bottom: 1px solid #eee;
}

.categorias-list {
  list-style: none;
  margin-bottom: 30px;
}

.categorias-list li {
  margin-bottom: 8px;
}

.categorias-list a {
  color: #333;
  text-decoration: none;
  transition: color 0.3s;
  display: block;
  padding: 5px 0;
}

.categorias-list a:hover, 
.categorias-list a.active {
  color: #ff5d17;
  font-weight: 500;
}

.price-filter {
  margin-top: 20px;
}

.price-values {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  font-size: 0.9rem;
}

.slider {
  width: 100%;
  height: 5px;
  background: #ddd;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  border-radius: 5px;
}

.slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  background: #ff5d17;
  border-radius: 50%;
  cursor: pointer;
}

.produtos-lista {
  flex-grow: 1;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 25px;
}

.produto-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
}

.produto-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.produto-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background-color: #ff5d17;
  color: white;
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: bold;
  z-index: 1;
}

.produto-imagem {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.produto-imagem img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.produto-card:hover .produto-imagem img {
  transform: scale(1.05);
}

.quick-view {
  position: absolute;
  bottom: -40px;
  left: 0;
  width: 100%;
  background: rgba(0,64,128,0.9);
  color: white;
  border: none;
  padding: 10px;
  cursor: pointer;
  transition: bottom 0.3s;
  font-weight: 500;
}

.produto-card:hover .quick-view {
  bottom: 0;
}

.produto-info {
  padding: 15px;
}

.produto-info h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: #333;
}

.produto-avaliacao {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 10px;
}

.produto-avaliacao span {
  font-size: 0.8rem;
  color: #666;
}

.produto-descricao {
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 15px;
  line-height: 1.4;
}

.produto-preco {
  margin-bottom: 15px;
}

.preco-atual {
  font-size: 1.3rem;
  font-weight: bold;
  color: #004080;
  display: block;
}

.preco-parcelado {
  font-size: 0.9rem;
  color: #666;
}

.produto-acoes {
  display: flex;
  gap: 10px;
}

.btn-whatsapp {
  flex-grow: 1;
  background-color: #25D366;
  color: white;
  border: none;
  padding: 10px;
  border-radius: 5px;
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  transition: background 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-whatsapp:hover {
  background-color: #1ebc59;
}

.btn-detalhes {
  flex-grow: 1;
  background-color: #004080;
  color: white;
  border: none;
  padding: 10px;
  border-radius: 5px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.3s;
}

.btn-detalhes:hover {
  background-color: #002b57;
}

.loja-paginacao {
  padding: 30px 0;
}

.paginacao {
  display: flex;
  justify-content: center;
  gap: 5px;
}

.paginacao button {
  width: 40px;
  height: 40px;
  border: 1px solid #ddd;
  background: white;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s;
}

.paginacao button:hover:not(:disabled) {
  background: #f0f0f0;
}

.paginacao button.active {
  background: #004080;
  color: white;
  border-color: #004080;
}

.paginacao button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Modal de visualização rápida */
.modal-quickview {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.7);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}

.modal-quickview.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background: white;
  width: 90%;
  max-width: 900px;
  max-height: 90vh;
  border-radius: 10px;
  overflow-y: auto;
  position: relative;
  animation: modalFadeIn 0.3s;
}

.close-modal {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #666;
  z-index: 1;
}

.modal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  padding: 30px;
}

.modal-images {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.main-image {
  height: 350px;
  background: #f9f9f9;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  overflow: hidden;
}

.main-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.thumbnail-images {
  display: flex;
  gap: 10px;
}

.thumbnail {
  width: 60px;
  height: 60px;
  border: 1px solid #ddd;
  border-radius: 5px;
  cursor: pointer;
  object-fit: cover;
}

.thumbnail.active {
  border-color: #ff5d17;
}

.modal-info {
  display: flex;
  flex-direction: column;
}

.modal-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 10px 0;
}

.modal-rating .stars {
  color: #ffc107;
}

.modal-rating span {
  font-size: 0.9rem;
  color: #666;
}

.modal-rating a {
  font-size: 0.9rem;
  color: #004080;
  text-decoration: none;
}

.modal-price {
  margin: 15px 0;
}

.current-price {
  font-size: 1.8rem;
  font-weight: bold;
  color: #004080;
  display: block;
}

.installment {
  font-size: 1rem;
  color: #666;
}

.modal-description {
  margin: 15px 0;
  line-height: 1.6;
}

.modal-description ul {
  margin-top: 10px;
  padding-left: 20px;
}

.modal-description li {
  margin-bottom: 5px;
}

.modal-actions {
  display: flex;
  gap: 10px;
  margin: 20px 0;
}

.modal-actions .btn-whatsapp {
  flex-grow: 1;
  padding: 12px;
  font-size: 1rem;
}

.btn-call {
  flex-grow: 1;
  background: #004080;
  color: white;
  border: none;
  padding: 12px;
  border-radius: 5px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-call:hover {
  background: #002b57;
}

.modal-shipping {
  border-top: 1px solid #eee;
  padding-top: 15px;
  margin-top: 15px;
}

.modal-shipping p {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  color: #555;
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsividade */
@media (max-width: 992px) {
  .modal-grid {
    grid-template-columns: 1fr;
  }
  
  .main-image {
    height: 250px;
  }
}

@media (max-width: 768px) {
  .produtos-grid .container {
    flex-direction: column;
  }
  
  .filtros-laterais {
    width: 100%;
    margin-bottom: 20px;
  }
  
  .filtros-grid {
    flex-direction: column;
    align-items: stretch;
  }
  
  .search-box {
    max-width: 100%;
  }
  
  .modal-content {
    width: 95%;
    max-height: 85vh;
  }
  
  .modal-grid {
    padding: 20px;
    gap: 20px;
  }
  
  .modal-actions {
    flex-direction: column;
  }
}

@media (max-width: 576px) {
  .loja-banner h1 {
    font-size: 2rem;
  }
  
  .loja-banner p {
    font-size: 1rem;
  }
  
  .produto-acoes {
    flex-direction: column;
  }
  
  .modal-content {
    width: 100%;
    max-height: 100vh;
    border-radius: 0;
  }
  
  .close-modal {
    top: 10px;
    right: 10px;
  }
}

/* ===== MELHORIAS PARA A LOJA ===== */
.loja-container {
  padding-top: 120px;
  background-color: #f9f9f9;
}

.loja-banner {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
              url('../images/banner-loja.jpg') center/cover;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  margin-bottom: 40px;
}

.loja-banner h1 {
  font-size: 3rem;
  margin-bottom: 15px;
  color: #ff5d17;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.loja-banner p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
}

/* Filtros */
.loja-filtros {
  background-color: white;
  padding: 20px 0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  margin-bottom: 30px;
}

.search-box {
  flex-grow: 1;
  display: flex;
  max-width: 500px;
}

.search-box input {
  flex-grow: 1;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 5px 0 0 5px;
  font-size: 1rem;
}

.search-box button {
  background-color: #ff5d17;
  color: white;
  border: none;
  padding: 0 20px;
  border-radius: 0 5px 5px 0;
  cursor: pointer;
  transition: background 0.3s;
}

.search-box button:hover {
  background-color: #e04e0d;
}

/* Cards de produtos */
.produto-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
  border: 1px solid #eee;
}

.produto-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.produto-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background-color: #ff5d17;
  color: white;
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: bold;
  z-index: 1;
}

.produto-imagem {
  position: relative;
  height: 200px;
  overflow: hidden;
  background: #f5f5f5;
}

.produto-imagem img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.5s;
  padding: 20px;
}

.produto-info {
  padding: 15px;
  border-top: 1px solid #eee;
}

.produto-info h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: #333;
}

.produto-avaliacao .stars {
  color: #ffc107;
}

.produto-preco .preco-atual {
  font-size: 1.3rem;
  font-weight: bold;
  color: #ff5d17;
}

.btn-whatsapp {
  background-color: #25D366;
  color: white;
}

.btn-detalhes {
  background-color: #ff5d17;
  color: white;
}

/* Paginação - só aparece quando necessário */
.loja-paginacao {
  display: none; /* Inicialmente escondido */
  padding: 30px 0;
}

.loja-paginacao.visible {
  display: block;
}

.paginacao button.active {
  background: #ff5d17;
  color: white;
  border-color: #ff5d17;
}

/* Página de detalhes do produto */
.produto-detalhe {
  padding: 120px 0 60px;
}

.produto-galeria {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 15px;
}

.produto-thumbnails {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.produto-thumbnail {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border: 1px solid #ddd;
  cursor: pointer;
}

.produto-thumbnail.active {
  border-color: #ff5d17;
}

.produto-main-image {
  width: 100%;
  height: 400px;
  object-fit: contain;
  background: #f9f9f9;
  padding: 20px;
}

.produto-info-detalhes h1 {
  color: #333;
  margin-bottom: 15px;
}

.produto-preco-detalhes {
  font-size: 1.8rem;
  color: #ff5d17;
  font-weight: bold;
  margin: 20px 0;
}

.produto-acoes-detalhes {
  display: flex;
  gap: 15px;
  margin: 30px 0;
}

.btn-comprar {
  background: #25D366;
  color: white;
  padding: 12px 25px;
}

.btn-orcamento {
  background: #ff5d17;
  color: white;
  padding: 12px 25px;
}

.produto-especificacoes {
  margin-top: 40px;
}

.especificacoes-tabela {
  width: 100%;
  border-collapse: collapse;
}

.especificacoes-tabela tr:nth-child(even) {
  background: #f9f9f9;
}

.especificacoes-tabela td {
  padding: 12px 15px;
  border: 1px solid #eee;
}

/* Responsividade */
@media (max-width: 768px) {
  .produto-galeria {
    grid-template-columns: 1fr;
  }
  
  .produto-thumbnails {
    flex-direction: row;
    order: 2;
  }
  
  .produto-main-image {
    height: 300px;
  }
  
  .produto-acoes-detalhes {
    flex-direction: column;
  }
}

/* Melhorias para os cards de produto */
.produto-card {
  cursor: pointer;
  transition: all 0.3s ease;
}

.produto-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* Garante que os botões não herdem o cursor do card */
.produto-card .btn-whatsapp,
.produto-card .btn-detalhes,
.produto-card .quick-view {
  cursor: pointer;
}

/* Evita que o clique nos botões dispare o evento do card */
.produto-acoes * {
  pointer-events: none;
}

/* Restaura os eventos de ponteiro nos botões */
.btn-whatsapp, 
.btn-detalhes,
.quick-view {
  pointer-events: auto;
}

/* Correção definitiva para as setas do slideshow */
.slideshow-container {
  position: relative;
  max-width: 1000px;
  margin: 30px auto;
  padding: 20px;
}

.slide-prev, .slide-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 93, 23, 0.8);
  color: white;
  border: none;
  padding: 15px;
  font-size: 18px;
  cursor: pointer;
  border-radius: 50%;
  z-index: 10;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1 !important; /* Força visibilidade permanente */
  visibility: visible !important; /* Garante que estejam sempre visíveis */
  transition: all 0.3s ease;
}

.slide-prev {
  left: -20px;
}

.slide-next {
  right: -20px;
}

.slide-prev:hover, .slide-next:hover {
  background: #ff5d17;
  transform: translateY(-50%) scale(1.1);
}

/* Garantir que o slideshow fique contido */
.conteudo-obras {
  position: relative;
  overflow: visible; /* Permite que as setas fiquem fora */
  padding: 30px 0;
}

/* Setas do Slideshow - Tamanho igual ao do carrossel de serviços */
.slide-prev, .slide-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: rgba(255, 93, 23, 0.9);
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 1.8rem;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  opacity: 1 !important;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.slide-prev {
  left: -25px;
}

.slide-next {
  right: -25px;
}

.slide-prev:hover, .slide-next:hover {
  background: #ff5d17;
  transform: translateY(-50%) scale(1.1);
}

/* Ajuste para mobile */
@media (max-width: 768px) {
  .slide-prev, .slide-next {
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
  }
  
  .slide-prev {
    left: -15px;
  }
  
  .slide-next {
    right: -15px;
  }
}


/* Estilos para a seção de contato */
.contato {
  padding: 7rem 1rem 4rem;
  background-color: #fff;
}

.contato .container {
  max-width: 1200px;
  margin: 0 auto;
}

.contato h2 {
  font-size: 2.2rem;
  color: #ff5d17;
  margin-bottom: 1rem;
  text-align: center;
}

.contato .subtitle {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 3rem;
  text-align: center;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.contato-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.contato-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.social-rodape {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}


.icon-social {
  width: 24px;
  height: 24px;
}

.info-adicional {
  margin-top: 2rem;
  padding: 1.5rem;
  background-color: #f9f9f9;
  border-radius: 8px;
}

.info-adicional p {
  margin-bottom: 1rem;
  font-size: 1rem;
  line-height: 1.6;
}

.info-adicional strong {
  color: #ff5d17;
}

.mapa-container {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  height: 100%;
}

.mapa-link {
  display: block;
  position: relative;
  height: 100%;
}

.mapa-imagem {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.mapa-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0,0,0,0.7);
  color: white;
  padding: 1rem;
  text-align: center;
  transition: all 0.3s;
}

.mapa-overlay span {
  font-weight: 500;
}

.mapa-link:hover .mapa-imagem {
  transform: scale(1.03);
}

.mapa-link:hover .mapa-overlay {
  background: rgba(255, 93, 23, 0.9);
}

/* Responsividade */
@media (max-width: 768px) {
  .contato-grid {
    grid-template-columns: 1fr;
  }
  
  .social-rodape {
    grid-template-columns: 1fr;
  }
  
  .mapa-container {
    height: 300px;
  }
}

@media (max-width: 480px) {
  .contato {
    padding: 5rem 1rem 3rem;
  }
  
  .contato h2 {
    font-size: 1.8rem;
  }
}

.star-rating {
  display: flex;
  gap: 8px;
  font-size: 1.5rem;
  cursor: pointer;
}

.star {
  color: #ccc;
  transition: color 0.2s;
}

.star.active,
.star.hover {
  color: #ff5d17;
}

.produto-card {
  transition: transform 0.3s, box-shadow 0.3s;
}

.produto-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.produto-avaliacao .stars {
  color: #ff5d17;
}

.btn,
button,
input[type="submit"] {
  background-color: #ff5d17;
  border: none;
  color: white;
  padding: 12px 20px;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s;
}

.btn:hover {
  background-color: #e04e0d;
}

@media (max-width: 768px) {
  .produto-card {
    width: 100%;
    margin-bottom: 20px;
  }

  .produto-info h3 {
    font-size: 1.2rem;
  }

  .produto-descricao {
    font-size: 0.95rem;
  }

  .produto-preco {
    flex-direction: column;
  }
}


/* Estilos do rodapé */
.rodape-personalizado {
  background-color: #ff5d17;
  color: #000;
  padding: 3rem 1rem;
  font-size: 0.95rem;
}

.rodape-conteudo {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
  padding-bottom: 2rem;
  align-items: center;
}

.rodape-conteudo .coluna h4 {
  margin-bottom: 1rem;
  font-weight: bold;
}

.rodape-conteudo ul {
  list-style: none;
  padding: 0;
}

.rodape-conteudo ul li {
  margin-bottom: 0.5rem;
}

.rodape-conteudo ul li a {
  color: black;
  text-decoration: none;
}

.rodape-conteudo ul li a:hover {
  text-decoration: underline;
}

.social-rodape {
  list-style: none;
  padding: 0;
}

.social-rodape li {
  margin-bottom: 0.5rem;
}

.social-rodape a {
  color: black;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  font-weight: 500;
}

.icon-social {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.rodape-info {
  text-align: center;
  font-size: 0.9rem;
}

.rodape-info p {
  margin: 0.5rem 0;
}

.rodape-info a {
  color: black;
  text-decoration: none;
}

.rodape-info a:hover {
  text-decoration: underline;
}

.social-rodape li {
  margin-bottom: 0.5rem;
}

.social-rodape a {
  color: black;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  font-weight: 500;
}

.icon-social {
  width: 20px;
  height: 20px;
  object-fit: contain;
  filter: none;
}

/* Adicione no seu style.css */
.produto-info h3 {
  margin-bottom: 10px; /* Ajuste conforme necessário */
}

.produto-descricao {
  margin-top: 0; /* Remove margem superior se necessário */
}

/* Melhorando a coluna "Siga-nos" para alinhar com "Páginas" */
.social-rodape {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.social-rodape li {
  margin-bottom: 0.3rem; /* Menor espaço, como em 'Páginas' */
}

.social-rodape a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: black;
  text-decoration: none;
  font-weight: normal;
  font-size: 1rem;
  transition: opacity 0.2s;
}

.social-rodape a:hover {
  opacity: 0.8;
  text-decoration: underline;
}

.icon-social {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

@media (max-width: 768px) {
  .cards-page {
    flex-wrap: nowrap !important;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .cards-page .service-flip-card {
    flex: 0 0 100%;
    max-width: 100%;
    scroll-snap-align: center;
    margin: 0 auto 1.5rem;
  }

  .service-flip-card img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }

  .cards-container {
    overflow-x: hidden;
  }
}

@media (max-width: 768px) {
  .conteudo-obras {
    padding: 15px;
    font-size: 0.95rem;
  }

  .conteudo-obras h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }

  .slide img {
    height: 250px !important;
    object-fit: cover;
    border-radius: 8px;
  }

  .slide-text {
    padding: 10px;
    font-size: 0.9rem;
  }

  .slide-text h4 {
    font-size: 1.2rem;
  }

  .slide-prev,
  .slide-next {
    font-size: 2rem;
    width: 48px;
    height: 48px;
    padding: 5px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    top: 45%;
  }

  .slide-indicators {
    margin-top: 15px;
    gap: 6px;
  }

  .slide-indicator {
    width: 10px;
    height: 10px;
  }
}

