/* ======================================
   DASHBOARD CORE BANNER
====================================== */

/* CORE CEO ACCESS */
.core-ceo-access {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: #050b18;
  overflow: hidden;
}

/* BACKGROUND LIVING SYSTEM */
.core-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 20%, rgba(0, 201, 204, 0.358), transparent 55%),
    radial-gradient(circle at 70% 70%, rgba(0, 201, 204, 0.250), transparent 55%);
  animation: bgPulse 14s ease-in-out infinite;
}

@keyframes bgPulse {
  0% {
    opacity: .6;
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: .6;
  }
}

/* GRID */
.core-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  gap: 60px;
}

/* CONTENT */
.core-content {
  max-width: 600px;
  animation: fadeUp 1.2s ease-out forwards;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(25px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

/* BADGE */
.core-badge {
  display: inline-block;
  padding: 8px 22px;
  border-radius: 40px;
  font-family: 'Rosnoc', sans-serif;
  font-size: 13px;
  letter-spacing: 2px;
  color: #6fb2ff;
  border: 1px solid rgba(111, 178, 255, 0.35);
  margin-bottom: 25px;
  position: relative;
  overflow: hidden;
}

.core-badge::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 40px;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, .35), transparent);
  transform: translateX(-120%);
  animation: badgeScan 4s infinite;
}

@keyframes badgeScan {
  60% {
    transform: translateX(-120%);
  }

  100% {
    transform: translateX(120%);
  }
}

/* TITLE */
.core-title {
  font-family: 'Rosnoc', sans-serif;
  font-size: 56px;
  line-height: 1.1;
  color: #ffffff;
  margin-bottom: 25px;
}

.core-title span {
  display: block;
  color: #6fb2ff;
  font-size: 48px;
}

/* TEXT */
.core-description {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 40px;
}

/* ACTIONS */
.core-actions {
  display: flex;
  align-items: center;
  gap: 25px;
}

/* ── CORE BTN ── */
.core-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: #00e5c8;
  color: #060c18;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  border: none;
  position: relative;
  overflow: hidden;
  transition: all 0.25s ease;
  line-height: normal;
}

.core-btn::after {
  content: '→';
  display: inline-block;
  transition: transform 0.25s ease;
}

.core-btn:hover {
  background: #ffffff;
  color: #060c18;
  transform: translateY(-2px);
  box-shadow: 0 0 40px rgba(0, 255, 224, 0.35);
}

.core-btn:hover::after {
  transform: translateX(4px);
}

.core-note {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
}

/* VISUAL */
.core-visual {
  display: flex;
  justify-content: center;
}

.core-glass {
  position: relative;
  padding: 25px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.6);
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }

  100% {
    transform: translateY(0);
  }
}

.core-glass img {
  max-width: 100%;
  border-radius: 16px;
  display: block;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .core-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .core-actions {
    justify-content: center;
    flex-direction: column;
  }
}

@media (max-width: 600px) {
  .core-title {
    font-size: 40px;
  }

  .core-title span {
    font-size: 34px;
  }

  .core-description {
    font-size: 16px;
  }
}

.ai-dark-card {
  background: radial-gradient(circle at top, #111827, #020617);
  border-radius: 22px;
  padding: 30px;
  box-shadow: 0 0 40px rgba(64, 188, 173, 0.475);
  border: 1px solid rgba(85, 207, 193, 0.323);
  color: white;
  max-width: 540px;
  position: relative;
  overflow: hidden;
}

.ai-dark-card::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, #00ffe17e, transparent 70%);
  top: -80px;
  right: -80px;
  opacity: .25;
}

.ai-dark-header {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: #c7d2fe;
  margin-bottom: 25px;
  letter-spacing: .5px;
}

.ai-orb {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #00ffe0;
  box-shadow: 0 0 15px #00ffe0;
  animation: pulseOrb 2s infinite;
}

@keyframes pulseOrb {
  0% {
    transform: scale(.8);
    opacity: .6;
  }

  50% {
    transform: scale(1.2);
    opacity: 1;
  }

  100% {
    transform: scale(.8);
    opacity: .6;
  }
}


