/* ================================================
   NOSSO-TRABALHO.CSS — Services page specific styles
   Garagem do Ar
   ================================================ */

/* === PAGE HERO === */
.page-hero {
  position: relative;
  width: 100%; min-height: 55vh;
  display: flex; align-items: center;
  background-size: cover; background-position: center top;
}
.page-hero-content {
  position: relative; z-index: 2;
  max-width: 680px;
  padding: 5rem 0 5rem 7%;
  color: white;
  opacity: 0;
  animation: fadeUp 0.9s ease forwards 0.2s;
}
.page-hero-content h1 {
  font-family: var(--ff-heading);
  font-size: clamp(1.9rem, 4.5vw, 3rem);
  font-weight: 900; line-height: 1.1;
  margin-bottom: 1rem;
}
.page-hero-content p { font-size: 1rem; color: rgba(255,255,255,0.8); line-height: 1.7; }
.page-hero-content .lbl { color: var(--clr-orange); }

/* === INTRO SERVIÇOS === */
.servicos-intro {
  padding: 6rem 0;
  background: var(--clr-white);
}
.intro-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.intro-text p {
  font-size: 0.97rem; color: var(--clr-muted);
  line-height: 1.8; margin-bottom: 1.5rem;
}
.servicos-list {
  list-style: none;
  display: flex; flex-direction: column; gap: 0.75rem;
  margin-bottom: 2rem;
}
.servicos-list li {
  display: flex; align-items: flex-start; gap: 0.75rem;
  font-size: 0.93rem; color: var(--clr-text); line-height: 1.6;
}
.servicos-list li i {
  color: var(--clr-orange); margin-top: 0.15rem; flex-shrink: 0; font-size: 0.95rem;
}
.btn-intro-cta {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--ff-body); font-size: 0.95rem; font-weight: 700;
  color: white; background: var(--clr-orange);
  padding: 0.875rem 2rem; border-radius: var(--radius-sm);
  border: none; cursor: pointer; transition: all var(--t);
}
.btn-intro-cta:hover {
  background: var(--clr-orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(249,115,22,0.35);
}

/* Especialista box */
.especialista-box {
  background: var(--clr-bg);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  display: flex; flex-direction: column; gap: 1.25rem;
  position: relative; overflow: hidden;
}
.especialista-box::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--clr-orange), var(--clr-indigo));
}
.esp-avatar {
  width: 64px; height: 64px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--clr-orange), var(--clr-indigo));
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 1.6rem; flex-shrink: 0;
}
.esp-content h3 {
  font-family: var(--ff-heading);
  font-size: 1.1rem; font-weight: 800;
  color: var(--clr-text); margin-bottom: 0.75rem;
}
.esp-content p {
  font-size: 0.88rem; color: var(--clr-muted);
  line-height: 1.75; margin-bottom: 1rem;
}
.esp-tags {
  display: flex; flex-wrap: wrap; gap: 0.5rem;
}
.esp-tags span {
  display: inline-flex; align-items: center; gap: 0.35rem;
  font-size: 0.78rem; font-weight: 600;
  color: var(--clr-indigo);
  background: rgba(79,70,229,0.08);
  padding: 0.3rem 0.75rem; border-radius: 100px;
}
.esp-tags span i { color: var(--clr-orange); font-size: 0.7rem; }

/* === PROCESSO DETALHADO === */
.processo-section {
  padding: 6rem 0;
  background: var(--clr-bg);
}
.processo-header { text-align: center; margin-bottom: 3.5rem; }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.step-item {
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  display: flex; gap: 1.25rem; align-items: flex-start;
  transition: all var(--t);
}
.step-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--clr-orange);
}
.step-num {
  font-family: var(--ff-heading);
  font-size: 2rem; font-weight: 900;
  color: var(--clr-orange);
  line-height: 1; flex-shrink: 0;
  opacity: 0.85;
}
.step-body h3 {
  font-family: var(--ff-heading);
  font-size: 1rem; font-weight: 700;
  color: var(--clr-text); margin-bottom: 0.5rem;
}
.step-body p {
  font-size: 0.88rem; color: var(--clr-muted); line-height: 1.7;
}

