/* Variables de color importadas de style.css */
:root {
    --primary-color: #1f556f;
    --secondary-color: #24cff1;
    --gold-color: #D4AF37;
    --light-color: #f8f9fa;
    --dark-color: #343a40;
}

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        h1 {
            color: var(--secondary-color) !important;
        }

        .bg-primary-custom {
            background-color: var(--primary-color);
        }

        .text-gold {
            color: var(--gold-color);
        }

        .btn-primary-custom {
            background-color: var(--primary-color);
            border-color: var(--primary-color);
            color: white;
        }

        .btn-primary-custom:hover {
            background-color: #8c2d64;
            border-color: #8c2d64;
        }

        .hero-section {
            background: linear-gradient(135deg, var(--primary-color) 0%, #00547e 100%);
            color: white;
            padding: 150px 0 80px;
        }

        .section-title {
            position: relative;
            margin-bottom: 3rem;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
            border-radius: 2px;
        }

        .feature-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
        }

        .card-hover {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: none;
            border-radius: 10px;
            overflow: hidden;
        }

        .card-hover:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        footer {
            background-color: var(--dark-color);
            color: white;
        }
        /* Animación para el logo de la empresa */
.empresa-logo {
    opacity: 0;
    transform: scale(0.7);
    animation: logoShowOff 1.2s cubic-bezier(.68,-0.55,.27,1.55) forwards;
    animation-delay: 0.3s;
}

@keyframes logoShowOff {
    0% {
        opacity: 0;
        transform: scale(0.7) rotate(-10deg);
    }
    60% {
        opacity: 1;
        transform: scale(1.15) rotate(8deg);
    }
    80% {
        transform: scale(0.95) rotate(-4deg);
    }
    100% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}