.core-dashboard-x {
  position: relative;
  padding: 160px 0;
  background:
    radial-gradient(circle at 30% 20%, rgba(0, 255, 225, 0.348), transparent 55%),
    radial-gradient(circle at 70% 70%, rgba(0, 255, 225, 0.347), transparent 55%),
    linear-gradient(135deg, #05070c 0%, #05070c 100%);
  font-family: 'Inter', sans-serif;
  background: #050b18;
  overflow: hidden;
}

.core-x-header {
  max-width: 780px;
  margin: 0 auto 100px;
  text-align: center;
  opacity: 0;
  transform: translateY(40px);
  animation: fadeInUp 1s ease forwards;
  animation-delay: 0.2s;
}

.core-x-badge {
  display: inline-block;
  font-family: 'Rosnoc', sans-serif;
  font-size: 12px;
  letter-spacing: 2px;
  padding: 10px 22px;
  margin-bottom: 20px;
  border-radius: 50px;
  color: rgb(111, 178, 255);
  border: 1px solid rgba(111, 178, 255, 0.35);
  text-transform: uppercase;
}

.core-x-header h2 {
  color: #ffffff;
  font-size: 44px;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 20px;
}

.core-x-header h2 span {
  color: #00ffe0;
}

.core-x-header p {
  font-size: 16px;
  line-height: 28px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 40px;
}

/* ── CORE-X-BTN ── */
.core-x-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: #00e5c8;
  color: #060c18;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  border: none;
  position: relative;
  overflow: hidden;
  /* mantém a animação de entrada original */
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s ease forwards;
  animation-delay: 0.4s;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
  line-height: normal;
}

.core-x-btn::after {
  content: '→';
  display: inline-block;
  transition: transform 0.25s ease;
}

.core-x-btn:hover {
  background: #ffffff;
  color: #060c18;
  transform: translateY(-2px);
  box-shadow: 0 0 40px rgba(0, 255, 224, 0.35);
}

.core-x-btn:hover::after {
  transform: translateX(4px);
}

.core-x-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.core-x-card {
  position: relative;
  padding: 40px 32px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.5s ease;
  backdrop-filter: blur(12px);
  opacity: 0;
  transform: translateY(50px);
  animation: cardFadeIn 0.8s forwards;
  animation-delay: var(--delay);
}

.core-x-card:hover {
  transform: translateY(-10px);
  border-color: #00ffe0;
  box-shadow: 0 25px 60px rgba(0, 255, 224, 0.5);
}

.core-x-number {
  font-size: 14px;
  font-weight: 700;
  color: #00ffe0;
  letter-spacing: 1px;
}

.core-x-card h4 {
  color: #00ffe0;
  ;
  font-size: 22px;
  margin: 16px 0 12px;
}

.core-x-card p {
  font-size: 15px;
  line-height: 26px;
  color: rgba(255, 255, 255, 0.85);
}

@media (max-width: 992px) {
  .core-x-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .core-x-header h2 {
    font-size: 36px;
  }
}

