

/* Variables y reset */
        :root {
            --primary: #2c3e50;
            --secondary: #3498db;
            --accent: #e74c3c;
            --light: #ecf0f1;
            --dark: #2c3e50;
            --text: #333;
            --transition: all 0.3s ease;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        html {
            scroll-behavior: smooth;
        }
        
        body {
            background-color: #f9f9f9;
            color: var(--text);
            line-height: 1.6;
            overflow-x: hidden;
            position: relative;
        }

        /* Pantalla de Carga */
        .loading-screen {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 9999;
            animation: fadeOutLoading 0.8s ease-out 2s forwards;
        }

        .loading-content {
            text-align: center;
        }

        .ghost-loading {
            width: 150px;
            height: 160px;
            margin-bottom: 30px;
            animation: float 3s ease-in-out infinite;
            filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.2));
        }

        .loading-text {
            font-size: 24px;
            font-weight: 700;
            color: white;
            letter-spacing: 2px;
            animation: pulse 1.5s ease-in-out infinite;
        }

        @keyframes fadeOutLoading {
            0% {
                opacity: 1;
                visibility: visible;
            }
            100% {
                opacity: 0;
                visibility: hidden;
            }
        }

        @keyframes pulse {
            0%, 100% {
                opacity: 1;
            }
            50% {
                opacity: 0.5;
            }
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
        }
        
        /* Header y navegación */
        header {
            background-color: rgba(255, 255, 255, 0.95);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            position: fixed;
            width: 100%;
            z-index: 1000;
            transition: var(--transition);
        }
        
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 0;
        }
        
        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .logo-img {
            height: 50px;
            width: auto;
            border-radius: 8px;
            transition: var(--transition);
        }

        .logo-img:hover {
            transform: scale(1.05);
        }
        
        .logo-icon {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, var(--secondary), var(--primary));
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 10px;
            color: white;
            font-weight: bold;
            font-size: 18px;
        }
        
        .logo-text {
            font-size: 24px;
            font-weight: 700;
            color: var(--primary);
        }
        
        .logo-text span {
            color: var(--secondary);
        }
        
        .nav-links {
            display: flex;
            list-style: none;
        }
        
        .nav-links li {
            margin-left: 30px;
        }
        
        .nav-links a {
            text-decoration: none;
            color: var(--dark);
            font-weight: 500;
            transition: var(--transition);
            position: relative;
        }
        
        .nav-links a:hover {
            color: var(--secondary);
        }
        
        .nav-links a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 0;
            background-color: var(--secondary);
            transition: var(--transition);
        }
        
        .nav-links a:hover::after {
            width: 100%;
        }
        
        .mobile-menu {
            display: none;
            font-size: 24px;
            cursor: pointer;
        }
        
        /* Hero Section */
        .hero {
            height: 100vh;
            display: flex;
            align-items: center;
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.9), rgba(118, 75, 162, 0.8), rgba(240, 147, 251, 0.7)), url('https://images.unsplash.com/photo-1518709268805-4e9042af2176?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .hero-content {
            max-width: 800px;
            margin: 0 auto;
            padding: 0 20px;
            z-index: 2;
        }
        
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            opacity: 0;
            animation: fadeInUp 1s forwards 0.5s;
        }
        
        .hero p {
            font-size: 1.5rem;
            margin-bottom: 30px;
            opacity: 0;
            animation: fadeInUp 1s forwards 0.8s;
        }
        
        .hero-btns {
            display: flex;
            justify-content: center;
            gap: 20px;
            opacity: 0;
            animation: fadeInUp 1s forwards 1.1s;
        }
        
        .btn {
            padding: 12px 30px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            transition: var(--transition);
            display: inline-block;
            border: 2px solid transparent;
        }
        
        .btn-primary {
            background-color: var(--secondary);
            color: white;
        }
        
        .btn-primary:hover {
            background-color: transparent;
            border-color: white;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }
        
        .btn-secondary {
            background-color: transparent;
            color: white;
            border-color: white;
        }
        
        .btn-secondary:hover {
            background-color: white;
            color: var(--primary);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }
        
        /* Secciones generales */
        section {
            padding: 100px 0;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .section-title h2 {
            font-size: 2.5rem;
            color: var(--primary);
            position: relative;
            display: inline-block;
            margin-bottom: 15px;
        }
        
        .section-title h2::after {
            content: '';
            position: absolute;
            width: 70px;
            height: 3px;
            background-color: var(--secondary);
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
        }
        
        .section-title p {
            color: #666;
            max-width: 600px;
            margin: 0 auto;
        }
        
        /* Servicios */
        .services {
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 50%, #f5f7fa 100%);
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .service-card {
           /* background-color: white;
            border-radius: 10px;
            padding: 40px 30px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: var(--transition);
            position: relative;
            overflow: hidden;
            z-index: 1;*/
            cursor: pointer;
            position: relative;
            transition: all 0.4s ease;
        }

        .service-details {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s ease;
            background: rgba(52, 152, 219, 0.05);
            border-radius: 0 0 10px 10px;
            margin: 20px -30px -40px;
            padding: 0 30px;
        }

        .serice-details.active {
            max-height: 300px;
            padding: 20px 30px;
        }

        .service-details ul {
            list-style: none;
            margin-bottom: 15px;
        }

        .service-details li {
            margin-bottom: 8px;
            position: relative;
            padding-left: 20px;
        }

        .service-details li::before {
            content: ">";
            position: absolute;
            left: 0;
            color: var(--secondary);
        }

        .service-pricing {
            border-top: 1px solid rgba(52, 152, 219, 0.2);
            padding-top: 15px;
            text-align: center;
        }

        .service-pricing strong {
            color: var(--secondary);
            font-size: 1.2rem;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 0;
            background: linear-gradient(135deg, var(--secondary), var(--primary));
            transition: var(--transition);
            z-index: -1;
        }
        
        .service-card:hover::before {
            height: 100%;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            color: white;
        }
        
        .service-card:hover .service-icon {
            color: white;
        }
        
        .service-card:hover h3 {
            color: white;
        }
        
        .service-icon {
            font-size: 50px;
            color: var(--secondary);
            margin-bottom: 20px;
            transition: var(--transition);
        }
        
        .service-card h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: var(--primary);
            transition: var(--transition);
        }
        
        /* Portafolio */
        .portfolio {
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 50%, #f5f7fa 100%);
        }
        
        .portfolio-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
        }
        
        .portfolio-item {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: var(--transition);
            position: relative;
            height: 300px;
        }
        
        .portfolio-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
        }
        
        .portfolio-img {
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            transition: var(--transition);
        }
        
        .portfolio-item:hover .portfolio-img {
            transform: scale(1.1);
        }
        
        .portfolio-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, transparent, rgba(44, 62, 80, 0.9));
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 30px;
            color: white;
            opacity: 0;
            transition: var(--transition);
        }
        
        .portfolio-item:hover .portfolio-overlay {
            opacity: 1;
        }
        
        .portfolio-overlay h3 {
            font-size: 1.5rem;
            margin-bottom: 10px;
        }
        
        /* Sobre Mí */
        .about {
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 50%, #f5f7fa 100%);
        }
        
        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }
        
        .about-text h3 {
            font-size: 1.8rem;
            color: var(--primary);
            margin-bottom: 20px;
        }
        
        .about-text p {
            margin-bottom: 20px;
            color: #666;
        }
        
        .about-image {
            position: relative;
        }
        
        .about-img {
            width: 100%;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
        
        .experience-badge {
            position: absolute;
            bottom: -20px;
            right: -20px;
            background: linear-gradient(135deg, var(--secondary), var(--primary));
            color: white;
            padding: 20px;
            border-radius: 10px;
            text-align: center;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }
        
        .experience-badge h4 {
            font-size: 2rem;
            margin-bottom: 5px;
        }
        
        /* Contacto */
        .contact {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%), url('https://images.unsplash.com/photo-1557804506-669a67965ba0?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            text-align: center;
        }
        
        .contact .section-title h2 {
            color: white;
        }
        
        .contact .section-title h2::after {
            background-color: white;
        }
        
        .contact-info {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 50px;
        }
        
        .contact-item {
            background-color: rgba(255, 255, 255, 0.1);
            padding: 30px;
            border-radius: 10px;
            backdrop-filter: blur(10px);
            transition: var(--transition);
        }
        
        .contact-item:hover {
            transform: translateY(-10px);
            background-color: rgba(255, 255, 255, 0.2);
        }
        
        .contact-icon {
            font-size: 40px;
            margin-bottom: 20px;
            color: var(--secondary);
        }
        
        .contact-item h3 {
            font-size: 1.5rem;
            margin-bottom: 10px;
        }
        
        .contact-form {
            max-width: 700px;
            margin: 0 auto;
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-control {
            width: 100%;
            padding: 15px;
            border-radius: 5px;
            border: none;
            background-color: rgba(255, 255, 255, 0.1);
            color: white;
            font-size: 16px;
            backdrop-filter: blur(10px);
        }
        
        .form-control::placeholder {
            color: rgba(255, 255, 255, 0.7);
        }
        
        textarea.form-control {
            min-height: 150px;
            resize: vertical;
        }
        
        /* Footer */
        footer {
            background: linear-gradient(135deg, #2c3e50 0%, #34495e 50%, #3d546d 100%);
            color: white;
            padding: 50px 0 20px;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        
        .footer-logo {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 20px;
        }
        
        .footer-logo span {
            color: var(--secondary);
        }
        
        .footer-about p {
            margin-bottom: 20px;
            color: #bbb;
        }
        
        .social-links {
            display: flex;
            gap: 15px;
        }
        
        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: white;
            text-decoration: none;
            transition: var(--transition);
        }
        
        .social-links a:hover {
            background-color: var(--secondary);
            transform: translateY(-5px);
        }
        
        .footer-links h3, .footer-contact h3 {
            font-size: 1.2rem;
            margin-bottom: 20px;
            position: relative;
        }
        
        .footer-links h3::after, .footer-contact h3::after {
            content: '';
            position: absolute;
            width: 40px;
            height: 2px;
            background-color: var(--secondary);
            bottom: -8px;
            left: 0;
        }
        
        .footer-links ul {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 10px;
        }
        
        .footer-links a {
            color: #bbb;
            text-decoration: none;
            transition: var(--transition);
        }
        
        .footer-links a:hover {
            color: var(--secondary);
            padding-left: 5px;
        }
        
        .footer-contact p {
            margin-bottom: 15px;
            color: #bbb;
            display: flex;
            align-items: center;
        }
        
        .footer-contact i {
            margin-right: 10px;
            color: var(--secondary);
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #bbb;
            font-size: 14px;
        }
        
        /* Animaciones */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Palomas animadas en el hero */
        .bird {
            background-image: url(https://s3-us-west-2.amazonaws.com/s.cdpn.io/174479/bird-cells-new.svg);
            background-size: auto 100%;
            width: 88px;
            height: 125px;
            will-change: background-position;
            
            animation-name: fly-cycle;
            animation-timing-function: steps(10);
            animation-iteration-count: infinite;
        }

        .bird--one {
            animation-duration: 1s;
            animation-delay: -0.5s;		
        }
        
        .bird--two {
            animation-duration: 0.9s;
            animation-delay: -0.75s;
        }
        
        .bird--three {
            animation-duration: 1.25s;
            animation-delay: -0.25s;
        }
        
        .bird--four {
            animation-duration: 1.1s;
            animation-delay: -0.5s;
        }

        .bird-container {
            position: absolute;
            top: 20%;
            left: -10%;
            transform: scale(0) translateX(-10vw);
            will-change: transform;
            
            animation-name: fly-right-one;
            animation-timing-function: linear;
            animation-iteration-count: infinite;
        }
        
        .bird-container--one {
            animation-duration: 15s;
            animation-delay: 0;
        }
        
        .bird-container--two {
            animation-duration: 16s;
            animation-delay: 1s;
            animation-name: fly-right-two;
        }
        
        .bird-container--three {
            animation-duration: 14.6s;
            animation-delay: 9.5s;
        }
        
        .bird-container--four {
            animation-duration: 16s;
            animation-delay: 10.25s;
        }

        @keyframes fly-cycle {
            100% {
                background-position: -900px 0;
            }
        }

        @keyframes fly-right-one {
            0% {
                transform: scale(0.3) translateX(-10vw);
            }
            
            10% {
                transform: translateY(2vh) translateX(10vw) scale(0.4);
            }
            
            20% {
                transform: translateY(0vh) translateX(30vw) scale(0.5);
            }
            
            30% {
                transform: translateY(4vh) translateX(50vw) scale(0.6);
            }
            
            40% {
                transform: translateY(2vh) translateX(70vw) scale(0.6);
            }
            
            50% {
                transform: translateY(0vh) translateX(90vw) scale(0.6);
            }
            
            60% {
                transform: translateY(0vh) translateX(110vw) scale(0.6);
            }
            
            100% {
                transform: translateY(0vh) translateX(110vw) scale(0.6);
            }
        }

        @keyframes fly-right-two {
            0% {
                transform: translateY(-2vh) translateX(-10vw) scale(0.5);
            }
            
            10% {
                transform: translateY(0vh) translateX(10vw) scale(0.4);
            }
            
            20% {
                transform: translateY(-4vh) translateX(30vw) scale(0.6);
            }
            
            30% {
                transform: translateY(1vh) translateX(50vw) scale(0.45);
            }
            
            40% {
                transform: translateY(-2.5vh) translateX(70vw) scale(0.5);
            }
            
            50% {
                transform: translateY(0vh) translateX(90vw) scale(0.45);
            }
            
            51% {
                transform: translateY(0vh) translateX(110vw) scale(0.45);
            }
            
            100% {
                transform: translateY(0vh) translateX(110vw) scale(0.45);
            }
        }
        
        /* Responsive */
        @media (max-width: 992px) {
            .about-content {
                grid-template-columns: 1fr;
            }
            
            .hero h1 {
                font-size: 2.8rem;
            }
            
            .hero p {
                font-size: 1.3rem;
            }
        }
        
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }
            
            .mobile-menu {
                display: block;
            }
            
            .hero-btns {
                flex-direction: column;
                align-items: center;
            }
            
            .btn {
                width: 200px;
                text-align: center;
            }
            
            .hero h1 {
                font-size: 2.2rem;
            }
            
            .hero p {
                font-size: 1.1rem;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
        }
        
        @media (max-width: 576px) {
            .portfolio-grid {
                grid-template-columns: 1fr;
            }
            
            .services-grid {
                grid-template-columns: 1fr;
            }
            
            .hero h1 {
                font-size: 1.8rem;
            }
        }

        /* ============================================
           SHOWCASE SECTION - Efectos Visuales
           ============================================ */

        .showcase {
            padding: 80px 0;
            background: linear-gradient(135deg, rgba(245, 247, 250, 0.9), rgba(195, 207, 226, 0.5), rgba(245, 247, 250, 0.9));
            position: relative;
            overflow: hidden;
        }

        .showcase::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 400"><defs><pattern id="dots" x="0" y="0" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(52,152,219,0.05)"/></pattern></defs><rect width="1200" height="400" fill="url(%23dots)"/></svg>');
            pointer-events: none;
        }

        .showcase-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            position: relative;
            z-index: 2;
        }

        /* SHOWCASE CARDS */
        .showcase-card {
            background: rgba(255, 255, 255, 0.8);
            border-radius: 12px;
            padding: 30px 20px;
            position: relative;
            overflow: hidden;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
            border: 2px solid rgba(255, 255, 255, 0.5);
            -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
            box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.08);
            min-height: 280px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
        }

        .showcase-card:hover {
            transform: translateY(-8px) scale(1.02);
            box-shadow: 0 20px 50px 0 rgba(31, 38, 135, 0.2);
        }

        /* Background effects for cards */
        .card-bg-effect {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 0.4s ease;
            z-index: 0;
            border-radius: 12px;
        }

        .showcase-card:hover .card-bg-effect {
            opacity: 0.15;
        }

        .effect-blue {
            background: radial-gradient(circle at 30% 50%, rgba(52, 152, 219, 0.8), transparent 70%);
        }

        .effect-green {
            background: radial-gradient(circle at 70% 50%, rgba(46, 204, 113, 0.8), transparent 70%);
        }

        .effect-purple {
            background: radial-gradient(circle at 50% 30%, rgba(155, 89, 182, 0.8), transparent 70%);
        }

        .effect-red {
            background: radial-gradient(circle at 50% 70%, rgba(231, 76, 60, 0.8), transparent 70%);
        }

        .effect-cyan {
            background: radial-gradient(circle at 30% 70%, rgba(41, 182, 246, 0.8), transparent 70%);
        }

        .effect-gold {
            background: radial-gradient(circle at 70% 30%, rgba(241, 196, 15, 0.8), transparent 70%);
        }

        .card-inner {
            position: relative;
            z-index: 2;
            width: 100%;
        }

        .card-icon {
            font-size: 50px;
            margin-bottom: 20px;
            transition: all 0.4s ease;
            display: inline-block;
            width: 80px;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
        }

        .icon-blue {
            color: #3498db;
            box-shadow: 0 0 20px rgba(52, 152, 219, 0.3), inset 0 0 20px rgba(52, 152, 219, 0.1);
        }

        .icon-green {
            color: #2ecc71;
            box-shadow: 0 0 20px rgba(46, 204, 113, 0.3), inset 0 0 20px rgba(46, 204, 113, 0.1);
        }

        .icon-purple {
            color: #9b59b6;
            box-shadow: 0 0 20px rgba(155, 89, 182, 0.3), inset 0 0 20px rgba(155, 89, 182, 0.1);
        }

        .icon-red {
            color: #e74c3c;
            box-shadow: 0 0 20px rgba(231, 76, 60, 0.3), inset 0 0 20px rgba(231, 76, 60, 0.1);
        }

        .icon-cyan {
            color: #29baf6;
            box-shadow: 0 0 20px rgba(41, 182, 246, 0.3), inset 0 0 20px rgba(41, 182, 246, 0.1);
        }

        .icon-gold {
            color: #f1c40f;
            box-shadow: 0 0 20px rgba(241, 196, 15, 0.3), inset 0 0 20px rgba(241, 196, 15, 0.1);
        }

        .showcase-card:hover .card-icon {
            transform: scale(1.15) rotate(5deg);
            box-shadow: 0 0 30px currentColor, inset 0 0 30px rgba(255, 255, 255, 0.3);
        }

        .showcase-card h3 {
            font-size: 24px;
            margin: 15px 0 10px 0;
            color: var(--primary);
            font-weight: 700;
            letter-spacing: 0.5px;
        }

        .showcase-card p {
            color: #666;
            font-size: 14px;
            line-height: 1.6;
            margin: 0;
        }

        /* Animaciones SVG del logo */
        .root-line-main {
            stroke-dasharray: 100;
            stroke-dashoffset: 100;
            animation: drawLine 3s ease-in-out infinite;
        }

        .root-line-left {
            stroke-dasharray: 50;
            stroke-dashoffset: 50;
            animation: drawLineLeft 2.5s ease-in-out 0.3s infinite;
        }

        .root-line-right {
            stroke-dasharray: 50;
            stroke-dashoffset: 50;
            animation: drawLineRight 2.5s ease-in-out 0.6s infinite;
        }

        @keyframes drawLine {
            0%, 100% {
                stroke-dashoffset: 100;
            }
            50% {
                stroke-dashoffset: 0;
            }
        }

        @keyframes drawLineLeft {
            0%, 100% {
                stroke-dashoffset: 50;
            }
            50% {
                stroke-dashoffset: 0;
            }
        }

        @keyframes drawLineRight {
            0%, 100% {
                stroke-dashoffset: 50;
            }
            50% {
                stroke-dashoffset: 0;
            }
        }

        /* Additional animation effects for enhanced polish */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes glow {
            0%, 100% {
                box-shadow: 0 0 5px rgba(52, 152, 219, 0.5);
            }
            50% {
                box-shadow: 0 0 20px rgba(52, 152, 219, 0.8);
            }
        }

        /* Service cards animation on load */
        .service-card {
            animation: fadeInUp 0.6s ease-out;
            animation-fill-mode: both;
        }

        .service-card:nth-child(1) { animation-delay: 0.1s; }
        .service-card:nth-child(2) { animation-delay: 0.2s; }
        .service-card:nth-child(3) { animation-delay: 0.3s; }
        .service-card:nth-child(4) { animation-delay: 0.4s; }
        .service-card:nth-child(5) { animation-delay: 0.5s; }

        /* Hero section improvements */
        .hero-btns {
            display: flex;
            gap: 15px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn {
            padding: 12px 35px;
            border-radius: 5px;
            font-size: 16px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-block;
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--secondary), #5dade2);
            color: white;
            box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 25px rgba(52, 152, 219, 0.5);
        }

        .btn-secondary {
            background: transparent;
            color: var(--secondary);
            border: 2px solid var(--secondary);
        }

        .btn-secondary:hover {
            background: var(--secondary);
            color: white;
            transform: translateY(-2px);
        }
        @media (max-width: 768px) {
            .showcase {
                padding: 60px 0;
            }

            .showcase-grid {
                grid-template-columns: 1fr;
            }

            .showcase-card {
                min-height: 240px;
            }

            .card-icon {
                font-size: 40px;
                width: 70px;
                height: 70px;
            }

            .showcase-card h3 {
                font-size: 20px;
            }
        }