/* ==================================================
   RESET GLOBAL
================================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #f5f7fb;
  color: #1e293b;
  cursor: url("../utils/Pointer.png") 6 6, auto; /* hotspot na ponta (ajusta) */
}

/* ==================================================
   CURSOR (RING)
================================================== */
.mc-ring {
  width: 36px !important;
  height: 36px !important;
  border-radius: 999px !important;

  background: transparent !important;
  border: 3px solid transparent !important;

  border-image: linear-gradient(90deg, #F91D2E, #E25FFA) 1 !important;

  box-shadow:
    0 0 10px rgba(249, 29, 46, 0.35),
    0 0 18px rgba(226, 95, 250, 0.25) !important;

  pointer-events: none !important;
}

/* ==================================================
   ANIMAÇÃO DE SCROLL
================================================== */
.reveal {
  opacity: 0;
  transform: translateY(60px);
  transition: all 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* ==================================================
   UTILITÁRIOS
================================================== */
.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

.btn {
  background: #2563eb;
  color: #fff;
  padding: 12px 20px;
  border-radius: 6px;
  text-decoration: none;
  display: inline-block;
  font-weight: bold;
}

/* ==================================================
   CABEÇALHO
================================================== */
.header-institutional {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: linear-gradient(180deg, #05050a, #020207);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

/* Logo */
.logo {
  font-family: "Special Gothic Expanded One", sans-serif;
  font-size: 1.5rem;
  color: #fff;
  text-decoration: none;
}

.logo span {
  background: linear-gradient(90deg, #F91D2E, #E25FFA);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Navegação */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 26px;
}

.nav-menu a {
  color: #cbd5f5;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.nav-menu a:hover {
  color: #fff;
}

.btn-nav {
  background: linear-gradient(90deg, #F91D2E, #E25FFA);
  color: #fff !important;
  padding: 10px 18px;
  border-radius: 999px;
}

/* (Opcional / futuro) item como botão */
.service-item {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 10px 20px;
  font-size: 0.9rem;
  color: #cbd5f5;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.service-item:hover {
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
}

.service-link {
  display: block;
  padding: 10px 20px;
  font-size: 0.9rem;
  color: #cbd5f5;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}

.service-link:hover {
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
}

/* ==================================================
   DROPDOWN
================================================== */
.dropdown {
  position: absolute;
}

.dropdown-btn {
  background: none;
  border: none;
  color: #cbd5f5;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
}

.dropdown-content {
  position: absolute;
  top: 140%;
  left: 0;
  min-width: 240px;
  background: #0a0a15;
  border-radius: 14px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
  padding: 14px 0;

  opacity: 0;
  pointer-events: none;
  transform: translateY(-12px);
  transition:
    opacity 0.2s ease,
    transform 0.28s cubic-bezier(0.2, 0.9, 0.2, 1);
}

.dropdown-content a {
  display: block;
  padding: 10px 20px;
  font-size: 0.9rem;
  color: #cbd5f5;
}

.dropdown-content a:hover {
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
}

.dropdown.open .dropdown-content {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

/* Mobile Toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
}

/* ==================================================
   HERO
================================================== */
.hero-institutional {
  position: relative;
  min-height: 100vh;
  background:
    radial-gradient(circle at top right, rgba(226, 95, 250, 0.15), transparent 40%),
    radial-gradient(circle at bottom left, rgba(249, 29, 46, 0.15), transparent 45%),
    #05050a;
  color: #fff;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url("noise.png");
  opacity: 0.04;
  pointer-events: none;
}

.hero-content {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-tag {
  display: inline-block;
  margin-bottom: 18px;
  padding: 6px 14px;
  font-size: 0.75rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: linear-gradient(90deg, #F91D2E, #E25FFA);
  border-radius: 999px;
}

.hero-text h1 {
  font-size: 3.2rem;
  line-height: 1.1;
  margin-bottom: 20px;
}

.highlight-red {
  background: linear-gradient(90deg, #F91D2E, #E25FFA);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-text p {
  font-size: 1.15rem;
  color: #cbd5f5;
  max-width: 540px;
  margin-bottom: 35px;
}

.hero-actions {
  display: flex;
  gap: 18px;
}

.btn-primary {
  background: #F91D2E;
  color: #fff;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(249, 29, 46, 0.4);
}

.btn-secondary {
  border: 2px solid #E25FFA;
  color: #E25FFA;
  padding: 14px 26px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
}

.hero-visual {
  display: flex;
  justify-content: flex-end;
}

.hero-visual img {
  width: 320px;
  filter: drop-shadow(0 30px 80px rgba(226, 95, 250, 0.35));
  margin-right: -20px;
}

/* ==================================================
   SEÇÃO DOR
================================================== */
.pain-section {
  padding: 90px 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(249, 29, 46, 0.15), transparent 45%),
    radial-gradient(circle at bottom right, rgba(226, 95, 250, 0.15), transparent 40%),
    #05050a;
  color: #fff;
  text-align: center;
}

.pain-section h2 {
  font-size: 2.6rem;
  margin-bottom: 20px;
}

.highlight-pain {
  background: linear-gradient(90deg, #F91D2E, #E25FFA);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.pain-subtitle {
  max-width: 680px;
  margin: 0 auto 60px;
  color: #cbd5f5;
}

.pain-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.pain-card {
  position: relative;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 18px;
  padding: 36px 32px;
  text-align: left;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.pain-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  margin-bottom: 18px;
  background: linear-gradient(135deg, #F91D2E, #E25FFA);

  display: flex;
  align-items: center;
  justify-content: center;
}

.pain-icon img {
  width: 60%;
  height: 60%;
  object-fit: contain;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,0.25));
}


.pain-card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #fff;
}

.pain-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #cbd5f5;
}

.pain-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(249, 29, 46, 0.25);
}

/* ==================================================
   SEÇÃO SOLUÇÃO
================================================== */
.solution-section {
  padding: 90px 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at top right, rgba(226, 95, 250, 0.15), transparent 40%),
    radial-gradient(circle at bottom left, rgba(249, 29, 46, 0.15), transparent 45%),
    #05050a;
  color: #fff;
  text-align: center;
}

.solution-section h2 {
  font-size: 2.6rem;
  margin-bottom: 20px;
}

.highlight-solution {
  background: linear-gradient(90deg, #22c55e, #16a34a);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.solution-subtitle {
  max-width: 700px;
  margin: 0 auto 60px;
  color: #cbd5f5;
}

.solution-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.solution-card {
  position: relative;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 18px;
  padding: 36px 32px;
  text-align: left;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.solution-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.solution-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(34, 197, 94, 0.25);
}

.solution-card:hover::before {
  opacity: 1;
}

.solution-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  margin-bottom: 18px;
  background: linear-gradient(135deg, #22c55e, #16a34a);

  display: flex;
  align-items: center;
  justify-content: center;
}


.solution-icon img {
  width: 60%;
  height: 60%;
  object-fit: contain;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,0.25));
}


.solution-card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #fff;
}

.solution-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #cbd5f5;
}

.solution-cta {
  margin-top: 40px;
  display: flex;
  justify-content: center;
}

.btn-solution {
  background: linear-gradient(90deg, #22c55e, #16a34a);
  box-shadow: 0 18px 40px rgba(34, 197, 94, 0.35);
}

.btn-solution:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 55px rgba(34, 197, 94, 0.45);
}

/* ==================================================
   SEÇÃO AUTORIDADE
================================================== */
.authority-hub-section {
  padding: 100px 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(249, 29, 46, 0.15), transparent 45%),
    radial-gradient(circle at bottom right, rgba(226, 95, 250, 0.15), transparent 40%),
    #05050a;
  color: #fff;
  text-align: center;
}

.authority-header h2 {
  font-size: 2.6rem;
  margin-bottom: 16px;
}

.authority-header p {
  max-width: 620px;
  margin: 0 auto 80px;
  color: #cbd5f5;
}

.highlight-authority {
  background: linear-gradient(90deg, #E25FFA, #F91D2E);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.authority-hub {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 60px;
}

.authority-side {
  display: flex;
  flex-direction: column;
  gap: 70px;
}

.authority-item {
  display: flex;
  align-items: center;
  gap: 18px;
  justify-content: flex-end;
  text-align: right;
  transition: transform 0.35s ease, opacity 0.35s ease;
  opacity: 0.75;
}

.authority-item:hover {
  transform: translateY(-4px);
  opacity: 1;
}

.authority-item.reverse {
  justify-content: flex-start;
  text-align: left;
}

.authority-item:hover .authority-icon {
  box-shadow: 0 0 35px rgba(226, 95, 250, 0.6);
  transform: scale(1.05);
}

.authority-text h4 {
  font-size: 1.05rem;
  margin-bottom: 6px;
}

.authority-text p {
  font-size: 0.9rem;
  color: #cbd5f5;
}

.authority-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, #E25FFA, #F91D2E);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  box-shadow: 0 0 25px rgba(226, 95, 250, 0.4);
}

.authority-icon--blue {
  background: linear-gradient(135deg, #38BDF8, #2563EB);
  box-shadow: 0 0 25px rgba(56, 189, 248, 0.45);
}

.authority-item:hover .authority-icon--blue {
  box-shadow: 0 0 35px rgba(56, 189, 248, 0.6);
}

/* Centro */
.authority-center {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.authority-center::before {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(226, 95, 250, 0.35), transparent 70%);
  filter: blur(40px);
  z-index: 0;
}

.authority-glass {
  position: relative;
  z-index: 1;

  padding: 26px;
  border-radius: 26px;

  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;

  border: none;
  transition: transform 0.35s ease;
}

.authority-glass img {
  width: 300px;
  display: block;
  animation: authority-pulse 2.6s ease-in-out infinite;
}

.authority-glass:hover {
  transform: scale(1.03);
}

@keyframes authority-pulse {
  0% {
    transform: scale(1);
    filter: drop-shadow(0 0 0 rgba(226, 95, 250, 0.0));
  }
  50% {
    transform: scale(1.04);
    filter: drop-shadow(0 18px 50px rgba(226, 95, 250, 0.35));
  }
  100% {
    transform: scale(1);
    filter: drop-shadow(0 0 0 rgba(226, 95, 250, 0.0));
  }
}

.authority-cta {
  margin-top: 48px;
  display: flex;
  justify-content: center;
}

.btn-authority {
  background: linear-gradient(90deg, #38BDF8, #2563EB);
  box-shadow: 0 20px 45px rgba(59, 130, 246, 0.45);
}

.btn-authority:hover {
  transform: translateY(-2px);
  box-shadow: 0 28px 60px rgba(59, 130, 246, 0.6);
}

/* ==================================================
   CONTATO
================================================== */
.contact-split {
  background: #e11d48;
  padding: 80px 0;
}

.contact-wrapper {
  max-width: 1300px;
  margin: auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 520px);
  gap: 40px;
  align-items: start;
  justify-content: center;
  position: relative;
}

.contact-left {
  color: #fff;
  padding: 60px;
}

.contact-left-title {
  font-size: 1.8rem;
  font-weight: 900;
  margin-bottom: 12px;
  line-height: 1.1;
}

.contact-left-subtitle {
  font-size: 1rem;
  opacity: 0.95;
  max-width: 360px;
  margin-bottom: 22px;
}

.contact-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 35px;
}

.badge {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
  backdrop-filter: blur(6px);
}

.contact-info-item {
  margin-bottom: 40px;
  padding-left: 14px;
  border-left: 3px solid rgba(255, 255, 255, 0.35);
}

.contact-info-item h4 {
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.contact-info-item p {
  font-size: 0.9rem;
  opacity: 0.9;
}

.contact-info-item span {
  display: inline-block;
  margin-top: 6px;
  font-size: 0.95rem;
  font-weight: 600;
}

.contact-left-footer {
  margin-top: 30px;
  font-size: 0.95rem;
  opacity: 0.95;
  max-width: 380px;
}

/* Card do form */
.contact-right {
  background: #fff;
  padding: 50px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
  position: relative;
  top: -40px;
}

.contact-right h3 {
  margin-bottom: 10px;
  font-size: 1.9rem;
  font-weight: 800;
}

.cta-subtitle {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 30px;
}

/* Inputs */
.contact-right input,
.contact-right textarea {
  width: 100%;
  border: none;
  border-bottom: 2px solid #e5e7eb;
  padding: 14px 5px;
  margin-bottom: 25px;
  font-size: 1rem;
  outline: none;
}

.contact-right textarea {
  resize: none;
  height: 100px;
}
.contact-right h3 { 
  color: #111827;
}

/* CTA */
.cta-button {
  width: 100%;
  padding: 18px;
  font-size: 1.05rem;
  font-weight: 800;
  border: none;
  cursor: pointer;
  border-radius: 6px;

  background: linear-gradient(90deg, #2563eb, #7c3aed, #ec4899);
  color: #fff;

  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
  transition: all 0.3s ease;

  animation: pulse 4s infinite;
}

.cta-button:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.45);
}

/* Microcopy */
.cta-microcopy {
  display: block;
  text-align: center;
  margin-top: 12px;
  font-size: 0.8rem;
  color: #555;
}

/* Pulso */
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(236, 72, 153, 0.6); }
  70% { box-shadow: 0 0 0 15px rgba(236, 72, 153, 0); }
  100% { box-shadow: 0 0 0 0 rgba(236, 72, 153, 0); }
}

