/* ========================================
   PMBASIS — STYLE
   ======================================== */

@font-face {
  font-family: 'Panton';
  src: url('assets/fonts/Panton-LightCaps.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: 'Panton';
  src: url('assets/fonts/Panton-LightitalicCaps.otf') format('opentype');
  font-weight: 300;
  font-style: italic;
}

/* ── TOKENS ── */
:root {
  --dark:      #0d1b2a;
  --dark-2:    #112236;
  --blue:      #1a4a8a;
  --blue-light:#5a8fc0;
  --magenta:   #e0007a;
  --white:     #ffffff;
  --gray-50:   #f8f9fb;
  --gray-100:  #f0f2f5;
  --gray-300:  #d0d5dd;
  --gray-600:  #475467;
  --gray-900:  #101828;
  --text:      #1d2939;
  --text-light:#667085;

  --font-display: 'Panton', 'Inter', sans-serif;
  --font-body:    'Inter', sans-serif;

  --radius:    8px;
  --radius-lg: 16px;
  --shadow:    0 1px 3px rgba(0,0,0,.1), 0 1px 2px rgba(0,0,0,.06);
  --shadow-md: 0 4px 6px rgba(0,0,0,.07), 0 2px 4px rgba(0,0,0,.06);
  --shadow-lg: 0 10px 15px rgba(0,0,0,.1), 0 4px 6px rgba(0,0,0,.05);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); color: var(--text); background: var(--white); line-height: 1.6; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── CONTAINER ── */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 28px; border-radius: var(--radius); font-size: 15px;
  font-weight: 600; transition: all .2s ease; gap: 8px; line-height: 1;
}
.btn--primary {
  background: var(--magenta); color: var(--white);
  box-shadow: 0 0 0 0 rgba(224,0,122,.3);
}
.btn--primary:hover {
  background: #c4006b; transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(224,0,122,.4);
}
.btn--ghost {
  background: transparent; color: var(--white);
  border: 1.5px solid rgba(255,255,255,.4);
}
.btn--ghost:hover { border-color: var(--white); background: rgba(255,255,255,.08); }
.btn--full { width: 100%; }

/* ── LABELS ── */
.label {
  display: inline-block; font-size: 12px; font-weight: 600; letter-spacing: .08em;
  text-transform: uppercase; color: var(--magenta); margin-bottom: 12px;
}
.label--light { color: var(--blue-light); }

/* ── SECTION HEADER ── */
.section-header { text-align: center; margin-bottom: 56px; }
.section-header h2 { font-size: clamp(28px, 4vw, 40px); font-weight: 700; color: var(--gray-900); margin-bottom: 16px; }
.section-header p { font-size: 17px; color: var(--text-light); max-width: 560px; margin: 0 auto; }

/* ======================================== */
/* HEADER */
/* ======================================== */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 20px 0; transition: all .3s ease;
}
.header.scrolled {
  background: rgba(13,27,42,.96); backdrop-filter: blur(12px);
  padding: 12px 0; box-shadow: 0 1px 0 rgba(255,255,255,.06);
}
.header__inner { display: flex; align-items: center; justify-content: space-between; }
.header__logo img { height: 36px; }

.nav { display: flex; align-items: center; gap: 32px; }
.nav a { color: rgba(255,255,255,.8); font-size: 14px; font-weight: 500; transition: color .2s; }
.nav a:hover { color: var(--white); }
.nav__cta {
  background: var(--magenta) !important; color: var(--white) !important;
  padding: 10px 20px; border-radius: var(--radius); font-weight: 600 !important;
}
.nav__cta:hover { background: #c4006b !important; }
.nav__area-interna {
  background: transparent !important; color: rgba(255,255,255,.7) !important;
  padding: 10px 20px; border-radius: var(--radius); font-weight: 500 !important;
  border: 1.5px solid rgba(255,255,255,.25) !important; font-size: 13px !important;
  transition: all .2s ease !important;
}
.nav__area-interna:hover {
  color: var(--white) !important; border-color: rgba(255,255,255,.6) !important;
  background: rgba(255,255,255,.06) !important;
}

.hamburger { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--white); border-radius: 2px; transition: all .3s; }

