/* ============================================
   AGÊNCIA 2E - STYLE.CSS V2
   CSS Assíncrono (Mobile First com min-width)
   ============================================ */

/* ============================================
   GLOBAL & MOBILE BASE (0px+)
   ============================================ */

/* Container Global */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Section Titles */
.section-title {
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 12px;
  line-height: 1.2;
  background: linear-gradient(135deg, var(--branco) 0%, var(--roxo-neon) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: 16px;
  text-align: center;
  color: var(--cinza-claro);
  margin-bottom: 40px;
  line-height: 1.5;
}

/* ============================================
   SERVIÇOS SECTION - MOBILE
   ============================================ */
.servicos {
  padding: 60px 0;
  background: linear-gradient(180deg, var(--preto) 0%, var(--preto-secundario) 100%);
  position: relative;
}

.servicos::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(124, 58, 237, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.servicos-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  position: relative;
  z-index: 1;
}

.servico-card {
  background: rgba(26, 9, 51, 0.4);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(167, 139, 250, 0.2);
  border-radius: 16px;
  padding: 32px 24px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.servico-card::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, var(--roxo-primario), var(--roxo-neon));
  border-radius: 16px;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

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

.servico-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(124, 58, 237, 0.4);
}

.card-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--roxo-primario) 0%, var(--roxo-escuro) 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 0 30px rgba(124, 58, 237, 0.5);
}

.icon{
  width: 40px;
  height: 40px;
  transition: transform 0.3s ease-in-out;
}

.icon:hover{
  transform:scale(1.5);
}

.servico-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: var(--branco);
  font-weight: 700;
}

.servico-card p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--cinza-claro);
  margin-bottom: 20px;
}

.btn-card {
  background: transparent;
  border: 2px solid var(--roxo-neon);
  color: var(--roxo-neon);
  padding: 12px 28px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Montserrat', sans-serif;
}

.btn-card:hover {
  background: var(--roxo-neon);
  color: var(--preto);
  box-shadow: 0 0 20px rgba(167, 139, 250, 0.6);
}

/* ============================================
   COMO VAMOS AJUDAR - MOBILE
   ============================================ */
.como-ajudar {
  padding: 60px 0;
  background: var(--preto);
}

.ajudar-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.ajudar-item {
  text-align: center;
  padding: 28px 20px;
  background: rgba(26, 9, 51, 0.3);
  border: 1px solid rgba(167, 139, 250, 0.1);
  border-radius: 12px;
  transition: transform 0.3s ease-in-out;
}

.ajudar-item:hover {
  transform: translateY(-4px);
  border-color: rgba(167, 139, 250, 0.4);
  box-shadow: 0 10px 30px rgba(124, 58, 237, 0.3);
  transform:scale(1.1);
  
}

.icon {
  width: 48px;
  height: 48px;
  margin-bottom: 12px;
  filter: drop-shadow(0 0 10px rgba(167, 139, 250, 0.5));
  transition: transform 0.3s ease-in-out;
}

.ajudar-item h3 {
  font-size: 16px;
  color: var(--branco);
  font-weight: 600;
}

.p-ajudar{
  font-size: 10xp;
  color: var(--roxo-neon);
  font-weight: 100;
}

/* ============================================
   PACOTES - MOBILE
   ============================================ */
.pacotes {
  padding: 60px 0;
  background: linear-gradient(180deg, var(--preto-secundario) 0%, var(--preto) 100%);
}

.pacotes-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.pacote-card {
  background: rgba(26, 9, 51, 0.4);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(167, 139, 250, 0.2);
  border-radius: 16px;
  padding: 32px 24px;
  position: relative;
  transition: all 0.4s ease;
}

.pacote-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(124, 58, 237, 0.4);
  border-color: rgba(167, 139, 250, 0.5);
}

.pacote-card.featured {
  border: 2px solid var(--roxo-neon);
  box-shadow: 0 0 40px rgba(167, 139, 250, 0.3);
}

.pacote-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--roxo-primario) 0%, var(--roxo-escuro) 100%);
  color: var(--branco);
  padding: 8px 24px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  box-shadow: 0 0 20px rgba(124, 58, 237, 0.6);
}

.pacote-header h3 {
  font-size: 24px;
  text-align: center;
  margin-bottom: 24px;
  color: var(--branco);
  font-weight: 700;
}

.pacote-list {
  list-style: none;
  margin-bottom: 28px;
}

.pacote-list li {
  font-size: 15px;
  color: var(--cinza-claro);
  padding: 10px 0;
  border-bottom: 1px solid rgba(167, 139, 250, 0.1);
  line-height: 1.5;
}

.pacote-list li:last-child {
  border-bottom: none;
}

