/* ===================================================
   TEST-DRIVE SECTION - ANTIGRAVITY REFINED
   =================================================== */
.section-7 {
  padding: 120px 0;
  background: #0D1117 !important;
  text-align: center;
}

.section-7 .section-title {
  margin-bottom: 40px !important;
}

.testdrive-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-top: 56px;
  text-align: left; /* Conteúdo interno à esquerda */
}

.testdrive-text p {
  font-size: 18px;
  color: #94a3b8;
  line-height: 1.8;
  margin-bottom: 24px;
}

.testdrive-actions {
  margin-top: 40px;
}

.testdrive-note {
  font-size: 13px;
  color: #64748b;
  margin-top: 16px;
  font-style: italic;
}

/* Phone Mockup Refined */
.testdrive-preview {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.phone-mockup {
  width: 280px;
  height: 580px;
  background: #000;
  border-radius: 40px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 50px 100px rgba(0, 0, 0, 0.5);
  position: relative;
  z-index: 2;
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: #020617;
  border-radius: 32px;
  overflow: hidden;
  position: relative;
}

.preview-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
}

/* Preview Steps */
.preview-steps {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
  width: 100%;
}

.step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
}

.testdrive-icon-box {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.2) 0%, rgba(6, 182, 212, 0.1) 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fbbf24;
  font-size: 24px;
  font-weight: 700;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.1);
}

/* Hover effect agora é tratado globalmente no global.css */


.step-item .step-text {
  font-size: 12px;
  color: #94a3b8;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Responsive */
@media (max-width: 992px) {
  .testdrive-container {
    grid-template-columns: 1fr;
    gap: 60px;
    text-align: center;
  }
  
  .testdrive-preview {
    order: -1;
  }
}

@media (max-width: 768px) {
  .section-7 {
    padding: 30px 0 !important;
  }

  .phone-mockup {
    width: 240px;
    height: 500px;
  }
  
  .preview-steps {
    gap: 15px;
  }
  
  .step-item .step-text {
    font-size: 12px;
  }
}
