/**
 * GSD Shortcodes Plugin Styles
 * Sistema modular de estilos para todos os shortcodes
 */

/* ================================================
   ESTILOS GLOBAIS
   ================================================ */

/* Mensagens de erro e aviso */
.gsd-error {
  background: #ffebee;
  color: #c62828;
  padding: 15px;
  border-radius: 8px;
  margin: 20px 0;
  text-align: center;
  border: 1px solid #ffcdd2;
  font-weight: 500;
}

.gsd-no-data {
  background: #fff3e0;
  color: #e65100;
  padding: 15px;
  border-radius: 8px;
  margin: 20px 0;
  text-align: center;
  border: 1px solid #ffcc02;
  font-style: italic;
}

/* ================================================
   MÓDULO: PRICE TABLE (VALORES SCOLLA - CÓPIA EXATA)
   ================================================ */

/**
 * Valores Scolla Plugin Styles
 * Estilos para tabela de preços responsiva
 */

/* Mensagens de erro */
.valores-error {
  background: #ffebee;
  color: #c62828;
  padding: 15px;
  border-radius: 8px;
  margin: 20px 0;
  text-align: center;
  border: 1px solid #ffcdd2;
  font-weight: 500;
}

/* Container principal */
.valores-scolla-container {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  padding: 60px 20px;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

/* Overlay para melhorar legibilidade do texto */
.valores-scolla-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.1);
  z-index: 1;
  pointer-events: none;
}

/* Container do conteúdo */
.valores-content {
  max-width: 1200px;
  width: 100%;
  text-align: center;
  position: relative;
  z-index: 2;
}

/* Título principal */
.valores-titulo-principal {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  line-height: 1.2;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* Texto principal */
.valores-texto-principal {
  font-size: 1.2rem;
  margin-bottom: 40px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
  font-weight: 400;
}

/* Grid dos cards */
.valores-grid {
  display: grid;
  gap: 20px;
  margin-top: 40px;
  justify-content: center;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  align-items: stretch;
}

.valores-grid .valores-card {
  width: 100%;
  min-width: 0;
}

/* Layout para diferentes quantidades de blocos */
.valores-grid[data-blocos="1"] {
  grid-template-columns: 1fr;
  max-width: 300px;
  margin: 40px auto 0;
}

.valores-grid[data-blocos="2"] {
  grid-template-columns: repeat(2, 300px);
  max-width: 620px;
  margin: 40px auto 0;
  justify-content: center;
}

.valores-grid[data-blocos="3"] {
  grid-template-columns: repeat(3, 300px);
  max-width: 940px;
  margin: 40px auto 0;
  justify-content: center;
}

.valores-grid[data-blocos="4"] {
  grid-template-columns: repeat(3, 300px);
  max-width: 940px;
  margin: 40px auto 0;
  justify-content: center;
}

.valores-grid[data-blocos="4"] .valores-card:nth-child(4) {
  grid-column: 2;
  grid-row: 2;
}

.valores-grid[data-blocos="5"] {
  grid-template-columns: repeat(3, 300px);
  max-width: 940px;
  margin: 40px auto 0;
  justify-content: center;
}

.valores-grid[data-blocos="5"] .valores-card:nth-child(4) {
  grid-column: 1;
  grid-row: 2;
}

.valores-grid[data-blocos="5"] .valores-card:nth-child(5) {
  grid-column: 2;
  grid-row: 2;
}

.valores-grid[data-blocos="6"] {
  grid-template-columns: repeat(3, 300px);
  max-width: 940px;
  margin: 40px auto 0;
  justify-content: center;
}

/* Card individual */
.valores-card {
  background: #555555;
  border-radius: 0;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  min-height: 260px;
  max-height: 260px;
  border: none;
  position: relative;
  width: 300px;
}

.valores-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: #666666;
  opacity: 1;
  transition: opacity 0.3s ease;
}

.valores-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
}

.valores-card:hover::before {
  opacity: 1;
}

/* Header do card */
.valores-card-header {
  background: #333333;
  color: white;
  padding: 15px 15px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.valores-card-header::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  transform: rotate(45deg);
  transition: all 0.5s;
  opacity: 0;
}

.valores-card:hover .valores-card-header::before {
  animation: shine 0.5s ease-in-out;
}

@keyframes shine {
  0% {
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: translateX(100%) translateY(100%) rotate(45deg);
    opacity: 0;
  }
}

/* Título do card */
.valores-card-titulo {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0;
  line-height: 1.2;
  position: relative;
  z-index: 1;
  color: white;
  text-transform: uppercase;
}