/* ======================================== */
/* HERO */
/* ======================================== */
.hero {
  min-height: 100vh; position: relative; display: flex; align-items: center;
  overflow: hidden; background: var(--dark);
}
.hero__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 60% 40%, rgba(26,74,138,.5) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(224,0,122,.15) 0%, transparent 50%),
    linear-gradient(135deg, #0d1b2a 0%, #112236 50%, #0a1628 100%);
}
.hero__bg::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero__content {
  position: relative; z-index: 1;
  padding: 140px 24px 80px; max-width: 780px;
}
.hero__tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12);
  color: var(--blue-light); font-size: 13px; font-weight: 600; letter-spacing: .06em;
  text-transform: uppercase; padding: 6px 14px; border-radius: 100px; margin-bottom: 28px;
}
.hero__title {
  font-size: clamp(36px, 5.5vw, 64px); font-weight: 800; color: var(--white);
  line-height: 1.1; margin-bottom: 24px; letter-spacing: -.02em;
}
.hero__sub {
  font-size: clamp(16px, 2vw, 19px); color: rgba(255,255,255,.65);
  line-height: 1.6; margin-bottom: 40px; max-width: 600px;
}
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero__scroll {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
  display: flex; justify-content: center;
}
.hero__scroll span {
  display: block; width: 1px; height: 60px;
  background: linear-gradient(to bottom, rgba(255,255,255,.4), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine { 0%,100%{opacity:1;transform:scaleY(1)} 50%{opacity:.3;transform:scaleY(.5)} }

/* ======================================== */
/* NÚMEROS */
/* ======================================== */
.numbers {
  background: var(--magenta); padding: 56px 0;
}
.numbers__grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; text-align: center;
}
.numbers__item { padding: 24px; }
.numbers__item p { color: rgba(255,255,255,.8); font-size: 14px; margin-top: 6px; }
.numbers__value {
  font-size: clamp(48px, 6vw, 72px); font-weight: 800; color: var(--white);
  line-height: 1; font-family: var(--font-display);
}
.numbers__unit { font-size: 32px; font-weight: 700; color: rgba(255,255,255,.7); margin-left: 2px; }

/* ======================================== */
/* SOBRE */
/* ======================================== */
.sobre { padding: 100px 0; background: var(--white); }
.sobre__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.sobre__text h2 { font-size: clamp(28px, 3.5vw, 40px); font-weight: 700; color: var(--gray-900); margin-bottom: 20px; line-height: 1.2; }
.sobre__text p { color: var(--text-light); font-size: 16px; line-height: 1.75; margin-bottom: 16px; }
.sobre__text p strong { color: var(--gray-900); }
.sobre__text .btn { margin-top: 16px; }

.sobre__visual { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.sobre__card {
  background: var(--gray-50); border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg); padding: 24px; transition: all .2s;
}
.sobre__card:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); border-color: var(--gray-300); }
.sobre__card-icon { font-size: 28px; margin-bottom: 12px; }
.sobre__card h4 { font-size: 14px; font-weight: 700; color: var(--gray-900); margin-bottom: 6px; }
.sobre__card p { font-size: 13px; color: var(--text-light); line-height: 1.5; }

/* ======================================== */
/* SERVIÇOS */
/* ======================================== */
.servicos { padding: 100px 0; background: var(--dark); }
.servicos .section-header h2 { color: var(--white); }
.servicos .section-header p { color: rgba(255,255,255,.55); }

.servicos__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.servico-card {
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg); padding: 36px 32px;
  transition: all .3s ease; position: relative; overflow: hidden;
}
.servico-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: transparent; transition: background .3s;
}
.servico-card:hover { background: rgba(255,255,255,.07); border-color: rgba(255,255,255,.15); transform: translateY(-4px); }
.servico-card:hover::before { background: var(--blue-light); }
.servico-card--featured { background: rgba(26,74,138,.25); border-color: rgba(90,143,192,.3); }
.servico-card--featured::before { background: var(--magenta); }

