


.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{
	display: inline-block;
	padding: 16px 40px;
	background: #00ffe0;
	color: #ffffff;
	border-radius: 50px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
	transition: all 0.4s ease;
	box-shadow: 0 15px 35px rgba(0,0,0,0.4);
	opacity: 0;
	transform: translateY(20px);
	animation: fadeInUp 1s ease forwards;
	animation-delay: 0.4s;
}

.core-x-btn:hover{
	background: #00ffc2;
	transform: translateY(-3px);
	box-shadow: 0 20px 50px rgba(0,255,224,0.5);
}

.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);
}

/* Tablets */
@media (max-width: 992px){
	.core-x-grid{
		grid-template-columns: repeat(2,1fr);
	}
	.core-x-header h2{
		font-size: 36px;
	}
}

/* Mobile */
@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;
	}
}

/* Animations */
@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 Cinematic - Versão Ultra Visível */
.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;
}

.core-countdown .btn-vip{
display: inline-block;
  padding: 18px 48px;
  font-size: 16px;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  color: #ffffff;
  background: linear-gradient(90deg, #00ffe0, #00ffe0); 
  border-radius: 50px;
  text-decoration: none;
  text-transform: uppercase;
  box-shadow: 0 0 20px #50A0FF40, 0 0 35px #78FFC820;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease-in-out;
  animation: pulse 2.2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 20px #50A0FF40, 0 0 35px #78FFC820;
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 35px #50A0FF60, 0 0 50px #78FFC840;
    transform: scale(1.05);
  }
  100% {
    box-shadow: 0 0 20px #50A0FF40, 0 0 35px #78FFC820;
    transform: scale(1);
  }
}