@media (max-width: 576px) {
  .core-x-grid {
    grid-template-columns: 1fr;
  }

  .core-x-header h2 {
    font-size: 28px;
  }

  .core-x-header p {
    font-size: 14px;
  }

  .core-x-btn {
    padding: 14px 32px;
    font-size: 14px;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes cardFadeIn {
  from {
    opacity: 0;
    transform: translateY(50px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* Countdown */
.core-countdown {
  position: relative;
  padding: 160px 0;
  background: radial-gradient(circle at 30% 20%, rgba(80, 160, 255, 0.18), transparent 55%),
    radial-gradient(circle at 70% 70%, rgba(120, 255, 200, 0.12), transparent 55%),
    linear-gradient(135deg, #05070c 0%, #05070c 100%);
  text-align: center;
  overflow: hidden;
  background: #050b18;
  font-family: 'Inter', sans-serif;
  color: #ffffff;
}

.core-countdown .particles-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.core-countdown .countdown-wrapper {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
}

.core-countdown .countdown-title {
  font-family: 'Rosnoc', sans-serif;
  font-size: 44px;
  font-weight: 700;
  color: #50A0FF;
  margin-bottom: 12px;
}

.core-countdown .countdown-subtitle {
  font-size: 18px;
  color: #cfd8ff;
  margin-bottom: 60px;
}

.core-countdown .countdown-timer {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 60px;
}

.core-countdown .countdown-timer .time-box {
  background: rgba(80, 160, 255, 0.08);
  padding: 32px 28px;
  border-radius: 12px;
  min-width: 100px;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
  cursor: default;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.3);
}

.core-countdown .countdown-timer .time-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 28px rgba(80, 160, 255, 0.3);
}

.core-countdown .countdown-timer .time-box span {
  display: block;
  font-size: 42px;
  font-weight: 700;
  color: #ffffff;
}

.core-countdown .countdown-timer .time-box p {
  font-size: 13px;
  margin-top: 6px;
  color: #cfd8ff;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ── BTN-VIP ── */
.core-countdown .btn-vip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: #00e5c8;
  color: #060c18;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  border: none;
  position: relative;
  overflow: hidden;
  animation: none;
  transition: all 0.25s ease;
  line-height: normal;
}

.core-countdown .btn-vip::after {
  content: '→';
  display: inline-block;
  transition: transform 0.25s ease;
}

.core-countdown .btn-vip:hover {
  background: #ffffff;
  color: #060c18;
  transform: translateY(-2px);
  box-shadow: 0 0 40px rgba(0, 255, 224, 0.35);
}

.core-countdown .btn-vip:hover::after {
  transform: translateX(4px);
}

@media(max-width: 1024px) {
  .core-countdown .countdown-timer {
    flex-wrap: wrap;
    gap: 16px;
  }

  .core-countdown .countdown-timer .time-box {
    flex: 1 1 40%;
    min-width: 80px;
  }

  .core-countdown .countdown-title {
    font-size: 36px;
  }

  .core-countdown .countdown-subtitle {
    font-size: 16px;
  }
}

@media(max-width: 768px) {
  .core-countdown .countdown-timer .time-box {
    flex: 1 1 45%;
    min-width: 70px;
    padding: 20px 16px;
  }

  .core-countdown .countdown-title {
    font-size: 30px;
  }

  .core-countdown .countdown-subtitle {
    font-size: 14px;
  }
}


/* CTA Ultra Premium */
.cta-ultra {
  position: relative;
  padding: 100px 20px;
  background: linear-gradient(135deg, #050b18 0%, #050b18 100%);
  background: #050b18;
  border-radius: 20px;
  overflow: hidden;
  font-family: 'Inter', sans-serif;
  color: #ffffff;
}

.cta-ultra::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: #050b18;
  border-radius: 50%;
  top: -80px;
  left: -80px;
  filter: blur(120px);
  z-index: 1;
}

.cta-ultra::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: #050b18;
  border-radius: 50%;
  bottom: -60px;
  right: -60px;
  filter: blur(100px);
  z-index: 1;
}

.cta-ultra .inner-container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.cta-ultra .cta-content-column {
  flex: 1 1 500px;
}

.cta-ultra .cta-content-column h2 {
  font-size: 34px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 15px;
  color: #ffffff;
}

.cta-ultra .cta-content-column h2 span {
  color: #50A0FF;
  font-family: 'Rosnoc', sans-serif;
}

.cta-ultra .cta-content-column .cta-text {
  font-size: 16px;
  line-height: 1.6;
  color: #a0a8b8;
  margin-bottom: 30px;
}

/* ── CTA-BTN ── */
.cta-ultra .cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: #00e5c8;
  color: #060c18;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  border: none;
  position: relative;
  overflow: hidden;
  animation: none;
  transition: all 0.25s ease;
  line-height: normal;
}

.cta-ultra .cta-btn::after {
  content: '→';
  display: inline-block;
  transition: transform 0.25s ease;
}

.cta-ultra .cta-btn:hover {
  background: #ffffff;
  color: #060c18;
  transform: translateY(-2px);
  box-shadow: 0 0 40px rgba(0, 255, 224, 0.35);
}

.cta-ultra .cta-btn:hover::after {
  transform: translateX(4px);
}

.cta-ultra .cta-image-column {
  flex: 1 1 400px;
  text-align: center;
}

.cta-ultra .cta-image-column img {
  max-width: 100%;
  border-radius: 20px;
  transition: transform 0.4s ease;
}

.cta-ultra .cta-image-column img:hover {
  transform: scale(1.05);
}

@media (max-width: 991px) {
  .cta-ultra .inner-container {
    flex-direction: column;
  }

  .cta-ultra .cta-content-column,
  .cta-ultra .cta-image-column {
    flex: 1 1 100%;
  }

  .cta-ultra .cta-content-column h2 {
    font-size: 28px;
  }
}

@media (max-width: 576px) {
  .cta-ultra .cta-content-column h2 {
    font-size: 24px;
  }
}


/* ======================================
   FAQ ULTRA PREMIUM
====================================== */

.faq-ultra {
  padding: 140px 0;
  background: #050b18;
  font-family: 'Inter', sans-serif;
  position: relative;
  overflow: hidden;
}

/* Glow de fundo subtil */
.faq-ultra::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 229, 200, 0.05), transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.faq-ultra-inner {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: start;
  position: relative;
  z-index: 1;
}

/* ── Coluna esquerda — título ── */
.faq-ultra-title {
  position: sticky;
  top: 100px;
}

.faq-ultra-title .faq-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #00e5c8;
  margin-bottom: 20px;
}

