/* Lista menus */
        
.hero-section {
  background: linear-gradient(135deg, #BFBFBF 0%, #D9D9D9 100%) !important;
  color: white;
  padding: 60px 20px;
  text-align: center;
  border-radius: 0 0 50px 50px;
}
        
.hero-section h1 {
  font-size: 2.5em;
  margin-bottom: 20px;
  font-weight: 700;
}
        
.hero-section p {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto;
}
        
.content-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}
        
.section-title {
  font-size: 2em;
  color: #595959;
  margin: 40px 0 20px;
  font-weight: 600;
  border-bottom: 3px solid #BFBFBF;
  padding-bottom: 10px;
}
        
.checklist {
  display: grid;
  margin: 30px 0;
}
        
.checklist-item {
  background: #f8f9fa;
  padding: 15px 20px;
  border-radius: 10px;
  border-left: 4px solid #D9D9D9;
  transition: all 0.3s ease;
}
        
.checklist-item:hover {
  transform: translateX(5px);
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.2);
}
.info-card {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  margin: 30px 0;
}
        
.info-card h3 {
    color: #595959;
    font-size: 1.5em;
    margin-bottom: 15px;
}
        
.info-card ul {
    list-style: none;
    padding: 0;
}
        
        .info-card li {
          padding: 10px 0;
          border-bottom: 1px solid #e9ecef;
        }
        
        .info-card li:last-child {
          border-bottom: none;
        }
        
        .info-card li:before {
          content: "✓";
          color: #667eea;
          font-weight: bold;
          margin-right: 10px;
        }
        
        .casos-grid {
          display: grid;
          margin: 30px 0;
        }
        
        .caso-card {
          background: linear-gradient(135deg, #BFBFBF 0%, #D9D9D 100%);
          color: white;
          padding: 25px;
          border-radius: 15px;
          text-align: center;
          transition: transform 0.3s ease;
        }
        
        .caso-card:hover {
          transform: translateY(-5px);
        }
        
        .caso-card svg {
          margin: 0 auto 15px;
        }
        
        .alert-box {
          background: #fff3cd;
          border-left: 4px solid #ffc107;
          padding: 20px;
          border-radius: 10px;
          margin: 30px 0;
        }
        
        .alert-box h4 {
          color: #856404;
          margin-bottom: 10px;
        }
        
        .faq-section {
          margin: 40px 0;
        }
        
        .faq-item {
          background: white;
          margin: 15px 0;
          border-radius: 10px;
          box-shadow: 0 2px 10px rgba(0,0,0,0.1);
          overflow: hidden;
        }
        
        .faq-question {
          padding: 20px;
          cursor: pointer;
          display: flex;
          justify-content: space-between;
          align-items: center;
          background: #f8f9fa;
          transition: background 0.3s ease;
        }
        
        .faq-question:hover {
          background: #e9ecef;
        }
        
        .faq-question h4 {
          margin: 0;
          color: #667eea;
          flex: 1;
        }
        
        .faq-answer {
          padding: 20px;
          background: white;
        }
        
        .contact-grid {
          display: grid;
          
          margin: 30px 0;
        }
        
        .contact-card {
          background: #f8f9fa;
          padding: 25px;
          border-radius: 15px;
          text-align: center;
        }
        
        .contact-card svg {
          color: #667eea;
          margin: 0 auto 15px;
        }
        
        .contact-card h4 {
          color: #333;
          margin-bottom: 10px;
        }
        
        .contact-card p {
          color: #666;
          margin: 5px 0;
        }