.btn-vip-pulse:hover {
  background: linear-gradient(90deg, #78FFC8, #50A0FF);
  box-shadow: 0 0 45px #50A0FF80, 0 0 65px #78FFC8AA;
  transform: scale(1.1);
}

@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{
    flex-wrap: wrap;
    gap: 12px;
  }
  .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 - Nova Versão
============================== */

.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-ultra .cta-btn {
  display: inline-block;
  padding: 16px 50px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 50px;
  background: linear-gradient(90deg, #00ffe0, #00ffe0);
  color: #fff;
  text-decoration: none;
  position: relative;
  box-shadow: 0 0 20px #50A0FF40, 0 0 35px #78FFC820;
  transition: all 0.3s ease-in-out;
  animation: pulse-btn 2.2s infinite;
}

.cta-ultra .cta-btn:hover {
  background: linear-gradient(90deg, #00ffe0, #00ffe0);
  transform: scale(1.1);
  box-shadow: 0 0 45px #50A0FF80, 0 0 65px #78FFC8AA;
}

@keyframes pulse-btn {
  0% { box-shadow: 0 0 20px #50A0FF40, 0 0 35px #78FFC820; transform: scale(1); }
  50% { box-shadow: 0 0 35px #50A0FF60, 0 0 50px #78FFC840; transform: scale(1.05); }
  100% { box-shadow: 0 0 20px #50A0FF40, 0 0 35px #78FFC820; transform: scale(1); }
}

.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);
}

/* Responsivo */
@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;
  }
  .cta-ultra .cta-btn {
    padding: 14px 40px;
    font-size: 15px;
  }
}

/* FAQ Ultra Premium */
.faq-ultra {
  padding: 140px 0;
  background: radial-gradient(circle at 20% 20%, #050b18, transparent 50%),
              radial-gradient(circle at 80% 80%, #050b18, transparent 50%),
              #05070c;
  font-family: 'Inter', sans-serif;
   background: #050b18;
}

.faq-ultra-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}

/* Título */
.faq-ultra-title .faq-tag {
  display: inline-block;
  letter-spacing: 3px;
  font-size: 12px;
  color: #7da6ff;
  margin-bottom: 16px;
}

.faq-ultra-title h2 {
  font-size: 46px;
  font-weight: 600;
  color: #fff;
  line-height: 1.2;
}

.faq-ultra-title h2 span {
  font-family: 'Rosnoc', sans-serif;
  color: #9fb7ff;
}

.faq-ultra-title p {
  margin-top: 20px;
  color: #b7c2d6;
  font-size: 16px;
  max-width: 420px;
}

/* Botão */
.faq-ultra-btn {
  display: inline-block;
  padding: 18px 48px;
  font-size: 16px;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  color: #ffffff;
  background: linear-gradient(90deg, #00ffe0, #00ffe0); 
  border-radius: 50px;
  text-decoration: none;
  text-transform: uppercase;
  box-shadow: 0 0 20px #50A0FF40, 0 0 35px #78FFC820;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease-in-out;
  animation: pulse 2.2s infinite;
}

.faq-ultra-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 45px rgba(255, 255, 255, 0.55);
}

/* Accordion */
.faq-ultra-accordion {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.faq-item {
  background: rgba(255,255,255,0.03);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
}

.faq-question {
  width: 100%;
  padding: 22px 26px;
  background: none;
  border: none;
  color: #fff;
  font-size: 16px;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-question .icon {
  color: #7da6ff;
  font-size: 20px;
  transition: transform .3s ease;
}

.faq-answer {
  padding: 0 26px;
  max-height: 0;
  opacity: 0;
  transform: translateY(-6px);
  overflow: hidden;
  color: #b7c2d6;
  font-size: 15px;
  line-height: 1.6;
  transition:
    max-height 0.45s cubic-bezier(.4,0,.2,1),
    opacity 0.35s ease,
    transform 0.35s ease,
    padding 0.35s ease;
}

/* Ativo */
.faq-item.active .faq-answer {
  padding: 0 26px 22px;
  max-height: 240px;
  opacity: 1;
  transform: translateY(0);
}


/* Responsivo */
@media (max-width: 992px) {
  .faq-ultra-inner {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .faq-ultra-title h2 {
    font-size: 38px;
  }
}

/* ===========================
   MOZPROTECH – CHOOSE PREMIUM
=========================== */

/* ===============================
   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);
  
}

/* Grid */
.mp-choose-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Card */
.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);
}

/* Featured Card */
.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);
}

/* Top Icon Area */
.mp-choose-card-top {
  margin-bottom: 22px;
}

.mp-stars {
  font-size: 20px;
  color: #00d4ff;
  letter-spacing: 3px;
}

.mp-symbol {
  font-size: 34px;
  color: #00d4ff;
}

/* Text */
.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);
}

/* Responsive */
@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;
  }
}

/* Icon Variants */
.mp-choose-card-top {
  margin-bottom: 26px;
  display: flex;
  justify-content: center;
}

/* Stars mantém */
.mp-stars {
  font-size: 20px;
  color: #00d4ff;
  letter-spacing: 3px;
}

/* === AI CORE RING === */
.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;
}

/* === GLOBAL NETWORK ICON === */
.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;
}

/* Animation */
@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;
}

/* Texto */
.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;
}

/* Botão Premium CTA */
.btn-premium-cta {
    display: inline-block;
    padding: 16px 40px;
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    background: linear-gradient(90deg, #00ffe0, #00ffe0); 
    border-radius: 50px;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    transition: 0.4s all ease-in-out;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
}

.btn-premium-cta:hover {
    transform: scale(1.08);
    box-shadow: 0 0 40px rgba(0, 212, 255, 0.7);
}

/* Pulse animado apenas no botão */
.btn-premium-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: rgba(0, 212, 255, 0.4);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    animation: pulse-cta 1.8s infinite;
}

@keyframes pulse-cta {
    0% { transform: translate(-50%, -50%) scale(0.8); opacity: 0.6; }
    50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.2; }
    100% { transform: translate(-50%, -50%) scale(0.8); opacity: 0.6; }
}

/* Imagem */
.cta-tres-premium_image img {
    width: 100%;
    max-width: 600px;
    animation: float-cta 6s ease-in-out infinite;
}

/* Float animation suave */
@keyframes float-cta {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* Responsivo */
@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;
    }
}