.faq-ultra-title .faq-tag::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #00e5c8;
  box-shadow: 0 0 8px #00e5c8;
}

.faq-ultra-title h2 {
  font-size: 44px;
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 0;
}

.faq-ultra-title h2 span {
  font-family: 'Rosnoc', sans-serif;
  color: #00e5c8;
}

.faq-ultra-title p {
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 15px;
  line-height: 1.7;
  max-width: 380px;
}

/* ── FAQ-ULTRA-BTN ── */
.faq-ultra-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: #00e5c8;
  color: #060c18;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  border: none;
  position: relative;
  overflow: hidden;
  margin-top: 32px;
  animation: none;
  transition: all 0.25s ease;
  line-height: normal;
}

.faq-ultra-btn::after {
  content: '→';
  display: inline-block;
  transition: transform 0.25s ease;
}

.faq-ultra-btn:hover {
  background: #ffffff;
  color: #060c18;
  transform: translateY(-2px);
  box-shadow: 0 0 40px rgba(0, 255, 224, 0.35);
}

.faq-ultra-btn:hover::after {
  transform: translateX(4px);
}

/* ── Coluna direita — accordion ── */
.faq-ultra-accordion {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.07);
  transition: border-color 0.25s ease, background 0.25s ease;
}

.faq-item:hover {
  border-color: rgba(0, 229, 200, 0.15);
}

.faq-item.active {
  background: rgba(0, 229, 200, 0.04);
  border-color: rgba(0, 229, 200, 0.25);
}

.faq-question {
  width: 100%;
  padding: 20px 24px;
  background: none;
  border: none;
  color: #e8eeff;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 500;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  gap: 16px;
  transition: color 0.2s ease;
}

.faq-question:hover {
  color: #00e5c8;
}

.faq-item.active .faq-question {
  color: #00e5c8;
}

/* Ícone "+" que vira "×" */
.faq-question .icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 1;
  color: rgba(255, 255, 255, 0.4);
  transition: border-color 0.25s ease, color 0.25s ease,
    background 0.25s ease, transform 0.3s ease;
}

.faq-item.active .faq-question .icon {
  border-color: #00e5c8;
  color: #00e5c8;
  background: rgba(0, 229, 200, 0.10);
  transform: rotate(45deg);
}

