/* Variáveis CSS para cores - Melhorando o contraste */
:root {
  --color-primary: #0ea5e9; /* Azul mais intenso para melhor contraste */
  --color-secondary: #16a34a; /* Verde mais intenso */
  --color-tertiary: #ea580c; /* Laranja mais vibrante */
  --color-background: #f8fafc; /* Fundo mais claro */
  --color-text: #0f172a; /* Texto mais escuro para melhor leitura */
  --color-muted: #475569; /* Texto secundário mais escuro para legibilidade */
  --border-radius: 8px;
  --box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Sombra mais definida */
  --section-padding: 35px 0;
  --card-padding: 14px;
  --gap-small: 6px;
  --gap-medium: 10px;
  --gap-large: 16px;
  
  /* Novas variáveis para ícones */
  --icon-small: 20px;
  --icon-medium: 24px;
  --icon-large: 32px;
  
  /* Novas variáveis para tipografia */
  --heading-shadow: 0 1px 3px rgba(0,0,0,0.1);
  --letter-spacing-normal: 0.01em;
  --letter-spacing-wide: 0.03em;
}

/* Estilos Gerais - Melhorando a legibilidade */
body {
  margin: 0;
  font-family: 'Segoe UI', Roboto, Arial, sans-serif; /* Fonte mais moderna e legível */
  background: linear-gradient(135deg, #f1f5f9 0%, #0f172a 100%); /* Gradiente mais suave */
  color: var(--color-text); /* Usando variável para texto */
  line-height: 1.6; /* Aumentando o espaçamento entre linhas */
  letter-spacing: var(--letter-spacing-normal); /* Espaçamento sutil entre letras */
  -webkit-font-smoothing: antialiased; /* Suavização de fontes */
  -moz-osx-font-smoothing: grayscale; /* Suavização de fontes no Firefox */
}

/* Estilos para ícones SVG em todo o site */
.icon-container {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.icon-small {
  width: var(--icon-small);
  height: var(--icon-small);
}

.icon-medium {
  width: var(--icon-medium);
  height: var(--icon-medium);
}

.icon-large {
  width: var(--icon-large);
  height: var(--icon-large);
}

/* Estilos para o cabeçalho */
.header {
  position: relative;
  padding: 2rem 0;
  overflow: hidden;
  border-radius: 0 0 1.5rem 1.5rem;
  background: linear-gradient(to right, #0b1120, #0f172a);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

.header-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 70% 30%, rgba(56, 189, 248, 0.3) 0%, rgba(15, 23, 42, 0) 50%);
  z-index: 0;
}

.header-content {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  z-index: 1;
}

.header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.header-logo-group {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.header-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  background-color: #ffffff;
  border-radius: 0.8rem;
  box-shadow: 0 4px 10px -2px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(56, 189, 248, 0.15);
  transition: transform 0.3s ease;
}

.header-logo img {
  max-height: 60px;
  width: auto;
}

.header-logo:hover {
  transform: translateY(-3px);
}

.header-title-container {
  padding-left: 0.6rem;
  border-left: 2px solid rgba(56, 189, 248, 0.5);
}

.header-title {
  margin: 0;
  font-size: 1.75rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.025em;
}

.header-subtitle {
  margin: 0;
  color: #94a3b8;
  font-size: 0.875rem;
}

.header-infos {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.header-info {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background-color: rgba(15, 23, 42, 0.5);
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(56, 189, 248, 0.2);
  transition: all 0.2s ease;
}

.header-info:hover {
  background-color: rgba(15, 23, 42, 0.7);
  border-color: rgba(56, 189, 248, 0.4);
  transform: translateY(-2px);
}

.header-info .icon {
  flex-shrink: 0;
}

.header-info span {
  color: #e2e8f0;
  font-size: 0.875rem;
  font-weight: 500;
  white-space: nowrap;
}

.header-main {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.header-headline {
  font-size: 3rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 1.25rem;
  letter-spacing: -0.025em;
}

.header-headline-sub {
  font-size: 2rem;
  font-weight: 600;
  color: #94a3b8;
}

.gradient-text {
  background: linear-gradient(to right, #38bdf8, #0ea5e9);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.header-desc {
  color: #cbd5e1;
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto 2rem;
}

.header-tags {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.header-tag {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: 500;
  transition: transform 0.2s ease;
}

.header-tag:hover {
  transform: translateY(-2px);
}

.header-tag.blue {
  background-color: rgba(56, 189, 248, 0.1);
  color: #38bdf8;
  border: 1px solid rgba(56, 189, 248, 0.3);
}

.header-tag.gray {
  background-color: rgba(148, 163, 184, 0.1);
  color: #cbd5e1;
  border: 1px solid rgba(148, 163, 184, 0.3);
}

.icon-small {
  width: 16px;
  height: 16px;
}

/* Media queries para responsividade */
@media (max-width: 768px) {
  .header-row {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 2rem;
  }
  
  .header-infos {
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 1rem;
  }
  
  .header-headline {
    font-size: 2.25rem;
  }
  
  .header-headline-sub {
    font-size: 1.5rem;
  }
  
  .header-logo-group {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .header {
    padding: 1.5rem 0;
  }
  
  .header-headline {
    font-size: 1.75rem;
  }
  
  .header-headline-sub {
    font-size: 1.25rem;
  }
  
  .header-info {
    padding: 0.4rem 0.75rem;
  }
}

/* Seções de Serviços */
.services-section {
  padding: var(--section-padding);
  background: linear-gradient(135deg, #f1f5f9 0%, #e0f2fe 100%); /* Gradiente mais suave */
  color: var(--color-text);
}

.section-container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px; /* Reduzido de 24px */
}

.section-title-group {
  text-align: center;
  margin-bottom: 30px; /* Reduzido de 40px */
}

.section-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--color-primary); /* Cor primária mais contrastante */
  margin-bottom: 12px;
  text-shadow: var(--heading-shadow); /* Sombra sutil para destaque */
  letter-spacing: var(--letter-spacing-wide); /* Espaçamento maior entre letras para títulos */
}

.section-desc {
  font-size: 1.1rem;
  color: var(--color-muted); /* Texto secundário com melhor contraste */
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
  letter-spacing: var(--letter-spacing-normal);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); /* Reduzido de 230px */
  gap: 16px; /* Reduzido de 24px */
}

.service-card {
  background: rgba(255,255,255,0.9); /* Fundo mais opaco para melhor contraste */
  border-radius: 10px;
  box-shadow: var(--box-shadow);
  padding: 18px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.3s, transform 0.3s;
  border: 1px solid rgba(14, 165, 233, 0.1); /* Borda sutil para definir melhor os limites */
}

.service-card:hover {
  box-shadow: 0 8px 32px 0 rgba(56,189,248,0.18);
  transform: translateY(-8px);
}

.service-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1); /* Sombra sutil */
}

.service-bg-blue {
  background: linear-gradient(90deg, var(--color-primary), #38bdf8); /* Gradiente usando variáveis */
}

.service-bg-gray {
  background: linear-gradient(90deg, #64748b, #334155); /* Mantendo o contraste */
}

.service-title {
  font-size: 1.2rem;
  font-weight: 700; /* Mais negrito para melhor leitura */
  color: var(--color-text);
  margin-bottom: 10px; /* Aumentado de 8px para dar mais espaço */
  text-align: center;
  letter-spacing: 0.01em; /* Espaçamento sutil entre letras */
}

.service-desc {
  color: var(--color-muted);
  text-align: center;
  font-size: 0.95rem;
  line-height: 1.5; /* Melhorando a legibilidade */
}

.services-software {
  margin-top: 25px; /* Reduzido de 32px */
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px; /* Reduzido de 12px */
  background: linear-gradient(90deg, #38bdf8, #334155);
  color: #fff;
  padding: 12px 24px; /* Reduzido de 14px 28px */
  border-radius: 999px;
  font-size: 1.05rem; /* Reduzido de 1.125rem */
  font-weight: 600;
}

/* Seção de Vantagens */
.advantages-section {
  padding: var(--section-padding);
  background: var(--color-background);
  text-align: center;
}

.advantages-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px; /* Reduzido de 16px */
}

.advantage-card {
  background: #fff;
  border-radius: var(--border-radius);
  padding: var(--card-padding);
  box-shadow: var(--box-shadow);
  transition: box-shadow 0.3s, transform 0.3s;
  flex: 1 1 210px;
  min-height: 180px;
  border: 1px solid rgba(0,0,0,0.05); /* Borda sutil */
}

.advantage-card:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  transform: translateY(-5px);
}

.advantage-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 12px;
  letter-spacing: 0.01em;
}

.advantage-list {
  list-style-type: none; /* Remove marcadores */
  padding: 0;
  text-align: left; /* Melhor para listas */
}

.advantage-list li {
  font-size: 0.95rem;
  color: var(--color-muted);
  margin-bottom: 10px; /* Aumentado de 8px para dar mais espaço */
  position: relative;
  padding-left: 18px; /* Espaço para o ícone de marcador */
  line-height: 1.5; /* Melhorando a legibilidade */
}

.advantage-list li:before {
  content: '✓'; /* Ícone de check */
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: bold;
}

.advantages-bottom {
  margin-top: 16px; /* Reduzido de 20px */
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px; /* Reduzido de 10px */
}

.advantages-quality {
  display: flex;
  align-items: center;
  gap: 8px; /* Reduzido de 10px */
  font-size: 1.35rem; /* Reduzido de 1.5rem */
  color: var(--color-secondary);
  transition: color 0.3s;
}

.advantages-quality:hover {
  color: var(--color-primary); /* Mudança de cor ao passar o mouse */
}

/* Seção de Orçamento */
.budget-section {
  padding-top: 25px;
  padding-bottom: var(--section-padding);
  background: var(--color-background);
  text-align: center;
}

.budget-highlights {
  display: flex;
  justify-content: center;
  gap: 14px; /* Reduzido de 16px */
  margin-bottom: 20px; /* Reduzido de 24px */
}

.budget-highlight {
  background: #fff;
  border-radius: var(--border-radius);
  padding: var(--card-padding);
  box-shadow: var(--box-shadow);
  flex: 1 1 170px;
  min-height: 120px;
  transition: box-shadow 0.3s, transform 0.3s;
  border: 1px solid rgba(0,0,0,0.05);
}

.budget-highlight:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  transform: translateY(-5px);
}

.budget-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 10px;
  color: var(--color-primary); /* Cor uniforme para ícones */
}