.btn-pacote {
  width: 100%;
  background: linear-gradient(135deg, var(--roxo-primario) 0%, var(--roxo-escuro) 100%);
  color: var(--branco);
  border: none;
  padding: 14px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 0 30px rgba(124, 58, 237, 0.4);
  font-family: 'Montserrat', sans-serif;
}

.btn-pacote:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 40px rgba(124, 58, 237, 0.6);
}

/* ============================================
   DEPOIMENTOS - MOBILE
   ============================================ */
.depoimentos {
  padding: 60px 0;
  background: var(--preto);
}

.depoimentos-carousel {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.depoimento-card {
  background: rgba(26, 9, 51, 0.4);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(167, 139, 250, 0.2);
  border-radius: 16px;
  padding: 28px 24px;
  transition: all 0.3s ease;
}

.depoimento-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 40px rgba(124, 58, 237, 0.3);
  border-color: rgba(167, 139, 250, 0.4);
}

.depoimento-text {
  font-size: 15px;
  line-height: 1.6;
  color: var(--cinza-claro);
  margin-bottom: 12px;
  font-style: italic;
}

.depoimento-author {
  font-size: 14px;
  font-weight: 600;
  color: var(--roxo-neon);
}

/* ============================================
   NÚMEROS - MOBILE
   ============================================ */
.numeros {
  padding: 60px 0;
  background: linear-gradient(180deg, var(--preto) 0%, var(--preto-secundario) 100%);
}

.numeros-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  text-align: center;
}

.numero-item {
  position: relative;
}

.numero-value {
  font-size: 48px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--roxo-primario) 0%, var(--roxo-neon) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  line-height: 1;
}

.numero-suffix {
  font-size: 36px;
  font-weight: 700;
  color: var(--roxo-neon);
  display: inline-block;
  margin-left: 4px;
}

.numero-label {
  font-size: 15px;
  color: var(--cinza-claro);
  margin-top: 12px;
}

/* ============================================
   FAQ - MOBILE
   ============================================ */
.faq {
  padding: 60px 0;
  background: var(--preto);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 14px;
  background: rgba(26, 9, 51, 0.3);
  border: 1px solid rgba(167, 139, 250, 0.2);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(167, 139, 250, 0.4);
}

.faq-item.active {
  border-color: var(--roxo-neon);
  box-shadow: 0 0 20px rgba(167, 139, 250, 0.3);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 24px;
  text-align: left;
  font-size: 16px;
  font-weight: 600;
  color: var(--branco);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
  font-family: 'Montserrat', sans-serif;
}

.faq-question:hover {
  color: var(--roxo-neon);
}

.faq-icon {
  font-size: 22px;
  color: var(--roxo-neon);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 12px;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 24px;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 24px 20px;
}

.faq-answer p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--cinza-claro);
}

/* ============================================
   CTA FINAL - MOBILE
   ============================================ */
.cta-final {
  padding: 60px 0;
  background: linear-gradient(135deg, var(--preto-secundario) 0%, var(--preto) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-final::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(124, 58, 237, 0.2) 0%, transparent 70%);
  pointer-events: none;
}

.cta-final .container {
  position: relative;
  z-index: 1;
}

.cta-final h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.2;
  background: linear-gradient(135deg, var(--branco) 0%, var(--roxo-neon) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-final p {
  font-size: 16px;
  color: var(--cinza-claro);
  margin-bottom: 32px;
  line-height: 1.6;
}

/* ============================================
   FOOTER - MOBILE
   ============================================ */
.footer {
  background: var(--preto);
  border-top: 1px solid rgba(167, 139, 250, 0.1);
  padding: 50px 0 25px;
  
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 32px;
  justify-items: center;
  text-align: center;
}

.footer-logo img {
  height: 40px;
  margin-bottom: 12px;

}

.footer-logo p {
  font-size: 14px;
  color: var(--cinza-claro);
  line-height: 1.6;
}

.footer-links h4,
.footer-contato h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--branco);
  margin-bottom: 12px;
}

.footer-links a {
  display: block;
  font-size: 14px;
  color: var(--cinza-claro);
  text-decoration: none;
  margin-bottom: 10px;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--roxo-neon);
}

.footer-contato p {
  font-size: 14px;
  color: var(--cinza-claro);
  margin-bottom: 8px;
}

.footer-bottom {
  text-align: center;
  padding-top: 25px;
  border-top: 1px solid rgba(167, 139, 250, 0.1);
}

.footer-bottom p {
  font-size: 13px;
  color: var(--cinza-claro);
  line-height: 1.5;
}

/* ============================================
   POPUP - MOBILE
   ============================================ */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  padding: 20px;
  animation: fadeIn 0.3s ease;
}

