  :root {
            --primary: #0D4F6C;
            --secondary: #1A8FA3;
            --accent: #F7B32B;
            --background: #FAFCFD;
            --text-primary: #1E2A38;
            --text-secondary: #5A6B7A;
            --white: #FFFFFF;
            --shadow: 0 4px 24px rgba(13, 79, 108, 0.08);
            --shadow-hover: 0 8px 32px rgba(13, 79, 108, 0.15);
            --cor-card: #05a2fd0e;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'DM Sans', sans-serif;
            color: var(--text-primary);
            background: var(--background);
            line-height: 1.6;
            overflow-x: hidden;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Outfit', sans-serif;
            font-weight: 600;
            line-height: 1.2;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* Header */
        header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            padding: 20px 0;
            transition: all 0.3s ease;
            
        }

        header.scrolled {
            background: var(--white);
            box-shadow: var(--shadow);
            padding: 12px 0;
        }

        header .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 8px;
            font-family: 'Outfit', sans-serif;
            font-size: 28px;
            font-weight: 700;
            color: var(--white);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        header.scrolled .logo {
            color: var(--primary);
        }

        .logo-icon {
            width: 40px;
            height: 40px;
            background: var(--accent);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .logo-icon svg {
            width: 24px;
            height: 24px;
            fill: var(--white);
        }

        nav {
            display: flex;
            align-items: center;
            gap: 40px;
        }

        nav a {
            color: var(--white);
            text-decoration: none;
            font-weight: 500;
            font-size: 15px;
            transition: color 0.3s ease;
            position: relative;
        }

        header.scrolled nav a {
            color: var(--text-primary);
        }

        nav a::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--accent);
            transition: width 0.3s ease;
        }

        nav a:hover::after {
            width: 100%;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 14px 28px;
            border-radius: 8px;
            font-family: 'DM Sans', sans-serif;
            font-weight: 600;
            font-size: 15px;
            text-decoration: none;
            cursor: pointer;
            border: none;
            transition: all 0.3s ease;
        }

        .btn-primary {
            background: var(--accent);
            color: var(--text-primary);
        }

        .btn-primary:hover {
            background: #e5a528;
            transform: translateY(-2px);
        }

        .btn-secondary {
            background: transparent;
            color: var(--white);
            border: 2px solid var(--white);
        }

        .btn-secondary:hover {
            background: var(--white);
            color: var(--primary);
        }

        .btn-outline {
            background: transparent;
            color: var(--primary);
            border: 2px solid var(--primary);
        }

        .btn-outline:hover {
            background: var(--primary);
            color: var(--white);
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
           /*  background: linear-gradient(135deg, var(--primary) 0%, #083344 100%); */
            position: relative;
            overflow: hidden;
            background-image: url('Captura.png');
            background-size: cover;
            background-position: center;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, rgba(26, 143, 163, 0.3) 0%, transparent 70%);
            animation: float 8s ease-in-out infinite;
        }

        .hero::after {
            content: '';
            position: absolute;
            bottom: -30%;
            left: -10%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(247, 179, 43, 0.15) 0%, transparent 70%);
            animation: float 10s ease-in-out infinite reverse;
        }

        @keyframes float {
            0%, 100% { transform: translate(0, 0); }
            50% { transform: translate(30px, -30px); }
        }

        .hero .container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .hero-content {
            color: var(--white);
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            padding: 8px 16px;
            border-radius: 50px;
            font-size: 14px;
            font-weight: 500;
            margin-bottom: 24px;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .hero-badge span {
            color: var(--accent);
        }

        .hero h1 {
            font-size: 56px;
            margin-bottom: 24px;
            animation: fadeInUp 0.8s ease forwards;
        }

        .hero p {
            font-size: 18px;
            opacity: 0.9;
            margin-bottom: 40px;
            max-width: 500px;
            animation: fadeInUp 0.8s ease 0.2s forwards;
            opacity: 0;
        }

        .hero-buttons {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
            animation: fadeInUp 0.8s ease 0.4s forwards;
            opacity: 0;
        }

        .hero-image {
            margin-top: 80px;
            position: relative;
            animation: fadeInRight 1s ease 0.6s forwards;
            opacity: 0;

        }

        .hero-image img {
            width: 100%;
            border-radius: 16px;
            box-shadow: 0 32px 64px rgba(0, 0, 0, 0.3);
           
        }

        .hero-stats {
            position: absolute;
            bottom: -30px;
            left: -30px;
            background: var(--white);
            padding: 24px 32px;
            border-radius: 16px;
            box-shadow: var(--shadow-hover);
        }

        .hero-stats strong {
            display: block;
            font-size: 36px;
            color: var(--primary);
            font-family: 'Outfit', sans-serif;
        }

        .hero-stats span {
            color: var(--text-secondary);
            font-size: 14px;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        /* Services Section */
        .services {
            padding: 100px 0;
            background: var(--white);
        }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-header h2 {
            font-size: 42px;
            color: var(--text-primary);
            margin-bottom: 16px;
        }

        .section-header p {
            font-size: 18px;
            color: var(--text-secondary);
            max-width: 600px;
            margin: 0 auto;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
        }

        .service-card {
            background: var(--background);
            padding: 12px;
            border-radius: 16px;
            transition: all 0.3s ease;
            border: 2px solid transparent;
            max-width: 348px;
            margin: 0 auto;
        }

        .service-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-hover);
            border-color: var(--secondary);
        }

        .service-icon {
            width: 64px;
            height: 64px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
        }

        .service-icon svg {
            width: 32px;
            height: 32px;
            fill: var(--white);
        }

        .service-card h3 {
            font-size: 22px;
            margin-bottom: 12px;
            color: var(--text-primary);
        }

        .service-card p {
            color: var(--text-secondary);
            font-size: 15px;
        }

        /* Benefits Section */
        .benefits {
            padding: 100px 0;
            background: linear-gradient(180deg, var(--background) 0%, var(--white) 100%);
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 32px;
        }

        .benefit-card {
            text-align: center;
            padding: 40px 24px;
            background: var(--white);
            border-radius: 16px;
            box-shadow: var(--shadow);
            transition: all 0.3s ease;
        }

        .benefit-card:hover {
            transform: translateY(-4px);
        }

        .benefit-number {
            font-size: 48px;
            font-weight: 700;
            color: var(--secondary);
            font-family: 'Outfit', sans-serif;
            margin-bottom: 8px;
        }
        .benefit-horas {
            font-size: 48px;
            font-weight: 700;
            color: var(--secondary);
            font-family: 'Outfit', sans-serif;
            margin-bottom: 8px;
        }

        .benefit-card h3 {
            font-size: 18px;
            color: var(--text-primary);
            margin-bottom: 8px;
        }

        .benefit-card p {
            color: var(--text-secondary);
            font-size: 14px;
        }

        /* Testimonials Section */
        .testimonials {
            padding: 100px 0;
            background: var(--white);
        }

        .testimonials-slider {
            position: relative;
            overflow: hidden;
        }

        .testimonials-track {
            display: flex;
            transition: transform 0.5s ease;
        }

        .testimonial-card {
            min-width: 100%;
            padding: 0 60px;
        }

        .testimonial-content {
            background: var(--background);
            padding: 40px;
            border-radius: 16px;
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
        }

        .testimonial-stars {
            display: flex;
            justify-content: center;
            gap: 4px;
            margin-bottom: 20px;
        }

        .testimonial-stars svg {
            width: 24px;
            height: 24px;
            fill: var(--accent);
        }

        .testimonial-content p {
            font-size: 20px;
            color: var(--text-primary);
            font-style: italic;
            margin-bottom: 24px;
            line-height: 1.8;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 16px;
        }

        .testimonial-avatar {
            width: 56px;
            height: 56px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 20px;
            font-weight: 600;
        }

        .testimonial-info h4 {
            font-size: 18px;
            color: var(--text-primary);
        }

        .testimonial-info span {
            color: var(--text-secondary);
            font-size: 14px;
        }

        .testimonial-dots {
            display: flex;
            justify-content: center;
            gap: 8px;
            margin-top: 32px;
        }

        .testimonial-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: var(--text-secondary);
            opacity: 0.3;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .testimonial-dot.active {
            background: var(--secondary);
            opacity: 1;
            transform: scale(1.2);
        }

        /* Contact Section */
        .contact {
            padding: 100px 0;
            background: var(--background);
        }

        .contact .container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: start;
        }

        .social a {
          
            color: #0077b6;
             font-size: 1.5rem;
             margin: 0 0.5rem;
            transition: color 0.3s;
        }

        .social a:hover {
            color: #00b4d8;
        }

        .contact-form {
            background: var(--white);
            padding: 40px;
            border-radius: 16px;
            box-shadow: var(--shadow);
        }

        .contact-form h3 {
            font-size: 28px;
            margin-bottom: 8px;
        }

        .contact-form > p {
            color: var(--text-secondary);
            margin-bottom: 32px;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            font-weight: 500;
            margin-bottom: 8px;
            color: var(--text-primary);
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 14px 16px;
            border: 2px solid #E8ECF0;
            border-radius: 8px;
            font-family: 'DM Sans', sans-serif;
            font-size: 15px;
            transition: border-color 0.3s ease;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--secondary);
        }

        .form-group textarea {
            min-height: 120px;
            resize: vertical;
        }

        .contact-info {
            padding-top: 20px;
        }

        .contact-info h3 {
            font-size: 28px;
            margin-bottom: 16px;
        }

        .contact-info > p {
            color: var(--text-secondary);
            margin-bottom: 32px;
        }

        .info-item {
            display: flex;
            align-items: center;
            gap: 16px;
            margin-bottom: 24px;
        }

        .info-icon {
            width: 48px;
            height: 48px;
            background: var(--primary);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .info-icon svg {
            width: 24px;
            height: 24px;
            fill: var(--white);
        }

        .info-item h4 {
            font-size: 16px;
            margin-bottom: 4px;
        }

        .info-item p {
            color: var(--text-secondary);
            font-size: 15px;
        }

        .whatsapp-btn {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            background: #25D366;
            color: var(--white);
            padding: 16px 32px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            margin-top: 16px;
            transition: all 0.3s ease;
        }

        .whatsapp-btn:hover {
            background: #20BD5A;
            transform: translateY(-2px);
        }

        .whatsapp-icon {
            width: 74px;
            height: 74px;
            fill: currentColor;
            border-radius: 30px;
        }

        /* Footer */
        footer {
            background: var(--primary);
            padding: 60px 0 24px;
            color: var(--white);
        }

        .footer-content {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-brand .logo {
            color: var(--white);
            margin-bottom: 16px;
        }

        .footer-brand p {
            opacity: 0.8;
            font-size: 15px;
            max-width: 300px;
        }

        .footer-column h4 {
            font-size: 16px;
            margin-bottom: 20px;
            color: var(--accent);
        }

        .footer-column ul {
            list-style: none;
        }

        .footer-column li {
            margin-bottom: 12px;
        }

        .footer-column a {
            color: var(--white);
            opacity: 0.8;
            text-decoration: none;
            font-size: 15px;
            transition: opacity 0.3s ease;
        }

        .footer-column a:hover {
            opacity: 1;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 24px;
            text-align: center;
            opacity: 0.6;
            font-size: 14px;
        }

        /* Floating WhatsApp */
        .floating-whatsapp {
            position: fixed;
            bottom: 24px;
            right: 24px;
            z-index: 999;
            width: 60px;
            height: 60px;
            background: #25D366;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
            transition: all 0.3s ease;
            animation: pulse 2s ease-in-out infinite;
        }

        .floating-whatsapp:hover {
            transform: scale(1.1);
        }

        .floating-whatsapp svg {
            width: 28px;
            height: 28px;
            fill: var(--white);
        }

        @keyframes pulse {
            0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
            50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6); }
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .hero .container {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .hero p {
                margin: 0 auto 40px;
            }

            .hero-buttons {
                justify-content: center;
            }

            .hero-image {
                display: none;
            }

            .services-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .benefits-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .contact .container {
                grid-template-columns: 1fr;
            }

            .footer-content {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            nav {
                display: none;
            }

            .hero h1 {
                font-size: 36px;
            }

            .section-header h2 {
                font-size: 28px;
            }

            .services-grid {
                grid-template-columns: 1fr;
            }

            .benefits-grid {
                grid-template-columns: 1fr;
            }

            .testimonial-card {
                padding: 0 20px;
            }

            .testimonial-content p {
                font-size: 16px;
            }

            .footer-content {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .footer-brand p {
                margin: 0 auto;
            }
        }

        .service-icon-img {
            width: 320px;
            height: 200px;
            border-radius: 20px;
        }

        .decora {
            color: #053e7c;
            text-decoration: none;
            font-weight: 500;
            font-size: 15px;
            transition: color 0.3s ease;
        }
