/* ===== VARIÁVEIS DE COR ===== */
:root {
  --primary-color: #3e588b;
  --primary-dark: #2d408a;
  --primary-light: #5a73b3;
  --accent-color: #2ecc71;
  --accent-hover: #27ae60;
  --text-dark: #2c3e50;
  --text-gray: #666666;
  --text-light: #999999;
  --bg-light: #f8f9fa;
  --bg-lighter: #f5f6f7;
  --border-color: #e0e0e0;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.15);
  --radius-sm: 6px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
}

/* ===== RESET GLOBAL ===== */
* {
  box-sizing: border-box;
}

body {
  font-family: 'Open Sans', sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 700;
}

/* ===== FORMULÁRIO ===== */
.u-form form {
  width: 100%;

.pricing-info-text {
  color: var(--text-gray) !important;
  margin: 0 !important;
  font-size: 10px !important;
  line-height: 1.4 !important;
}

.pricing-info-box {
  background: white;
  padding: 1rem;
  border-radius: var(--radius-lg);
  border-left: 5px solid var(--primary-color);
}

.pricing-info-title {
  color: var(--primary-color);
  margin: 0 0 8px 0;
  font-size: 8px !important;
}
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  padding: 0;
  gap: 16px;
}

.u-form label {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text-dark);
  text-align: left;
  width: 100%;
}

.u-form input[type="text"],
.u-form input[type="number"],
.u-form select {
  width: 100%;
  padding: 12px 14px;
  font-size: 14px;
  border: 2px solid var(--border-color);
  border-radius: var(--radius-md);
  background: white;
  color: var(--text-dark);
  transition: all var(--transition-fast);
}

.u-form input[type="text"]:focus,
.u-form input[type="number"]:focus,
.u-form select:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(62, 88, 139, 0.1);
}

.u-form input[type="submit"] {
    padding: 12px 28px;
    margin-top: 8px;
    border: none;
    border-radius: var(--radius-md);
    background-color: #073fac;
    color: white;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-sm);
}

.u-form input[type="submit"]:hover {
  background-color: var(--primary-dark);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.u-form input[type="submit"]:active {
  transform: translateY(0);
}

/* ===== BENEFÍCIOS SECTION ===== */
.benefits-section {
  background: #00BCD4;
  padding: 40px 40px;
}

.benefits-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  max-width: 1400px;
  margin: 0 auto;
}

.benefit-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1rem;
  background: white;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
}

.benefit-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary-color);
  box-shadow: var(--shadow-md);
}

.benefit-icon {
  font-size: 48px;
  display: block;
  margin-bottom: 16px;
  line-height: 1;
}

.benefit-card h3 {
  margin: 0 0 8px 0;
  color: var(--primary-color);
  font-size: 18px;
  font-weight: 700;
}

.benefit-card p {
  color: var(--text-gray);
  font-size: 13px;
  margin: 0;
  line-height: 1.5;
}

/* ===== BACKGROUNDS DAS SEÇÕES ===== */
#sec-edicoes {
  background: #F1F8F6 !important;
}

#sec-about-vendas {
  background: #00BCD4 !important;
}

#carousel_d5c7 {
  background: #FAF7FD !important;
}

#sec-b11b {
  /* background: #F6F9FE !important; */
  background: #00BCD4;
}

/* ===== EDIÇÕES GRID ===== */
.edicoes-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  /* padding: 60px 40px; */
  padding: 40px 0px 40px;
  max-width: 1400px;
  margin: 0 auto;
}

/* Grid responsivo - número de colunas por tamanho de tela */
@media (min-width: 1200px) {
  .edicoes-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 769px) and (max-width: 1199px) {
  .edicoes-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Estilo do card - layout vertical */
.edicao-card {
  background: white;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
}

.edicao-card:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
  transform: translateY(-2px);
}

