/* ==========================================================================
   REDAÇÃO CSS PREMIUM - HOME, SERVIÇOS E CLIENTES
   Design Clean, Corporativo e Moderno
   ========================================================================== */

:root {
  --primary-color: #1a56db; /* Azul Moderno Corporativo */
  --primary-hover: #1e40af;
  --bg-color: #f8fafc; /* Fundo super clean */
  --card-bg: #ffffff;
  --text-main: #1e293b;
  --text-muted: #64748b;
  
  --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  
  --radius-md: 0.5rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  
  --transition: all 0.3s ease;
}

/* Reset básico para nossos templates */
.redesign-wrapper {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--text-main);
  background-color: var(--bg-color);
  line-height: 1.6;
}

.redesign-wrapper img {
  max-width: 100%;
  height: auto;
}

/* ==========================================================================
   COMPONENTES GERAIS
   ========================================================================== */

.hero-section {
  padding: 100px 20px;
  background: linear-gradient(135deg, var(--card-bg) 0%, var(--bg-color) 100%);
  text-align: center;
  border-bottom: 1px solid #e2e8f0;
}

.hero-section h1 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 20px;
  color: var(--text-main);
  letter-spacing: -0.025em;
}

.hero-section p {
  font-size: 1.25rem;
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto 40px auto;
}

.btn-primary {
  display: inline-block;
  background-color: var(--primary-color);
  color: #fff;
  padding: 14px 32px;
  border-radius: var(--radius-md);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  color: #fff;
}

.section-title {
  text-align: center;
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 50px;
  color: var(--text-main);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
}

/* ==========================================================================
   GRID DE SERVIÇOS
   ========================================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.service-card {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid #f1f5f9;
  text-align: left;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: #e2e8f0;
}

.service-icon {
  width: 60px;
  height: 60px;
  background-color: #eff6ff;
  color: var(--primary-color);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 24px;
}

.service-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.service-card p {
  color: var(--text-muted);
  margin-bottom: 0;
}

/* ==========================================================================
   GRID DE CLIENTES
   ========================================================================== */
.clients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  align-items: center;
}

.client-logo-card {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  padding: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  aspect-ratio: 3/2;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid #f1f5f9;
}

.client-logo-card:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-md);
}

.client-logo-card img {
  max-height: 60px;
  max-width: 100%;
  filter: grayscale(100%) opacity(60%);
  transition: var(--transition);
}

.client-logo-card:hover img {
  filter: grayscale(0%) opacity(100%);
}

/* ==========================================================================
   DEPOIMENTOS / TESTIMONIALS
   ========================================================================== */
.testimonials-section {
  background-color: #1e293b;
  color: #fff;
  padding: 80px 20px;
  text-align: center;
}

.testimonials-section .section-title {
  color: #fff;
}

.testimonial-card {
  background: #334155;
  padding: 40px;
  border-radius: var(--radius-lg);
  text-align: left;
  max-width: 800px;
  margin: 0 auto;
}

.testimonial-text {
  font-size: 1.25rem;
  font-style: italic;
  margin-bottom: 24px;
  color: #f1f5f9;
}

.testimonial-author {
  font-weight: 600;
  color: #94a3b8;
}
