  /* Hero Section de Contacto */
  .contact-hero {
      padding: 120px 0 80px;
      background: linear-gradient(135deg, rgba(47, 78, 178, 0.9), rgba(29, 53, 87, 0.9)),
          url('../assets/about/hero-bg.jpg') center/cover no-repeat;
      color: white;
      position: relative;
      text-align: center;
  }

  .contact-hero::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.5);
      z-index: 0;
  }

  .contact-hero .container {
      position: relative;
      z-index: 1;
  }

  .contact-hero h1 {
      font-family: 'Amaranth', sans-serif;
      font-weight: 700;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
      margin-bottom: 1rem;
      font-size: 2.8rem;
  }

  .contact-hero p.lead {
      font-size: 1.25rem;
      max-width: 700px;
      margin: 0 auto 2rem;
      text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
  }

  /* ===================================
    Tarjetas de equipo mejoradas.
 ==================================*/
  .team-contact-section {
      padding: 80px 0;
      background-color: white;
  }

  .section-title {
      position: relative;
      padding-bottom: 15px;
      margin-bottom: 3rem;
      text-align: center;
      color: var(--secondary-color);
      font-family: 'Amaranth', sans-serif;
      font-weight: 700;
  }

  .section-title:after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background: var(--accent-color);
      border-radius: 2px;
  }

  .team-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
  }

  .team-card {
      background: white;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
      transition: all 0.3s ease;
      position: relative;
      border: 1px solid rgba(0, 0, 0, 0.05);
      display: flex;
      flex-direction: column;
      height: 100%;
      justify-content: space-between;
  }

  .team-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 35px rgba(47, 78, 178, 0.15);
  }

  .team-photo {
      width: 100%;
      height: 220px;
      overflow: hidden;
  }

  .team-photo img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
  }

  .team-card:hover .team-photo img {
      transform: scale(1.05);
  }

  .team-info {
      padding: 25px 20px;
      text-align: center;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
  }

  .team-info h3 {
      color: var(--secondary-color);
      margin-bottom: 5px;
      font-weight: 600;
  }

  .team-position {
      color: var(--primary-color);
      font-weight: 500;
      margin-bottom: 15px;
      display: block;
      font-size: 0.95rem;
  }

  .team-description {
      color: #666;
      font-size: 0.95rem;
      line-height: 1.6;
      margin-bottom: 20px;
      flex-grow: 1;
  }

  .team-contact-btn {
      display: inline-block;
      background-color: var(--whatsapp-green);
      color: white;
      padding: 8px 20px;
      border-radius: 50px;
      font-weight: 500;
      transition: all 0.3s ease;
      text-decoration: none;
      border: none;
      margin-top: auto;
  }

  .team-contact-btn:hover {
      background-color: var(--whatsapp-dark-green);
      color: white;
      transform: translateY(-3px);
      box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
  }

  .team-contact-btn i {
      margin-right: 8px;
  }

  /* Swiper Carousel Contenedor */
  .team-carousel {
      padding-bottom: 50px;
      position: relative;
      overflow: hidden;
  }

  /* Swiper Navegación */
  .swiper-button-prev,
  .swiper-button-next {
      color: var(--primary-color) !important;
  }

  .swiper-button-prev,
  .swiper-button-next {
      background: none !important;
      /* Elimina el círculo */
      color: var(--primary-color) !important;
      border: none;
      width: 40px;
      height: 40px;
      font-size: 1.5rem !important;
      transition: color 0.3s ease, transform 0.3s ease;
      top: 40%;
      /* mejor alineación vertical */
  }

  .swiper-button-prev:hover,
  .swiper-button-next:hover {
      color: var(--primary-color-two) !important;
      transform: scale(1.1);
  }

  .swiper-button-prev::after,
  .swiper-button-next::after {
      font-size: 2rem;
      font-weight: bold;
  }


  /* Swiper Paginación */
  .swiper-pagination-bullet {
      background: #ccc;
      opacity: 0.8;
  }

  .swiper-pagination-bullet-active {
      background: var(--accent-color);
  }

  /* Swiper Slide */
  .swiper-slide {
      height: auto !important;
      display: flex;
      flex-direction: column;
  }


  /* Sección de información de contacto adicional */
  .contact-info-section {
      padding: 80px 0;
      background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  }

  .contact-info-card {
      background: white;
      border-radius: 12px;
      padding: 30px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
      height: 100%;
      text-align: center;
      transition: all 0.3s ease;
  }

  .contact-info-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 15px 35px rgba(47, 78, 178, 0.1);
  }

  /* Nuevos estilos para los iconos de la sección de contacto adicional */
  .contact-info-card .new-icon-style {
      font-size: 2.5rem;
      color: var(--accent-color);
      margin-bottom: 20px;
  }


  .contact-info-card h3 {
      color: var(--secondary-color);
      margin-bottom: 15px;
      font-weight: 600;
  }

  .contact-info-card p {
      color: #555;
      margin-bottom: 20px;
  }

  .contact-link {
      color: var(--primary-color);
      font-weight: 500;
      text-decoration: none;
      transition: all 0.3s ease;
  }

  .contact-link:hover {
      color: var(--secondary-color);
      text-decoration: underline;
  }

  /* Responsive */
  @media (max-width: 992px) {
      .contact-hero h1 {
          font-size: 2.5rem;
      }

      .contact-hero p.lead {
          font-size: 1.1rem;
      }
  }

  @media (max-width: 768px) {
      .contact-hero {
          padding: 100px 0 60px;
      }

      .contact-hero h1 {
          font-size: 2.2rem;
      }
  }

  @media (max-width: 576px) {
      .contact-hero h1 {
          font-size: 2rem;
      }

      .section-title {
          font-size: 1.75rem;
      }
  }

  .contact-info-card .new-icon-style {
      font-size: 2.5rem;
      color: var(--accent-color);
      margin-bottom: 20px;
  }