.budget-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 10px; /* Aumentado de 8px */
  letter-spacing: 0.01em;
}

.budget-desc {
  font-size: 0.95rem;
  color: var(--color-muted);
  line-height: 1.5;
}

/* Tabela de Orçamento */
.budget-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  overflow: hidden; /* Para garantir que o border-radius seja aplicado */
}

.budget-table th, .budget-table td {
  border: 1px solid #e2e8f0;
  padding: 12px; /* Aumentado de 10px */
  text-align: left;
  color: var(--color-text);
}

.budget-table th {
  background: var(--color-primary);
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.budget-table tbody tr:hover {
  background: rgba(14, 165, 233, 0.05); /* Usando a cor primária com transparência */
}

.budget-subtotal, .budget-install, .budget-total {
  font-weight: bold;
  background: #e0f2fe; /* Fundo leve para destacar */
}

.budget-subtotal {
  color: var(--color-text); /* Usando a variável de cor do texto */
}

.budget-install {
  color: var(--color-text); /* Usando a variável de cor do texto */
}

.budget-total {
  color: var(--color-text); /* Usando a variável de cor do texto */
}

.budget-conditions-grid {
  margin-top: 20px; /* Reduzido de 24px */
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); /* Reduzido de 220px */
  gap: 10px; /* Reduzido de 12px */
}

