/* ====================================
   SEÇÃO DE SERVIÇOS - ESTILIZAÇÃO MODERNA
   ==================================== */

/* Seção Principal */
.services-section {
    background: #0a0a0a;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    margin-top: -25rem;
}

/* ===================== Curiosidades ===================== */
.curiosidades-section {
  position: relative;
  padding: 120px 0;
  background: #0a0a0a;
  margin-bottom: -100px;
  overflow: hidden;
  margin-top: -25rem;
}

.curiosidades-section::before,
.curiosidades-section::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.2;
  pointer-events: none;
}

.curiosidades-section::before {
  top: -120px;
  left: -120px;
  background: radial-gradient(circle at 30% 30%, rgba(168, 85, 247, 0.35), transparent 60%);
}

.curiosidades-section::after {
  bottom: -120px;
  right: -120px;
  background: radial-gradient(circle at 70% 70%, rgba(59, 130, 246, 0.35), transparent 60%);
}

.curiosidades-header {
  text-align: center;
  margin-bottom: 56px;
}

.curiosidades-title {
  position: relative;
  display: inline-block;
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  font-weight: 900;
  letter-spacing: -0.025em;
  line-height: 1.2;
  padding: 0.15em 0 0.2em !important;
  overflow: visible !important;
  background: linear-gradient(120deg, #fff, #d1d5db, #fff);
  background-clip: text;
  background-size: 300% 100%;
  animation: titleGradientMove 8s linear infinite;
  text-shadow: 0 0 24px rgba(255, 255, 255, 0.06);
  margin-top: -100px;
  margin-bottom: 0px;
}

/* garante que o container do título não o recorte */
.curiosidades-header { overflow: visible; }

.curiosidades-title::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -0px;
  transform: translateX(-50%);
  width: 56%;
  height: 2px;
  background: linear-gradient(90deg, rgba(168,85,247,0), rgba(168,85,247,0.6), rgba(59,130,246,0.6), rgba(168,85,247,0));
  filter: blur(0.3px);
}

.curiosidades-subtitle {
  margin: 14px auto 0;
  max-width: 820px;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 300;
  line-height: 1.6;
}

.curiosidades-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  grid-auto-rows: 140px;
  grid-auto-flow: dense;
  gap: 24px;
  max-width: 1280px;
  margin: 0 auto;
  perspective: 1200px;
}

@media (max-width: 1024px) {
  .curiosidades-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
}

@media (max-width: 640px) {
  .curiosidades-grid { grid-template-columns: 1fr; grid-auto-rows: auto; }
}

.curio-card {
  position: relative;
  padding: 28px;
  border-radius: 18px;
  background:
    radial-gradient(120% 120% at 0% 0%, rgba(168,85,247,0.18), transparent 60%),
    radial-gradient(120% 120% at 100% 100%, rgba(59,130,246,0.18), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.6s cubic-bezier(0.4, 0, 0.2, 1),
              border-color 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Holo border sweep */
.curio-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: conic-gradient(
    from 0deg,
    rgba(168,85,247,0.0),
    rgba(168,85,247,0.5),
    rgba(59,130,246,0.5),
    rgba(236,72,153,0.5),
    rgba(168,85,247,0.0)
  );
  padding: 1.2px;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.45s ease;
  pointer-events: none;
  z-index: 0;
}

/* sheen highlight */
.curio-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    repeating-linear-gradient(0deg, rgba(255,255,255,0.06) 0 1px, transparent 1px 8px),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.05) 0 1px, transparent 1px 8px);
  mix-blend-mode: screen;
  opacity: 0;
  transition: opacity 0.45s ease, filter 0.45s ease;
  filter: blur(0px);
  pointer-events: none;
}

.curio-card:hover {
  transform: translateY(-4px) rotateX(6deg) rotateY(-4deg) scale(1.01);
  border-color: rgba(255, 255, 255, 0.26);
  box-shadow: 0 30px 80px -24px rgba(0, 0, 0, 0.65), inset 0 1px 0 rgba(255,255,255,0.06);
}

.curio-card:hover::before { opacity: 1; }

.curio-card:hover::after {
  opacity: 0.35;
  filter: blur(0.4px);
  animation: gridDrift 3s linear infinite;
}

