* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
  transition: all 0.25s ease;
}

body {
  line-height: 1.6;
  padding-top: 80px;
}







.gallery {
  position: relative;
}

/* NEON VERMELHO SUAVE À VOLTA DA SECÇÃO */
.gallery::before {
  content: "";
  position: absolute;
  inset: 0;

  border-radius: 10px;

  box-shadow:
    0 0 10px rgba(255, 0, 0, 0.25),
    0 0 25px rgba(255, 0, 0, 0.15);

  pointer-events: none;
}

/* opcional: reforço no hover da galeria */
.gallery:hover::before {
  box-shadow:
    0 0 15px rgba(255, 0, 0, 0.35),
    0 0 35px rgba(255, 0, 0, 0.2);
}



.gallery-more {
  display: block;

  padding: 12px 24px;

  background: red;
  color: white;
  border: none;
  border-radius: 6px;

  font-weight: bold;
  cursor: pointer;

  /* CENTRO REAL (não falha) */
  position: relative;
  left: 50%;
  transform: translateX(-50%);

  margin-top: 20px;

  /* efeito igual aos outros */
  animation: galleryPulse 2.5s infinite ease-in-out;

  transition: 0.3s ease;
}

/* hover premium */
.gallery-more:hover {
  animation-play-state: paused;
  transform: scale(1.08);
  box-shadow: 0 0 18px rgba(255,0,0,0.6);
}

/* animação igual estilo do teu site */
@keyframes galleryPulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 rgba(255,0,0,0.4);
  }

  50% {
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(255,0,0,0.5);
  }

  100% {
    transform: scale(1);
    box-shadow: 0 0 0 rgba(255,0,0,0.4);
  }
}

.gallery {
  width: 100%;
  padding: 80px 0;
  text-align: center;
}

.gallery-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
}

/* imagens estilo cinema */
.gallery-grid img {
  width: 100%;
  height: 240px;
  object-fit: cover;

  transition: 0.4s ease;
  cursor: pointer;

  filter: saturate(1.1) contrast(1.05);
}

/* hover premium */
.gallery-grid img:hover {
  transform: scale(1.05);
  filter: brightness(0.8) saturate(1.2);
  z-index: 2;
}

/* RESPONSIVO */
@media (max-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 600px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid img {
    height: 180px;
  }
}

/* LIGHTBOX */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);

  display: none;
  align-items: center;
  justify-content: center;

  z-index: 9999;
}

.lightbox img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
}

/* botão fechar */
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;

  font-size: 35px;
  color: white;
  cursor: pointer;
}

/* setas */
.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);

  background: rgba(255,255,255,0.1);
  border: none;
  color: white;

  font-size: 30px;
  padding: 10px 15px;
  cursor: pointer;

  border-radius: 6px;
}

.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(255,255,255,0.2);
}




























.call-note {
  font-size: 8px;     /* bem pequeno */
  opacity: 0.5;
  margin-top: 5px;
  line-height: 1.2;
}









.back-home {
  background: red;
  color: white;
  padding: 10px 16px;
  border-radius: 25px;
  text-decoration: none;
  font-size: 13px;
  font-weight: bold;

  transition: all 0.3s ease;
}

.back-home:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px rgba(255,0,0,0.4);
}








.footer {
  position: relative;
}

/* ===================== CTA ===================== */
.footer-cta {
  text-align: center;
  max-width: 700px;
  margin: auto;
  margin-bottom: 40px;
}

.footer-cta h2 {
  font-size: 28px;
  margin-bottom: 10px;
}

.footer-cta p {
  opacity: 0.8;
  margin-bottom: 15px;
}

/* botão CTA */
.footer-cta button {
  background: red;
  color: white;
  border: none;
  padding: 14px 28px;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;

  animation: footerPulse 2.5s infinite ease-in-out;
}

@keyframes footerPulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 rgba(255,0,0,0.4);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 0 18px rgba(255,0,0,0.6);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 rgba(255,0,0,0.4);
  }
}

.footer-cta button:hover {
  animation-play-state: paused;
  transform: scale(1.08);
}

/* ===================== DIVISOR ===================== */
.footer-divider {
  height: 1px;
  background: #222;
  margin: 40px auto;
  max-width: 1000px;
}

/* ===================== ESQUERDA ===================== */
.footer-left {
  position: absolute;
  bottom: 15px;
  left: 20px;

  display: flex;
  gap: 10px;
  align-items: center;

  opacity: 0.7;
  transition: 0.3s ease;
}

.footer-left:hover {
  opacity: 1;
}

.footer-left img {
  height: 32px;
  transition: 0.3s ease;
}

.footer-left img:hover {
  transform: scale(1.05);
}

/* ===================== DIREITA ===================== */
.footer-right {
  position: absolute;
  bottom: 15px;
  right: 20px;

  font-size: 12px;
  color: #fff;
  opacity: 0.7;
}

/* ===================== LINKS ===================== */
.footer-bottom a {
  color: #fff;
  text-decoration: none;
  opacity: 0.8;
  transition: 0.3s ease;
}

