/* === PLANO DE SAUDE FACIL - CUSTOM THEME === */

/* Brand Colors */
:root {
  --brand-primary: #0066CC;
  --brand-secondary: #00A651;
  --brand-accent: #25D366;
  --brand-dark: #0f172a;
  --brand-light: #f8fafc;
  --brand-gray: #64748b;
}

/* Typography */
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: #334155;
  line-height: 1.7;
}

/* Header */
.site-header {
  background: linear-gradient(135deg, #0066CC 0%, #004999 100%) !important;
  box-shadow: 0 2px 12px rgba(0,0,0,0.15);
  padding: 0 !important;
}
.site-header .site-title,
.site-header .site-title a {
  color: #fff !important;
  font-size: 22px !important;
  font-weight: 700 !important;
}
.site-header .site-description {
  color: rgba(255,255,255,0.8) !important;
  font-size: 13px !important;
}
.main-navigation .main-nav > ul > li > a {
  color: #fff !important;
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.main-navigation .main-nav > ul > li > a:hover {
  color: #7dd3fc !important;
}

/* Hero section for homepage */
.home .entry-content > p:first-child {
  font-size: 20px;
  color: var(--brand-dark);
  font-weight: 500;
}

/* Content area */
.site-content {
  background: var(--brand-light);
}
.inside-article {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 1px 8px rgba(0,0,0,0.06);
  padding: 40px !important;
  margin-bottom: 24px;
}

/* Headings */
h1.entry-title {
  color: var(--brand-dark);
  font-size: 32px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
}
.entry-content h2 {
  color: var(--brand-primary);
  font-size: 24px;
  font-weight: 700;
  margin-top: 40px;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 3px solid #e2e8f0;
}
.entry-content h3 {
  color: var(--brand-dark);
  font-size: 20px;
  font-weight: 600;
}

/* Tables */
.entry-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(0,0,0,0.08);
}
.entry-content table thead th {
  background: var(--brand-primary);
  color: #fff;
  padding: 14px 16px;
  font-weight: 600;
  font-size: 14px;
  text-align: left;
}
.entry-content table td {
  padding: 12px 16px;
  border-bottom: 1px solid #e2e8f0;
  font-size: 15px;
}
.entry-content table tr:nth-child(even) {
  background: #f8fafc;
}
.entry-content table tr:hover {
  background: #f0f7ff;
}

/* CTA boxes */
.cta-cotacao {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  padding: 32px;
  border-radius: 16px;
  text-align: center;
  margin: 32px 0;
  box-shadow: 0 4px 16px rgba(37,211,102,0.3);
}
.cta-cotacao p {
  color: #fff;
  margin-bottom: 16px;
  font-size: 20px;
  font-weight: 600;
}
.cta-cotacao .btn-whatsapp {
  display: inline-block;
  background: #fff;
  color: #128C7E;
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 18px;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  transition: all 0.3s ease;
}
.cta-cotacao .btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
  background: #f0fdf4;
}

/* Cotacao form page */
#cotacao-form {
  max-width: 480px !important;
  margin: 0 auto !important;
  padding: 40px !important;
  background: #fff !important;
  border-radius: 20px !important;
  box-shadow: 0 8px 32px rgba(0,0,0,0.1) !important;
}
#cotacao-form h2 {
  color: var(--brand-dark) !important;
  font-size: 28px !important;
  border: none !important;
  margin-bottom: 4px !important;
  padding-bottom: 0 !important;
}
#cotacao-form input,
#cotacao-form select {
  border: 2px solid #e2e8f0 !important;
  border-radius: 10px !important;
  padding: 16px !important;
  font-size: 16px !important;
  transition: border-color 0.2s;
}
#cotacao-form input:focus,
#cotacao-form select:focus {
  border-color: var(--brand-primary) !important;
  outline: none;
  box-shadow: 0 0 0 3px rgba(0,102,204,0.1);
}
#cotacao-form button[type="submit"] {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%) !important;
  border-radius: 12px !important;
  padding: 18px !important;
  font-size: 18px !important;
  font-weight: 700 !important;
  box-shadow: 0 4px 16px rgba(37,211,102,0.3) !important;
  transition: all 0.3s ease !important;
}
#cotacao-form button[type="submit"]:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 24px rgba(37,211,102,0.4) !important;
}

/* Footer */
.site-footer {
  background: var(--brand-dark) !important;
  color: rgba(255,255,255,0.7) !important;
  padding: 40px 0 !important;
}
.site-footer a {
  color: #7dd3fc !important;
}

/* Sidebar */
.widget {
  background: #fff;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 1px 6px rgba(0,0,0,0.06);
  margin-bottom: 20px;
}
.widget-title {
  color: var(--brand-dark);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 3px solid var(--brand-primary);
}

/* Floating WhatsApp button */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,0.4);
  z-index: 9999;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37,211,102,0.5);
}
.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: #fff;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .inside-article { padding: 20px !important; }
  h1.entry-title { font-size: 24px; }
  .entry-content h2 { font-size: 20px; }
  .cta-cotacao { padding: 24px; }
  .cta-cotacao .btn-whatsapp { padding: 14px 24px; font-size: 16px; }
  #cotacao-form { padding: 24px !important; }
}

/* Trust badges area */
.trust-badges {
  display: flex;
  justify-content: center;
  gap: 32px;
  padding: 24px;
  margin: 20px 0;
  flex-wrap: wrap;
}
.trust-badge {
  text-align: center;
  color: var(--brand-gray);
  font-size: 13px;
}
.trust-badge strong {
  display: block;
  color: var(--brand-dark);
  font-size: 24px;
  margin-bottom: 4px;
}
