.container-servicios {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Hero Section */
        .hero-servicios {
            height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
            padding-top: 80px;
        }

        .hero-servicios::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('https://images.unsplash.com/photo-1517245386807-bb43f82c33c4?auto=format&fit=crop&q=80') no-repeat center center/cover;
            background-attachment: fixed;
            filter: brightness(0.4);
            z-index: -1;
        }

        .hero-content-servicios {
            max-width: 700px;
        }

        .hero-servicios h1 {
            font-size: 4rem;
            margin-bottom: 20px;
            line-height: 1.2;
            background: linear-gradient(45deg, #fff, #cbd5e1);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .hero-servicios p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            color: #cbd5e1;
            max-width: 600px;
        }

        .btn-servicios {
            display: inline-block;
            padding: 14px 32px;
            background:  rgb(0, 12, 31);
            color: white;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
           box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        }

        .btn-servicios:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.329);
            background-color: rgba(0, 12, 31, 0.308);
            border: 2px solid white;
        }

        /* Sección de Servicios */
        .services {
            padding: 100px 100px;
            position: relative;
            overflow: hidden;
        }

        .section-title {
            text-align: center;
            margin-bottom: 70px;
            position: relative;
        }

        .section-title h2 {
            font-size: 3rem;
            margin-bottom: 15px;
            background: linear-gradient(45deg, #f1f2fc, #b7f4ff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
             background-clip: text;
        }

        .section-title p {
            font-size: 1.2rem;
            color: #94a3b8;
            max-width: 700px;
            margin: 0 auto;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        /* Sección parallax */
        .parallax-section {
            height: 500px;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .parallax-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('https://images.unsplash.com/photo-1553877522-43269d4ea984?auto=format&fit=crop&q=80') no-repeat center center/cover;
            background-attachment: fixed;
            z-index: -1;
        }

        .parallax-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(79, 70, 229, 0.8), rgba(124, 58, 237, 0.8));
            z-index: -1;
        }

        .parallax-content {
            text-align: center;
            max-width: 800px;
            padding: 0 20px;
        }

        .parallax-content h2 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            color: white;
        }

        .parallax-content p {
            font-size: 1.3rem;
            color: #e2e8f0;
            margin-bottom: 30px;
        }

         /* Responsive */
        @media (max-width: 768px) {
            .hero-servicios h1 {
                font-size: 2.8rem;
            }
            
            
            .services-grid {
                grid-template-columns: 1fr;
            }
            
            .parallax-content h2 {
                font-size: 2.5rem;
            }
        }

        /* Animaciones */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .animated {
            animation: fadeInUp 0.8s ease forwards;
        }

        .delay-1 {
            animation-delay: 0.2s;
        }

        .delay-2 {
            animation-delay: 0.4s;
        }

        .delay-3 {
            animation-delay: 0.6s;
        }

        /* TARJETAS SERVICIOS */

        #servicios{
            background-color: #0f172a;
        }

    .card {
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    }

    .card a{
        text-decoration: none;
    }

    .card.animated-card {
        opacity: 1;
        transform: translateY(0);
    }

        .card-title {
  color: #262626;
  font-size: 1.4em;
  line-height: normal;
  font-weight: 700;
  margin-bottom: 0.5em;
    text-align: center;
}

.small-desc {
  font-size: 1em;
  font-weight: 400;
  line-height: 1.5em;
  color: #452c2c;
  margin: 15px;
}

.go-corner {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  width: 2em;
  height: 2em;
  overflow: hidden;
  top: 0;
  right: 0;
  background: linear-gradient(135deg, #5cc3ff, #01255a);
  border-radius: 0 4px 0 32px;
}

.go-arrow {
  margin-top: -4px;
  margin-right: -4px;
  color: white;
  font-family: courier, sans;
}

.card {
  display: block;
  position: relative;
  width: 100%;
  max-width: 500px;
  background-color: #f0f4f8;
  border-radius: 10px;
  padding: 2em 1.2em;
  margin: 12px auto;
  text-decoration: none;
  z-index: 0;
  overflow: hidden;
  background: linear-gradient(to bottom, #ffffff, #e6f0ff);
  font-family: Arial, Helvetica, sans-serif;
  cursor: pointer;
  box-sizing: border-box;
}

.card:hover{
    background: linear-gradient(to bottom, #00032e, #001d47);
    transition: all 0.5s ease-out;
    box-shadow: 0 0 20px  rgb(1, 225, 255);
}

.card:before {
  content: '';
  position: absolute;
  z-index: -1;
  top: -16px;
  right: -16px;
  background: linear-gradient(135deg, #0d47a1, #263238);
  height: 32px;
  width: 32px;
  border-radius: 32px;
  transform: scale(1);
  transform-origin: 50% 50%;
  transition: transform 0.35s ease-out;
}

.card:hover:before {
  transform: scale(28);
}

.card:hover .small-desc {
  transition: all 0.5s ease-out;
  color: rgba(255, 255, 255, 0.8);
}

.card:hover .card-title {
  transition: all 0.5s ease-out;
  color: #ffffff;
}

.card:hover .small-desc {
  color: #ffffff;
}

@media (max-width: 768px) {
    .card {
        max-width: 100%;
        margin: 12px 0;
        padding: 1.2em 0.5em;
    }
    
    .card h3 {
        font-size: 1em;
    }

    .card p {
        font-size: 0.9em;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        padding: 0 10px;
    }
}

.service-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #00032e, #001d47);
    border-radius: 50%;
    font-size: 40px;
    color: white;
}

.service-icon:hover {
    transition: all 0.5s ease-out;
    box-shadow: 0 0 20px rgba(1, 225, 255, 0.5);
}