.budget-condition {
  background: #fff;
  border-radius: var(--border-radius);
  padding: var(--card-padding);
  box-shadow: var(--box-shadow);
  min-height: 110px; /* Altura mínima para uniformidade */
}

.budget-cond-title {
  font-size: 1.1rem; /* Reduzido de 1.2rem */
  font-weight: bold;
  color: #1e293b;
}

.budget-cond-desc {
  font-size: 0.95rem; /* Reduzido de 1rem */
  color: #64748b;
}

/* Seção de Termos */
.terms-section {
  padding: var(--section-padding);
  background: var(--color-background);
  text-align: center;
}

.terms-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px; /* Reduzido de 16px */
  margin-bottom: 25px; /* Reduzido de 30px */
}

.term-card {
  background: #fff;
  border-radius: var(--border-radius);
  padding: 18px;
  box-shadow: var(--box-shadow);
  flex: 1 1 170px;
  min-height: 170px;
  transition: box-shadow 0.3s, transform 0.3s;
  border: 1px solid rgba(0,0,0,0.05);
}

.term-card:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  transform: translateY(-5px); /* Efeito de elevação */
}

.term-title {
  font-size: 1.35rem; /* Reduzido de 1.5rem */
  font-weight: bold;
  color: #1e293b;
  margin-bottom: 10px; /* Aumentado de 8px */
  letter-spacing: 0.01em;
}

