:root{
  --primary: #ff7a00;
  --primary-600: #e66e00;
  --primary-100: #ffe9d6;
  --text: #1f2328;
  --muted: #6b7280;
  --radius-xl: 1.25rem;
  --shadow-sm: 0 6px 20px rgba(0,0,0,.06);
}

/* Reset */
*{ box-sizing: border-box; }

body{
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: url("fotos/plano_fundo.jpg") center/cover no-repeat fixed;
}

/* Bootstrap theme */
.text-primary,
a.text-primary,
.navbar-brand.text-primary{ color: var(--primary) !important; }

.btn-primary{
  --bs-btn-bg: var(--primary);
  --bs-btn-border-color: var(--primary);
  --bs-btn-hover-bg: var(--primary-600);
  --bs-btn-hover-border-color: var(--primary-600);
  --bs-btn-focus-shadow-rgb: 255,122,0;
}

.rounded-4{ border-radius: var(--radius-xl) !important; }
.shadow-sm{ box-shadow: var(--shadow-sm) !important; }

/* Navbar */
.nav-link{ font-weight: 500; }
.nav-link.active{ color: var(--primary) !important; }

/* HERO */
.hero-section{
  background: #f5f5f5;
  padding: 80px 0;
}

.hero-text h1{
  font-size: 3rem;
  font-weight: 700;
  color: #000;
}

.hero-text p{ color: #000; }

.hero-stats .stat-box{
  background: var(--primary-600);
  padding: 15px 20px;
  border-radius: 8px;
  text-align: center;
  color: #fff;
  min-width: 120px;
}

#galleryCarousel {
  aspect-ratio: 14 / 9;
}

#galleryCarousel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 15px;
}




@media (max-width:768px){
  #galleryCarousel img{ max-height: 300px; }
}

/* Serviços */
.service-card{
  position: relative;
  height: 260px;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0,0,0,.1);
  transition: transform .3s ease, box-shadow .3s ease;
}

.service-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,.18);
}

.service-card img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s ease;
}

.service-card:hover img{
  transform: scale(1.05);
}

/* Overlay serviços */
.service-overlay{
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 20px;
  background: linear-gradient(to top, rgba(0,0,0,.65), rgba(0,0,0,.15));
}

.service-overlay h4{
  color: #fff;
  font-weight: 700;
  margin: 0;
}

/* Accordion */
.custom-accordion .accordion-button{
  border-radius: .75rem !important;
  background: #fff;
  border: 1px solid #ececec;
  font-weight: 600;
}

.custom-accordion .accordion-button:not(.collapsed){
  background: var(--primary-100);
}

.custom-accordion .accordion-button::after{
  content: "+";
  font-weight: 700;
  color: var(--primary);
}

.custom-accordion .accordion-button:not(.collapsed)::after{
  content: "–";
}

/* WhatsApp */
.whatsapp-float{
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 58px;
  height: 58px;
  border-radius: 999px;
  background: #25D366;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 1.8rem;
  box-shadow: 0 10px 30px rgba(37,211,102,.35);
  z-index: 1040;
}

/* Footer icons */
.social-icon{
  font-size: 1.8rem;
  color: #6c757d;
  transition: transform .2s ease, color .2s ease;
}

.social-icon:hover{
  color: var(--primary);
  transform: scale(1.15);
}

/* Video controls */
video::-webkit-media-controls{ opacity: 1; }
/* Remove completamente a seta padrão do Bootstrap */
.custom-accordion .accordion-button::after {
  background-image: none !important;
  content: "+" !important;
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--primary);
  transform: none !important;
}

/* Quando aberto, vira – */
.custom-accordion .accordion-button:not(.collapsed)::after {
  content: "–" !important;
  color: var(--primary-600);
}
