 @import url('https://fonts.googleapis.com/css2?family=Geo:ital@0;1&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: "ubuntu",'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
      line-height: 1.7;
      color: #1f2937;
      background-color: #f9fafb;
      overflow-x: hidden;
    }

    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
    }

    .hero-section {
      background: #f2f2f0;
      padding: 100px 0 80px;
      position: relative;
    }

    .hero-content {
      max-width: 900px;
      margin: 0 auto 50px;
    }

    .hero-title {
      font-size: 3.5rem;
      font-weight: 800;
      margin-bottom: 30px;
      letter-spacing: -0.5px;
      animation: fadeInUp 0.8s ease-out;
      color: #111827;
      line-height: 1.2;
      text-align: center;
    }

    .hero-text {
      font-size: 1.125rem;
      line-height: 1.9;
      color: #6b7280;
      margin: 0 auto;
      animation: fadeInUp 0.8s ease-out 0.2s both;
      max-width: 800px;
    }

    .hero-media {
      max-width: 700px;
      margin: 0 auto;
      position: relative;
    }

    .hero-video {
      width: 100%;
      height: auto;
      border-radius: 16px;
      box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
      animation: fadeInUp 0.8s ease-out 0.4s both;
    }
 


    .about-section {
      padding: 100px 0;
      background: #f9fafb;
      position: relative;
    }

    .section-title {
      font-size: 3rem;
      margin-bottom: 20px;
      color: #585859;
      font-weight: 800;
      letter-spacing: -0.5px;
    }

    .section-subtitle {
      font-size: 1.125rem;
      color: #6b7280;
      margin-bottom: 60px;
    }

    .mission-vision-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
      gap: 40px;
      margin-bottom: 80px;
    }

    .card {
      background: white;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
      transition: all 0.3s ease;
      position: relative;
    }

    .card:hover {
      transform: translateY(-8px);
      box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    }

    .card-image {
      width: 100%;
      height: 280px;
      object-fit: cover;
    }

    .card-content {
      padding: 40px 35px;
    }

    .card-content h3 {
      font-size: 1.875rem;
      color: #111827;
      margin-bottom: 16px;
      font-weight: 700;
      letter-spacing: -0.3px;
    }

    .card-content p {
      font-size: 1.0625rem;
      color: #6b7280;
      line-height: 1.8;
    }



    .mission-card .card-content::before {
      background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    }

    .vision-card .card-content::before {
      background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    }

    .features-list {
      display: flex;
      flex-direction: column;
      gap: 24px;
      margin-top: 40px;
    }

    .feature-item {
      display: flex;
      align-items: flex-start;
      gap: 16px;
      animation: fadeInUp 0.6s ease-out both;
    }

    .feature-item:nth-child(1) { animation-delay: 0.1s; }
    .feature-item:nth-child(2) { animation-delay: 0.2s; }
    .feature-item:nth-child(3) { animation-delay: 0.3s; }
    .feature-item:nth-child(4) { animation-delay: 0.4s; }

    .feature-icon {
      width: 28px;
      height: 28px;
      min-width: 28px;
      background: #3b82f6;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-top: 2px;
    }

    .feature-icon svg {
      width: 16px;
      height: 16px;
      stroke: white;
      stroke-width: 2.5;
      fill: none;
    }

    .feature-text {
      font-size: 1.0625rem;
      color: #6b7280;
      line-height: 1.7;
    }

    .extra-media {
      margin-top: 80px;
      position: relative;
    }
  

    .extra-media-title {
      font-size: 2.5rem;
      font-weight: 800;
      color: #585859;
      margin-bottom: 40px;
      letter-spacing: -0.5px;
    }


    .extra-image {
      max-width: 900px;
      width: 100%;
      height: auto;
      border-radius: 16px;
      box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
      transition: transform 0.3s ease;
    }

    .extra-image:hover {
      transform: scale(1.01);
    }
.extra-media {
  text-align: left;
  margin-top: 60px;
}