.term-desc {
  font-size: 0.95rem; /* Reduzido de 1rem */
  color: #475569; /* Cor mais escura para melhor legibilidade */
  line-height: 1.5; /* Aumentando para melhor legibilidade */
}

.terms-bottom-grid {
  margin-top: 25px; /* Reduzido de 32px */
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px; /* Reduzido de 24px */
}

.terms-docs, .terms-info {
  flex: 1 1 280px; /* Reduzido de 290px */
  background: #fff;
  border-radius: var(--border-radius);
  padding: var(--card-padding);
  box-shadow: var(--box-shadow);
  margin: 0 6px; /* Reduzido de 8px */
}

.terms-docs-title, .terms-info-title {
  font-size: 1.1rem; /* Reduzido de 1.2rem */
  font-weight: bold;
  color: #1e293b;
  margin-bottom: 12px; /* Reduzido de 15px */
}

.terms-docs-list {
  list-style-type: none; /* Remove marcadores */
  padding: 0;
  text-align: left; /* Alinha texto à esquerda */
}

.terms-docs-list li {
  font-size: 0.95rem; /* Reduzido de 1rem */
  color: #64748b;
  margin-bottom: 8px; /* Reduzido de 10px */
}

.terms-info-block {
  background: #e0f2fe;
  padding: 8px; /* Reduzido de 10px */
  border-radius: 6px; /* Reduzido de 8px */
  margin-top: 8px; /* Reduzido de 10px */
  color: #1e293b;
}

/* Seção de Contato */
.contact-section {
  padding: var(--section-padding);
  background: var(--color-background);
  text-align: center;
  position: relative;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px; /* Reduzido de 16px */
  margin-bottom: 25px; /* Reduzido de 30px */
}

.contact-card {
  background: #fff;
  border-radius: var(--border-radius);
  padding: 18px;
  box-shadow: var(--box-shadow);
  flex: 1 1 260px;
  transition: box-shadow 0.3s, transform 0.3s;
  border: 1px solid rgba(0,0,0,0.05);
}

.contact-card:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  transform: translateY(-5px); /* Efeito de elevação */
}

.contact-card-title {
  font-size: 1.35rem; /* Reduzido de 1.5rem */
  font-weight: bold;
  color: #1e293b;
  margin-bottom: 14px; /* Aumentado de 12px */
  letter-spacing: 0.01em;
}

.contact-card-desc {
  font-size: 0.95rem; /* Reduzido de 1rem */
  color: #475569; /* Cor mais escura para melhor legibilidade */
  margin-bottom: 16px; /* Reduzido de 20px */
  line-height: 1.6; /* Aumentando para melhor legibilidade */
}

.contact-channels {
  display: flex;
  flex-direction: column;
  gap: 12px; /* Reduzido de 15px */
}

.contact-channel {
  display: flex;
  align-items: center;
  gap: 8px; /* Reduzido de 10px */
  background: #e0f2fe;
  padding: 8px; /* Reduzido de 10px */
  border-radius: 6px; /* Reduzido de 8px */
}

.contact-channel-title {
  font-weight: bold;
  color: #1e293b; /* Cor do título do canal */
}

.contact-channel-desc {
  color: #64748b; /* Cor da descrição do canal */
}

.contact-side {
  flex: 1 1 260px; /* Reduzido de 290px */
  background: #fff;
  border-radius: var(--border-radius);
  padding: 18px; /* Reduzido de 25px */
  box-shadow: var(--box-shadow);
}

.contact-side-title {
  font-size: 1.35rem; /* Reduzido de 1.5rem */
  font-weight: bold;
  color: #1e293b;
  margin-bottom: 12px; /* Reduzido de 15px */
}

