/* ============================================
   SEÇÃO PRINCIPAL
   ============================================ */
.why-planning {
  position: relative;
  padding: 120px 20px;
  background: #000;
  overflow: hidden;
  min-height: 100vh;
}

/* Grid de fundo animado */
.bg-grid {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(33,14,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(33,14,255,0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  opacity: 0.4;
  animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
  0% { transform: translate(0, 0); }
  100% { transform: translate(50px, 50px); }
}

/* Glows de fundo */
.bg-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.15;
  animation: float 15s ease-in-out infinite;
}

.bg-glow-1 {
  top: -200px;
  left: -100px;
  background: radial-gradient(circle, #210eff 0%, transparent 70%);
  animation-delay: 0s;
}

.bg-glow-2 {
  bottom: -200px;
  right: -100px;
  background: radial-gradient(circle, #5a4dff 0%, transparent 70%);
  animation-delay: 7s;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(50px, 50px) scale(1.1); }
}

/* Orbs flutuantes */
.floating-orb {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(33,14,255,0.4), transparent);
  filter: blur(40px);
  animation: orbFloat 20s ease-in-out infinite;
}

.orb-1 {
  width: 300px;
  height: 300px;
  top: 20%;
  right: 10%;
  animation-delay: 0s;
}

.orb-2 {
  width: 200px;
  height: 200px;
  bottom: 30%;
  left: 5%;
  animation-delay: 5s;
}

.orb-3 {
  width: 150px;
  height: 150px;
  top: 60%;
  right: 30%;
  animation-delay: 10s;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0); opacity: 0.3; }
  25% { transform: translate(30px, -30px); opacity: 0.5; }
  50% { transform: translate(-20px, 20px); opacity: 0.4; }
  75% { transform: translate(20px, 30px); opacity: 0.5; }
}

.why-container {
  position: relative;
  z-index: 10;
  max-width: 1200px;
  margin: auto;
  padding: 0 40px;
}

/* ============================================
   LAYOUT DE DUAS COLUNAS
   ============================================ */
.two-column-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-bottom: 100px;
  align-items: start;
}

.two-column-layout > * {
  margin-top: 0;
}

/* ============================================
   COLUNA ESQUERDA
   ============================================ */
.left-column {
  position: sticky;
  top: 40px;
}

.badge-wrapper {
  margin-bottom: 30px;
  animation: fadeInDown 0.8s ease-out;
  margin-top: 0;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.premium-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  background: linear-gradient(135deg, rgba(33,14,255,0.1), rgba(33,14,255,0.05));
  border: 1px solid rgba(33,14,255,0.3);
  border-radius: 50px;
  color: #210eff;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.badge-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  animation: pulse 2s ease-in-out infinite;
}

.badge-icon svg {
  width: 16px;
  height: 16px;
  color: #210eff;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.2); }
}

.why-title {
  font-family: 'HK Modular', 'League Spartan', sans-serif;
  font-size: 3rem;
  font-weight: 900;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 50px;
  letter-spacing: -2px;
}

.title-line {
  display: block;
  animation: fadeInUp 0.8s ease-out backwards;
}

.title-line:nth-child(1) {
  animation-delay: 0.2s;
}

.title-line:nth-child(2) {
  animation-delay: 0.4s;
}

.title-line:nth-child(3) {
  animation-delay: 0.6s;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.highlight-word {
  position: relative;
  display: inline-block;
}

.highlight-word::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 8px;
  background: linear-gradient(90deg, transparent, rgba(33,14,255,0.4), transparent);
  animation: highlightSlide 3s ease-in-out infinite;
}

@keyframes highlightSlide {
  0%, 100% { transform: translateX(-100%); opacity: 0; }
  50% { transform: translateX(0); opacity: 1; }
}

/* Cartões de razões */
.why-reasons {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.reason-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 28px;
  background: linear-gradient(135deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
  border: 1px solid rgba(33,14,255,0.15);
  border-radius: 16px;
  backdrop-filter: blur(20px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  animation: fadeInUp 0.8s ease-out backwards;
}

.reason-card:nth-child(1) { animation-delay: 0.8s; }
.reason-card:nth-child(2) { animation-delay: 1s; }
.reason-card:nth-child(3) { animation-delay: 1.2s; }

.reason-card:hover {
  background: linear-gradient(135deg, rgba(33,14,255,0.08), rgba(33,14,255,0.03));
  border-color: rgba(33,14,255,0.4);
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 20px 60px rgba(33,14,255,0.2);
}

.reason-icon {
  min-width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(33,14,255,0.1);
  border-radius: 12px;
  transition: transform 0.3s ease;
  color: #210eff;
}

.reason-icon svg {
  width: 32px;
  height: 32px;
}

.reason-card:hover .reason-icon {
  transform: scale(1.1) rotate(5deg);
}

.reason-card p {
  color: #ccc;
  font-size: 1.05rem;
  line-height: 1.6;
  text-align: left;
}

.reason-card strong {
  color: #fff;
  font-weight: 700;
}

/* ============================================
   COLUNA DIREITA - PROBLEMAS
   ============================================ */
.right-column {
  animation: fadeInRight 1s ease-out backwards;
  animation-delay: 0.6s;
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.problems-section {
  background: rgba(10,10,10,0.6);
  border: 1px solid rgba(33,14,255,0.1);
  border-radius: 24px;
  padding: 50px 40px;
  backdrop-filter: blur(20px);
  position: relative;
}

.problems-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(33,14,255,0.5), transparent);
}

.problems-header {
  margin-bottom: 40px;
}

.problems-title {
  color: #fff;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
}

.title-underline {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #210eff, transparent);
  border-radius: 2px;
}

.problems-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.problem-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
}