.popup-overlay.active {
  display: flex;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.popup-content {
  background: rgba(26, 9, 51, 0.95);
  backdrop-filter: blur(20px);
  border: 2px solid rgba(167, 139, 250, 0.3);
  border-radius: 16px;
  padding: 32px 24px;
  max-width: 500px;
  width: 100%;
  position: relative;
  animation: slideUp 0.3s ease;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(124, 58, 237, 0.4);
}

@keyframes slideUp {
  from {
    transform: translateY(50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.popup-close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: none;
  border: none;
  color: var(--branco);
  font-size: 28px;
  cursor: pointer;
  transition: all 0.3s ease;
  line-height: 1;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.popup-close:hover {
  color: var(--roxo-neon);
  transform: rotate(90deg);
}

.popup-content h3 {
  font-size: 22px;
  margin-bottom: 20px;
  text-align: center;
  color: var(--branco);
  font-weight: 700;
  padding-right: 30px;
}

/* ============================================
   TABLET: min-width 768px
   ============================================ */
@media (min-width: 768px) {
  
  /* Section Titles */
  .section-title {
    font-size: 40px;
    margin-bottom: 16px;
  }

  .section-subtitle {
    font-size: 18px;
    margin-bottom: 60px;
  }

  /* Serviços */
  .servicos {
    padding: 100px 0;
  }

  .servicos-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  .servico-card {
    padding: 40px;
  }

  .card-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 24px;
  }

  .card-icon img {
    width: 48px;
    height: 48px;
  }

  .servico-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
  }

  .servico-card p {
    font-size: 16px;
    margin-bottom: 24px;
  }

  .btn-card {
    padding: 12px 32px;
  }

  /* Como Ajudar */
  .como-ajudar {
    padding: 100px 0;
  }

  .ajudar-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  .ajudar-item {
    padding: 32px 20px;
  }

  .ajudar-icon {
    font-size: 48px;
    margin-bottom: 16px;
  }

  .ajudar-item h3 {
    font-size: 18px;
  }

  /* Pacotes */
  .pacotes {
    padding: 100px 0;
  }

  .pacotes-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
  }

  .pacote-card {
    padding: 40px;
  }

  .pacote-header h3 {
    font-size: 28px;
    margin-bottom: 32px;
  }

  .pacote-list {
    margin-bottom: 32px;
  }

  .pacote-list li {
    font-size: 16px;
    padding: 12px 0;
  }

  .btn-pacote {
    padding: 16px;
    font-size: 16px;
  }

  /* Depoimentos */
  .depoimentos {
    padding: 100px 0;
  }

  .depoimento-card {
    padding: 32px;
  }

  .depoimento-text {
    font-size: 16px;
    margin-bottom: 16px;
  }

  /* Números */
  .numeros {
    padding: 100px 0;
  }

  .numeros-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
  }

  .numero-value {
    font-size: 64px;
  }

  .numero-suffix {
    font-size: 48px;
  }

  .numero-label {
    font-size: 16px;
    margin-top: 16px;
  }

  /* FAQ */
  .faq {
    padding: 100px 0;
  }

  .faq-item {
    margin-bottom: 16px;
  }

  .faq-question {
    padding: 24px 28px;
    font-size: 18px;
  }

  .faq-icon {
    font-size: 24px;
  }

  .faq-answer {
    padding: 0 28px;
  }

  .faq-item.active .faq-answer {
    padding: 0 28px 24px;
  }

  .faq-answer p {
    font-size: 16px;
  }

  /* CTA Final */
  .cta-final {
    padding: 100px 0;
  }

  .cta-final h2 {
    font-size: 48px;
    margin-bottom: 24px;
  }

  .cta-final p {
    font-size: 20px;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }

  /* Footer */
  .footer {
    padding: 60px 0 30px;
  }

  .footer-content {
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
    justify-items: left;
    text-align: left;

  }

  .footer-logo img {
    margin-bottom: 16px;
  }

  .footer-links h4,
  .footer-contato h4 {
    margin-bottom: 16px;
  }

  .footer-links a {
    margin-bottom: 12px;
  }

  .footer-bottom {
    padding-top: 30px;
  }

  .footer-bottom p {
    font-size: 14px;
  }

  /* Popup */
  .popup-content {
    padding: 40px;
  }

  .popup-close {
    top: 16px;
    right: 16px;
    font-size: 32px;
    width: 40px;
    height: 40px;
  }

  .popup-content h3 {
    font-size: 24px;
    margin-bottom: 24px;
  }
}

/* ============================================
   DESKTOP: min-width 1024px
   ============================================ */
@media (min-width: 1024px) {
  
  /* Como Ajudar */
  .ajudar-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  /* Depoimentos */
  .depoimentos-carousel {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }
}