.contact-side-desc {
  font-size: 0.95rem; /* Reduzido de 1rem */
  color: #64748b;
  margin-bottom: 16px; /* Reduzido de 20px */
}

.contact-side-highlights {
  display: flex;
  flex-direction: column;
  gap: 12px; /* Reduzido de 15px */
}

.contact-highlight {
  display: flex;
  justify-content: space-between;
  background: #e0f2fe;
  padding: 8px; /* Reduzido de 10px */
  border-radius: 6px; /* Reduzido de 8px */
}

.contact-highlight-value {
  font-size: 1.5rem;
  font-weight: bold;
  color: #1e293b; /* Cor do valor do destaque */
}

.contact-highlight-desc {
  color: #64748b; /* Cor da descrição do destaque */
}

.contact-bottom {
  margin-top: 25px; /* Reduzido de 32px */
}

.contact-bottom-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: #1e293b; /* Cor do título da parte inferior */
}

.contact-bottom-desc {
  font-size: 1rem;
  color: #64748b; /* Cor da descrição da parte inferior */
}

/* Footer com melhor contraste */
.footer {
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  color: #fff;
  padding: 40px 0 20px 0;
}

.footer-container {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); /* Reduzido de 220px */
  gap: 36px; /* Reduzido de 48px */
  padding: 0 20px; /* Reduzido de 24px */
}

.footer-logo-group {
  display: flex;
  align-items: center;
  gap: 14px; /* Reduzido de 16px */
  margin-bottom: 20px; /* Reduzido de 24px */
}