.footer-bottom a:hover {
  opacity: 1;
  text-decoration: underline;
}

/* ===================== MOBILE FIX ===================== */
@media (max-width: 600px) {

  .footer {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding-bottom: 30px;
  }

  /* remove absolute no mobile */
  .footer-left,
  .footer-right {
    position: static !important;

    display: flex;
    justify-content: center;
    align-items: center;

    width: 100%;
    text-align: center;
  }

  /* logos */
  .footer-left {
    margin-top: 10px;
    justify-content: center;
  }

  /* texto direita */
  .footer-right {
    font-size: 11px;
    opacity: 0.7;
    margin-top: 5px;
  }

  /* CTA mobile */
  .footer-cta h2 {
    font-size: 20px;
  }

  .footer-cta button {
    padding: 12px 20px;
    font-size: 14px;
  }
}






















.cookie-banner {
  position: fixed;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);

  width: 92%;
  max-width: 650px;

  background: rgba(0, 0, 0, 0.92);
  color: #fff;

  padding: 16px 18px;
  border-radius: 12px;

  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;

  z-index: 9999;

  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
  backdrop-filter: blur(8px);

  animation: cookieFadeIn 0.6s ease;
}

/* texto */
.cookie-banner p {
  font-size: 13px;
  line-height: 1.4;
  margin: 0;
  color: #ddd;
}

/* link sem azul */
.cookie-banner a {
  color: #fff;
  text-decoration: underline;
  text-decoration-color: red;
  font-weight: 500;
}

.cookie-banner a:hover {
  color: red;
}

/* botões */
.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  border: none;
  padding: 9px 14px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
  font-size: 12px;
  transition: all 0.2s ease;
}

/* aceitar (principal) */
#accept-cookies {
  background: red;
  color: white;
}

#accept-cookies:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px rgba(255,0,0,0.5);
}

/* rejeitar */
#reject-cookies {
  background: #2a2a2a;
  color: #fff;
}

#reject-cookies:hover {
  background: #444;
}

/* animação entrada */
@keyframes cookieFadeIn {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

/* esconder */
.cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(20px);
  transition: all 0.4s ease;
}

/* responsivo */
@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    text-align: center;
  }

  .cookie-actions {
    width: 100%;
    justify-content: center;
  }
}























.contact-section {
  padding: 80px 20px;
  background: #f5f5f5;
}

.contact-container {
  max-width: 1100px;
  margin: auto;

  display: flex;
  gap: 40px;

  background: white;
  padding: 40px;
  border-radius: 15px;

  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* LEFT SIDE */
.contact-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-info h2 {
  margin-bottom: 10px;
}

.contact-info p {
  color: #333;
  font-size: 15px;
}

.contact-note {
  margin-top: 20px;
  font-size: 13px;
  color: #666;
}

/* RIGHT SIDE */
.contact-form {
  flex: 1;
}

.contact-form h2 {
  margin-bottom: 15px;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 14px;
  outline: none;
}

.contact-form textarea {
  min-height: 140px;
  resize: none;
}

.contact-form button {
  background: red;
  color: white;
  border: none;
  padding: 12px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
}

.contact-form button:hover {
  background: darkred;
}

/* RESPONSIVO */
@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
  }
}









/* MAPA */
.map-full {
  position: relative;
  width: 100%;
  height: 450px;
}

/* iframe */
.map-full iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* overlay */
.map-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  background: rgba(0,0,0,0.6);

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  color: white;
  text-align: center;
  z-index: 2;

  cursor: pointer;
  transition: all 0.4s ease;
}

/* texto */
.map-overlay h2 {
  font-size: 32px;
  margin-bottom: 10px;
}

.map-overlay p {
  font-size: 16px;
  margin-bottom: 10px;
}

.map-hint {
  font-size: 12px;
  opacity: 0.8;
}

/* quando desaparece */
.map-overlay.hide {
  opacity: 0;
  pointer-events: none;
}

.funcionamento {
  background: #ffffff;
}

.funcionamento .intro {
  max-width: 600px;
  margin: 0 auto 40px;
  color: #555;
  font-size: 16px;
}

/* GRID */
.func-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

/* CARDS */
.func-card {
  background: #f9f9f9;
  padding: 25px;
  border-radius: 12px;
  width: 280px;

  text-align: center;

  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.func-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

.func-card h4 {
  margin-bottom: 10px;
  font-size: 18px;
  color: #111;
}

.func-card p {
  font-size: 14px;
  color: #555;
}

/* destaque principal */
.func-card.highlight {
  border: 2px solid red;
  background: #fff5f5;
}




.partners {
  background: #f9f9f9;
  padding: 80px 20px;
  text-align: center;
}

.partners h2 {
  margin-bottom: 40px;
}

/* GRID DOS LOGOS */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 30px;
  align-items: center;
  justify-items: center;
  max-width: 1000px;
  margin: auto;
}

/* cada logo */
.partner {
  background: white;
  padding: 20px;
  border-radius: 12px;

  width: 100%;
  max-width: 160px;

  display: flex;
  align-items: center;
  justify-content: center;

  box-shadow: 0 5px 15px rgba(0,0,0,0.08);

  transition: all 0.3s ease;
}

