 * {
            margin: 0px;
            padding: 0px;
            box-sizing: border-box;
            font-family: "Roboto", sans-serif;
            font-optical-sizing: auto;
            font-weight: 400;
            font-style: normal;
        }

        body {
            background-color: white;
            min-height: 100vh;
        }

        /* SECCIÓN NUESTROS SERVICIOS */
        .servicios-section {
            padding: 60px 20px;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .servicios-container {
            max-width: 1200px;
            margin: 0 auto;
            width: 100%;
        }

        .servicios-header {
            text-align: center;
            margin-bottom: 60px;
            animation: fadeInDown 0.8s ease;
        }

        .servicios-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: #880404;
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }

        .servicios-title::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(135deg, #880404, #a61e1e);
            border-radius: 2px;
        }

        .servicios-subtitle {
            font-size: 1.2rem;
            color: #666;
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.6;
        }

        .servicios-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .servicio-card {
            background: white;
            border-radius: 20px;
            padding: 40px 30px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            overflow: hidden;
            cursor: pointer;
            animation: fadeInUp 0.8s ease forwards;
            opacity: 0;
            transform: translateY(30px);
        }

        .servicio-card:nth-child(1) { animation-delay: 0.2s; }
        .servicio-card:nth-child(2) { animation-delay: 0.4s; }
        .servicio-card:nth-child(3) { animation-delay: 0.6s; }
        .servicio-card:nth-child(4) { animation-delay: 0.8s; }

        .servicio-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(136, 4, 4, 0.1), transparent);
            transition: all 0.6s ease;
        }

        .servicio-card:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 20px 50px rgba(136, 4, 4, 0.15);
        }

        .servicio-card:hover::before {
            left: 100%;
        }

        .servicio-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 25px;
            background: linear-gradient(135deg, #880404, #a61e1e);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 32px;
            color: white;
            transition: all 0.4s ease;
            position: relative;
            z-index: 2;
        }

        .servicio-card:hover .servicio-icon {
            transform: rotate(10deg) scale(1.1);
            box-shadow: 0 8px 25px rgba(136, 4, 4, 0.3);
        }

        .servicio-title {
            font-size: 1.4rem;
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 20px;
            transition: all 0.3s ease;
            position: relative;
            z-index: 2;
        }

        .servicio-card:hover .servicio-title {
            color: #880404;
            transform: translateY(-2px);
        }

        .servicio-description {
            font-size: 1rem;
            color: #666;
            line-height: 1.7;
            margin-bottom: 25px;
            position: relative;
            z-index: 2;
            transition: all 0.3s ease;
        }

        .servicio-card:hover .servicio-description {
            color: #555;
        }

        .servicio-highlight {
            display: inline-block;
            background: linear-gradient(135deg, #880404, #a61e1e);
            color: white;
            padding: 8px 20px;
            border-radius: 25px;
            font-size: 0.9rem;
            font-weight: 600;
            transition: all 0.3s ease;
            position: relative;
            z-index: 2;
        }

        .servicio-card:hover .servicio-highlight {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(136, 4, 4, 0.3);
        }

        /* Efectos especiales para cada tarjeta */
        .servicio-card:nth-child(odd) {
            background: linear-gradient(135deg, white 0%, #fafafa 100%);
        }

        .servicio-card:nth-child(even) {
            background: linear-gradient(135deg, #fafafa 0%, white 100%);
        }

        /* CTA Section */
        .servicios-cta {
            text-align: center;
            margin-top: 60px;
            padding: 40px;
            background: white;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            animation: fadeInUp 1s ease forwards;
            opacity: 0;
            transform: translateY(30px);
            animation-delay: 1s;
        }

        .cta-title {
            font-size: 1.8rem;
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 15px;
        }

        .cta-description {
            font-size: 1.1rem;
            color: #666;
            margin-bottom: 30px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.6;
        }

        .cta-button {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: linear-gradient(135deg, #880404, #a61e1e);
            color: white;
            padding: 15px 30px;
            border: none;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.4s ease;
            cursor: pointer;
            box-shadow: 0 5px 20px rgba(136, 4, 4, 0.3);
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 30px rgba(136, 4, 4, 0.4);
            background: linear-gradient(135deg, #a61e1e, #c92727);
        }

        .cta-button i {
            font-size: 18px;
            transition: transform 0.3s ease;
        }

        .cta-button:hover i {
            transform: translateX(3px);
        }

        /* Animaciones */
        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Responsive */
        @media (max-width: 768px) {
            .servicios-section {
                padding: 40px 15px;
            }

            .servicios-title {
                font-size: 2rem;
            }

            .servicios-subtitle {
                font-size: 1rem;
            }

            .servicios-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .servicio-card {
                padding: 30px 20px;
            }

            .servicio-icon {
                width: 70px;
                height: 70px;
                font-size: 28px;
            }

            .servicio-title {
                font-size: 1.2rem;
            }

            .cta-title {
                font-size: 1.5rem;
            }

            .cta-description {
                font-size: 1rem;
            }

            .cta-button {
                padding: 12px 25px;
                font-size: 1rem;
            }
        }

        @media (max-width: 480px) {
            .servicios-title {
                font-size: 1.8rem;
            }

            .servicio-card {
                padding: 25px 15px;
            }

            .servicio-icon {
                width: 60px;
                height: 60px;
                font-size: 24px;
            }

            .servicio-title {
                font-size: 1.1rem;
            }

            .servicio-description {
                font-size: 0.95rem;
            }
        }