.elementor-1722 .elementor-element.elementor-element-94ad31c{--display:flex;}/* Start custom CSS */:root {
      --primary: #6b46c1;
      --primary-light: #8a70d6;
      --primary-dark: #553c9a;
      --text-dark: #1a202c;
      --text-light: #4a5568;
      --background: #f8fafc;
      --white: #ffffff;
      --accent: #e53e3e;
      --grey-light: #e2e8f0;
      --success: #38a169;
    }
    
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    
    body {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      background-color: var(--background);
      color: var(--text-dark);
      line-height: 1.5;
    }
    
    .metodo-container {
      max-width: 100%;
      margin: 0 auto;
      padding: 20px;
      overflow: hidden;
    }
    
    .metodo-header {
      text-align: center;
      margin-bottom: 30px;
    }
    
    .metodo-header h2 {
      font-size: 28px;
      margin-bottom: 8px;
      background: linear-gradient(to right, var(--primary-dark), var(--primary-light));
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      display: inline-block;
    }
    
    .metodo-header p {
      font-size: 16px;
      color: var(--text-light);
    }
    
    .metodo-timeline {
      position: relative;
      max-width: 100%;
      margin: 0 auto;
    }
    
    .metodo-progress {
      position: absolute;
      top: 50px;
      left: 50%;
      width: 4px;
      height: 0;
      background: linear-gradient(to bottom, var(--primary), var(--primary-light));
      transform: translateX(-50%);
      transition: height 0.8s ease;
      border-radius: 4px;
      z-index: 1;
    }
    
    .metodo-steps {
      display: flex;
      flex-direction: column;
      gap: 60px;
      position: relative;
    }
    
    .metodo-step {
      position: relative;
      padding: 20px;
      background-color: var(--white);
      border-radius: 16px;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
      transition: all 0.3s ease;
      z-index: 2;
      opacity: 0;
      transform: translateY(30px);
      width: 100%;
      max-width: 500px;
      margin: 0 auto;
      cursor: pointer;
      overflow: hidden;
    }
    
    .metodo-step.active {
      transform: translateY(0);
      opacity: 1;
    }
    
    .metodo-step:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    }
    
    .metodo-step-header {
      display: flex;
      align-items: center;
      margin-bottom: 15px;
    }
    
    .metodo-step-number {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 40px;
      height: 40px;
      background-color: var(--primary);
      color: white;
      border-radius: 50%;
      font-weight: bold;
      font-size: 18px;
      margin-right: 15px;
      transition: all 0.3s ease;
      flex-shrink: 0;
    }
    
    .metodo-step.expanded .metodo-step-number {
      background-color: var(--primary-dark);
    }
    
    .metodo-step-title {
      font-size: 18px;
      font-weight: 600;
      color: var(--text-dark);
      flex-grow: 1;
    }
    
    .metodo-step-icon {
      color: var(--primary);
      font-size: 20px;
      transition: transform 0.3s ease;
      margin-left: auto;
    }
    
    .metodo-step.expanded .metodo-step-icon {
      transform: rotate(180deg);
    }
    
    .metodo-step-content {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease;
    }
    
    .metodo-step.expanded .metodo-step-content {
      max-height: 300px;
    }
    
    .metodo-step-desc {
      color: var(--text-light);
      font-size: 15px;
      line-height: 1.5;
      margin-top: 5px;
    }
    
    .metodo-step-features {
      margin-top: 15px;
      padding-top: 15px;
      border-top: 1px solid var(--grey-light);
    }
    
    .metodo-step-feature {
      display: flex;
      align-items: flex-start;
      margin-bottom: 10px;
    }
    
    .metodo-step-feature-icon {
      color: var(--success);
      margin-right: 10px;
      font-size: 16px;
      flex-shrink: 0;
      margin-top: 3px;
    }
    
    .metodo-step-feature-text {
      font-size: 14px;
      color: var(--text-light);
    }
    
    .metodo-controls {
      display: flex;
      justify-content: center;
      margin-top: 30px;
      gap: 15px;
    }
    
    .metodo-button {
      background-color: var(--primary);
      color: white;
      border: none;
      border-radius: 25px;
      padding: 10px 20px;
      font-size: 15px;
      font-weight: 500;
      cursor: pointer;
      transition: all 0.2s ease;
      display: flex;
      align-items: center;
      box-shadow: 0 2px 10px rgba(107, 70, 193, 0.3);
    }
    
    .metodo-button:hover {
      background-color: var(--primary-dark);
      box-shadow: 0 4px 12px rgba(107, 70, 193, 0.4);
    }
    
    .metodo-button-text {
      margin: 0 5px;
    }
    
    .metodo-button-icon {
      font-size: 18px;
    }
    
    .metodo-indicators {
      display: flex;
      justify-content: center;
      margin-bottom: 20px;
      gap: 8px;
    }
    
    .metodo-indicator {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background-color: var(--grey-light);
      cursor: pointer;
      transition: all 0.3s ease;
    }
    
    .metodo-indicator.active {
      background-color: var(--primary);
      transform: scale(1.3);
    }
    
    .metodo-progress-bar {
      width: 100%;
      height: 4px;
      background-color: var(--grey-light);
      border-radius: 2px;
      margin: 20px 0;
      position: relative;
      overflow: hidden;
    }
    
    .metodo-progress-fill {
      position: absolute;
      top: 0;
      left: 0;
      height: 100%;
      background: linear-gradient(to right, var(--primary), var(--primary-light));
      transition: width 0.5s ease;
      border-radius: 2px;
    }
    
    /* Animazioni degli step */
    @keyframes pulse {
      0% {
        box-shadow: 0 0 0 0 rgba(107, 70, 193, 0.7);
      }
      70% {
        box-shadow: 0 0 0 10px rgba(107, 70, 193, 0);
      }
      100% {
        box-shadow: 0 0 0 0 rgba(107, 70, 193, 0);
      }
    }
    
    .metodo-step.current {
      animation: pulse 2s infinite;
    }
    
    /* Media queries per responsive */
    @media (max-width: 768px) {
      .metodo-header h2 {
        font-size: 24px;
      }
      
      .metodo-step {
        padding: 15px;
      }
      
      .metodo-step-number {
        width: 34px;
        height: 34px;
        font-size: 16px;
      }
      
      .metodo-step-title {
        font-size: 16px;
      }
      
      .metodo-steps {
        gap: 40px;
      }
    }/* End custom CSS */