/* ==================================================
   BOTÃO WHATSAPP
================================================== */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: #22c55e;
  color: #022c22;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 15px 40px rgba(34, 197, 94, 0.45);
  transition: transform 0.25s ease;
  z-index: 999;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

/* ==================================================
   Tablet
================================================== */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .hero-text h1 {
    font-size: 2.5rem;
  }

  .hero-text p {
    font-size: 1.05rem;
  }

  .hero-visual {
    justify-content: center;
  }

  .hero-visual img {
    margin-right: 0;
    width: 260px;
  }

  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ==================================================
   Mobile
================================================== */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav-menu {
    position: fixed;
    top: 80px;
    right: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background: #05050a;
    flex-direction: column;
    align-items: center;
    padding: 40px 20px;
    gap: 30px;
    transition: right 0.3s ease;
  }

  .nav-menu.active {
    right: 0;
  }

  .dropdown {
    width: 100%;
    text-align: center;
  }

  .dropdown-btn {
    width: 100%;
    text-align: center;
  }

  .dropdown-content {
    position: static;
    transform: none;
    background: transparent;
    box-shadow: none;
    padding-left: 0;
    width: 100%;
    text-align: center;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    transition:
      max-height 0.35s ease,
      opacity 0.18s ease,
      transform 0.22s cubic-bezier(0.2, 0.9, 0.2, 1);
  }

  .dropdown.open .dropdown-content {
    max-height: 520px;
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
  }

  .dropdown-content a {
    padding: 6px 0;
    text-align: center;
  }

  .hero-institutional {
    padding: 120px 0 80px;
  }

  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-tag {
    margin: 0 auto 16px;
  }

  .hero-text h1 {
    font-size: 2.1rem;
  }

  .hero-text p {
    font-size: 1rem;
    margin: 20px auto 30px;
  }

  .hero-actions {
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero-visual {
    order: 2;
    margin: 30px 0;
  }

  .hero-visual img {
    width: 200px;
    margin: 0;
  }

  .solution-cards,
  .pain-cards {
    grid-template-columns: 1fr;
  }

  .authority-hub {
    grid-template-columns: 1fr;
  }

  .authority-item,
  .authority-item.reverse {
    justify-content: center;
    text-align: center;
    flex-direction: column;
  }
  .authority-item .authority-text {
    order: 1;
  }

  .authority-item .authority-icon {
    order: 2;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .authority-center {
    display: none;
  }

  .contact-right {
    top: 0;
    margin-top: 40px;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  /* CTA mobile mais impactante */
  .contact-split {
    padding: 90px 0;
  }

  .contact-left {
    text-align: center;
    padding: 0 20px;
  }

  .contact-left-title {
    font-size: 1.9rem;
  }

  .contact-left-subtitle {
    margin: 12px auto 26px;
  }

  .contact-badges {
    justify-content: center;
  }

  .contact-center {
    display: flex;
    justify-content: center;
    padding: 0 14px;
  }

  .contact-right {
    width: 100%;
    max-width: 420px;
    padding: 34px 26px;
    border-radius: 18px;
    box-shadow:
      0 22px 55px rgba(0, 0, 0, 0.35),
      0 2px 0 rgba(255, 255, 255, 0.6) inset;
  }

  .contact-right h3 {
    text-align: center;
    font-size: 1.6rem;
  }

  .cta-subtitle {
    text-align: center;
  }

  .contact-right input,
  .contact-right textarea {
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 14px 14px;
    background: #f8fafc;
  }

  .cta-button {
    border-radius: 999px;
    font-size: 1rem;
  }
}

/* ==================================================
   Acessibilidade: reduz motion (recomendado)
   - Se você NÃO quiser isso, apaga esse bloco.
================================================== */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal {
    transition: none;
    transform: none;
    opacity: 1;
  }

  .cta-button {
    animation: none;
  }
}
