/* ===================================================
   CTA
=================================================== */
.cta-section {      
    --red:        #823249;
    background: var(--red); 
    color: white; 
    text-align: center;
    padding: 64px 24px;
}
.cta-title { font-size: clamp(20px, 3.5vw, 30px); font-weight: 700; line-height: 1.4; margin-bottom: 8px; }
.cta-sub   { font-size: 14px; opacity: 0.85; margin-bottom: 28px; }
.cta-buttons { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.btn-cta-main {
  background: white; color: var(--red);
  padding: 13px 32px; border-radius: 3px;
  font-weight: 700; font-size: 14px; text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
  transition: opacity 0.2s;
}
.btn-cta-main:hover { opacity: 0.9; }
.btn-cta-sub {
  background: transparent; color: white;
  padding: 13px 32px; border-radius: 3px;
  font-weight: 700; font-size: 14px; text-decoration: none;
  border: 2px solid rgba(255,255,255,0.55);
  display: inline-flex; align-items: center; gap: 8px;
  transition: border-color 0.2s;
}
.btn-cta-sub:hover { border-color: white; }
