@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

        body {
            font-family: 'Poppins', sans-serif;
            scroll-behavior: smooth;
        }

        .card-hover:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
        }
        .text-color-azul {
            color: #113859;
        }

        .text-color-rosa {
            color: #e43d58;
        }

        .btn-primary {
            background: linear-gradient(90deg, #091f32 0%, #113859 100%);
            transition: all 0.3s ease;
        }

        .bg-rosa-gradient{
            background: linear-gradient(90deg, #892535 0%, #e43d58 100%);
            transition: all 0.3s ease;
        }

        .bg-rosa-gradient:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
        }

        .section-divider {
            height: 100px;
            background: linear-gradient(to right bottom, #ffffff 49.9%, transparent 50.1%),
                        linear-gradient(to right top, #ffffff 49.9%, transparent 50.1%);
            background-size: 100% 50%;
            background-repeat: no-repeat;
        }

        .floating {
            animation: floating 3s ease-in-out infinite;
        }

        .hero-gradient {
            background: linear-gradient(135deg, rgba(17,56,89,1) 0%, rgba(10,36,56,1) 100%);
        }
        .feature-card {
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
            background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
        }
        .feature-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 25px -5px rgba(17, 56, 89, 0.1), 0 10px 10px -5px rgba(17, 56, 89, 0.04);
        }
        .highlight-box {
            position: relative;
            overflow: hidden;
        }
        .highlight-box::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 100%;
            background: linear-gradient(to bottom, #e43d58, #113859);
        }
        .glow-text {
            text-shadow: 0 0 8px rgba(228, 61, 88, 0.3);
        }
        .btn-primary {
            background: linear-gradient(to right, #113859, #1a4b75);
            transition: all 0.3s ease;
        }
        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 15px -3px rgba(17, 56, 89, 0.3);
        }
        .btn-secondary {
            background: linear-gradient(to right, #e43d58, #f05d7a);
            transition: all 0.3s ease;
        }
        .btn-secondary:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 15px -3px rgba(228, 61, 88, 0.3);
        }

        @keyframes floating {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-15px); }
            100% { transform: translateY(0px); }
        }

        .glow {
            box-shadow: 0 0 15px rgba(157, 80, 187, 0.5);
        }
