/* ===== ESTILOS GENERALES ===== */
:root {
    --white: #FFFFFF;
    --black: #000000;
    --primary: #CCFF00;
    --accent: #6E00FF;
    --dark-gray: #333333;
    --light-gray: #f5f5f5;
    --gray: #888888;
    --light-accent: rgba(110, 0, 255, 0.1);
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }
  
  body {
    background-color: var(--white);
    color: var(--black);
    overflow-x: hidden;
    line-height: 1.6;
  }
  
 
  
  /* ===== ESTILOS COMUNES PARA LANDINGS ===== */
  .main-content {
    margin-top: 80px; /* Para compensar el navbar fijo */
    min-height: calc(100vh - 160px);
  }
  
  /* ===== HERO DE SERVICIO ===== */
  .service-hero {
    display: flex;
    min-height: 80vh;
    padding: 4rem 8%;
    align-items: center;
    background: linear-gradient(135deg, var(--accent) 0%, var(--primary) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
  }
  
  .service-hero-content {
    flex: 1;
    z-index: 2;
    margin-top: 100px;
    height: 90vh;
  }
  
  .service-hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1.5rem;
    line-height: 1.2;
  }
  
  .service-hero h1 span {
    color: var(--primary);
  }
  
  .service-hero .subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    max-width: 600px;
  }
  
  .service-highlights {
    display: flex;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
  }
  
  .highlight {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
    padding: 1rem 1.5rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
  }
  
  .highlight i {
    font-size: 1.8rem;
    color: var(--primary);
  }
  
  .highlight p {
    font-weight: 500;
    font-size: 1.1rem;
  }
  
  .service-hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
  }
  
  .service-hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transform: perspective(1000px) rotateY(-15deg);
    transition: transform 0.5s ease;
  }
  
  .service-hero-image:hover img {
    transform: perspective(1000px) rotateY(-5deg);
  }
  
  /* ===== SECCIÓN DE BENEFICIOS ===== */
  .service-benefits {
    padding: 6rem 8%;
    background-color: var(--white);
  }
  
  .section-title {
    text-align: center;
    margin-bottom: 3rem;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    position: relative;
  }
  
  .section-title::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 4px;
    background-color: var(--primary);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
  }
  
  .benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
  }
  
  .benefit-card {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
  }
  
  .benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  }
  
  .benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background-color: var(--primary);
  }
  
  .benefit-card i {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 1.5rem;
    display: inline-block;
  }
  
  .benefit-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--accent);
  }
  
  .benefit-card p {
    color: var(--dark-gray);
    line-height: 1.7;
  }
  
  /* ===== SECCIÓN DE PROCESO ===== */
  .service-process {
    padding: 6rem 8%;
    background-color: var(--light-gray);
  }
  
  .process-steps {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
  }
  
  .step {
    flex: 1;
    min-width: 250px;
    text-align: center;
    padding: 2rem;
    position: relative;
  }
  
  .step-number {
    width: 60px;
    height: 60px;
    background-color: var(--accent);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
    font-weight: bold;
    margin: 0 auto 1.5rem;
    position: relative;
    z-index: 1;
  }
  
  .step-number::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 80px;
    background-color: var(--light-accent);
    border-radius: 50%;
    z-index: -1;
  }
  
  .step h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--accent);
  }
  
  .step p {
    color: var(--dark-gray);
  }
  
  /* ===== CASO DE ÉXITO ===== */
  .case-study {
    display: flex;
    min-height: 500px;
    padding: 0;
    background-color: var(--accent);
    color: var(--white);
    position: relative;
    overflow: hidden;
  }
  
  .case-study-content {
    flex: 1;
    padding: 4rem 8%;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  .case-study h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 2rem;
  }
  
  .case-study h2 span {
    color: var(--primary);
  }
  
  .results {
    display: flex;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
  }
  
  .result {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    min-width: 150px;
  }
  
  .result .number {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary);
    margin-bottom: 0.5rem;
  }
  
  .result .label {
    font-size: 1rem;
    opacity: 0.9;
  }
  
  .case-study-image {
    flex: 1;
    position: relative;
  }
  
  .case-study-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  /* ===== FOOTER ===== */
  .footer {
    background-color: var(--black);
    color: var(--white);
    padding: 4rem 8%;
    text-align: center;
  }
  
  .footer-content {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .footer-logo {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    display: inline-block;
  }
  
  .footer-logo .ai {
    color: var(--primary);
  }
  
  .footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 2rem;
  }
  
  .footer-links a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .footer-links a:hover {
    color: var(--primary);
  }
  
  .footer-social {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
  }
  
  .footer-social a {
    color: var(--white);
    font-size: 1.5rem;
    transition: all 0.3s ease;
  }
  
  .footer-social a:hover {
    color: var(--primary);
    transform: translateY(-3px);
  }
  
  .copyright {
    margin-top: 2rem;
    color: var(--gray);
    font-size: 0.9rem;
  }
  
  /* ===== BOTONES ===== */
  .cta-button {
    display: inline-block;
    background-color: var(--primary);
    color: var(--black);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid var(--primary);
    text-align: center;
    cursor: pointer;
  }
  
  .cta-button:hover {
    background-color: transparent;
    color: var(--white);
    box-shadow: 0 0 0 3px var(--primary);
  }
  
  .cta-button-outline {
    display: inline-block;
    background-color: transparent;
    color: var(--primary);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid var(--primary);
    text-align: center;
    cursor: pointer;
    margin-top: 1.5rem;
  }
  
  .cta-button-outline:hover {
    background-color: var(--primary);
    color: var(--black);
  }
  
  /* ===== RESPONSIVE ===== */
  @media (max-width: 1200px) {
    .service-hero,
    .case-study {
      padding: 4rem 5%;
    }
    
    .service-benefits,
    .service-process {
      padding: 4rem 5%;
    }
  }
  
  @media (max-width: 992px) {
    .service-hero,
    .case-study {
      flex-direction: column;
      text-align: center;
    }
    
    .service-hero-image {
      margin-top: 3rem;
      order: -1;
    }
    
    .service-hero-image img {
      transform: none;
      width: 100%;
      max-width: 500px;
    }
    
    .highlight {
      justify-content: center;
    }
    
    .case-study-image {
      min-height: 400px;
    }
  }
  
  @media (max-width: 768px) {
    .navbar {
      padding: 1rem;
    }
    
    .nav-links {
      position: fixed;
      top: 0;
      left: -100%;
      width: 80%;
      max-width: 300px;
      height: 100vh;
      background-color: var(--white);
      flex-direction: column;
      align-items: center;
      justify-content: center;
      transition: all 0.5s ease;
      box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    }
    
    .nav-links.active {
      left: 0;
    }
    
    .nav-links li {
      margin: 1.5rem 0;
    }
    
    .menu-toggle {
      display: block;
    }
    
    .service-hero h1 {
      font-size: 2.5rem;
    }
    
    .service-hero .subtitle {
      font-size: 1.2rem;
    }
    
    .benefit-card {
      padding: 2rem;
    }
  }
  
  @media (max-width: 480px) {
    .service-hero,
    .case-study {
      padding: 3rem 1.5rem;
    }
    
    .service-benefits,
    .service-process {
      padding: 3rem 1.5rem;
    }
    
    .service-hero h1 {
      font-size: 2rem;
    }
    
    .highlight {
      width: 100%;
      justify-content: flex-start;
    }
    
    .process-steps {
      flex-direction: column;
    }
    
    .step {
      text-align: left;
      padding: 1.5rem 0;
      display: flex;
      align-items: flex-start;
      gap: 1.5rem;
    }
    
    .step-number {
      margin: 0;
      flex-shrink: 0;
    }
    
    .step-content {
      text-align: left;
    }
  }




  