/* Body do card */
.valores-card-body {
  padding: 15px 15px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  background: #555555;
}

/* Preço */
.valores-preco {
  font-size: 2.2rem;
  font-weight: 700;
  color: white;
  margin-bottom: 4px;
  margin-top: 0;
  line-height: 1.1;
}

/* Condições */
.valores-condicoes {
  font-size: 0.9rem;
  color: #cccccc;
  margin-bottom: 0;
  line-height: 1.3;
  font-weight: 400;
}

/* Footer do card */
.valores-card-footer {
  padding: 12px 15px;
  text-align: center;
  background: #555555;
}

/* Botão */
.valores-btn {
  background: #777777;
  color: white !important;
  padding: 12px 24px;
  text-decoration: none !important;
  border-radius: 0;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  min-width: 140px;
}

.valores-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s;
}

.valores-btn:hover::before {
  left: 100%;
}

.valores-btn:hover {
  background: #666666;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  color: white !important;
  text-decoration: none !important;
}

.valores-btn:active {
  transform: translateY(0px);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Estilos adicionais para JavaScript do valores-scolla */
.valores-btn.loading {
  opacity: 0.7;
  pointer-events: none;
}

.valores-btn .ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: scale(0);
  animation: ripple-animation 0.6s linear;
  pointer-events: none;
}