.extra-image {
  display: block;
  margin: 0 auto;
  max-width: 90%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.extra-image:hover {
  transform: scale(1.03);
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}


    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @media (max-width: 768px) {
      .hero-title {
        font-size: 2.2rem;
      }

      .hero-text {
        font-size: 1rem;
        padding: 20px;
      }

      .section-title {
        font-size: 2.2rem;
      }

      .mission-vision-grid {
        grid-template-columns: 1fr;
        gap: 30px;
      }

      .card-content h3 {
        font-size: 1.6rem;
      }

      .card-content p {
        font-size: 1rem;
      }

      .hero-section {
        padding: 80px 0 60px;
      }

      .about-section {
        padding: 60px 0;
      }
    }

    @media (max-width: 480px) {
      .hero-title {
        font-size: 1.8rem;
      }

      .hero-text {
        font-size: 0.95rem;
      }

      .section-title {
        font-size: 1.8rem;
      }
    }

    .hero-section {
      background: #f5f3f0;
      padding: 80px 0;
      position: relative;
      overflow: hidden;
    }

    .hero-section .container {
      display: grid;
      grid-template-columns: 1fr 2fr 1fr;
      gap: 40px;
      align-items: center;
      max-width: 1400px;
      position: relative;
    }

    .side-image {
      position: relative;
      animation: fadeInUp 0.8s ease-out;
    }

    .side-image img {
      width: 100%;
      height: auto;
      border-radius: 20px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
      display: block;
    }

    .left-image {
      transform: rotate(-3deg);
    }

    .left-image img {
      border: 8px solid #f4b942;
    }

    .right-image {
      transform: rotate(3deg);
    }

    .right-image img {
      border: 8px solid #90c850;
    }

    .hero-content {
      text-align: center;
      z-index: 2;
      max-width: 100%;
      margin: 0;
    }

    .hero-title {
      font-size: 3.5rem;
      font-weight: 900;
      margin-bottom: 30px;
      letter-spacing: -1px;
      animation: fadeInUp 0.8s ease-out;
      color: #e74c3c;
      line-height: 1.1;
      text-align: center;
    }

    .hero-text {
      font-size: 1.0625rem;
      line-height: 1.8;
      color: #666;
      margin: 0 auto 40px;
      animation: fadeInUp 0.8s ease-out 0.2s both;
      text-align: center;
    }

    .hero-media {
      max-width: 100%;
      margin: 0 auto;
      position: relative;
      animation: fadeInUp 0.8s ease-out 0.4s both;
    }

    .hero-video {
      width: 100%;
      aspect-ratio: 16/9;
      border-radius: 16px;
      box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    }

    .hero-section::before,
    .hero-section::after {
      content: '';
      position: absolute;
      width: 60px;
      height: 60px;
      border: 3px solid #b73ce7;
      border-radius: 50%;
      z-index: 1;
    }

    .hero-section::before {
      top: 10%;
      right: 10%;
    }

    .hero-section::after {
      bottom: 15%;
      left: 8%;
      transform: rotate(45deg);
      border-radius: 8px;
      background: transparent;
      border-color: #f4b942;
    }
    /* Efecto de aparición al hacer scroll */
.hidden {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1s ease, transform 1s ease;
}

.visible {
  opacity: 1;
  transform: translateY(0);
}
/* ============================================
   RESPONSIVE DESIGN - TABLETS Y MÓVILES
   ============================================ */

/* Tablets (768px - 1024px) */
@media (max-width: 1024px) {
  .hero-section .container {
    grid-template-columns: 1fr 2.5fr 1fr;
    gap: 30px;
  }

  .hero-title {
    font-size: 3rem;
  }

  .hero-text {
    font-size: 1rem;
  }

  .side-image img {
    border-width: 6px;
  }

  .section-title {
    font-size: 2.5rem;
  }

  .mission-vision-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .card-image {
    height: 240px;
  }
}

/* Tablets pequeñas (768px - 900px) */
@media (max-width: 900px) {
  .hero-section .container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .side-image {
    display: none;
  }

  .hero-content {
    max-width: 700px;
    margin: 0 auto;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-text {
    font-size: 1rem;
    padding: 0 20px;
  }

  .hero-section {
    padding: 70px 0 60px;
  }

  .about-section {
    padding: 70px 0;
  }

  .section-title {
    font-size: 2.3rem;
  }

  .section-subtitle {
    font-size: 1.05rem;
    margin-bottom: 50px;
  }

  .mission-vision-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 60px;
  }

  .card-content {
    padding: 35px 30px;
  }

  .card-content h3 {
    font-size: 1.7rem;
  }

  .extra-media {
    margin-top: 60px;
  }

  .extra-media-title {
    font-size: 2.2rem;
    margin-bottom: 35px;
  }

  .hero-section::before,
  .hero-section::after {
    width: 50px;
    height: 50px;
  }
}

/* Móviles (481px - 767px) */
@media (max-width: 767px) {
  .container {
    padding: 0 15px;
  }

  .hero-section {
    padding: 60px 0 50px;
  }

  .hero-title {
    font-size: 2.2rem;
    margin-bottom: 25px;
  }

  .hero-text {
    font-size: 0.95rem;
    padding: 0 15px;
    line-height: 1.7;
  }

  .hero-media {
    padding: 0 15px;
  }

  .hero-video {
    border-radius: 12px;
  }

  .about-section {
    padding: 60px 0;
  }

  .section-title {
    font-size: 2rem;
    margin-bottom: 15px;
  }

  .section-subtitle {
    font-size: 0.95rem;
    margin-bottom: 40px;
  }

  .mission-vision-grid {
    grid-template-columns: 1fr;
    gap: 25px;
    margin-bottom: 50px;
  }

  .card {
    border-radius: 12px;
  }

  .card-image {
    height: 200px;
  }

  .card-content {
    padding: 30px 25px;
  }

  .card-content h3 {
    font-size: 1.5rem;
    margin-bottom: 14px;
  }

  .card-content p {
    font-size: 0.95rem;
    line-height: 1.7;
  }

  .features-list {
    gap: 20px;
    margin-top: 30px;
  }

  .feature-icon {
    width: 26px;
    height: 26px;
    min-width: 26px;
  }

  .feature-icon svg {
    width: 14px;
    height: 14px;
  }

  .feature-text {
    font-size: 0.95rem;
  }

  .extra-media {
    margin-top: 50px;
  }

  .extra-media-title {
    font-size: 1.9rem;
    margin-bottom: 30px;
  }

  .extra-image {
    max-width: 95%;
    border-radius: 12px;
  }

  .hero-section::before,
  .hero-section::after {
    width: 40px;
    height: 40px;
    border-width: 2px;
  }

  .hero-section::before {
    top: 8%;
    right: 5%;
  }

  .hero-section::after {
    bottom: 12%;
    left: 5%;
  }
}

/* Móviles pequeños (320px - 480px) */
@media (max-width: 480px) {
  .container {
    padding: 0 12px;
  }

  .hero-section {
    padding: 50px 0 40px;
  }

  .hero-title {
    font-size: 1.8rem;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
  }

  .hero-text {
    font-size: 0.9rem;
    padding: 0 10px;
    line-height: 1.65;
  }

  .hero-media {
    padding: 0 10px;
  }

  .about-section {
    padding: 50px 0;
  }

  .section-title {
    font-size: 1.7rem;
    margin-bottom: 12px;
  }

  .section-subtitle {
    font-size: 0.9rem;
    margin-bottom: 35px;
    line-height: 1.6;
  }

  .mission-vision-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 40px;
  }

  .card {
    border-radius: 10px;
  }

  .card-image {
    height: 180px;
  }

  .card-content {
    padding: 25px 20px;
  }

  .card-content h3 {
    font-size: 1.35rem;
    margin-bottom: 12px;
  }

  .card-content p {
    font-size: 0.9rem;
    line-height: 1.65;
  }

  .features-list {
    gap: 18px;
    margin-top: 25px;
  }

  .feature-item {
    gap: 12px;
  }

  .feature-icon {
    width: 24px;
    height: 24px;
    min-width: 24px;
  }

  .feature-icon svg {
    width: 13px;
    height: 13px;
    stroke-width: 2.2;
  }

  .feature-text {
    font-size: 0.9rem;
    line-height: 1.6;
  }

  .extra-media {
    margin-top: 40px;
  }

  .extra-media-title {
    font-size: 1.6rem;
    margin-bottom: 25px;
  }

  .extra-image {
    max-width: 100%;
    border-radius: 10px;
  }

  .hero-section::before,
  .hero-section::after {
    width: 35px;
    height: 35px;
  }

  .hero-section::before {
    top: 5%;
    right: 3%;
  }

  .hero-section::after {
    bottom: 10%;
    left: 3%;
  }
}

/* Móviles muy pequeños (menos de 360px) */
@media (max-width: 360px) {
  .hero-title {
    font-size: 1.6rem;
  }

  .hero-text {
    font-size: 0.85rem;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .card-content h3 {
    font-size: 1.25rem;
  }

  .card-content p,
  .feature-text {
    font-size: 0.85rem;
  }

  .extra-media-title {
    font-size: 1.4rem;
  }
}

/* Orientación horizontal en móviles */
@media (max-width: 900px) and (orientation: landscape) {
  .hero-section {
    padding: 40px 0 30px;
  }

  .hero-title {
    font-size: 2rem;
    margin-bottom: 20px;
  }

  .hero-text {
    font-size: 0.9rem;
  }

  .about-section {
    padding: 50px 0;
  }

  .section-title {
    font-size: 1.8rem;
  }
}

/* Ajustes para hover en dispositivos táctiles */
@media (hover: none) {
  .card:hover {
    transform: none;
  }

  .extra-image:hover {
    transform: none;
  }
}