/* ===== ESTILOS ESPECÍFICOS PARA ESTRATEGIAS DE MARKETING ===== */

/* Animaciones de scroll */
[data-aos] {
    transition-property: transform, opacity;
  }
  
  /* Hero Section - Estrategias */
  .strategy-hero {
    display: flex;
    min-height: 80vh;
    padding: 4rem 8%;
    align-items: center;
    background: linear-gradient(145deg, var(--accent) 5%, var(--primary) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
  }
  

  
  .strategy-hero-content {
    flex: 1;
    z-index: 2;
  }
  
  .strategy-hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1.5rem;
    line-height: 1.2;
  }
  
  .strategy-hero h1 span {
    color: var(--primary);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
  }
  
  .strategy-hero .subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    max-width: 600px;
    opacity: 0.9;
  }
  
  .strategy-highlights {
    display: flex;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
  }
  
  .strategy-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);
    transition: all 0.3s ease;
  }
  
  .strategy-highlight:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.25);
  }
  
  .strategy-highlight i {
    font-size: 1.8rem;
    color: var(--primary);
  }
  
  .strategy-highlight p {
    font-weight: 500;
    font-size: 1.1rem;
  }
  
  .strategy-hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
  }
  
  .strategy-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;
  }
  
  .strategy-hero-image:hover img {
    transform: perspective(1000px) rotateY(-5deg) scale(1.03);
  }
  
  /* Sección de Beneficios Estratégicos */
  .strategy-benefits {
    padding: 6rem 8%;
    background-color: var(--white);
  }
  
  .strategy-benefits .section-title {
    text-align: center;
    margin-bottom: 3rem;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    position: relative;
  }
  
  .strategy-benefits .section-title::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 4px;
    background-color: var(--primary);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
  }
  
  .strategy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
  }
  
  .strategy-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.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
  }
  
  .strategy-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(110, 0, 255, 0.15);
    border-color: var(--light-accent);
  }
  
  .strategy-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background-color: var(--primary);
  }
  
  .strategy-card i {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 1.5rem;
    display: inline-block;
    transition: all 0.3s ease;
  }
  
  .strategy-card:hover i {
    transform: scale(1.1);
  }
  
  .strategy-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--accent);
    position: relative;
    display: inline-block;
  }
  
  .strategy-card h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: width 0.3s ease;
  }
  
  .strategy-card:hover h3::after {
    width: 100%;
  }
  
  .strategy-card p {
    color: var(--dark-gray);
    line-height: 1.7;
  }
  
  /* Proceso Estratégico */
  .strategy-process {
    padding: 6rem 8%;
    background-color: var(--light-gray);
  }
  
  .strategy-process .section-title {
    text-align: center;
    margin-bottom: 3rem;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    position: relative;
  }
  
  .strategy-process .section-title::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 4px;
    background-color: var(--primary);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
  }
  
  .strategy-steps {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
  }
  
  .strategy-steps::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 50%;
    width: 80%;
    height: 3px;
    background-color: var(--light-accent);
    transform: translateX(-50%);
    z-index: 0;
  }
  
  .strategy-step {
    flex: 1;
    min-width: 250px;
    text-align: center;
    padding: 2rem;
    position: relative;
    z-index: 1;
  }
  
  .strategy-step-number {
    width: 70px;
    height: 70px;
    background-color: var(--accent);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    font-weight: bold;
    margin: 0 auto 1.5rem;
    position: relative;
    transition: all 0.3s ease;
  }
  
  .strategy-step:hover .strategy-step-number {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(110, 0, 255, 0.3);
  }
  
  .strategy-step-number::after {
    content: '';
    position: absolute;
    width: 90px;
    height: 90px;
    background-color: var(--light-accent);
    border-radius: 50%;
    z-index: -1;
  }
  
  .strategy-step h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--accent);
  }
  
  .strategy-step p {
    color: var(--dark-gray);
  }
  
  /* Caso de Éxito */
  .strategy-case-study {
    display: flex;
    min-height: 500px;
    padding: 0;
    background-color: var(--accent);
    color: var(--white);
    position: relative;
    overflow: hidden;
  }
  
  .strategy-case-content {
    flex: 1;
    padding: 4rem 8%;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  .strategy-case-content h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 2rem;
  }
  
  .strategy-case-content h2 span {
    color: var(--primary);
  }
  
  .strategy-results {
    display: flex;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
  }
  
  .strategy-result {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    min-width: 150px;
    transition: all 0.3s ease;
  }
  
  .strategy-result:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.2);
  }
  
  .strategy-result .number {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary);
    margin-bottom: 0.5rem;
    transition: all 0.5s ease;
  }
  
  .strategy-result:hover .number {
    transform: scale(1.1);
    color: var(--white);
  }
  
  .strategy-result .label {
    font-size: 1rem;
    opacity: 0.9;
  }
  
  .strategy-case-image {
    flex: 1;
    position: relative;
  }
  
  .strategy-case-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }
  
  .strategy-case-image:hover img {
    transform: scale(1.05);
  }
  
  /* CTA Final */
  .strategy-cta {
    padding: 6rem 8%;
    text-align: center;
    background: linear-gradient(135deg, var(--accent) 30%, var(--primary) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
  }
  
  .strategy-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 20px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.3), transparent);
  }
  
  .strategy-cta h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
  }
  
  .strategy-cta p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 2rem;
    opacity: 0.9;
    position: relative;
    z-index: 1;
  }
  
  .strategy-cta .cta-button {
    background-color: var(--white);
    color: var(--black);
    font-weight: 700;
    padding: 1.2rem 3rem;
    font-size: 1.2rem;
    margin-top: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    border: none;
  }
  
  .strategy-cta .cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.466);
  }
  
  .strategy-cta .cta-button::after {
    content: '';
    
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50px;
    background: var(--primary) ;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  
  .strategy-cta .cta-button:hover::after {
    opacity: 1;
  }
  
  /* Elementos decorativos */
  .strategy-cta .decorative-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
  }
  
  .strategy-cta .circle-1 {
    width: 200px;
    height: 200px;
    top: -50px;
    right: -50px;
  }
  
  .strategy-cta .circle-2 {
    width: 150px;
    height: 150px;
    bottom: -30px;
    left: -30px;
  }
  
  /* Responsive */
  @media (max-width: 1200px) {
    .strategy-hero,
    .strategy-case-study {
      padding: 4rem 5%;
    }
    
    .strategy-benefits,
    .strategy-process,
    .strategy-cta {
      padding: 4rem 5%;
    }
  }
  
  @media (max-width: 992px) {
    .strategy-hero,
    .strategy-case-study {
      flex-direction: column;
      text-align: center;
    }
    
    .strategy-hero-image {
      margin-top: 3rem;
    }
    
    .strategy-hero-image img {
      transform: none;
      width: 100%;
      max-width: 500px;
    }
    
    .strategy-highlight {
      justify-content: center;
    }
    
    .strategy-case-image {
      min-height: 400px;
      order: -1;
    }
    
    .strategy-steps::before {
      display: none;
    }
  }
  
  @media (max-width: 768px) {
    .strategy-hero h1 {
      font-size: 2.5rem;
    }
    
    .strategy-hero .subtitle {
      font-size: 1.2rem;
    }
    
    .strategy-card {
      padding: 2rem;
    }
    
    .strategy-cta {
      padding: 4rem 2rem;
    }
    
    .strategy-cta p {
      font-size: 1rem;
    }
    
    .strategy-hero::before {
      height: 50px;
      bottom: -25px;
    }
  }
  
  @media (max-width: 480px) {
    .strategy-hero,
    .strategy-case-study {
      padding: 3rem 1.5rem;
    }
    
    .strategy-benefits,
    .strategy-process,
    .strategy-cta {
      padding: 3rem 1.5rem;
    }
    
    .strategy-hero h1 {
      font-size: 2rem;
    }
    
    .strategy-highlight {
      width: 100%;
      justify-content: flex-start;
    }
    
    .strategy-steps {
      flex-direction: column;
    }
    
    .strategy-step {
      text-align: left;
      padding: 1.5rem 0;
      display: flex;
      align-items: flex-start;
      gap: 1.5rem;
    }
    
    .strategy-step-number {
      margin: 0;
      flex-shrink: 0;
      width: 50px;
      height: 50px;
      font-size: 1.5rem;
    }
    
    .strategy-step-number::after {
      width: 70px;
      height: 70px;
    }
    
    .strategy-step-content {
      text-align: left;

    }
  }