/*=========================================
  SEÇÃO 6 - DASHBOARD COM SCREENSHOTS
=========================================*/
.dashboard-section {
    padding: 100px 0;
    background-color: var(--white);
    position: relative;
    overflow: hidden;
  }
  
  /* Elementos de fundo */
  .dashboard-section::before {
    content: '';
    position: absolute;
    right: -120px;
    top: -120px;
    width: 350px;
    height: 350px;
    background-color: rgba(10, 77, 64, 0.03);
    border-radius: 50%;
    z-index: 1;
  }
  
  .dashboard-section::after {
    content: '';
    position: absolute;
    left: -100px;
    bottom: -100px;
    width: 300px;
    height: 300px;
    background-color: rgba(241, 143, 28, 0.03);
    border-radius: 50%;
    z-index: 1;
  }
  
  /* Container principal */
  .dashboard-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 5;
  }
  
  /* Título principal */
  .dashboard-title {
    font-size: 36px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--primary);
    font-weight: 800;
    position: relative;
  }
  
  .dashboard-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--secondary);
    border-radius: 4px;
  }
  
  /* Mockup 3D do dashboard */
  .dashboard-3d-mockup {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto 60px;
    position: relative;
    perspective: 1500px;
    transform-style: preserve-3d;
  }
  
  .dashboard-main-image {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
    transform: rotateX(10deg);
    transition: transform 0.5s ease;
  }
  
  .dashboard-3d-mockup:hover .dashboard-main-image {
    transform: rotateX(5deg);
  }
  
  /* Destaques numerados */
  .dashboard-highlight {
    position: absolute;
    width: 35px;
    height: 35px;
    background-color: var(--secondary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    box-shadow: 0 5px 15px rgba(241, 143, 28, 0.4);
    cursor: pointer;
    z-index: 10;
    animation: pulse-highlight 2s infinite alternate;
  }
  
  .dashboard-highlight-1 {
    top: 25%;
    left: 15%;
    animation-delay: 0s;
  }
  
  .dashboard-highlight-2 {
    top: 40%;
    right: 20%;
    animation-delay: 0.5s;
  }
  
  .dashboard-highlight-3 {
    bottom: 30%;
    left: 30%;
    animation-delay: 1s;
  }
  
  .dashboard-highlight-4 {
    bottom: 25%;
    right: 30%;
    animation-delay: 1.5s;
  }
  
  @keyframes pulse-highlight {
    0% {
      transform: scale(1);
      box-shadow: 0 5px 15px rgba(241, 143, 28, 0.4);
    }
    100% {
      transform: scale(1.1);
      box-shadow: 0 5px 25px rgba(241, 143, 28, 0.6);
    }
  }
  
  /* Subtítulo da seção */
  .dashboard-subtitle {
    font-size: 24px;
    text-align: center;
    margin: 30px 0 50px;
    color: var(--primary);
    font-weight: 700;
  }
  
  /* Grid de screenshots */
  .dashboard-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 60px;
  }
  
  .dashboard-feature-item {
    border-radius: 20px;
    background-color: var(--light-gray);
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    opacity: 0;
    transform: translateY(30px);
  }
  
  /* Animação de entrada */
  .dashboard-feature-item.visible {
    opacity: 1;
    transform: translateY(0);
  }
  
  .dashboard-feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  }
  
  /* Screenshot */
  .dashboard-feature-image-container {
    position: relative;
    overflow: hidden;
    height: 250px;
  }
  
  .dashboard-feature-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }
  
  .dashboard-feature-item:hover .dashboard-feature-image {
    transform: scale(1.05);
  }
  
  /* Lupa para ampliação */
  .dashboard-magnifier {
    position: absolute;
    bottom: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background-color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s ease;
  }
  
  .dashboard-feature-item:hover .dashboard-magnifier {
    opacity: 1;
    transform: scale(1);
  }
  
  .dashboard-magnifier svg {
    width: 20px;
    height: 20px;
    fill: var(--primary);
  }
  
  /* Número da feature */
  .dashboard-feature-number {
    position: absolute;
    top: 15px;
    left: 15px;
    width: 30px;
    height: 30px;
    background-color: var(--secondary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    box-shadow: 0 3px 10px rgba(241, 143, 28, 0.4);
  }
  
  /* Conteúdo da feature */
  .dashboard-feature-content {
    padding: 25px;
  }
  
  .dashboard-feature-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--primary);
  }
  
  .dashboard-feature-description {
    font-size: 15px;
    line-height: 1.6;
    color: var(--dark-gray);
  }
  
  /* Destacque de texto */
  .dashboard-highlight-box {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--white);
    padding: 25px 35px;
    border-radius: var(--border-radius-lg);
    text-align: center;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
    margin: 40px auto 60px;
    max-width: 900px;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
  }
  
  .dashboard-highlight-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.5;
  }
  
  /* CTA principal */
  .dashboard-cta {
      background-color: var(--secondary);
      color: var(--white);
      box-shadow: 0 4px 20px rgba(241, 143, 28, 0.3);
      width: fit-content;
      margin: 2rem auto 0;
      white-space: nowrap;
      display: flex;
  }
  
  .dashboard-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(241, 143, 28, 0.4);
    background-color: var(--secondary-light);
  }
  
  /* Efeito de raio-X para conexão entre métricas */
  .dashboard-xray {
    position: absolute;
    background-color: rgba(241, 143, 28, 0.15);
    height: 2px;
    transform-origin: left center;
    display: none;
    z-index: 5;
  }
  
  .dashboard-3d-mockup:hover .dashboard-xray {
    display: block;
    animation: dashboardXray 3s infinite;
  }
  
  @keyframes dashboardXray {
    0% {
      opacity: 0;
      transform-origin: left center;
      transform: scaleX(0);
    }
    50% {
      opacity: 1;
      transform-origin: left center;
      transform: scaleX(1);
    }
    51% {
      transform-origin: right center;
    }
    100% {
      opacity: 0;
      transform-origin: right center;
      transform: scaleX(0);
    }
  }
  
  /* Animação de dados atualizando em tempo real */
  .dashboard-data-update {
    position: absolute;
    padding: 8px 12px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 8px;
    font-size: 12px;
    color: var(--primary);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    opacity: 0;
    z-index: 10;
  }
  
  .dashboard-data-update-1 {
    top: 20%;
    right: 25%;
    animation: dataUpdate 8s infinite 1s;
  }
  
  .dashboard-data-update-2 {
    bottom: 30%;
    left: 20%;
    animation: dataUpdate 8s infinite 3s;
  }
  
  @keyframes dataUpdate {
    0%, 100% {
      opacity: 0;
      transform: translateY(10px);
    }
    10%, 90% {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  /* Modal para visualização ampliada */
  .dashboard-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }
  
  .dashboard-modal.active {
    opacity: 1;
    pointer-events: auto;
  }
  
  .dashboard-modal-content {
    max-width: 90%;
    max-height: 90%;
    position: relative;
  }
  
  .dashboard-modal-image {
    max-width: 100%;
    max-height: 90vh;
    border-radius: 10px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
  }
  
  .dashboard-modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    width: 30px;
    height: 30px;
    background-color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  }
  
  .dashboard-modal-close::before,
  .dashboard-modal-close::after {
    content: '';
    position: absolute;
    width: 15px;
    height: 2px;
    background-color: var(--primary);
  }
  
  .dashboard-modal-close::before {
    transform: rotate(45deg);
  }
  
  .dashboard-modal-close::after {
    transform: rotate(-45deg);
  }
  
  /* Responsividade */
  @media (max-width: 992px) {
    .dashboard-section {
      padding: 80px 0;
    }
    
    .dashboard-title {
      font-size: 32px;
      margin-bottom: 50px;
    }
    
    .dashboard-subtitle {
      font-size: 22px;
      margin: 20px 0 40px;
    }
    
    .dashboard-features-grid {
      gap: 30px;
    }
    
    .dashboard-feature-image-container {
      height: 220px;
    }
    
    .dashboard-feature-title {
      font-size: 18px;
    }
    
    .dashboard-highlight-box {
      font-size: 15px;
      padding: 20px 30px;
    }
  }
  
  @media (max-width: 768px) {
    .dashboard-section {
      padding: 60px 0;
    }
    
    .dashboard-title {
      font-size: 28px;
      margin-bottom: 40px;
    }
    
    .dashboard-3d-mockup {
      margin-bottom: 40px;
    }
    
    .dashboard-main-image {
      transform: rotateX(5deg);
    }
    
    .dashboard-highlight {
      width: 30px;
      height: 30px;
      font-size: 16px;
    }
    
    .dashboard-subtitle {
      font-size: 20px;
      margin: 15px 0 30px;
    }
    
    .dashboard-features-grid {
      grid-template-columns: 1fr;
      gap: 25px;
    }
    
    .dashboard-feature-content {
      padding: 20px;
    }
    
    .dashboard-highlight-box {
      font-size: 18px;
      padding: 20px 25px;
      margin: 30px auto 40px;
    }
  }
  
  @media (max-width: 576px) {
    .dashboard-section {
      padding: 50px 0;
    }
    
    .dashboard-title {
      font-size: 24px;
      margin-bottom: 30px;
    }
    
    .dashboard-title::after {
      width: 60px;
      height: 3px;
      bottom: -10px;
    }
    
    .dashboard-3d-mockup {
      margin-bottom: 30px;
    }
    
    .dashboard-main-image {
      border-radius: 15px;
    }
    
    .dashboard-highlight {
      width: 25px;
      height: 25px;
      font-size: 14px;
    }
    
    .dashboard-subtitle {
      font-size: 18px;
    }
    
    .dashboard-feature-image-container {
      height: 180px;
    }
    
    .dashboard-feature-number {
      width: 25px;
      height: 25px;
      font-size: 14px;
    }
    
    .dashboard-magnifier {
      width: 30px;
      height: 30px;
    }
    
    .dashboard-magnifier svg {
      width: 15px;
      height: 15px;
    }
    
    .dashboard-feature-title {
      font-size: 16px;
      margin-bottom: 10px;
    }
    
    .dashboard-feature-description {
      font-size: 14px;
    }
    
    .dashboard-highlight-box {
      font-size: 12px;
      padding: 15px 20px;
      margin: 25px auto 35px;
    }
    
    .dashboard-cta {
      padding: 14px 28px;
      font-size: 14px;
    }
  }