.curio-icon {
  --ring-size: 56px;
  width: var(--ring-size);
  height: var(--ring-size);
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.curio-icon::before {
  content: "";
  position: absolute;
  inset: -40%;
  border-radius: inherit;
  background: conic-gradient(from 0deg, rgba(168,85,247,0.5), rgba(59,130,246,0.5), rgba(236,72,153,0.5), rgba(168,85,247,0.5));
  filter: blur(12px);
  animation: none;
  opacity: 0.35;
}

.curio-icon::after {
  content: "";
  position: absolute;
  inset: 2px;
  border-radius: inherit;
  background: radial-gradient(100% 100% at 50% 0%, rgba(255,255,255,0.18), rgba(255,255,255,0.04));
  z-index: 0;
}

.curio-card:hover .curio-icon {
  transform: translateY(-2px) translateZ(20px) scale(1.06);
}

.curio-card:hover .curio-icon::before { opacity: 0.5; }

.curio-icon i { font-size: 22px; z-index: 1; }

.curio-title {
  font-size: 20px;
  font-weight: 900;
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
  background: linear-gradient(135deg, #ffffff, #cbd5e1);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.01em;
  transform-origin: left center;
  transition: transform 280ms cubic-bezier(0.4, 0, 0.2, 1),
              letter-spacing 280ms cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.curio-card:hover .curio-title {
  letter-spacing: 0;
  transform: scale(1.04);
}
.curio-card:hover .curio-text { color: rgba(255, 255, 255, 0.9); }

@keyframes gridDrift {
  0% { background-position: 0 0, 0 0; }
  100% { background-position: 0 8px, 8px 0; }
}

.curio-text {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  font-weight: 300;
  position: relative;
  z-index: 1;
}

/* Mosaic layout via nth-child spanning */
.curiosidades-grid .curio-card:nth-child(1) {
  grid-column: span 4;
  grid-row: span 3;
  padding: 40px;
}

.curiosidades-grid .curio-card:nth-child(1) .curio-title {
  font-size: clamp(1.4rem, 2.2vw, 2rem);
}

.curiosidades-grid .curio-card:nth-child(1) .curio-text {
  font-size: 1.1rem;
}

.curiosidades-grid .curio-card:nth-child(2) {
  grid-column: span 2;
  grid-row: span 3;
}

/* Tamanhos individuais para textos dos cards 2-4 */
.curiosidades-grid .curio-card:nth-child(2) .curio-text {
  font-size: 1.2rem;
}

.curiosidades-grid .curio-card:nth-child(3) .curio-text {
  font-size: 1.1rem;
}

.curiosidades-grid .curio-card:nth-child(4) .curio-text {
  font-size: 1.2rem;
}

.curiosidades-grid .curio-card:nth-child(3) {
  grid-column: 4 / span 3; /* right half */
  grid-row: span 2;
}

.curiosidades-grid .curio-card:nth-child(4) {
  grid-column: 1 / span 3; /* left half */
  grid-row: span 2;
}

/* Rebalance for 4 items */
.curiosidades-grid .curio-card:nth-child(5) { display: none; }
.curiosidades-grid .curio-card:nth-child(6) { display: none; }

@media (max-width: 1024px) {
  .curiosidades-grid .curio-card:nth-child(1) { grid-column: span 2; grid-row: span 2; }
  .curiosidades-grid .curio-card:nth-child(2) { grid-column: span 2; grid-row: span 2; }
  .curiosidades-grid .curio-card:nth-child(3) { grid-column: span 2; grid-row: span 2; }
  .curiosidades-grid .curio-card:nth-child(4) { grid-column: span 2; grid-row: span 2; }
}

@media (max-width: 640px) {
  .curiosidades-grid .curio-card { grid-column: auto; grid-row: auto; }
}

/* Subtle floating animation for variety */
.curiosidades-grid .curio-card:nth-child(odd) { animation: floatY 8s ease-in-out infinite; }
.curiosidades-grid .curio-card:nth-child(even) { animation: floatY 9.5s ease-in-out -2s infinite; }

@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Make the big card content breathe a bit more */
.curiosidades-grid .curio-card:nth-child(1) .curio-icon { --ring-size: 64px; margin-bottom: 24px; }
.curiosidades-grid .curio-card:nth-child(1) .curio-title { margin-bottom: 12px; }


@media (max-width: 768px) {
    .services-section {
        margin-top: -18rem;
    }
}

.services-container {
    max-width: 5000px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* Header da Seção */
.services-header {
    text-align: center;
    margin-bottom: 80px;
    animation: fadeInUp 1s ease-out;
}

.services-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    background: linear-gradient(135deg, #ffffff, #e5e7eb, #ffffff);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: titleGlow 3s ease-in-out infinite;
    margin-bottom: 20px;
    margin-top: -60px;
    letter-spacing: -0.02em;
    line-height: 1.2;
    text-align: center;
}

@media (max-width: 768px) {
    .services-title {
        margin-top: -40px;
    }
}

.services-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Grid de Cards */
.pricing-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    justify-items: center;
    animation: fadeInUp 1s ease-out 0.3s both;
    max-width: 1800px;
    margin: 0 auto;
}

/* Card Base */
.pricing-card {
    position: relative;
    padding: 2rem;
    border-radius: 1.5rem;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: default;
    width: 100%;
    max-width: 450px;
    text-align: center;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.pricing-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 1.5rem;
    opacity: 0;
    transition: opacity 0.5s ease;
    filter: blur(20px);
}

.pricing-card:hover::before {
    opacity: 1;
}

.pricing-card:hover {
    transform: scale(1.05);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

/* Cores específicas para cada card - visual sutil */
.pricing-card.basic {
    border-color: rgba(66, 133, 244, 0.2);
}

.pricing-card.basic:hover {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(6, 182, 212, 0.2));
}

.pricing-card.basic::before {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(6, 182, 212, 0.2));
    box-shadow: 0 0 40px rgba(59, 130, 246, 0.2);
}

.pricing-card.intermediate {
    border-color: rgba(16, 185, 129, 0.2);
}

.pricing-card.intermediate:hover {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(20, 184, 166, 0.2));
}

.pricing-card.intermediate::before {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(20, 184, 166, 0.2));
    box-shadow: 0 0 40px rgba(16, 185, 129, 0.2);
}