/* Linha de destaque topo do item ativo */
.faq-item.active {
  box-shadow: inset 3px 0 0 #00e5c8;
}

.faq-answer {
  padding: 0 24px;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.55);
  font-size: 14.5px;
  line-height: 1.7;
  transition:
    max-height 0.42s cubic-bezier(.4, 0, .2, 1),
    opacity 0.32s ease,
    padding 0.32s ease;
}

.faq-item.active .faq-answer {
  padding: 0 24px 22px;
  max-height: 240px;
  opacity: 1;
}

@media (max-width: 992px) {
  .faq-ultra-inner {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .faq-ultra-title {
    position: static;
  }

  .faq-ultra-title h2 {
    font-size: 34px;
  }
}


/* MOZPROTECH – CHOOSE SECTION */
.mp-choose {
  padding: 110px 0;
  background: linear-gradient(180deg, #050b18 0%, #050b18 100%);
  color: #ffffff;
}

.mp-choose-title {
  max-width: 760px;
  margin: 0 auto 80px;
  text-align: center;
  color: #ffffff;
}

.mp-choose-eyebrow {
  display: inline-block;
  font-family: 'Rosnoc', sans-serif;
  font-size: 12px;
  letter-spacing: 2px;
  padding: 10px 22px;
  margin-bottom: 20px;
  border-radius: 50px;
  color: rgb(111, 178, 255);
  border: 1px solid rgba(111, 178, 255, 0.35);
  text-transform: uppercase;
}

.mp-choose-title h2 {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 18px;
  color: #ffffff;
}

.mp-choose-title h2 span {
  color: #00d4ff;
}

.mp-choose-title p {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75);
}

.mp-choose-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.mp-choose-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 45px 35px;
  text-align: center;
  transition: all 0.35s ease;
}

.mp-choose-card:hover {
  transform: translateY(-10px);
  border-color: rgba(0, 212, 255, 0.4);
  box-shadow: 0 25px 70px rgba(0, 212, 255, 0.15);
}

.mp-choose-card.mp-featured {
  background: linear-gradient(160deg, rgba(0, 212, 255, 0.18), rgba(0, 212, 255, 0.04));
  border-color: rgba(0, 212, 255, 0.45);
  transform: translateY(-15px);
}

.mp-choose-card-top {
  margin-bottom: 26px;
  display: flex;
  justify-content: center;
}

.mp-stars {
  font-size: 20px;
  color: #00d4ff;
  letter-spacing: 3px;
}

.mp-symbol {
  font-size: 34px;
  color: #00d4ff;
}

.mp-choose-card h3 {
  font-size: 21px;
  font-weight: 600;
  margin-bottom: 14px;
  color: #ffffff;
}

.mp-choose-card p {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75);
}

@media (max-width: 991px) {
  .mp-choose-grid {
    grid-template-columns: 1fr;
  }

  .mp-choose-card.mp-featured {
    transform: none;
  }

  .mp-choose-title h2 {
    font-size: 32px;
  }
}

.mp-choose-card.mp-featured .mp-symbol {
  position: relative;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 2px solid rgba(0, 212, 255, 0.8);
  box-shadow: 0 0 25px rgba(0, 212, 255, 0.45);
}

.mp-choose-card.mp-featured .mp-symbol::before {
  content: "";
  position: absolute;
  inset: 7px;
  border-radius: 50%;
  border: 1px dashed rgba(0, 212, 255, 0.6);
  animation: mp-rotate 12s linear infinite;
}

.mp-choose-card.mp-featured .mp-symbol::after {
  content: "";
  position: absolute;
  inset: 16px;
  border-radius: 50%;
  background: #00d4ff;
  opacity: 0.85;
}

.mp-choose-card:not(.mp-featured) .mp-symbol {
  position: relative;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  border: 1px solid rgba(0, 212, 255, 0.6);
}

.mp-choose-card:not(.mp-featured) .mp-symbol::before,
.mp-choose-card:not(.mp-featured) .mp-symbol::after {
  content: "";
  position: absolute;
  background: rgba(0, 212, 255, 0.6);
}