.edicao-header {
    background: linear-gradient(135deg, #224abe 0%, #1a3a7f 100%);
    /* background: linear-gradient(135deg, #224abe 0%, #1a3a7f 100%); */
    color: white;
    padding: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.edicao-codigo {
  font-weight: bold;
  font-size: 16px;
  letter-spacing: 1px;
}

.badge-preco {
  background: rgba(255,255,255,0.25);
  padding: 6px 16px;
  border-radius: 6px;
  font-weight: bold;
  font-size: 14px;
}

.edicao-body {
  padding: 20px;
  border-bottom: 1px solid #f0f0f0;
}

.edicao-body h2 {
  color: var(--primary-color);
  font-size: 22px;
  margin: 0 0 12px 0;
  font-weight: 700;
}

.edicao-info-row {
  color: #666;
  font-size: 13px;
  margin: 8px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.edicao-content {
  display: flex;
  flex: 1;
  gap: 0;
}

.edicao-premios-wrapper {
  padding: 16px;
  min-width: 200px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.edicao-premios {
  flex: 1;
}

.edicao-premios h4 {
  margin: 0 0 8px 0;
  font-size: 13px;
  color: var(--primary-color);
  font-weight: 700;
}

.edicao-premios ul {
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 12px;
  color: #666;
  line-height: 1.6;
}

.edicao-premios li {
  margin-bottom: 4px;
  text-align: left;
}

.btn {
  padding: 12px 20px;
  border: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-hover) 100%);
  color: white;
  box-shadow: 0 2px 8px rgba(46, 204, 113, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(46, 204, 113, 0.4);
}

.btn-warning {
  background-color: #ffc107;
  color: #333;
}

.btn-warning:hover {
  background-color: #e0a800;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 193, 7, 0.3);
}

.btn-info {
  background-color: #17a2b8;
  color: white;
}

.btn-info:hover {
  background-color: #138496;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(23, 162, 184, 0.3);
}

.btn-escolher {
  width: 100%;
  margin-top: auto;
  pointer-events: auto;
}

.edicao-imagem {
  padding: 16px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-width: 120px !important;
  max-width: 242px !important;
}

.edicao-imagem img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* Layout responsivo dos cards */
@media (min-width: 769px) {
  .edicao-card .edicao-content {
    flex-direction: row !important;
  }
  
  .edicao-card .edicao-info {
    flex: 1 !important;
    border-right: 1px solid #e0e0e0;
  }
  
  .edicao-card .edicao-imagem {
    flex: 0 0 253px !important;
    max-width: 347px;
  }
}

@media (max-width: 768px) {
  .edicao-card .edicao-content {
    flex-direction: row !important;
    gap: 0 !important;
  }
  
  .edicao-card .edicao-premios-wrapper {
    flex: 1;
    min-width: 0;
  }
  
  .edicao-card .edicao-imagem {
    flex: 0 0 200px;
    min-height: 200px;
    padding: 12px !important;
    border-left: 1px solid #e0e0e0;
  }
  
  .edicao-card .edicao-imagem img {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
  }
  
  .edicao-card .btn-escolher {
    margin-top: auto !important;
  }
  
  .edicao-body h2 {
    font-size: 16px;
    margin-bottom: 8px;
  }
  
  .edicao-info-row {
    font-size: 12px;
    margin: 4px 0;
  }
  
  .edicao-premios h4 {
    font-size: 11px;
    margin-bottom: 6px;
  }
  
  .edicao-premios ul {
    font-size: 11px;
    line-height: 1.4;
  }
  
  .edicao-premios li {
    margin-bottom: 2px;
  }
  
  .btn-escolher {
    font-size: 12px;
    padding: 10px 16px;
  }
}

.edicao-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15) !important;
  border-color: var(--primary-color) !important;
}

.edicoes-grid .error-state {
  grid-column: 1 / -1;
  text-align: center;
  padding: 24px 16px;
  color: var(--text-light);
  background: var(--bg-lighter);
  border-radius: var(--radius-lg);
  border: 2px dashed var(--border-color);
}

.edicoes-grid .welcome-message {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  color: white;
  border-radius: var(--radius-lg);
  padding: 48px 32px;
  box-shadow: var(--shadow-md);
  text-align: center;
}

.edicoes-grid .welcome-message h3 {
  font-size: 24px;
  margin: 0 0 12px 0;
  color: white;
  line-height: 1.3;
}

.edicoes-grid .welcome-message p {
  font-size: 15px;
  margin: 0;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.5;
}

/* Estados vazios */
.edicoes-grid .empty-state {
  grid-column: 1 / -1;
  text-align: center;
  padding: 48px 32px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.edicoes-grid .empty-state h3 {
  font-size: 20px;
  margin: 0 0 12px 0;
  line-height: 1.3;
}

.edicoes-grid .empty-state p {
  font-size: 14px;
  margin: 0;
  line-height: 1.6;
}

/* ===== ABOUT CONTENT ===== */
.about-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 40px 0px 40px;
  background: #00BCD4;
}

.about-content .disclaimer {
  background: white;
  padding: 24px;
  border-left: 5px solid var(--primary-color);
  border-radius: var(--radius-lg);
  margin-bottom: 28px;
  box-shadow: var(--shadow-sm);
}

.about-content .disclaimer h3 {
  margin: 0 0 10px 0;
  color: var(--primary-color);
  font-size: 16px;
}

.about-content .disclaimer p {
  margin: 0;
  color: var(--text-gray);
  font-size: 12px;
  line-height: 1.6;
}

.about-content h3 {
  color: var(--primary-color);
  margin: 48px 0 24px 0;
  font-size: 26px;
  font-weight: 700;
}

.how-it-works {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  margin-top: 28px;
}

.step {
  display: flex;
  gap: 12px;
  padding: 20px;
  background: white;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
}

.step:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.step-number {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #1434b2 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: 700;
    font-size: 16px;
    box-shadow: var(--shadow-sm);
    flex-shrink: 0;
}

.step-content h4 {
  margin: 0 0 8px 0;
  color: var(--primary-color);
  font-size: 16px;
  font-weight: 700;
}

.step-content p {
  margin: 0;
  color: var(--text-gray);
  font-size: 13px;
  line-height: 1.6;
}

/* ===== RESPONSIVIDADE ===== */
@media (max-width: 1024px) {
  .about-content {
    padding: 48px 32px;
  }

  .benefits-section {
    padding: 60px 150px;
  }

  .benefits-container {
    gap: 20px;
  }

  .edicoes-grid {
    padding: 48px 32px;
  }

  .how-it-works {
    gap: 20px;
  }
}

@media (max-width: 768px) {
  /* Padding padrão para todas as seções no mobile */
  .benefits-section {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    padding: 40px 20px !important;
  }

  .benefits-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .benefit-card {
    padding: 1rem;
  }

  .benefit-icon {
    font-size: 40px;
    margin-bottom: 12px;
  }

  .benefit-card h3 {
    font-size: 16px;
  }

  .benefit-card p {
    font-size: 12px;
  }

  .about-content {
    padding: 1rem !important;
  }

  .about-content h3 {
    font-size: 22px;
    margin: 32px 0 18px 0;
  }

  .about-content .disclaimer {
    padding: 24px;
    margin-bottom: 32px;
  }

  .how-it-works {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .step {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 16px;
    gap: 12px;
  }

  .step-number {
    width: 36px;
    height: 36px;
    font-size: 16px;
  }

  .edicoes-grid {
    grid-template-columns: 1fr;
    padding: 1rem !important;
    gap: 20px;
  }

  .edicao-content {
    flex-direction: column;
  }

  .edicao-premios-wrapper {
    min-width: 100%;
  }

  .edicao-imagem {
    min-width: 100%;
  }

  #sec-edicoes,
  #sec-about-vendas,
  #carousel_d5c7,
  #sec-b11b {
    padding: 0 !important;
  }

  .carousel-section > div,
  .consult-section > div {
    padding: 20px 20px !important;
  }

  .u-form form {
    max-width: 100%;
  }

  footer {
    padding: 24px 16px;
  }

  /* Menu responsivo */
  .u-nav-container {
    display: none !important;
  }

  .menu-collapse {
    display: block !important;
  }
}

@media (max-width: 480px) {
  /* Mantém padding padrão mesmo em telas muito pequenas */
  .benefits-section {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    padding: 1rem !important;
  }

  .benefits-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .edicoes-grid {
    grid-template-columns: 1fr;
    padding: 1rem !important;
    gap: 16px;
  }

  .edicao-content {
    flex-direction: column;
  }

  .edicao-premios-wrapper {
    min-width: 100%;
  }

  .edicao-imagem {
    min-width: 100%;
  }

  .benefit-card {
    padding: 1rem;
  }

  .benefit-icon {
    font-size: 36px;
  }

  .about-content {
    padding: 1rem !important;
  }

  .step {
    padding: 16px;
    gap: 12px;
  }

  #sec-edicoes,
  #sec-about-vendas,
  #carousel_d5c7,
  #sec-b11b {
    padding: 0 !important;
  }

  footer {
    padding: 20px 12px;
  }

  footer p:first-child {
    font-size: 13px;
  }

  footer p:last-child {
    font-size: 11px;
  }

  footer small {
    font-size: 10px;
  }

  .green-card .seal {
    width: 50px;
    height: 50px;
    right: 10px;
    top: -8px;
  }

  .green-card .seal-icon {
    font-size: 24px;
  }

  .green-card .seal-text {
    font-size: 7px;
  }
}