.pricing-card.advanced {
    border-color: rgba(239, 68, 68, 0.2);
}

.pricing-card.advanced:hover {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.2), rgba(239, 68, 68, 0.2));
}

.pricing-card.advanced::before {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.2), rgba(239, 68, 68, 0.2));
    box-shadow: 0 0 40px rgba(249, 115, 22, 0.2);
}

.pricing-card.premium {
    border-color: rgba(168, 85, 247, 0.2);
}

.pricing-card.premium:hover {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.2), rgba(236, 72, 153, 0.2));
}

.pricing-card.premium::before {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.2), rgba(236, 72, 153, 0.2));
    box-shadow: 0 0 40px rgba(168, 85, 247, 0.2);
}

.pricing-card.custom {
    border-color: rgba(156, 163, 175, 0.2);
}

.pricing-card.custom:hover {
    background: linear-gradient(135deg, rgba(156, 163, 175, 0.2), rgba(209, 213, 219, 0.2));
}

.pricing-card.custom::before {
    background: linear-gradient(135deg, rgba(156, 163, 175, 0.2), rgba(209, 213, 219, 0.2));
    box-shadow: 0 0 40px rgba(156, 163, 175, 0.2);
}



.popular-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: rgba(239, 68, 68, 0.9);
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    z-index: 10;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.pricing-card:hover .popular-badge {
    background: rgba(239, 68, 68, 0.2);
    border-color: rgba(239, 68, 68, 0.5);
    color: #fff;
}

/* Ícone do Card */
.card-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
    position: relative;
}

.card-icon i {
    width: 5rem;
    height: 5rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.5s ease;
}

.pricing-card:hover .card-icon i {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1) rotate(6deg);
    color: #fff;
}

/* Cores específicas para ícones no hover */
.basic:hover .card-icon i {
    color: #60a5fa;
}

.intermediate:hover .card-icon i {
    color: #34d399;
}

.advanced:hover .card-icon i {
    color: #f87171;
}

.premium:hover .card-icon i {
    color: #a78bfa;
}

.custom:hover .card-icon i {
    color: #d1d5db;
}

.package-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.9);
    transition: color 0.3s ease;
}

.pricing-card:hover .package-title {
    color: #fff;
}

.package-description {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
    line-height: 1.6;
    font-size: 1.125rem;
}

/* Seção de Preços */
.price-section {
    margin-bottom: 30px;
}

.price-original {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 8px;
}

.original-price {
    color: #666;
    text-decoration: line-through;
    font-size: 1rem;
    font-weight: 500;
}

.discount-amount {
    background: #dc2626;
    color: white;
    padding: 2px 8px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
}

