/*
Theme Name: Shoptimizer Child Theme
Theme URI: 
Description: Child theme of Shoptimizer — header JOOG (logo | menu | ícones + busca animada).
Author: Rafael Silva
Author URI: 
Template: shoptimizer
Version: 1.3.0
License:         	GNU General Public License v2 or later
License URI:     	http://www.gnu.org/licenses/gpl-2.0.html
*/


/*
description product default
*/

.pd-container {
  background: #ffffff;
  color: #1f2937;
  border: 1px solid #dbe3f0;
  border-radius: 20px;
  padding: 24px;
  box-sizing: border-box;
  line-height: 1.6;
  font-family: Arial, Helvetica, sans-serif;
}

.pd-section {
  margin-bottom: 28px;
}

.pd-section-alt {
  background: #f8fbff;
  border: 1px solid #d6e2f5;
  border-radius: 18px;
  padding: 18px;
}

.pd-hero {
  align-items: center;
}

.pd-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}

.pd-flex-reverse {
  flex-direction: row-reverse;
}

.pd-col {
  flex: 1 1 260px;
  min-width: 260px;
}

.pd-badge {
  display: inline-block;
  background: #eaf1fb;
  color: #0034a4;
  border: 1px solid #d6e2f5;
  border-radius: 999px;
  padding: 8px 14px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.4px;
  margin-bottom: 16px;
}

.pd-title {
  margin: 0 0 14px 0;
  color: #0034a4;
  line-height: 1.25;
}

.pd-subtitle {
  margin: 0 0 12px 0;
  color: #0034a4;
  line-height: 1.3;
}

.pd-text {
  margin: 0 0 10px 0;
  color: #1f2937;
}

.pd-text:last-child {
  margin-bottom: 0;
}

.pd-text-muted {
  color: #4b5563;
}

.pd-list-check {
  margin: 0;
  padding: 0;
  list-style: none;
}

.pd-list-check li {
  position: relative;
  margin: 0 0 8px 0;
  padding-left: 22px;
  color: #1f2937;
}

.pd-list-check li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #0034a4;
  font-weight: 700;
}

.pd-card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.pd-card {
  flex: 1 1 180px;
  box-sizing: border-box;
  border: 1px solid #d6e2f5;
  border-radius: 16px;
  padding: 14px;
  background: #ffffff;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.pd-card-soft {
  background: #f8fbff;
}

.pd-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(0, 52, 164, 0.10);
}

.pd-highlight-line {
  border-left: 4px solid #0034a4;
  padding-left: 14px;
}

.pd-img-wrap {
  background: #f8fbff;
  border: 1px solid #d6e2f5;
  border-radius: 20px;
  padding: 14px;
  box-sizing: border-box;
}

.pd-img-responsive {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 18px;
}

.pd-specs-table-wrapper {
  overflow-x: auto;
  border: 1px solid #dbe3f0;
  border-radius: 16px;
}

.pd-specs-table {
  width: 100%;
  min-width: 520px;
  border-collapse: collapse;
}

.pd-specs-table th {
  background: #eaf1fb;
  color: #0034a4;
  border: 1px solid #cfdcf1;
  padding: 12px;
  text-align: left;
}

.pd-specs-table td {
  background: #ffffff;
  color: #1f2937;
  border: 1px solid #dbe3f0;
  padding: 12px;
  text-align: left;
}

.pd-faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pd-faq-item {
  background: #f8fbff;
  border: 1px solid #d6e2f5;
  border-radius: 16px;
  padding: 16px;
}

.pd-cta-box {
  background: #f8fbff;
  border: 1px solid #d6e2f5;
  border-radius: 18px;
  padding: 22px;
  text-align: center;
}

.pd-btn-primary,
.pd-btn-secondary {
  display: inline-block;
  text-decoration: none;
  border-radius: 999px;
  padding: 12px 22px;
  font-weight: 700;
  transition: all 0.25s ease;
}

.pd-btn-primary {
  background: #0034a4;
  color: #ffffff;
  border: 1px solid #0034a4;
  box-shadow: 0 8px 18px rgba(0, 52, 164, 0.14);
}

.pd-btn-secondary {
  background: #ffffff;
  color: #0034a4;
  border: 1px solid #0034a4;
}

.pd-btn-primary:hover,
.pd-btn-secondary:hover {
  filter: brightness(1.06);
  transform: translateY(-1px);
}

@media (max-width: 767px) {
  .pd-container {
    padding: 18px;
    border-radius: 16px;
  }

  .pd-section-alt,
  .pd-cta-box {
    padding: 16px;
    border-radius: 16px;
  }

  .pd-img-wrap {
    padding: 10px;
    border-radius: 16px;
  }

  .pd-img-responsive {
    border-radius: 14px;
  }

  .pd-specs-table {
    min-width: 480px;
  }

  .pd-btn-primary,
  .pd-btn-secondary {
    width: 100%;
    text-align: center;
    box-sizing: border-box;
    margin-bottom: 10px;
  }

  .pd-btn-secondary {
    margin-bottom: 0;
  }
}