/* =============================================================================
   PETSHOP – stylesServices.css
   Estilos específicos da página de Serviços
   ============================================================================= */


/* =============================================================================
   1. HERO
   ============================================================================= */

.services-hero {
  position: relative;
  padding: 7rem 2rem 4rem;
  text-align: center;
  background: linear-gradient(135deg, #fff8f4, #e8f5e9, #fff3e0);
  overflow: hidden;
}

/* Formas decorativas de fundo */
.services-hero-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.srv-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}

.srv-shape-1 {
  width: 400px;
  height: 400px;
  top: -100px;
  left: -100px;
  background: rgba(255, 145, 77, 0.12);
}

.srv-shape-2 {
  width: 300px;
  height: 300px;
  bottom: 0;
  right: 0;
  background: rgba(76, 175, 80, 0.12);
}

/* Badges de confiança */
.hero-trust-badges {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
  list-style: none;
  padding: 0;
}

.trust-badge {
  padding: 0.5rem 1.25rem;
  border: 2px solid rgba(255, 145, 77, 0.2);
  border-radius: 50px;
  background: white;
  font-weight: 800;
  font-size: 0.85rem;
  color: var(--text-dark);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}


/* =============================================================================
   2. SERVIÇOS DETALHADOS
   ============================================================================= */

.main-services {
  padding: 5rem 2rem;
}

/* Cada serviço é um article com layout de duas colunas */
.service-detail {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 5rem;
  padding-bottom: 5rem;
  border-bottom: 1px solid var(--gray);
}

.service-detail:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

/* Variante espelhada: imagem à direita */
.service-detail--reverse {
  direction: rtl;
}

.service-detail--reverse > * {
  direction: ltr;
}

/* ── Imagem do serviço ── */
.service-detail-img {
  display: flex;
  justify-content: center;
}

.service-img-wrap {
  width: 380px;
  height: 320px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.service-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.service-detail:hover .service-img-wrap img {
  transform: scale(1.04);
}

/* ── Conteúdo do serviço ── */
.service-number {
  font-family: var(--font-display);
  font-size: 4rem;
  line-height: 1;
  color: rgba(255, 145, 77, 0.15);
  margin-bottom: 0.25rem;
}

.service-name {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.service-desc {
  color: var(--text-mid);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* Lista "o que está incluído" */
.service-includes {
  margin-bottom: 1.5rem;
}

.service-includes h3 {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.service-includes ul {
  list-style: none;
  padding: 0;
}

.service-includes ul li {
  padding: 0.3rem 0;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-mid);
}

/* Cards de preço */
.service-prices {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}

.price-card {
  padding: 0.75rem 1.25rem;
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  background: var(--gray-light);
  text-align: center;
  cursor: default;
  transition: var(--transition);
}

.price-card:hover {
  border-color: var(--orange);
  background: rgba(255, 145, 77, 0.08);
}

.price-size {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 0.25rem;
}

.price-val {
  display: block;
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--orange);
}


/* =============================================================================
   3. AGENDAMENTO
   ============================================================================= */

.schedule-section {
  padding: 5rem 2rem;
  background: var(--gray-light);
}

.schedule-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 4rem;
  align-items: start;
}

/* Coluna de texto e benefícios */
.schedule-intro {
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.schedule-benefits {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  list-style: none;
  padding: 0;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.benefit-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.benefit-item strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 800;
}

.benefit-item span {
  font-size: 0.85rem;
  color: var(--text-light);
}

/* Formulário de agendamento */
.schedule-form-wrap {
  background: white;
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
}

.schedule-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.75rem 1rem;
  border: 2px solid var(--gray);
  border-radius: 12px;
  background: var(--gray-light);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-dark);
  outline: none;
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--orange);
  background: white;
  box-shadow: 0 0 0 3px rgba(255, 145, 77, 0.1);
}

.form-group textarea {
  resize: vertical;
}

/* Botão de largura total dentro do formulário */
.btn-full {
  width: 100%;
  justify-content: center;
}


/* =============================================================================
   4. NEWSLETTER
   ============================================================================= */

.newsletter-wrapper {
  padding: 3rem 0;
}


/* =============================================================================
   5. RESPONSIVIDADE
   ============================================================================= */

/* Tablets landscape */
@media (max-width: 1100px) {
  .service-detail {
    grid-template-columns: 300px 1fr;
    gap: 2.5rem;
  }

  .service-img-wrap {
    width: 280px;
    height: 260px;
  }
}

/* Tablets portrait */
@media (max-width: 768px) {
  .service-detail {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .service-detail--reverse {
    direction: ltr;
  }

  /* Imagem sempre em cima */
  .service-detail-img {
    order: -1;
  }

  .service-img-wrap {
    width: 100%;
    max-width: 320px;
    height: 220px;
    margin: 0 auto;
  }

  .service-prices {
    justify-content: center;
  }

  .service-includes ul {
    text-align: left;
    display: inline-block;
  }

  .schedule-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .services-hero {
    padding: 6rem 1.25rem 3rem;
  }

  .service-detail {
    gap: 1.5rem;
    margin-bottom: 3.5rem;
    padding-bottom: 3.5rem;
  }

  .service-name {
    font-size: 1.8rem;
  }

  .schedule-form-wrap {
    padding: 1.5rem;
  }
}