.problem-item:last-child {
  border-bottom: none;
}

.problem-item::before {
  content: '';
  position: absolute;
  left: -40px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 2px;
  background: #210eff;
  transition: width 0.3s ease;
}

.problem-item:hover::before {
  width: 30px;
}

.problem-item:hover {
  padding-left: 12px;
}

.problem-number {
  min-width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(33,14,255,0.1), rgba(33,14,255,0.05));
  border: 1px solid rgba(33,14,255,0.2);
  border-radius: 10px;
  color: #210eff;
  font-size: 0.85rem;
  font-weight: 700;
  font-family: 'Courier New', monospace;
  transition: all 0.3s ease;
}

.problem-item:hover .problem-number {
  background: linear-gradient(135deg, rgba(33,14,255,0.2), rgba(33,14,255,0.1));
  border-color: rgba(33,14,255,0.4);
  transform: scale(1.05);
}

.problem-content {
  flex: 1;
}

.problem-content p {
  color: #d0d0d0;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 500;
  margin-bottom: 8px;
  transition: color 0.3s ease;
}

.problem-item:hover .problem-content p {
  color: #fff;
}

.problem-indicator {
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #210eff, transparent);
  transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.problem-item:hover .problem-indicator {
  width: 100%;
}

/* ============================================
   FOOTER PREMIUM
   ============================================ */
.why-footer {
  text-align: center;
  padding: 60px 20px;
}

.footer-content {
  position: relative;
  max-width: 600px;
  margin: 0 auto;
  padding: 40px;
  border-radius: 24px;
  backdrop-filter: blur(20px);
}

.footer-shape {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, transparent, #210eff, transparent);
  border-radius: 2px;
}

.footer-text {
  color: #ccc;
  font-size: 1.3rem;
  line-height: 1.8;
  margin-bottom: 16px;
}

.footer-text strong {
  color: #fff;
  font-weight: 800;
  font-size: 1.4rem;
}

.footer-highlight {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: #210eff;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.pulse-dot {
  width: 10px;
  height: 10px;
  background: #210eff;
  border-radius: 50%;
  animation: dotPulse 2s ease-in-out infinite;
  box-shadow: 0 0 20px rgba(33,14,255,0.8);
}

@keyframes dotPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.5); opacity: 0.7; }
}

/* ============================================
   MEDIA QUERIES - RESPONSIVIDADE MOBILE
   ============================================ */

/* Tablets - até 1024px */
@media (max-width: 1024px) {
  .why-planning {
    padding: 80px 20px;
  }

  .why-container {
    padding: 0 24px;
  }

  .two-column-layout {
    gap: 60px;
  }

  .why-title {
    font-size: 2.5rem;
  }

  .problems-section {
    padding: 40px 30px;
  }

  .bg-glow {
    width: 400px;
    height: 400px;
  }

  .orb-1 {
    width: 250px;
    height: 250px;
  }

  .orb-2 {
    width: 180px;
    height: 180px;
  }

  .orb-3 {
    width: 120px;
    height: 120px;
  }
}