/* Desktop (≥1200px) - mostrar menu normal, esconder hamburger */
@media (min-width: 1200px) {
  .menu-collapse {
    display: none !important;
  }

  .u-nav-container {
    display: block !important;
  }

  .u-nav-container-collapse {
    display: none !important;
  }
}

/* Tablet e Mobile (≤1199px) - mostrar hamburger, esconder menu normal */
@media (max-width: 1199px) {
  .u-nav-container {
    display: none !important;
  }

  .menu-collapse {
    display: block !important;
  }
}

/* ===== TABELA DE PREÇOS ===== */
.u-table-entity {
  width: 100%;
  border-collapse: collapse;
}

.u-table-header {
  background: #2c3e50;
  color: white;
}

.u-table-header th {
  padding: 16px 12px;
  font-weight: 700;
  font-size: 14px;
  text-align: center;
  border: none;
}

.u-table-entity tbody tr {
  border-bottom: 1px solid var(--border-color);
  transition: background-color var(--transition-fast);
}

.u-table-entity tbody tr:hover {
  background-color: var(--bg-lighter);
}

.u-table-entity tbody td {
  padding: 14px 12px;
  text-align: center;
  font-size: 14px;
  color: var(--text-dark);
}

/* ===== FOOTER ===== */
footer {
  background: var(--primary-dark);
  color: white;
  padding: 32px 20px;
  text-align: center;
  /* margin-top: 60px; */
  border-top: 3px solid var(--primary-color);
}