.footer-logo {
  width: 42px; /* Reduzido de 48px */
  height: 42px; /* Reduzido de 48px */
  background: linear-gradient(135deg, #38bdf8 0%, #0ea5e9 100%);
  border-radius: 10px; /* Reduzido de 12px */
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-title {
  font-size: 1.25rem;
  font-weight: bold;
  color: var(--color-primary);
  letter-spacing: 0.02em;
}

.footer-subtitle {
  color: #e2e8f0; /* Cor mais clara para melhor contraste */
  font-size: 1rem;
}

.footer-desc {
  color: #e2e8f0; /* Cor mais clara para melhor contraste */
  margin-bottom: 14px; /* Reduzido de 16px */
  font-size: 0.95rem; /* Reduzido de 1rem */
  line-height: 1.6; /* Melhorando legibilidade */
}

.footer-cert {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #38bdf8;
  font-size: 0.95rem;
}

.footer-heading {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 14px;
  letter-spacing: 0.02em;
  text-shadow: 0 1px 2px rgba(0,0,0,0.1); /* Sutil sombra para destaque */
}

.footer-contact div {
  margin-bottom: 6px; /* Reduzido de 8px */
  font-size: 0.95rem; /* Reduzido de 1rem */
}

.footer-services {
  list-style: none;
  padding: 0;
  color: #cbd5e1;
  font-size: 1rem;
}

.footer-services li {
  margin-bottom: 10px; /* Aumentado de 8px */
  position: relative;
  padding-left: 20px;
  line-height: 1.4; /* Melhorando legibilidade */
}

.footer-services li:before {
  content: '→'; /* Ícone de seta */
  position: absolute;
  left: 0;
  color: var(--color-primary);
}

.footer-attendance {
  color: #cbd5e1;
  font-size: 1rem;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-bottom {
  max-width: 1120px;
  margin: 25px auto 0 auto; /* Reduzido de 32px */
  padding: 0 20px; /* Reduzido de 24px */
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px; /* Reduzido de 8px */
  color: #94a3b8;
  font-size: 0.9rem; /* Reduzido de 0.95rem */
}

.footer-bottom > div:last-child {
  display: flex;
  gap: 16px;
  justify-content: center;
}

.footer-bottom span {
  cursor: pointer; /* Indica que é clicável */
  transition: color 0.2s;
}

.footer-bottom span:hover {
  color: #38bdf8; /* Efeito de hover */
}

/* Responsividade aprimorada */
@media (max-width: 900px) {
  :root {
    --section-padding: 30px 0;
  }
  
  .header-row {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
  
  .header-infos {
    flex-direction: column;
    gap: 10px;
  }
  
  .section-title-group {
    margin-bottom: 25px;
  }
  
  .footer-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 600px) {
  :root {
    --section-padding: 25px 0;
    --card-padding: 16px;
  }
  
  body {
    line-height: 1.5; /* Reduzindo um pouco para economizar espaço em telas pequenas */
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .section-desc {
    font-size: 1rem;
    line-height: 1.5;
  }
  
  .header-headline {
    font-size: 2.2rem; /* Reduzido de 2.4rem */
    line-height: 1.2;
  }
  
  .header-headline-sub {
    font-size: 1.5rem; /* Reduzido de 1.6rem */
  }
  
  .header-desc {
    line-height: 1.5;
    font-size: 1.05rem;
  }
  
  .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  }
  
  .advantage-card, .budget-highlight, .term-card {
    flex: 1 1 140px;
  }
}

.icon {
  transition: transform 0.3s, fill 0.3s;
}

.icon:hover {
  transform: scale(1.1); /* Aumenta o ícone ao passar o mouse */
  fill: #38bdf8; /* Muda a cor ao passar o mouse */
}

.header-info {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(30,41,59,0.5);
  padding: 8px 16px;
  border-radius: 8px;
  color: #cbd5e1;
  font-size: 1rem;
}

.header-info svg {
  width: 20px;
  height: 20px;
  fill: none;
  viewBox: 0 0 24 24;
  class: icon;
}

.header-info svg .icon-bg {
  rect {
    x: 4;
    y: 4;
    width: 16;
    height: 16;
    rx: 2;
    fill: #0ea5e9;
    class: icon-bg;
  }
}

.header-info svg .icon-border {
  rect {
    x: 4;
    y: 4;
    width: 16;
    height: 16;
    rx: 2;
    stroke: #38bdf8;
    stroke-width: 2;
    class: icon-border;
  }
}

.header-info svg .icon-inner {
  rect {
    x: 9;
    y: 9;
    width: 6;
    height: 6;
    rx: 1;
    fill: #fff;
    class: icon-inner;
  }
}

.header-info span {
  font-size: 1rem;
  color: #cbd5e1;
}

/* Adicionar classe de destaque para texto gradiente */
.gradient-text {
  background-image: linear-gradient(135deg, #38bdf8, #0ea5e9);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  display: inline-block;
  font-weight: bold;
}

/* Melhorando a legibilidade dos textos */
p, li, td, th, div {
  line-height: 1.6;
}

.card-text, .service-desc, .advantage-list li, .term-desc, .budget-desc, .contact-card-desc {
  font-size: 1rem;
  line-height: 1.6;
}

/* Destaque para links e elementos interativos */
a, button, .clickable {
  color: var(--color-primary);
  text-decoration: none;
  transition: all 0.2s ease;
}

a:hover, button:hover, .clickable:hover {
  color: #38bdf8;
  text-decoration: underline;
}

/* Melhorando legibilidade de títulos */
h1, h2, h3, h4, h5, h6, .header-title, .section-title, .card-title {
  line-height: 1.3;
  margin-top: 0.5em;
  margin-bottom: 0.5em;
}

/* Destacando textos importantes */
.highlight, .bold, strong, b {
  font-weight: 600;
  color: #0f172a;
}

/* Melhorando a aparência das tabelas */
table {
  border-collapse: separate;
  border-spacing: 0;
  width: 100%;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  margin: 1em 0;
}

table th {
  background-color: var(--color-primary);
  color: white;
  font-weight: 600;
  text-align: left;
  padding: 12px;
  border-bottom: 2px solid #e2e8f0;
}

table td {
  padding: 10px 12px;
  border-bottom: 1px solid #e2e8f0;
}

table tr:last-child td {
  border-bottom: none;
}

table tr:nth-child(even) {
  background-color: #f8fafc;
}

/* Seção de Proposta que substitui o footer */
.proposal-section {
  padding: 40px 0 50px;
  background: linear-gradient(to bottom, #f8fafc, #e0f2fe);
  border-top: 1px solid rgba(0,0,0,0.05);
}

.section-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 15px;
}

.proposal-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 0;
}

.proposal-card {
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  padding: 18px;
  transition: transform 0.3s, box-shadow 0.3s;
  border: 1px solid rgba(14, 165, 233, 0.15);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.proposal-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: var(--color-primary);
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
}

.proposal-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(14, 165, 233, 0.12);
}

.proposal-card-title {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  border-bottom: 1px solid rgba(14, 165, 233, 0.1);
  padding-bottom: 8px;
}

.proposal-card-title svg {
  color: var(--color-primary);
  width: 20px;
  height: 20px;
}

.proposal-card-title h3 {
  font-size: 1.1rem;
  color: var(--color-primary);
  margin: 0;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.proposal-card-content {
  padding-left: 6px;
}

.proposal-card-content p {
  margin-bottom: 5px;
  font-size: 0.85rem;
  line-height: 1.4;
  color: #334155;
}

/* Detalhes da proposta */
.proposal-details {
  margin-top: 12px;
  padding: 10px;
  background: rgba(14, 165, 233, 0.05);
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.proposal-detail {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px dashed rgba(14, 165, 233, 0.2);
  padding-bottom: 6px;
}

.proposal-detail:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.detail-label {
  font-weight: 600;
  color: #475569;
  font-size: 0.85rem;
}

.detail-value {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--color-primary);
}

/* Estilos para as informações do cliente */
.client-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.info-group {
  padding-bottom: 8px;
  border-bottom: 1px solid #f1f5f9;
}

.info-group:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.info-label {
  font-weight: 600;
  color: #475569;
  min-width: 60px;
  display: inline-block;
  font-size: 0.85rem;
}

/* Tornar o texto mais compacto */
.proposal-card strong.text-highlight {
  font-size: 0.95rem;
}

strong {
  font-weight: 600;
}

@media (max-width: 1200px) {
  .proposal-cards {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  }
}

@media (max-width: 768px) {
  .proposal-cards {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .proposal-card {
    padding: 16px;
  }
  
  .proposal-card-title h3 {
    font-size: 1rem;
  }
}

/* Estilos para informações compactas */
.compact-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 0.85rem;
}

.compact-info p {
  margin-bottom: 3px;
}

.info-row {
  display: flex;
  align-items: center;
  gap: 5px;
  flex-wrap: wrap;
  margin-bottom: 3px;
}

.info-icon {
  font-size: 0.85rem;
  margin-right: 3px;
  opacity: 0.8;
}

.ml-10 {
  margin-left: 10px;
}

/* Fazer o texto destacado um pouco mais visível */
.text-highlight {
  color: var(--color-primary);
}

/* Estilos para área de assinatura no card do cliente */
.signature-area {
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px dashed #d1d5db;
}

.signature-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #475569;
  margin-bottom: 8px;
  text-align: center;
}

.signature-space {
  height: 40px; /* Espaço dedicado para a assinatura */
  margin-bottom: 2px;
}

.signature-line {
  height: 1px;
  background-color: #334155;
  margin: 0 0 12px;
}

.signature-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
}

.signature-date {
  font-size: 0.8rem;
  color: #475569;
}

.stamp-area {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stamp-circle {
  width: 60px;
  height: 60px;
  border: 1px dashed #94a3b8;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.6;
}

.stamp-circle span {
  font-size: 0.7rem;
  color: #94a3b8;
  font-style: italic;
}

@media (max-width: 400px) {
  .signature-row {
    flex-direction: column;
    gap: 10px;
  }
  
  .signature-date {
    align-self: flex-start;
  }
  
  .stamp-area {
    align-self: flex-end;
  }
}

/* Estilos para o logo na proposta */
.proposal-logo-container {
  display: flex;
  justify-content: center;
  margin-bottom: 15px;
  padding: 10px;
  background-color: #ffffff;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(14, 165, 233, 0.1);
}

.proposal-logo {
  width: 130px;
  height: auto;
  object-fit: contain;
}

@media (max-width: 768px) {
  .proposal-logo {
    width: 110px;
  }
}

.centered-logistics {
  text-align: center;
  margin: 0 auto;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.centered-logistics .advantage-icon {
  margin: 0 auto;
  display: flex;
  justify-content: center;
}

.centered-logistics .advantage-title {
  text-align: center;
  margin-bottom: 15px;
}

.centered-logistics .advantage-list {
  display: inline-block;
  text-align: left;
  margin: 0 auto;
  list-style-position: inside;
}