/*
  promo-copa.css
  CSS exclusivo da página promoCopa — não altera main.css, style.css ou novos_planos.css
*/

/* ── VARIÁVEIS ── */
:root {
  --pc-verde:   #00A651;
  --pc-amarelo: #F5C400;
  --pc-azul:    #003DA5;
  --pc-laranja: #ff7043;
  --pc-escuro:  #0f1923;
}

/* ── FONTE ── */
body,
.section3 h3,
.section3 h4,
.section3 h5,
.section3 p,
.plan-name,
.plan-header,
.price-main,
.price-old,
.price-sub,
.economy-info,
.benefits-card-horizontal h4,
.benefit-item-h,
.comparison-title-fixed,
.card-title,
.card-text {
  font-family: 'Rubik', sans-serif !important;
}

/* ── SCROLLBAR PADRÃO ── */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #353535; }
::-webkit-scrollbar-thumb { background: #d4552f; }
::-webkit-scrollbar-thumb:hover { background: #a74426; }

/* ── BOLAS ESPORTIVAS DECORATIVAS no banner ── */
#banner { position: relative; overflow: hidden; }

.sport-ball-promo {
  position: absolute;
  opacity: 0.06;
  pointer-events: none;
  user-select: none;
  animation: pc-spin-float 12s ease-in-out infinite;
  z-index: 0;
  font-size: 60px;
}
.sport-ball-promo.pb1 { top: 5%;   right: 3%;   font-size: 80px;  animation-delay: 0s;   animation-duration: 14s; }
.sport-ball-promo.pb2 { bottom: 5%; left: 2%;   font-size: 50px;  animation-delay: 2s;   animation-duration: 11s; }
.sport-ball-promo.pb3 { top: 40%;  right: 1%;   font-size: 30px;  animation-delay: 5s;   animation-duration: 16s; opacity: 0.04; }
.sport-ball-promo.pb4 { top: 10%;  left: 1%;    font-size: 36px;  animation-delay: 3.5s; animation-duration: 13s; opacity: 0.04; }

@keyframes pc-spin-float {
  0%   { transform: translateY(0px)   rotate(0deg);   }
  25%  { transform: translateY(-16px) rotate(90deg);  }
  50%  { transform: translateY(-6px)  rotate(180deg); }
  75%  { transform: translateY(-20px) rotate(270deg); }
  100% { transform: translateY(0px)   rotate(360deg); }
}

/* ── DIVISOR DE CAMPO entre seções ── */
.field-divider-promo {
  width: 100%;
  height: 6px;
  background: repeating-linear-gradient(
    90deg,
    #00A651 0px, #00A651 40px,
    #007a3d 40px, #007a3d 80px
  );
  opacity: 0.7;
}

/* ── FAIXA DE CONTEXTO COPA acima dos planos ── */
.copa-context-bar {
  background-color: var(--pc-escuro);
  background-image: url('../images/pattern.png');
  background-size: cover;
  background-attachment: fixed;
  padding: 40px 0 36px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.copa-context-bar::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(0,166,81,0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.copa-context-bar .eyebrow {
  display: inline-block;
  background: var(--pc-verde);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 4px;
  margin-bottom: 14px;
  font-family: 'Rubik', sans-serif;
}
.copa-context-bar h2 {
  font-family: 'Rubik', sans-serif;
  font-size: clamp(22px, 4vw, 36px);
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 10px;
}
.copa-context-bar h2 span.verde  { color: var(--pc-verde); }
.copa-context-bar h2 span.amarelo { color: var(--pc-amarelo); }
.copa-context-bar p {
  font-family: 'Rubik', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  margin-bottom: 0;
}

/* carrossel de benefícios Copa */
.pc-carousel-wrap {
  overflow: hidden;
  margin: 28px -15px 0;
  padding: 4px 0;
  position: relative;
}
.pc-carousel-wrap::before,
.pc-carousel-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.pc-carousel-wrap::before {
  left: 0;
  background: linear-gradient(to right, var(--pc-escuro), transparent);
}
.pc-carousel-wrap::after {
  right: 0;
  background: linear-gradient(to left, var(--pc-escuro), transparent);
}
.pc-carousel {
  display: flex;
  gap: 12px;
  width: max-content;
  animation: pc-carousel-slide 22s linear infinite;
}
.pc-carousel:hover { animation-play-state: paused; }
@keyframes pc-carousel-slide {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.pc-benefit-card {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  padding: 12px 18px;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.2s, border-color 0.2s;
}
.pc-benefit-card:hover {
  background: rgba(0,166,81,0.15);
  border-color: rgba(0,166,81,0.4);
}
.pc-benefit-card i {
  color: var(--pc-verde);
  font-size: 16px;
}
.pc-benefit-card span {
  color: rgba(255,255,255,0.88);
  font-size: 14px;
  font-weight: 500;
  font-family: 'Rubik', sans-serif;
}

/* ── BADGE COPA nos títulos de seção ── */
.section3 .section-title h3,
.section3 .section-title3 h3 {
  font-family: 'Rubik', sans-serif !important;
  font-weight: 800;
  letter-spacing: -0.3px;
}

/* ── BOTÕES: mais arredondados e modernos ── */
.call-to-action-download .btn.blob.green {
  border-radius: 8px !important;
  font-family: 'Rubik', sans-serif !important;
  font-weight: 700 !important;
  box-shadow: 0 4px 20px rgba(40,167,69,0.4);
  transition: transform 0.15s, box-shadow 0.15s !important;
  padding: 12px 32px !important;
}
.call-to-action-download .btn.blob.green:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(40,167,69,0.5) !important;
}

/* ── SEÇÃO FUNCIONALIDADES: títulos em Rubik ── */
#funcionalidades .card-title {
  font-family: 'Rubik', sans-serif !important;
  font-weight: 700;
}

/* ── MOBILE ── */
@media (max-width: 767px) {
  .copa-context-bar { padding: 32px 0 28px; }
  .sport-ball-promo { display: none; }
}