footer p {
  margin: 0;
  line-height: 1.6;
}

footer p:first-child {
  font-size: 15px;
  margin-bottom: 8px;
  font-weight: 600;
}

footer p:last-child {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.85);
}

footer small {
  display: block;
  margin-top: 6px;
  font-size: 11px;
  opacity: 0.75;
}

/* ===== FORMULÁRIO CONSULTA ===== */
.u-form[style*="max-width: 500px"] {
  background: white;
  padding: 32px 24px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  max-width: 500px;
  margin: 0 auto;
  border-top: 4px solid var(--primary-color);
}

.u-table-entity tbody tr:nth-child(even) {
  background-color: var(--bg-light);
}

.u-table-entity tbody tr:first-child {
  background-color: white;
}

/* ===== SEÇÕES ADICIONAIS ===== */
.carousel-section {
  padding: 40px 40px;
  background: var(--bg-lighter);
}

.carousel-section > div {
  max-width: 1400px;
  margin: 0 auto;
}

.consult-section {
  padding: 40px 40px;
  background: var(--bg-lighter);
}

.consult-section > div {
  max-width: 1400px;
  margin: 0 auto;
}

/* ===== CARD SUSTENTÁVEL ===== */
.green-card {
  background: linear-gradient(135deg, #00B86A 0%, #00A85C 100%);
  padding: 1rem;
  border-radius: var(--radius-lg);
  margin-top: 12px;
  color: white;
  text-align: center;
  border: 2px solid #00B86A;
  position: relative;
}

.green-card .seal {
  position: absolute;
  top: -15px;
  right: 30px;
  background: white;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border: 3px solid #00B86A;
}

.green-card .seal-icon {
  font-size: 40px;
  margin: 0;
}

.green-card .seal-text {
  font-size: 10px;
  font-weight: 700;
  color: #00B86A;
  margin-top: 2px;
}

.green-card h3 {
  color: white;
  margin: 0 0 16px 0;
  font-size: 18px;
  font-weight: 700;
  padding-right: 60px;
}

.green-card p {
  color: rgba(255, 255, 255, 0.95);
  /* margin: 0 0 20px 0; */
  font-size: 10px;
  line-height: 1.8;
  /* padding-right: 60px; */
}

  .btn-green-action {
  background: white;
  color: #00B86A;
  padding: 12px 32px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 700;
  display: inline-block;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-green-action:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* ===== TIPOGRAFIA GERAL ===== */
p {
  color: var(--text-gray);
  font-size: 10px;
}

p:not(.u-text-variant) {
  /* margin-top: 20px; */
}

ul:not(.u-unstyled) {
  margin-top: 1px;
  margin-bottom: 1px;
}
/* ===== PRÊMIOS ===== */
.premios-container {
  /* margin-bottom: 16px; */
  padding: 12px;
  background: #f8f9fa;
  border-radius: 6px;
  border: 1px solid #e9ecef;
}

.premios-container h4 {
  margin: 0 0 8px 0;
  font-size: 14px;
  color: var(--primary-color);
  font-weight: 700;
}

.premios-list {
  margin: 0;
  padding: 0;
  font-size: 13px;
  color: #666;
  line-height: 1.8;
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 4px;
}

.premios-list li {
  break-inside: avoid;
  margin-bottom: 0;
  text-align: left;
}

/* Mobile - Prêmios */
@media (max-width: 768px) {
  .premios-container {
    /* margin-bottom: 12px; */
    padding: 10px;
    font-size: 12px;
  }

  .premios-container h4 {
    font-size: 13px;
    margin: 0 0 6px 0;
  }

  .premios-list {
    padding: 0;
    font-size: 12px;
    line-height: 1.6;
    display: grid;
    grid-template-columns: 1fr;
    gap: 4px;
    list-style: none;
  }

  .premios-list li {
    margin-bottom: 0;
    text-align: left;
  }

  .green-card .seal {
    width: 60px;
    height: 60px;
    right: 15px;
    top: -10px;
  }

  .green-card .seal-icon {
    font-size: 28px;
  }

  .green-card .seal-text {
    font-size: 8px;
  }
}

/* ===== CONTACT SECTION STYLES ===== */
.contact-section-title {
  color: var(--primary-color);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
  margin-top: 0;
}

.contact-section-subtitle {
  color: var(--text-gray);
  font-size: 13px;
  margin-bottom: 40px;
  line-height: 1.6;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto;
}

.contact-column {
  text-align: left;
}

.contact-column h4 {
  color: var(--primary-color);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 16px;
  margin-top: 0;
}

.contact-info {
  line-height: 1.8;
  color: var(--text-gray);
  font-size: 13px;
}

.contact-info p {
  margin: 0 0 16px 0;
}

.contact-info strong {
  color: var(--text-dark);
  display: block;
  margin-bottom: 4px;
  font-weight: 600;
}

.contact-info a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
}

.contact-info a:hover {
  text-decoration: underline;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-family: inherit;
  color: var(--text-dark);
  transition: border-color var(--transition-fast);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(62, 88, 139, 0.1);
}

.contact-form button {
  padding: 12px 24px;
  background: var(--primary-color);
  color: white;
  border: none;
  border-radius: var(--radius-sm);
  font-weight: 600;
  cursor: pointer;
  font-size: 13px;
  transition: background-color var(--transition-fast);
}

.contact-form button:hover {
  background-color: var(--primary-dark);
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 480px) {
  .contact-section-title {
    font-size: 18px;
  }
  
  .contact-section-subtitle {
    font-size: 12px;
  }
  
  .contact-column h4 {
    font-size: 14px;
  }
  
  .contact-info {
    font-size: 12px;
  }
  
  .contact-grid {
    gap: 24px;
  }
}

/* ===== CONSULT CARTELA SECTION STYLES ===== */
.consult-section-title {
  color: var(--primary-color);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
  margin-top: 0;
}

.consult-section-subtitle {
  color: var(--text-gray);
  font-size: 12px;
  margin-bottom: 32px;
  line-height: 1.6;
}

.consult-form-wrapper {
  background: white;
  padding: 28px 24px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  max-width: 500px;
  margin: 0 auto;
  border-top: 4px solid var(--primary-color);
}

.consult-form-wrapper label {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-dark);
  display: block;
}