.servico-card__number { font-size: 48px; font-weight: 800; color: rgba(255,255,255,.06); line-height: 1; margin-bottom: 16px; font-family: var(--font-display); }
.servico-card h3 { font-size: 22px; font-weight: 700; color: var(--white); margin-bottom: 12px; }
.servico-card > p { font-size: 14px; color: rgba(255,255,255,.55); line-height: 1.6; margin-bottom: 24px; }
.servico-card ul { display: flex; flex-direction: column; gap: 8px; margin-bottom: 32px; }
.servico-card ul li {
  font-size: 14px; color: rgba(255,255,255,.7); padding-left: 16px; position: relative;
}
.servico-card ul li::before { content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%); width: 6px; height: 6px; background: var(--magenta); border-radius: 50%; }
.servico-card__link { font-size: 14px; font-weight: 600; color: var(--blue-light); transition: color .2s; }
.servico-card__link:hover { color: var(--white); }
.servico-card--featured .servico-card__link { color: var(--magenta); }

/* ======================================== */
/* COMO ATUAMOS */
/* ======================================== */
.como { padding: 100px 0; background: var(--gray-50); }
.como .section-header h2 { color: var(--gray-900); }
.como__grid {
  display: flex; align-items: center; justify-content: center;
  gap: 0; flex-wrap: wrap;
}
.como__item {
  flex: 1; min-width: 180px; max-width: 220px;
  text-align: center; padding: 32px 20px;
  background: var(--white); border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.como__icon {
  width: 56px; height: 56px; margin: 0 auto 16px;
  color: var(--blue); background: rgba(26,74,138,.08);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
}
.como__icon svg { width: 24px; height: 24px; }
.como__item h4 { font-size: 15px; font-weight: 700; color: var(--gray-900); margin-bottom: 8px; }
.como__item p { font-size: 13px; color: var(--text-light); line-height: 1.5; }
.como__arrow { font-size: 20px; color: var(--gray-300); padding: 0 8px; flex-shrink: 0; }

/* ======================================== */
/* PROFISSIONAIS */
/* ======================================== */
.profissionais { padding: 100px 0; background: var(--white); }
.prof__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 48px; }
.prof__card {
  border: 1px solid var(--gray-100); border-radius: var(--radius-lg);
  padding: 28px; position: relative; transition: all .2s;
}
.prof__card:hover { box-shadow: var(--shadow-lg); border-color: var(--gray-300); transform: translateY(-2px); }
.prof__tag {
  display: inline-block; background: rgba(224,0,122,.08); color: var(--magenta);
  font-size: 11px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 100px; margin-bottom: 14px;
}
.prof__card h4 { font-size: 16px; font-weight: 700; color: var(--gray-900); margin-bottom: 10px; line-height: 1.3; }
.prof__card p { font-size: 14px; color: var(--text-light); line-height: 1.6; }
.prof__cta { text-align: center; }

/* ======================================== */
/* FORMAÇÃO */
/* ======================================== */
.formacao { padding: 100px 0; background: var(--dark-2); }
.formacao .section-header h2 { color: var(--white); }

.formacao__pilares {
  display: flex; flex-wrap: wrap; gap: 12px;
  justify-content: center; margin-bottom: 56px;
}
.pilar {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  border-radius: 100px; padding: 10px 20px;
}
.pilar span { font-size: 14px; font-weight: 500; color: rgba(255,255,255,.8); }

.formacao__grid {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 16px; margin-bottom: 64px;
}
.formato {
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius-lg); padding: 28px 20px; text-align: center;
  transition: all .2s;
}
.formato:hover { background: rgba(255,255,255,.08); transform: translateY(-2px); }
.formato__icon { font-size: 32px; margin-bottom: 14px; }
.formato h4 { font-size: 15px; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.formato p { font-size: 13px; color: rgba(255,255,255,.5); line-height: 1.5; }

.cursos { border-top: 1px solid rgba(255,255,255,.08); padding-top: 48px; }
.cursos h3 { font-size: 20px; font-weight: 700; color: var(--white); text-align: center; margin-bottom: 28px; }
.cursos__grid {
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: center;
}
.cursos__grid span {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.75); font-size: 13px; padding: 8px 16px;
  border-radius: var(--radius); transition: all .2s;
}
.cursos__grid span:hover { background: rgba(224,0,122,.15); border-color: rgba(224,0,122,.4); color: var(--white); }

/* ======================================== */
/* CLIENTES */
/* ======================================== */
.clientes { padding: 100px 0; background: var(--gray-50); }
.clientes__logos { margin-top: 40px; }
.clientes__placeholder {
  border: 2px dashed var(--gray-300); border-radius: var(--radius-lg);
  padding: 80px 40px; text-align: center; color: var(--gray-600);
}
.clientes__placeholder p { font-size: 16px; margin-bottom: 8px; }
.clientes__placeholder span { font-size: 13px; color: var(--text-light); }