.mp-choose-card:not(.mp-featured) .mp-symbol::before {
  width: 100%;
  height: 1px;
  top: 50%;
  left: 0;
}

.mp-choose-card:not(.mp-featured) .mp-symbol::after {
  width: 1px;
  height: 100%;
  left: 50%;
  top: 0;
}

@keyframes mp-rotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}


/* CTA Três Premium */
.cta-tres-premium {
  position: relative;
  padding: 120px 0;
  background: linear-gradient(135deg, #050b18 0%, #050b18 100%);
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  overflow: hidden;
}

.cta-tres-premium_text {
  margin-bottom: 30px;
  z-index: 2;
}

.cta-tres-premium_text .sec-title_title {
  font-size: 16px;
  color: #00d4ff;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 700;
  margin-bottom: 15px;
}

.cta-tres-premium_text .sec-title_heading {
  font-family: 'RosnOC', sans-serif;
  font-size: 42px;
  line-height: 50px;
  font-weight: 800;
  margin-bottom: 20px;
}

.cta-tres-premium_text .sec-title_heading span {
  color: #78ffcc;
}

.cta-tres-premium_text .sec-title_text {
  font-size: 16px;
  line-height: 28px;
  color: #c1c1c1;
  margin-bottom: 30px;
}

/* ── BTN-PREMIUM-CTA ── */
.btn-premium-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: #00e5c8;
  color: #060c18;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  border: none;
  position: relative;
  overflow: hidden;
  animation: none;
  transition: all 0.25s ease;
  line-height: normal;
}

.btn-premium-cta::after {
  content: '→';
  display: inline-block;
  transition: transform 0.25s ease;
}

.btn-premium-cta:hover {
  background: #ffffff;
  color: #060c18;
  transform: translateY(-2px);
  box-shadow: 0 0 40px rgba(0, 255, 224, 0.35);
}

.btn-premium-cta:hover::after {
  transform: translateX(4px);
}

.cta-tres-premium_image img {
  width: 100%;
  max-width: 600px;
  animation: float-cta 6s ease-in-out infinite;
}

@keyframes float-cta {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
  }
}

@media (max-width: 991px) {

  .cta-tres-premium_text,
  .cta-tres-premium_image {
    text-align: center;
  }

  .cta-tres-premium_text .sec-title_heading {
    font-size: 32px;
    line-height: 40px;
  }
}

@media (max-width: 575px) {
  .cta-tres-premium {
    padding: 80px 20px;
  }

  .cta-tres-premium_text .sec-title_heading {
    font-size: 26px;
    line-height: 32px;
  }
}

/* ============================================================
   MOZPROTECH — footer.css
   Core AI theme · Dark · Cyan accent · Imersivo
============================================================ */

/* ── SECTION ── */
.moz-footer {
  position: relative;
  background: #030810;
  font-family: 'Inter', sans-serif;
  color: rgba(255, 255, 255, 0.55);
  overflow: hidden;
}

/* ── BACKGROUND GLOW ── */
.moz-footer__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 15% 80%, rgba(0, 229, 200, 0.05), transparent),
    radial-gradient(ellipse 50% 60% at 85% 20%, rgba(80, 160, 255, 0.06), transparent);
  pointer-events: none;
}

/* ── LINHA DE TOPO ── */
.moz-footer__topline {
  height: 1px;
  background: linear-gradient(90deg,
      transparent 0%,
      rgba(0, 229, 200, 0.5) 30%,
      rgba(0, 229, 200, 0.8) 50%,
      rgba(0, 229, 200, 0.5) 70%,
      transparent 100%);
  box-shadow: 0 0 20px rgba(0, 229, 200, 0.25);
}

/* ── TOP ROW: logo + social ── */
.moz-footer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  padding: 52px 0 44px;
}

/* Logo */
.moz-footer__logo {
  display: inline-block;
  margin-bottom: 12px;
}