/* Tablets pequenos e dispositivos móveis grandes - até 768px */
@media (max-width: 768px) {
  .why-planning {
    padding: 50px 20px;
    min-height: auto;
  }

  .why-container {
    padding: 0 20px;
  }

  /* Layout de coluna única */
  .two-column-layout {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 50px;
  }

  /* Coluna esquerda não mais sticky */
  .left-column {
    position: relative;
    top: 0;
  }

  .badge-wrapper {
    margin-bottom: 20px;
    text-align: center;
  }

  .premium-badge {
    padding: 8px 18px;
    font-size: 0.75rem;
  }

  .badge-icon svg {
    width: 13px;
    height: 13px;
  }

  .why-title {
    font-size: 1.85rem;
    margin-bottom: 35px;
    text-align: center;
    letter-spacing: -0.5px;
  }

  .highlight-word::before {
    height: 5px;
  }

  /* Cartões de razões */
  .why-reasons {
    gap: 14px;
  }

  .reason-card {
    padding: 18px;
    gap: 14px;
    border-radius: 14px;
  }

  .reason-icon {
    min-width: 42px;
    height: 42px;
    border-radius: 10px;
  }

  .reason-icon svg {
    width: 26px;
    height: 26px;
  }

  .reason-card p {
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .reason-card:hover {
    transform: translateY(-2px) scale(1.01);
  }

  /* Seção de problemas */
  .right-column {
    animation-delay: 0.4s;
  }

  .problems-section {
    padding: 30px 22px;
    border-radius: 20px;
  }

  .problems-header {
    margin-bottom: 28px;
  }

  .problems-title {
    font-size: 1.3rem;
  }

  .title-underline {
    width: 48px;
  }

  .problem-item {
    gap: 14px;
    padding: 15px 0;
  }

  .problem-item::before {
    left: -22px;
  }

  .problem-item:hover::before {
    width: 18px;
  }

  .problem-item:hover {
    padding-left: 6px;
  }

  .problem-number {
    min-width: 36px;
    height: 36px;
    font-size: 0.78rem;
    border-radius: 8px;
  }

  .problem-content p {
    font-size: 0.9rem;
    line-height: 1.45;
  }

  /* Footer */
  .why-footer {
    padding: 45px 20px;
  }

  .footer-content {
    padding: 30px 22px;
    border-radius: 20px;
  }

  .footer-text {
    font-size: 1.05rem;
    line-height: 1.55;
  }

  .footer-text strong {
    font-size: 1.15rem;
  }

  .footer-highlight {
    font-size: 1.05rem;
    gap: 10px;
  }

  /* Efeitos de fundo ajustados */
  .bg-glow {
    width: 300px;
    height: 300px;
    filter: blur(80px);
  }

  .orb-1 {
    width: 200px;
    height: 200px;
  }

  .orb-2 {
    width: 150px;
    height: 150px;
  }

  .orb-3 {
    width: 100px;
    height: 100px;
  }

  .bg-grid {
    background-size: 40px 40px;
  }
}

/* Dispositivos móveis pequenos - até 480px */
@media (max-width: 480px) {
  .why-planning {
    padding: 35px 16px;
  }

  .why-container {
    padding: 0 16px;
  }

  .two-column-layout {
    gap: 35px;
    margin-bottom: 35px;
  }

  .premium-badge {
    padding: 6px 14px;
    font-size: 0.7rem;
    gap: 6px;
  }

  .badge-icon svg {
    width: 11px;
    height: 11px;
  }

  .why-title {
    font-size: 36px;
    margin-bottom: 28px;
  }

  /* Cartões de razões */
  .reason-card {
    padding: 14px;
    gap: 12px;
    flex-direction: row;
    align-items: center;
  }

  .reason-icon {
    min-width: 38px;
    height: 38px;
  }

  .reason-icon svg {
    width: 22px;
    height: 22px;
  }

  .reason-card p {
    font-size: 0.85rem;
    line-height: 1.45;
  }

  /* Seção de problemas */
  .problems-section {
    padding: 24px 18px;
    border-radius: 18px;
  }

  .problems-header {
    margin-bottom: 24px;
  }

  .problems-title {
    font-size: 1.15rem;
  }

  .title-underline {
    width: 42px;
    height: 2px;
  }

  .problem-item {
    gap: 12px;
    padding: 13px 0;
  }

  .problem-number {
    min-width: 32px;
    height: 32px;
    font-size: 0.72rem;
  }

  .problem-content p {
    font-size: 0.85rem;
    line-height: 1.4;
  }

  /* Footer */
  .why-footer {
    padding: 35px 16px;
  }

  .footer-content {
    padding: 24px 18px;
  }

  .footer-shape {
    width: 75px;
    height: 3px;
  }

  .footer-text {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 12px;
  }

  .footer-text strong {
    font-size: 1.05rem;
  }

  .footer-highlight {
    font-size: 0.95rem;
    gap: 8px;
    flex-wrap: wrap;
  }

  .pulse-dot {
    width: 7px;
    height: 7px;
  }

  /* Efeitos de fundo reduzidos */
  .bg-glow {
    width: 250px;
    height: 250px;
    filter: blur(60px);
  }

  .orb-1,
  .orb-2,
  .orb-3 {
    display: none;
  }

  .bg-grid {
    background-size: 30px 30px;
    opacity: 0.3;
  }
}

/* Dispositivos muito pequenos - até 360px */
@media (max-width: 360px) {
  .why-planning {
    padding: 30px 14px;
  }

  .why-title {
    font-size: 32px;
    margin-bottom: 24px;
  }

  .premium-badge {
    padding: 5px 12px;
    font-size: 0.65rem;
  }

  .reason-card {
    padding: 12px;
    gap: 10px;
  }

  .reason-icon {
    min-width: 35px;
    height: 35px;
  }

  .reason-icon svg {
    width: 20px;
    height: 20px;
  }

  .reason-card p {
    font-size: 0.8rem;
    line-height: 1.4;
  }

  .problems-section {
    padding: 20px 16px;
  }

  .problems-title {
    font-size: 1.05rem;
  }

  .problem-number {
    min-width: 30px;
    height: 30px;
    font-size: 0.68rem;
  }

  .problem-content p {
    font-size: 0.8rem;
    line-height: 1.35;
  }

  .footer-text {
    font-size: 0.88rem;
  }

  .footer-text strong {
    font-size: 0.95rem;
  }

  .footer-highlight {
    font-size: 0.88rem;
  }

  .footer-content {
    padding: 20px 16px;
  }
}