.price-current {
    font-size: 2.5rem;
    font-weight: 900;
    color: white;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.price-method {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.price-method.pix {
    background: #00C851;
    color: white;
}

.price-method.custom {
    background: #666;
    color: white;
}

.price-alternative {
    color: #999;
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Preço Personalizado */
.price-custom {
    margin-bottom: 12px;
}

.custom-text {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    line-height: 1.2;
}

/* Lista de Recursos */
.features-list {
    margin-bottom: 2rem;
    text-align: left;
    flex-grow: 1;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
}

.feature-check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.25rem;
    height: 1.25rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-right: 1rem;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.pricing-card:hover .feature-check {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    color: #fff;
    transform: scale(1.1);
}

.feature-item span {
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.3s ease;
}

.pricing-card:hover .feature-item span {
    color: rgba(255, 255, 255, 0.9);
}

/* Botão CTA */
.cta-button {
    width: 100%;
    border: 2px solid transparent;
    padding: 18px 32px;
    border-radius: 16px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    margin-top: auto;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.cta-button:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.cta-button:hover .button-text {
    transform: translateX(-15px);
}

.cta-button:hover .button-icon {
    transform: translateX(0);
    opacity: 1;
}

.cta-button .button-text {
    transition: transform 0.3s ease;
    left: 0%;
    transform: translateX(5%);
}

.cta-button .button-icon {
    transform: translateX(50px);
    opacity: 0;
    transition: all 0.3s ease;
}

/* Botões específicos para cada card */
.basic .cta-button {
    border: 2px solid #4285f4;
    color: white;
}

.intermediate .cta-button {
    border: 2px solid #00c851;
    color: white;
}

.advanced .cta-button {
    border: 2px solid #DC143C;
    color: white;
}

.premium .cta-button {
    border: 2px solid #8e44ad;
    color: white;
}

.custom .cta-button {
    border: 2px solid #95a5a6;
    color: white;
}

.cta-button:active {
    transform: translateY(-2px) scale(0.98);
}

.cta-button i {
    font-size: 1.2rem;
}

/* Animações */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes popularPulse {
    0% {
        transform: translateX(-50%) scale(1);
        box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
    }
    100% {
        transform: translateX(-50%) scale(1.03);
        box-shadow: 0 12px 35px rgba(255, 107, 53, 0.6);
    }
}

/* Responsividade */
@media (max-width: 1600px) {
    .pricing-cards {
        grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
        gap: 35px;
    }
}

@media (max-width: 1200px) {
    .pricing-cards {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 30px;
    }
    
    .pricing-card {
        max-width: 400px;
        padding: 35px 30px;
    }
}

@media (max-width: 768px) {
    .services-section {
        padding: 80px 0;
    }
    
    .services-header {
        margin-bottom: 60px;
    }
    
    .services-title {
        font-size: 2.5rem;
    }
    
    .services-subtitle {
        font-size: 1.1rem;
    }
    
    .pricing-cards {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .pricing-card {
        padding: 30px 25px;
        max-width: 100%;
    }
    
    .price-current {
        font-size: 2.2rem;
    }
    
    .card-icon i {
        width: 65px;
        height: 65px;
        font-size: 26px;
    }
    
    .package-title {
        font-size: 1.6rem;
    }
    
    .cta-button {
        padding: 16px 28px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .services-container {
        padding: 0 15px;
    }
    
    .pricing-card {
        padding: 25px 20px;
    }
    
    .price-current {
        font-size: 2rem;
    }
    
    .services-title {
        font-size: 2rem;
    }
    
    .package-title {
        font-size: 1.4rem;
    }
    
    .card-icon i {
        width: 55px;
        height: 55px;
        font-size: 22px;
    }
    
    .cta-button {
        padding: 14px 24px;
        font-size: 0.95rem;
        gap: 8px;
    }
    
    .popular-badge {
        padding: 8px 18px;
        font-size: 0.8rem;
    }
}

/* Efeitos de entrada quando a seção fica visível */
.services-section.visible .services-header {
    animation: fadeInUp 1s ease-out;
}

.services-section.visible .pricing-card {
    animation: fadeInUp 1s ease-out calc(var(--delay) * 0.1s) both;
}

.pricing-card:nth-child(1) { --delay: 1; }
.pricing-card:nth-child(2) { --delay: 2; }
.pricing-card:nth-child(3) { --delay: 3; }
.pricing-card:nth-child(4) { --delay: 4; }
.pricing-card:nth-child(5) { --delay: 5; }

/* Badge "Mais Recomendado" para o pacote premium */
.pricing-card.premium .recommended-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(168, 85, 247, 0.1);
    border: 1px solid rgba(168, 85, 247, 0.3);
    color: rgba(168, 85, 247, 0.9);
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    z-index: 10;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.pricing-card.premium:hover .recommended-badge {
    background: rgba(168, 85, 247, 0.2);
    border-color: rgba(168, 85, 247, 0.5);
    color: #fff;
}

@keyframes recommendedPulse {
    0% {
        box-shadow: 0 8px 25px rgba(142, 68, 173, 0.4);
        transform: translateX(-50%) scale(1);
    }
    100% {
        box-shadow: 0 12px 35px rgba(142, 68, 173, 0.6);
        transform: translateX(-50%) scale(1.05);
    }
}

   .package-title {
    margin-top: 30px;
   }

       /* Estilos para nova seção CTA após serviços */
.services-cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.98) 0%, 
        rgba(20, 20, 20, 0.95) 50%, 
        rgba(0, 0, 0, 0.98) 100%
    );
    position: relative;
    overflow: hidden;
    margin-top: 5rem;
}

@media (max-width: 768px) {
    .services-cta-section {
        margin-top: 0rem;
    }
}

.services-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.services-cta-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(200, 200, 200, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.services-cta-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.services-cta-content {
    text-align: center;
    position: relative;
    z-index: 10;
}

.services-cta-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.2;
    background: linear-gradient(135deg, #ffffff, #e5e7eb, #ffffff);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: titleGlow 3s ease-in-out infinite;
    position: relative;
}

.services-cta-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
}

.services-cta-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 60px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    text-align: center;
    font-weight: 300;
margin-bottom: 2rem;
}

.services-cta-buttons {
    display: flex;
    gap: 24px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.btn-portfolio,
.btn-contact {
    position: relative;
    padding: 20px 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    min-width: 240px;
    text-decoration: none;
    display: inline-block;
    backdrop-filter: blur(20px);
}

.btn-portfolio::before,
.btn-contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.5s ease;
    border-radius: 16px;
}

.btn-portfolio {
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(255, 255, 255, 0.1);
}

.btn-contact {
    border-color: rgba(200, 200, 200, 0.2);
    box-shadow: 0 8px 32px rgba(200, 200, 200, 0.1);
}

.btn-portfolio .btn-background,
.btn-contact .btn-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    transition: all 0.5s ease;
    border-radius: 16px;
    filter: blur(20px);
}

.btn-portfolio .btn-background {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(220, 220, 220, 0.2));
}