.moz-footer__logo img {
  height: 32px;
  width: auto;
  display: block;
  opacity: 0.9;
  transition: opacity 0.2s ease;
}

.moz-footer__logo:hover img {
  opacity: 1;
}

/* Tagline */
.moz-footer__tagline {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(0, 229, 200, 0.6);
  margin: 0;
}

/* Social */
.moz-footer__social {
  display: flex;
  align-items: center;
  gap: 10px;
}

.moz-footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(255, 255, 255, 0.45);
  font-size: 14px;
  text-decoration: none;
  transition:
    border-color 0.22s ease,
    color 0.22s ease,
    background 0.22s ease,
    transform 0.22s ease,
    box-shadow 0.22s ease;
}

.moz-footer__social-link:hover {
  border-color: rgba(0, 229, 200, 0.40);
  color: #00e5c8;
  background: rgba(0, 229, 200, 0.07);
  transform: translateY(-2px);
  box-shadow: 0 0 16px rgba(0, 229, 200, 0.15);
}

/* ── DIVISOR ── */
.moz-footer__divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.06);
}

/* ── MID ROW: colunas + newsletter ── */
.moz-footer__mid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1.6fr;
  gap: 48px;
  padding: 52px 0;
}

/* Coluna genérica */
.moz-footer__col-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 22px;
}

.moz-footer__links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.moz-footer__links a {
  font-size: 13.5px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  transition: color 0.2s ease, padding-left 0.2s ease;
  display: inline-block;
}

.moz-footer__links a:hover {
  color: #00e5c8;
  padding-left: 4px;
}

/* ── Newsletter ── */
.moz-footer__newsletter-text {
  font-size: 13.5px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 20px;
}

.moz-footer__form-group {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 4px;
  overflow: hidden;
  transition: border-color 0.22s ease, box-shadow 0.22s ease;
}

.moz-footer__form-group:focus-within {
  border-color: rgba(0, 229, 200, 0.40);
  box-shadow: 0 0 0 3px rgba(0, 229, 200, 0.07);
}

.moz-footer__input {
  flex: 1;
  background: rgba(255, 255, 255, 0.04);
  border: none;
  outline: none;
  padding: 12px 16px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: #ffffff;
  min-width: 0;
}

.moz-footer__input::placeholder {
  color: rgba(255, 255, 255, 0.28);
}

.moz-footer__submit {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: #00e5c8;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #060c18;
  transition: background 0.22s ease;
}

.moz-footer__submit svg {
  width: 16px;
  height: 16px;
  transition: transform 0.22s ease;
}

.moz-footer__submit:hover {
  background: #ffffff;
}

.moz-footer__submit:hover svg {
  transform: translateX(3px);
}

/* Apps */
.moz-footer__apps {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.moz-footer__app-btn img {
  height: 34px;
  width: auto;
  opacity: 0.6;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.moz-footer__app-btn:hover img {
  opacity: 1;
  transform: translateY(-1px);
}

/* ── BOTTOM ROW ── */
.moz-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding: 24px 0 32px;
}

/* Copyright */
.moz-footer__copy {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.30);
  margin: 0;
}

.moz-footer__copy a {
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  transition: color 0.2s ease;
}

.moz-footer__copy a:hover {
  color: rgb(0, 229, 200);
}

/* Status online */
.moz-footer__status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 11.5px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.30);
  letter-spacing: 0.04em;
}

.moz-footer__status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #00e5c8;
  box-shadow: 0 0 8px #00e5c8;
  animation: footerDotPulse 2.5s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes footerDotPulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.4;
    transform: scale(0.6);
  }
}

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .moz-footer__mid {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 36px;
  }

  .moz-footer__col--newsletter {
    grid-column: 1 / -1;
    max-width: 480px;
  }
}

@media (max-width: 768px) {
  .moz-footer__mid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .moz-footer__col--newsletter {
    grid-column: 1 / -1;
  }

  .moz-footer__top {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .moz-footer__mid {
    grid-template-columns: 1fr;
  }

  .moz-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}