/* ======================================== */
/* CONTATO */
/* ======================================== */
.contato { padding: 100px 0; background: var(--dark); }
.contato__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.contato__info h2 { font-size: clamp(28px, 3vw, 38px); font-weight: 700; color: var(--white); margin-bottom: 16px; line-height: 1.2; }
.contato__info p { color: rgba(255,255,255,.6); font-size: 16px; line-height: 1.7; margin-bottom: 36px; }
.contato__channels { display: flex; flex-direction: column; gap: 14px; }
.channel {
  display: flex; align-items: center; gap: 14px;
  color: rgba(255,255,255,.75); font-size: 15px; transition: color .2s;
}
.channel:hover { color: var(--white); }
.channel__icon {
  width: 40px; height: 40px; background: rgba(255,255,255,.08);
  border-radius: var(--radius); display: flex; align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0;
}

.contato__form {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 40px; display: flex; flex-direction: column; gap: 16px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 12px 16px;
  border: 1.5px solid var(--gray-300); border-radius: var(--radius);
  font-size: 15px; font-family: var(--font-body); color: var(--text);
  background: var(--white); transition: border-color .2s; outline: none;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--blue); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-note { font-size: 13px; color: var(--text-light); text-align: center; margin-top: -4px; }

/* ======================================== */
/* FOOTER */
/* ======================================== */
.footer { background: #07111d; padding: 80px 0 0; }
.footer__inner {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.footer__brand img { height: 32px; filter: brightness(0) invert(1); margin-bottom: 16px; }
.footer__brand p { font-size: 14px; color: rgba(255,255,255,.45); line-height: 1.6; }
.footer__links h5,
.footer__contact h5 { font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.4); margin-bottom: 16px; }
.footer__links a,
.footer__contact a { display: block; font-size: 14px; color: rgba(255,255,255,.6); margin-bottom: 10px; transition: color .2s; }
.footer__links a:hover,
.footer__contact a:hover { color: var(--white); }
.footer__bottom {
  padding: 20px 0;
}
.footer__bottom .container {
  display: flex; justify-content: space-between; align-items: center;
}
.footer__bottom p { font-size: 13px; color: rgba(255,255,255,.3); }

/* ======================================== */
/* WHATSAPP FLOAT */
/* ======================================== */
.whatsapp-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 99;
  width: 56px; height: 56px; background: #25d366;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.4); transition: all .2s;
  color: white;
}
.whatsapp-float svg { width: 28px; height: 28px; }
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,.5); }

/* ======================================== */
/* RESPONSIVE */
/* ======================================== */
@media (max-width: 1024px) {
  .formacao__grid { grid-template-columns: repeat(3, 1fr); }
  .footer__inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: var(--dark); flex-direction: column; justify-content: center; align-items: center; gap: 32px; z-index: 99; }
  .nav.open { display: flex; }
  .nav a { font-size: 20px; }
  .hamburger { display: flex; z-index: 100; }

  .hero__content { padding: 120px 24px 80px; }
  .hero__title { font-size: 36px; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; justify-content: center; }

  .numbers__grid { grid-template-columns: 1fr; gap: 0; }
  .numbers__item { border-bottom: 1px solid rgba(255,255,255,.15); }
  .numbers__item:last-child { border-bottom: none; }

  .sobre__inner { grid-template-columns: 1fr; gap: 48px; }
  .sobre__visual { grid-template-columns: 1fr 1fr; }

  .servicos__grid { grid-template-columns: 1fr; }

  .como__grid { flex-direction: column; align-items: stretch; }
  .como__item { max-width: 100%; }
  .como__arrow { transform: rotate(90deg); text-align: center; padding: 8px 0; }

  .prof__grid { grid-template-columns: 1fr; }

  .formacao__grid { grid-template-columns: repeat(2, 1fr); }

  .contato__inner { grid-template-columns: 1fr; gap: 48px; }

  .footer__inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .sobre__visual { grid-template-columns: 1fr; }
  .formacao__grid { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; }
  .footer__bottom .container { flex-direction: column; gap: 8px; text-align: center; }
}