.btn-contact .btn-background {
    background: linear-gradient(135deg, rgba(180, 180, 180, 0.2), rgba(160, 160, 160, 0.2));
}

.btn-text {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.btn-icon {
    width: 20px;
    height: 20px;
    transition: all 0.5s ease;
    opacity: 0.8;
}

.btn-portfolio:hover,
.btn-contact:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-portfolio:hover::before,
.btn-contact:hover::before {
    opacity: 1;
}

.btn-portfolio:hover .btn-background {
    opacity: 1;
}

.btn-contact:hover .btn-background {
    opacity: 1;
}

.btn-portfolio:hover .btn-icon,
.btn-contact:hover .btn-icon {
    transform: translateX(6px) scale(1.1);
    opacity: 1;
}

.btn-portfolio:hover {
    box-shadow: 0 20px 40px rgba(255, 255, 255, 0.3), 0 0 60px rgba(255, 255, 255, 0.1);
}

.btn-contact:hover {
    box-shadow: 0 20px 40px rgba(180, 180, 180, 0.3), 0 0 60px rgba(180, 180, 180, 0.1);
}

.btn-portfolio:active,
.btn-contact:active {
    transform: translateY(-4px) scale(0.98);
}

@media (max-width: 768px) {
    .services-cta-section {
        padding: 80px 0;
    }
    
    .services-cta-container {
        padding: 0 16px;
    }
    
    .services-cta-title {
        font-size: clamp(2rem, 8vw, 2.5rem);
        margin-bottom: 20px;
    }
    
    .services-cta-subtitle {
        font-size: clamp(1rem, 4vw, 1.2rem);
        margin-bottom: 40px;
    }
    
    .services-cta-buttons {
        flex-direction: column;
        gap: 20px;
    }
    
    .btn-portfolio,
    .btn-contact {
        width: 100%;
        max-width: 320px;
        padding: 18px 32px;
        font-size: 15px;
    }
    
    .btn-portfolio:hover,
    .btn-contact:hover {
        transform: translateY(-4px) scale(1.01);
    }
}