@keyframes ripple-animation {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

.valores-scolla-container.background-loaded {
  transition: opacity 0.3s ease;
}

.valores-card.in-viewport {
  opacity: 1;
  transform: translateY(0);
}

.valores-card.animated {
  opacity: 1;
  transform: translateY(0);
}

/* Melhorias para acessibilidade */
.valores-btn:focus {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

.valores-card:focus-within {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
}

/* Indicador de loading */
.valores-btn.loading::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 10px;
  width: 12px;
  height: 12px;
  margin-top: -6px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top: 2px solid white;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Animações de entrada */
.valores-card {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.6s ease forwards;
}

.valores-card:nth-child(1) {
  animation-delay: 0.1s;
}
.valores-card:nth-child(2) {
  animation-delay: 0.2s;
}
.valores-card:nth-child(3) {
  animation-delay: 0.3s;
}
.valores-card:nth-child(4) {
  animation-delay: 0.4s;
}
.valores-card:nth-child(5) {
  animation-delay: 0.5s;
}
.valores-card:nth-child(6) {
  animation-delay: 0.6s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsividade para tablets */
@media (max-width: 1024px) {
  .valores-grid[data-blocos="4"],
  .valores-grid[data-blocos="5"],
  .valores-grid[data-blocos="6"] {
    grid-template-columns: repeat(2, 300px);
    max-width: 620px;
    margin: 40px auto 0;
    justify-content: center;
  }

  .valores-grid[data-blocos="4"] .valores-card:nth-child(4) {
    grid-column: 1;
    grid-row: 2;
  }

  .valores-grid[data-blocos="4"] .valores-card:nth-child(4)::after {
    content: "";
    grid-column: 2;
    grid-row: 2;
  }

  .valores-grid[data-blocos="3"] {
    grid-template-columns: repeat(2, 300px);
    max-width: 620px;
    margin: 40px auto 0;
    justify-content: center;
  }

  .valores-grid[data-blocos="3"] .valores-card:nth-child(3) {
    grid-column: 1;
    grid-row: 2;
  }

  .valores-grid[data-blocos="5"] .valores-card:nth-child(4),
  .valores-grid[data-blocos="5"] .valores-card:nth-child(5) {
    grid-column: auto;
    grid-row: auto;
  }
}

/* Responsividade para mobile */
@media (max-width: 768px) {
  .valores-grid {
    grid-template-columns: 1fr !important;
    gap: 15px;
    max-width: 300px !important;
    margin: 30px auto 0 !important;
    justify-content: center !important;
  }

  .valores-card {
    width: 100% !important;
    max-width: 300px !important;
    min-height: 240px !important;
    max-height: 240px !important;
  }

  .valores-grid[data-blocos="4"] .valores-card:nth-child(4),
  .valores-grid[data-blocos="3"] .valores-card:nth-child(3),
  .valores-grid[data-blocos="5"] .valores-card:nth-child(4),
  .valores-grid[data-blocos="5"] .valores-card:nth-child(5) {
    grid-column: 1 !important;
    grid-row: auto !important;
  }

  .valores-titulo-principal {
    font-size: 2rem;
    margin-bottom: 15px;
  }

  .valores-texto-principal {
    font-size: 1.1rem;
    margin-bottom: 30px;
  }

  .valores-preco {
    font-size: 2rem;
  }

  .valores-scolla-container {
    padding: 40px 15px;
  }

  .valores-card-body {
    padding: 12px 12px;
  }

  .valores-card-footer {
    padding: 10px 12px;
  }
}

/* Responsividade para mobile pequeno */
@media (max-width: 480px) {
  .valores-titulo-principal {
    font-size: 1.8rem;
  }

  .valores-texto-principal {
    font-size: 1rem;
  }

  .valores-preco {
    font-size: 1.8rem;
    margin-bottom: 3px;
  }

  .valores-card-titulo {
    font-size: 1rem;
  }

  .valores-btn {
    padding: 10px 20px;
    font-size: 0.8rem;
    min-width: 120px;
  }

  .valores-card-header {
    padding: 12px 10px;
  }

  .valores-card-body {
    padding: 10px 10px;
  }

  .valores-card-footer {
    padding: 8px 10px;
  }

  .valores-scolla-container {
    padding: 30px 10px;
  }

  .valores-card {
    min-height: 220px !important;
    max-height: 220px !important;
  }
}

/* Suporte para temas escuros */
@media (prefers-color-scheme: dark) {
  .valores-card {
    background: #444444;
    border: 1px solid rgba(255, 255, 255, 0.1);
  }

  .valores-card-header {
    background: #222222;
  }

  .valores-card-body {
    background: #444444;
  }

  .valores-card-footer {
    background: #444444;
  }

  .valores-preco {
    color: #ffffff;
  }

  .valores-condicoes {
    color: #bbbbbb;
  }

  .valores-btn {
    background: #666666;
  }

  .valores-btn:hover {
    background: #555555;
  }
}

/* Performance - reduzir motion para usuários sensíveis */
@media (prefers-reduced-motion: reduce) {
  .valores-card {
    animation: none;
    opacity: 1;
    transform: none;
  }

  .valores-card:hover {
    transform: none;
  }

  .valores-btn:hover {
    transform: none;
  }

  * {
    transition: none !important;
    animation: none !important;
  }
}

/* Melhorias para impressão */
@media print {
  .valores-scolla-container {
    background: none !important;
    box-shadow: none;
    padding: 20px 0;
  }

  .valores-card {
    break-inside: avoid;
    box-shadow: 0 0 0 1px #ddd;
    margin-bottom: 20px;
  }

  .valores-btn {
    display: none;
  }
}

/* ================================================
   MÓDULO: PROGRAMMING ACCORDION
   ================================================ */

/* Container do acordeão */
.gsd-programming-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

/* Acordeão */
.gsd-programming-accordion {
  display: grid;
  gap: 20px;
  align-items: start; /* Importante para evitar expansão cruzada */
}

/* Colunas do acordeão */
.gsd-accordion-column {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* Layouts de colunas */
.gsd-accordion-2-columns {
  grid-template-columns: repeat(2, 1fr);
}

.gsd-accordion-1-columns {
  grid-template-columns: 1fr;
}

.gsd-accordion-3-columns {
  grid-template-columns: repeat(3, 1fr);
}

/* Item do acordeão */
.gsd-accordion-item {
  background: #f8f9fa;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.gsd-accordion-item:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Header do acordeão */
.gsd-accordion-header {
  background: #d7d7d7;
  padding: 15px 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

.gsd-accordion-header:hover {
  background: #c0c0c0;
}

.gsd-accordion-item.active .gsd-accordion-header {
  background: #b0b0b0;
}

.gsd-accordion-header h4 {
  margin: 0;
  font-size: 1.1em;
  font-weight: 600;
  color: #495057;
}

/* Ícone do acordeão */
.gsd-accordion-icon {
  font-size: 1.5em;
  font-weight: bold;
  color: #6c757d;
  transition: transform 0.3s ease;
}

.gsd-accordion-item.active .gsd-accordion-icon {
  transform: rotate(45deg);
}

/* Conteúdo do acordeão */
.gsd-accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-in-out;
  background: #fff;
  border-left: 3px solid #d7d7d7;
}

.gsd-accordion-item.active .gsd-accordion-content {
  max-height: 2000px;
  transition: max-height 0.6s ease-in-out;
}

.gsd-accordion-body {
  padding: 20px;
  color: #495057;
  line-height: 1.6;
}

/* ================================================
   MÓDULO: DOCUMENTATION
   ================================================ */

/* Container da documentação */
.gsd-documentation-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

/* Header da documentação */
.gsd-docs-header {
  text-align: center;
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 2px solid #e9ecef;
}

.gsd-docs-header h2 {
  color: #333;
  margin-bottom: 10px;
  font-size: 2.2em;
}

.gsd-docs-header p {
  color: #666;
  font-size: 1.1em;
}

/* Documentação completa */
.gsd-docs-module {
  background: white;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  margin-bottom: 30px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.gsd-docs-module-header {
  background: #f8f9fa;
  padding: 20px;
  border-bottom: 1px solid #e9ecef;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.gsd-docs-module-header h3 {
  margin: 0;
  color: #333;
  font-size: 1.4em;
}

.gsd-docs-version {
  background: #007cba;
  color: white;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 0.8em;
  font-weight: 600;
}

.gsd-docs-module-content {
  padding: 25px;
}

.gsd-docs-description {
  color: #666;
  font-size: 1em;
  margin-bottom: 20px;
  line-height: 1.6;
}

/* Shortcode display */
.gsd-docs-shortcode {
  margin-bottom: 25px;
}

.gsd-docs-shortcode label {
  display: block;
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
}

.gsd-copy-container {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.gsd-shortcode-example {
  background: #f1f3f4;
  padding: 8px 12px;
  border-radius: 4px;
  font-family: "Courier New", monospace;
  color: #d73a49;
  border: 1px solid #e1e4e8;
  flex: 1;
  min-width: 200px;
}

.gsd-copy-btn {
  background: #007cba;
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.9em;
  transition: background-color 0.3s ease;
}

.gsd-copy-btn:hover {
  background: #005a87;
}

/* Campos meta */
.gsd-docs-fields h4 {
  color: #333;
  margin-bottom: 15px;
  font-size: 1.1em;
}

.gsd-docs-fields ul {
  list-style: none;
  padding: 0;
}

.gsd-docs-fields li {
  background: #f8f9fa;
  padding: 10px;
  margin-bottom: 8px;
  border-radius: 4px;
  border-left: 4px solid #007cba;
}

/* Documentação compacta */
.gsd-docs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.gsd-docs-card {
  background: white;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.gsd-docs-card h4 {
  margin-top: 0;
  color: #333;
}

/* Documentação em lista */
.gsd-shortcodes-list {
  list-style: none;
  padding: 0;
}

.gsd-shortcode-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  background: white;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  margin-bottom: 10px;
}

.gsd-shortcode-name {
  font-weight: 600;
  color: #333;
  min-width: 150px;
}

/* ================================================
   RESPONSIVIDADE
   ================================================ */

/* Tablets */
@media (max-width: 768px) {
  /* Price Table */
  .gsd-price-table.grid-2,
  .gsd-price-table.grid-3,
  .gsd-price-table.grid-4,
  .gsd-price-table.grid-5,
  .gsd-price-table.grid-6 {
    grid-template-columns: repeat(2, 1fr);
    max-width: 640px;
  }

  .gsd-price-card {
    width: 280px;
  }

  /* Programming Accordion - tablets em uma coluna */
  .gsd-accordion-2-columns,
  .gsd-accordion-3-columns {
    grid-template-columns: 1fr;
  }

  /* Documentation */
  .gsd-docs-grid {
    grid-template-columns: 1fr;
  }

  .gsd-shortcode-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .gsd-copy-container {
    width: 100%;
  }
}

/* Mobile */
@media (max-width: 480px) {
  /* Price Table */
  .gsd-price-table {
    grid-template-columns: 1fr !important;
    max-width: 320px !important;
  }

  .gsd-price-card {
    width: 100%;
    max-width: 300px;
  }

  .gsd-price-table-container {
    padding: 40px 15px;
    min-height: 400px;
  }

  .gsd-card-header {
    padding: 15px;
  }

  .gsd-card-content {
    padding: 20px 15px;
  }

  .gsd-price-value {
    font-size: 1.8em;
  }

  /* Programming Container */
  .gsd-programming-container {
    padding: 15px;
  }

  /* Acordeão responsivo - sempre uma coluna em mobile */
  .gsd-programming-accordion {
    grid-template-columns: 1fr !important;
  }

  .gsd-accordion-header {
    padding: 12px 15px;
  }

  .gsd-accordion-header h4 {
    font-size: 1em;
  }

  .gsd-accordion-body {
    padding: 15px;
  }

  /* Documentation */
  .gsd-documentation-container {
    padding: 15px;
  }

  .gsd-docs-module-content {
    padding: 20px 15px;
  }

  .gsd-copy-container {
    flex-direction: column;
    align-items: stretch;
  }

  .gsd-shortcode-example {
    min-width: unset;
    margin-bottom: 10px;
  }
}

/* Responsividade para tablets valores-scolla */
@media (max-width: 1024px) {
  .valores-grid[data-blocos="4"],
  .valores-grid[data-blocos="5"],
  .valores-grid[data-blocos="6"] {
    grid-template-columns: repeat(2, 300px);
    max-width: 620px;
    margin: 40px auto 0;
    justify-content: center;
  }

  .valores-grid[data-blocos="4"] .valores-card:nth-child(4) {
    grid-column: 1;
    grid-row: 2;
  }

  .valores-grid[data-blocos="4"] .valores-card:nth-child(4)::after {
    content: "";
    grid-column: 2;
    grid-row: 2;
  }

  .valores-grid[data-blocos="3"] {
    grid-template-columns: repeat(2, 300px);
    max-width: 620px;
    margin: 40px auto 0;
    justify-content: center;
  }

  .valores-grid[data-blocos="3"] .valores-card:nth-child(3) {
    grid-column: 1;
    grid-row: 2;
  }

  .valores-grid[data-blocos="5"] .valores-card:nth-child(4),
  .valores-grid[data-blocos="5"] .valores-card:nth-child(5) {
    grid-column: auto;
    grid-row: auto;
  }
}

/* Responsividade para mobile valores-scolla */
@media (max-width: 768px) {
  .valores-grid {
    grid-template-columns: 1fr !important;
    gap: 15px;
    max-width: 300px !important;
    margin: 30px auto 0 !important;
    justify-content: center !important;
  }

  .valores-card {
    width: 100% !important;
    max-width: 300px !important;
    min-height: 240px !important;
    max-height: 240px !important;
  }

  .valores-grid[data-blocos="4"] .valores-card:nth-child(4),
  .valores-grid[data-blocos="3"] .valores-card:nth-child(3),
  .valores-grid[data-blocos="5"] .valores-card:nth-child(4),
  .valores-grid[data-blocos="5"] .valores-card:nth-child(5) {
    grid-column: 1 !important;
    grid-row: auto !important;
  }

  .valores-titulo-principal {
    font-size: 2rem;
    margin-bottom: 15px;
  }

  .valores-texto-principal {
    font-size: 1.1rem;
    margin-bottom: 30px;
  }

  .valores-preco {
    font-size: 2rem;
  }

  .valores-scolla-container {
    padding: 40px 15px;
  }

  .valores-card-body {
    padding: 12px 12px;
  }

  .valores-card-footer {
    padding: 10px 12px;
  }
}

/* Responsividade para mobile pequeno valores-scolla */
@media (max-width: 480px) {
  .valores-titulo-principal {
    font-size: 1.8rem;
  }

  .valores-texto-principal {
    font-size: 1rem;
  }

  .valores-preco {
    font-size: 1.8rem;
    margin-bottom: 3px;
  }

  .valores-card-titulo {
    font-size: 1rem;
  }

  .valores-btn {
    padding: 10px 20px;
    font-size: 0.8rem;
    min-width: 120px;
  }

  .valores-card-header {
    padding: 12px 10px;
  }

  .valores-card-body {
    padding: 10px 10px;
  }

  .valores-card-footer {
    padding: 8px 10px;
  }

  .valores-scolla-container {
    padding: 30px 10px;
  }

  .valores-card {
    min-height: 220px !important;
    max-height: 220px !important;
  }
}

/* Suporte para temas escuros valores-scolla */
@media (prefers-color-scheme: dark) {
  .valores-card {
    background: #444444;
    border: 1px solid rgba(255, 255, 255, 0.1);
  }

  .valores-card_header {
    background: #222222;
  }

  .valores-card-body {
    background: #444444;
  }

  .valores-card-footer {
    background: #444444;
  }

  .valores-preco {
    color: #ffffff;
  }

  .valores-condicoes {
    color: #bbbbbb;
  }

  .valores-btn {
    background: #666666;
  }

  .valores-btn:hover {
    background: #555555;
  }
}

/* Performance - reduzir motion para usuários sensíveis valores-scolla */
@media (prefers-reduced-motion: reduce) {
  .valores-card {
    animation: none;
    opacity: 1;
    transform: none;
  }

  .valores-card:hover {
    transform: none;
  }

  .valores-btn:hover {
    transform: none;
  }

  .valores-card * {
    transition: none !important;
    animation: none !important;
  }
}

/* Melhorias para impressão valores-scolla */
@media print {
  .valores-scolla-container {
    background: none !important;
    box-shadow: none;
    padding: 20px 0;
  }

  .valores-card {
    break-inside: avoid;
    box-shadow: 0 0 0 1px #ddd;
    margin-bottom: 20px;
  }

  .valores-btn {
    display: none;
  }
}

/* ================================================
   RESPONSIVIDADE GSD MODULES
   ================================================ */
