@charset "UTF-8";
 body {
      box-sizing: border-box;
      font-family: 'Manrope', sans-serif;
    }
    html {
      scroll-behavior: smooth;
    }
    .gradient-cobalto {
      background: linear-gradient(135deg, #1C3D5A 0%, #142d42 100%);
    }
    .card-hover {
      transition: all 0.3s ease;
    }
    .card-hover:hover {
      transform: translateY(-4px);
      box-shadow: 0 20px 40px -12px rgba(53, 193, 184, 0.2);
    }
    .animate-fade-up {
      animation: fadeUp 0.6s ease-out forwards;
      opacity: 0;
    }
    @keyframes fadeUp {
      from {
        opacity: 0;
        transform: translateY(20px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
    .delay-100 { animation-delay: 0.1s; }
    .delay-200 { animation-delay: 0.2s; }
    .delay-300 { animation-delay: 0.3s; }
    .delay-400 { animation-delay: 0.4s; }
    
    /* Isotipo styling */
    .isotipo-line {
      transition: all 0.3s ease;
    }
    .isotipo:hover .isotipo-line {
      transform: translateY(-2px);
    }
    
    /* Custom turquoise color */
    .text-turquesa {
      color: #35C1B8;
    }
    .bg-turquesa {
      background-color: #35C1B8;
    }
    .border-turquesa {
      border-color: #35C1B8;
    }
    .hover\:bg-turquesa:hover {
      background-color: #2da89f;
    }
    .bg-cobalto {
      background-color: #1C3D5A;
    }