/* === CARROSSEL === */
.carousel-section {
  padding: 6rem 0;
  background: var(--clr-white);
}
.carousel-header { text-align: center; margin-bottom: 3rem; }

.carousel-wrapper {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--clr-text);
}

/* Track */
.carousel-track {
  display: flex;
  transition: transform 0.55s cubic-bezier(0.65, 0, 0.35, 1);
  will-change: transform;
}

/* Slides */
.carousel-slide {
  min-width: 100%;
  display: flex;
  flex-direction: column;
}

.slide-img-wrap {
  width: 100%;
  height: 560px;
  overflow: hidden;
  position: relative;
  background: #1B1D2A;
}
.slide-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.carousel-slide.active .slide-img-wrap img { transform: scale(1.02); }

/* Placeholder para slides sem imagem */
.img-placeholder {
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #1B1D2A, #2D2B5B);
}
.placeholder-icon {
  display: flex; flex-direction: column;
  align-items: center; gap: 1rem;
  color: rgba(255,255,255,0.25);
  font-size: 0.95rem; font-weight: 600;
  letter-spacing: 1px; text-transform: uppercase;
}
.placeholder-icon i { font-size: 5rem; color: rgba(249,115,22,0.25); }

/* Caption */
.slide-caption {
  background: var(--clr-indigo-deeper);
  padding: 1.5rem 2rem;
  display: flex; align-items: center; gap: 1.25rem;
}
.caption-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  border-radius: 12px;
  background: rgba(249,115,22,0.15);
  color: var(--clr-orange);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.15rem;
}
.caption-text h4 {
  font-family: var(--ff-heading);
  font-size: 1rem; font-weight: 700;
  color: white; margin-bottom: 0.25rem;
}
.caption-text p {
  font-size: 0.85rem; color: rgba(255,255,255,0.6); line-height: 1.6;
}

/* Setas de navegação */
.carousel-btn {
  position: absolute; top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  border: 1.5px solid rgba(255,255,255,0.25);
  color: white; font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all var(--t);
}
.carousel-btn:hover {
  background: var(--clr-orange);
  border-color: var(--clr-orange);
  transform: translateY(-50%) scale(1.08);
  box-shadow: 0 4px 16px rgba(249,115,22,0.4);
}
.carousel-prev { left: 1.25rem; }
.carousel-next { right: 1.25rem; }

/* Dots */
.carousel-dots {
  position: absolute;
  bottom: 1.25rem;
  left: 50%; transform: translateX(-50%);
  display: flex; gap: 0.5rem; z-index: 10;
}
.dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: all var(--t);
  border: none; padding: 0;
}
.dot.active {
  background: var(--clr-orange);
  width: 24px; border-radius: 4px;
}
.dot:hover { background: rgba(255,255,255,0.75); }
.dot.active:hover { background: var(--clr-orange); }

/* Contador de slides */
.carousel-counter {
  position: absolute;
  top: 1rem; right: 1.5rem; z-index: 10;
  font-family: var(--ff-heading);
  font-size: 0.8rem; font-weight: 700;
  color: rgba(255,255,255,0.7);
  background: rgba(0,0,0,0.35);
  backdrop-filter: blur(6px);
  padding: 0.3rem 0.75rem; border-radius: 100px;
  letter-spacing: 1px;
}

/* === RESPONSIVIDADE === */
@media (max-width: 1024px) {
  .intro-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .page-hero { min-height: 50vh; }
  .page-hero-content { padding: 4rem 0 4rem 5%; max-width: 90%; }
  .servicos-intro, .processo-section, .carousel-section { padding: 4rem 0; }
  .steps-grid { grid-template-columns: 1fr; gap: 1rem; }
  .step-item { padding: 1.5rem; }
  .slide-img-wrap { height: 360px; }
  .carousel-btn { width: 40px; height: 40px; font-size: 0.875rem; }
}

@media (max-width: 480px) {
  .slide-img-wrap { height: 260px; }
  .servicos-list li { font-size: 0.88rem; }
  .page-hero-content h1 { font-size: clamp(1.6rem, 7vw, 2.2rem); }
}