.consult-form-wrapper select,
.consult-form-wrapper input[type="number"] {
  width: 100%;
  padding: 10px 12px;
  font-size: 13px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  background: white;
  color: var(--text-dark);
  margin-bottom: 16px;
  transition: border-color var(--transition-fast);
}

.consult-form-wrapper select:focus,
.consult-form-wrapper input[type="number"]:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(62, 88, 139, 0.1);
}

.consult-form-wrapper input[type="submit"] {
  width: 100%;
  padding: 11px 24px;
  background: var(--primary-color);
  color: white;
  border: none;
  border-radius: var(--radius-sm);
  font-weight: 600;
  cursor: pointer;
  font-size: 13px;
  transition: background-color var(--transition-fast);
}

.consult-form-wrapper input[type="submit"]:hover {
  background-color: var(--primary-dark);
}

@media (max-width: 480px) {
  .consult-section-title {
    font-size: 18px;
  }
  
  .consult-section-subtitle {
    font-size: 11px;
  }
  
  .consult-form-wrapper {
    padding: 20px 16px;
  }
}

/* ===== PRICING SECTION STYLES ===== */
.pricing-section-title {
  color: var(--primary-color);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
  margin-top: 0;
}

.pricing-section-subtitle {
  color: var(--text-gray);
  font-size: 12px;
  margin-bottom: 12px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.pricing-table-wrapper {
  overflow-x: auto;
  margin-bottom: 32px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.pricing-table-entity {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}

.pricing-table-entity thead {
  background: var(--primary-color);
  color: white;
}

.pricing-table-entity th {
  padding: 0 16px;
  height: 28px;
  line-height: 28px;
  text-align: center;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.5px;
}

.pricing-table-entity td {
  padding: 0 16px;
  height: 28px;
  line-height: 28px;
  text-align: center;
  border-bottom: 1px solid var(--border-color);
  vertical-align: middle;
}

.pricing-table-entity tbody tr:hover {
  background-color: var(--bg-light);
  transition: background-color var(--transition-fast);
}

.pricing-table-entity tbody tr:nth-child(even) {
  background-color: #f9f9f9;
}