.partner img {
  width: 100%;
  max-height: 60px;
  object-fit: contain;

  filter: grayscale(100%);
  opacity: 0.8;

  transition: all 0.3s ease;
}

/* hover premium */
.partner:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

.partner:hover img {
  filter: grayscale(0%);
  opacity: 1;
}




.about-content p {
  text-align: justify;
}

.about {
  background: white;
  text-align: center;
  padding: 80px 20px;
}

.about-content {
  max-width: 850px;
  margin: auto;
}

.about h3 {
  font-size: 30px;
  margin-bottom: 25px;
  color: #111;
}

/* parágrafos normais */
.about p {
  font-size: 15px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 15px;
}

/* bloco destacado */
.about-highlight {
  background: #f5f5f5;
  padding: 20px;
  border-radius: 12px;
  margin: 25px 0;
  border-left: 4px solid red;
}

.about-highlight p {
  margin-bottom: 10px;
  color: #333;
}

/* =======================
   HEADER FIXO
======================= */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;

  background: white;
  padding: 15px 20px;
  border-bottom: 1px solid #eee;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 45px;
}

.phone {
  background: red;
  color: white;
  padding: 10px 18px;
  border-radius: 30px;
  text-decoration: none;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 14px;

  position: relative;

  /* animação */
  animation: phonePulse 2.5s infinite ease-in-out;
}

/* leve “pulse + hover attention” */
@keyframes phonePulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 rgba(255,0,0,0.4);
  }

  50% {
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(255,0,0,0.5);
  }

  100% {
    transform: scale(1);
    box-shadow: 0 0 0 rgba(255,0,0,0.4);
  }
}

/* opcional: pausa quando hover (fica mais premium) */
.phone:hover {
  animation-play-state: paused;
  transform: scale(1.08);
}

/* =======================
   HERO
======================= */
.hero {
  position: relative;
  background: url("../img/tumb.png") center/cover no-repeat;
  color: white;
  text-align: center;
  padding: 100px 20px;
}

.overlay {
  position: absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background: rgba(0,0,0,0.6);
}
.hero,
.hero.small,
.map-full {
  position: relative;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.container {
  max-width: 1000px;
  margin: auto;
}

/* =======================
   FORM
======================= */
.form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 320px;
  margin: auto;
}

.form input {
  padding: 12px;
  border: none;
  border-radius: 5px;
}

.form button,
.hero button {
  background: red;
  color: white;
  border: none;
  padding: 12px;
  cursor: pointer;
  border-radius: 5px;
  font-weight: bold;
}

.form button:hover,
.hero button:hover {
  background: darkred;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

/* =======================
   SEÇÕES
======================= */
.section {
  padding: 60px 20px;
  text-align: center;
}

.gray {
  background: #f5f5f5;
}

/* GRID */
.grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.card {
  background: white;
  padding: 15px;
  width: 250px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.card img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 10px;

  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease;
}

.card img.show {
  opacity: 1;
  transform: translateY(0);
}

/* =======================
   SERVIÇOS (ANIMAÇÃO SUAVE)
======================= */
.services-select {
  margin: 12px 0;
  text-align: center;

  opacity: 0;
  transform: translateY(-10px);
  max-height: 0;
  overflow: hidden;

  transition: all 0.4s ease;
}

.services-select.show {
  opacity: 1;
  transform: translateY(0);
  max-height: 300px;
}

.services-select p {
  margin-bottom: 10px;
  font-weight: bold;
  color: white;
  font-size: 14px;
}

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

.service-card input {
  display: none;
}

.card-content {
  min-height: 30px;

  background: rgba(255, 255, 255, 0.95);
  border-radius: 12px;

  display: flex;
  justify-content: center;
  align-items: center;

  font-size: 11px;
  font-weight: 500;
  color: #111;

  border: 2px solid transparent;
  transition: all 0.25s ease;
}

.service-card:hover .card-content {
  transform: translateY(-3px) scale(1.02);
}

.service-card input:checked + .card-content {
  border: 2px solid red;
  background: #fff0f0;
  transform: scale(1.04);
}

.service-card:last-child {
  grid-column: 1 / -1;
}

/* =======================
   FADE SCROLL
======================= */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
}

.fade-in.show {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.6s ease;
}

/* =======================
   RESPONSIVO
======================= */
@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.hero.small .overlay {
  pointer-events: none;
}




















#cta-orcamento {
  animation: ctaPulse 2.5s infinite ease-in-out;
}

@keyframes ctaPulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 rgba(255,0,0,0.4);
  }

  50% {
    transform: scale(1.05);
    box-shadow: 0 0 18px rgba(255,0,0,0.6);
  }

  100% {
    transform: scale(1);
    box-shadow: 0 0 0 rgba(255,0,0,0.4);
  }
}

#cta-orcamento:hover {
  animation-play-state: paused;
  transform: scale(1.08);

	

	
	

	
	
	
	
	
	
	
	
	
	
	
	
	