:root {
            --color-primary: #116968;
            --color-secondary: #72afe6;
            --color-accent: #4a8887;
            --color-light: #c9dadd;
            --color-dark: #3a7c7c;
            --font-heading: 'Playfair Display', serif;
            --font-body: 'Poppins', sans-serif;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-body);
            background: linear-gradient(135deg, #f8fafa 0%, var(--color-light) 100%);
            color: #333;
            overflow-x: hidden;
        }

        /* Animated Background */
        .bg-shapes {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: -1;
            overflow: hidden;
        }

        .bg-shape {
            position: absolute;
            border-radius: 50%;
            opacity: 0.1;
            animation: float 20s infinite ease-in-out;
        }

        .bg-shape:nth-child(1) {
            width: 400px;
            height: 400px;
            background: var(--color-primary);
            top: -100px;
            right: -100px;
            animation-delay: 0s;
        }

        .bg-shape:nth-child(2) {
            width: 300px;
            height: 300px;
            background: var(--color-secondary);
            bottom: 20%;
            left: -150px;
            animation-delay: -5s;
        }

        .bg-shape:nth-child(3) {
            width: 200px;
            height: 200px;
            background: var(--color-accent);
            top: 50%;
            right: 10%;
            animation-delay: -10s;
        }

        @keyframes float {
            0%, 100% { transform: translate(0, 0) rotate(0deg); }
            25% { transform: translate(30px, -30px) rotate(5deg); }
            50% { transform: translate(-20px, 20px) rotate(-5deg); }
            75% { transform: translate(20px, 30px) rotate(3deg); }
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 2rem;
            position: relative;
        }

        .hero-content {
            text-align: center;
            max-width: 900px;
            animation: fadeInUp 1s ease-out;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(17, 105, 104, 0.1);
            padding: 0.5rem 1.2rem;
            border-radius: 50px;
            font-size: 0.9rem;
            color: var(--color-primary);
            margin-bottom: 1.5rem;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.02); }
        }

        .hero h1 {
            font-family: var(--font-heading);
            font-size: clamp(2.5rem, 6vw, 4.5rem);
            color: var(--color-primary);
            margin-bottom: 1rem;
            line-height: 1.1;
        }

        .hero h1 span {
            background: linear-gradient(135deg, var(--color-secondary), var(--color-accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-subtitle {
            font-size: clamp(1rem, 2vw, 1.3rem);
            color: #666;
            margin-bottom: 2rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .hero-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
            margin-bottom: 3rem;
        }

        .btn {
            padding: 1rem 2rem;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            cursor: pointer;
            border: none;
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--color-primary), var(--color-dark));
            color: white;
            box-shadow: 0 10px 30px rgba(17, 105, 104, 0.3);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(17, 105, 104, 0.4);
        }

        .btn-secondary {
            background: white;
            color: var(--color-primary);
            border: 2px solid var(--color-light);
        }

        .btn-secondary:hover {
            background: var(--color-light);
            transform: translateY(-3px);
        }

        .social-links {
            display: flex;
            gap: 1rem;
            justify-content: center;
        }

        .social-link {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: white;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--color-primary);
            font-size: 1.2rem;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        .social-link:hover {
            background: var(--color-primary);
            color: white;
            transform: translateY(-5px) rotate(10deg);
        }

        /* Features Section */
        .features {
            padding: 5rem 2rem;
            background: white;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-header h2 {
            font-family: var(--font-heading);
            font-size: clamp(2rem, 4vw, 3rem);
            color: var(--color-primary);
            margin-bottom: 1rem;
        }

        .section-header p {
            color: #666;
            font-size: 1.1rem;
            max-width: 600px;
            margin: 0 auto;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
        }

        .feature-card {
            background: linear-gradient(145deg, #ffffff, #f5f9f9);
            padding: 2.5rem;
            border-radius: 20px;
            text-align: center;
            transition: all 0.4s ease;
            opacity: 0;
            transform: translateY(30px);
            border: 1px solid rgba(17, 105, 104, 0.1);
        }

        .feature-card.show {
            opacity: 1;
            transform: translateY(0);
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(17, 105, 104, 0.15);
        }

        .feature-icon {
            width: 80px;
            height: 80px;
            border-radius: 20px;
            background: linear-gradient(135deg, var(--color-light), white);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-size: 2rem;
            color: var(--color-primary);
            transition: all 0.3s ease;
        }

        .feature-card:hover .feature-icon {
            background: linear-gradient(135deg, var(--color-primary), var(--color-dark));
            color: white;
            transform: scale(1.1) rotate(5deg);
        }

        .feature-card h3 {
            font-size: 1.3rem;
            color: var(--color-primary);
            margin-bottom: 0.8rem;
        }

        .feature-card p {
            color: #666;
            line-height: 1.6;
        }

        /* Info Section */
        .info-section {
            padding: 5rem 2rem;
            background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-dark) 100%);
            position: relative;
            overflow: hidden;
        }

        .info-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
        }

        .info-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .info-text {
            color: white;
        }

        .info-text h2 {
            font-family: var(--font-heading);
            font-size: clamp(2rem, 4vw, 2.8rem);
            margin-bottom: 1.5rem;
        }

        .info-text p {
            font-size: 1.1rem;
            line-height: 1.8;
            opacity: 0.9;
            margin-bottom: 1rem;
        }

        .info-list {
            list-style: none;
            margin: 2rem 0;
        }

        .info-list li {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1rem;
            font-size: 1.1rem;
        }

        .info-list i {
            color: var(--color-secondary);
            font-size: 1.3rem;
        }

        .info-image {
            position: relative;
        }

        .info-image img {
            width: 100%;
            border-radius: 20px;
            box-shadow: 0 30px 60px rgba(0,0,0,0.3);
        }

        /* Services Section */
        .services {
            padding: 5rem 2rem;
            background: #f8fafa;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .service-card {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            display: flex;
            align-items: flex-start;
            gap: 1.5rem;
            transition: all 0.3s ease;
            opacity: 0;
            transform: scale(0.9);
            cursor: pointer;
        }

        .service-card.show {
            opacity: 1;
            transform: scale(1);
        }

        .service-card:hover {
            transform: translateX(10px);
            box-shadow: 0 10px 30px rgba(17, 105, 104, 0.1);
        }

        .service-card:hover .service-icon {
            background: var(--color-primary);
            color: white;
        }

        .service-icon {
            width: 60px;
            height: 60px;
            border-radius: 15px;
            background: var(--color-light);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: var(--color-primary);
            flex-shrink: 0;
            transition: all 0.3s ease;
        }

        .service-content h3 {
            color: var(--color-primary);
            margin-bottom: 0.5rem;
        }

        .service-content p {
            color: #666;
            font-size: 1rem;
            line-height: 1.5;
        }

        /* CTA Section */
        .cta-section {
            padding: 5rem 2rem;
            background: white;
        }

        .cta-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .cta-card {
            padding: 3rem;
            border-radius: 25px;
            position: relative;
            overflow: hidden;
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.5s ease;
        }

        .cta-card.show {
            opacity: 1;
            transform: translateY(0);
        }

        .cta-card.client {
            background: linear-gradient(135deg, var(--color-secondary), #5a9fd4);
            color: white;
        }

        .cta-card.pro {
            background: linear-gradient(135deg, var(--color-primary), var(--color-dark));
            color: white;
        }

        .cta-card::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
            border-radius: 50%;
        }

        .cta-card h3 {
            font-family: var(--font-heading);
            font-size: 1.8rem;
            margin-bottom: 1rem;
        }

        .cta-card p {
            opacity: 0.9;
            margin-bottom: 2rem;
            line-height: 1.6;
        }

        .cta-card .btn {
            background: white;
            color: var(--color-primary);
        }

        .cta-card .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        }

        /* Info Cards */
        .info-cards {
            padding: 5rem 2rem;
            background: linear-gradient(180deg, #f8fafa 0%, white 100%);
        }

        .cards-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2rem;
        }

        .info-card {
            background: white;
            border-radius: 20px;
            padding: 2.5rem;
            box-shadow: 0 10px 40px rgba(0,0,0,0.05);
            border: 1px solid rgba(17, 105, 104, 0.1);
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.5s ease;
        }

        .info-card.show {
            opacity: 1;
            transform: translateY(0);
        }

        .info-card:hover {
            box-shadow: 0 20px 50px rgba(17, 105, 104, 0.15);
        }

        .info-card-header {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1.5rem;
        }

        .info-card-icon {
            width: 50px;
            height: 50px;
            border-radius: 12px;
            background: var(--color-light);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--color-primary);
        }

        .info-card-icon svg {
            width: 24px;
            height: 24px;
        }

        .info-card h3 {
            color: var(--color-primary);
            font-size: 1.2rem;
        }

        .info-card p {
            color: #666;
            line-height: 1.7;
        }

        .info-card a {
            color: var(--color-secondary);
            text-decoration: none;
            font-weight: 600;
        }

        .info-card a:hover {
            text-decoration: underline;
        }

        /* Banner Section */
        .banner {
            padding: 6rem 2rem;
            background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-dark) 100%);
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        /* Patrón sutil de fondo */
        .banner::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
        }

        .banner h2 {
            font-family: var(--font-heading);
            font-size: clamp(2rem, 5vw, 3.5rem);
            color: white;
            position: relative;
            z-index: 1;
            text-shadow: 0 4px 15px rgba(0,0,0,0.2);
        }

        .banner span {
            font-weight: 700;
            color: var(--color-secondary);
            text-shadow: 0 0 20px rgba(114, 175, 230, 0.4);
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Responsive */
        @media (max-width: 968px) {
            .info-grid {
                grid-template-columns: 1fr;
                gap: 3rem;
            }

            .info-image {
                order: -1;
            }
        }

        @media (max-width: 768px) {
            .hero {
                padding: 4rem 1.5rem;
            }

            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }

            .btn {
                width: 100%;
                max-width: 300px;
                justify-content: center;
            }

            .features, .services, .cta-section, .info-cards {
                padding: 3rem 1.5rem;
            }

            .cta-card {
                padding: 2rem;
            }
        }

        @media (max-width: 480px) {
            .social-links {
                gap: 0.75rem;
            }

            .social-link {
                width: 45px;
                height: 45px;
            }

            .feature-card, .service-card, .info-card {
                padding: 1.5rem;
            }
        }