  
        :root {
            --light-color: #D1D9D4;
            --highlight-color: #FF1AF6;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', system-ui, -apple-system, sans-serif;
            color: #251b1b;
            line-height: 1.6;
        }
        
        h1, h2, h3, h4 {
            font-weight: 700;
            color: #251b1b;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .section-padding {
            padding: 80px 0;
        }

        .btn-primary {
            display: inline-block;
            padding: 12px 24px;
            border-radius: 8px;
            font-weight: 600;
            transition: all 0.3s ease;
            text-decoration: none;
            background-color: #721b27;
            color: white;
            border: none;
            cursor: pointer;
        }
        
        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
            background-color: #251b1b;
        }
        
        .btn-secondary {
            display: inline-block;
            padding: 12px 24px;
            border-radius: 8px;
            font-weight: 600;
            transition: all 0.3s ease;
            text-decoration: none;
            color: #721b27;
            border: 2px solid #721b27;
            background: transparent;
            cursor: pointer;
        }
        
        .btn-secondary:hover {
            background-color: #721b27;
            color: white;
        }
        
        .card {
            background-color: white;
            border-radius: 12px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            padding: 24px;
            transition: all 0.3s ease;
        }
        
        .card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
        }

        /* Header Styles */
        header {
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            background-color: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
        }

        .logo {
            font-size: 1.5rem;
            font-weight: 700;
            color: #251b1b;
        }

        .nav-desktop {
            display: none;
        }

        .nav-desktop a {
            margin-left: 30px;
            text-decoration: none;
            color: #251b1b;
            font-weight: 500;
            transition: color 0.3s;
        }

        .nav-desktop a:hover {
            color: #721b27;
        }

        .mobile-menu-btn {
            background: none;
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: #251b1b;
        }

        .mobile-menu {
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background-color: white;
            box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
            display: none;
            flex-direction: column;
            padding: 20px;
        }

        .mobile-menu.active {
            display: flex;
        }

        .mobile-menu a {
            padding: 15px 0;
            text-decoration: none;
            color: #251b1b;
            font-weight: 500;
            border-bottom: 1px solid #eee;
        }

        .mobile-menu a:last-child {
            border-bottom: none;
        }

        /* Hero Section */
        .hero {
            padding-top: 100px;
            background: linear-gradient(135deg, #d1d9d4 0%, white 100%);
        }

        .hero-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 40px;
            align-items: center;
        }

        .hero-content h1 {
            font-size: 2.5rem;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .accent-text {
            color: #721b27;
        }

        .hero-content p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            color: #666;
        }

        .hero-buttons {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .hero-card {
            background-color: white;
            border-radius: 16px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            padding: 30px;
        }

        .card-header {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }

        .card-icon {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background-color: #bcac99;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
        }

        .card-title {
            font-size: 1.2rem;
            font-weight: 600;
        }

        .card-subtitle {
            color: #666;
        }

        .feature-list {
            list-style: none;
        }

        .feature-list li {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
        }

        .check-icon {
            color: #10B981;
            margin-right: 10px;
        }

        /* Services Section */
        .services {
            background-color: white;
        }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-header h2 {
            font-size: 2.2rem;
            margin-bottom: 20px;
        }

        .section-header p {
            font-size: 1.2rem;
            color: #666;
            max-width: 800px;
            margin: 0 auto;
        }

        .services-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 30px;
        }

        .service-card {
            text-align: center;
        }

        .service-icon {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            background-color: #d1d9d4;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
        }

        .service-card h3 {
            font-size: 1.3rem;
            margin-bottom: 15px;
        }

        .service-card p {
            color: #666;
        }

        .cta-section {
            margin-top: 60px;
            text-align: center;
        }

        .cta-card {
            background: linear-gradient(to right, #d1d9d4, #bcac99);
            border-radius: 16px;
            padding: 40px;
        }

        .cta-card h3 {
            font-size: 1.8rem;
            margin-bottom: 15px;
        }

        .cta-card p {
            font-size: 1.1rem;
            margin-bottom: 25px;
            color: #555;
        }

        /* Team Section */
        .team {
            background: linear-gradient(135deg, #d1d9d4 0%, white 100%);
        }

        .team-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 30px;
        }

        .team-card {
            text-align: center;
        }

        .team-image {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            overflow: hidden;
            margin: 0 auto 20px;
        }

        .team-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .team-card h3 {
            font-size: 1.2rem;
            margin-bottom: 5px;
        }

        .team-role {
            color: #721b27;
            font-weight: 600;
            margin-bottom: 15px;
        }

        .team-card p {
            color: #666;
        }

        .excellence-card {
            background-color: white;
            border-radius: 16px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            padding: 40px;
            text-align: center;
            max-width: 900px;
            margin: 0 auto;
        }

        .excellence-icon {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            background-color: #bcac99;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
        }

        .excellence-card h3 {
            font-size: 1.8rem;
            margin-bottom: 15px;
        }

        .excellence-card p {
            font-size: 1.1rem;
            color: #666;
        }

        /* Contact Section */
        .contact {
            background-color: white;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 40px;
        }

        .contact-info {
            background: linear-gradient(135deg, #251b1b, #721b27);
            border-radius: 16px;
            padding: 30px;
            color: white;
            margin-bottom: 30px;
        }

        .contact-info h3 {
            font-size: 1.5rem;
            margin-bottom: 20px;
            color: white;
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 25px;
        }

        .contact-icon {
            margin-right: 15px;
            margin-top: 5px;
            color: #d1d9d4;
        }

        .contact-details h4 {
            font-size: 1rem;
            margin-bottom: 5px;
            color: white;
        }

        .contact-details p {
            color: rgba(255, 255, 255, 0.8);
        }

        .contact-form {
            width: 100%;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 8px;
            font-family: inherit;
            font-size: 1rem;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #721b27;
            box-shadow: 0 0 0 2px rgba(114, 27, 39, 0.2);
        }

        .form-group textarea {
            resize: vertical;
            min-height: 120px;
        }

        /* Footer */
        footer {
            background-color: #251b1b;
            color: white;
            padding: 60px 0 30px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-about h3 {
            font-size: 1.5rem;
            margin-bottom: 20px;
            color: white;
        }

        .footer-about p {
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 20px;
        }

        .certification {
            display: flex;
            align-items: center;
        }

        .certification-icon {
            color: var(--highlight-color);
            margin-right: 10px;
        }

        .footer-services h4,
        .footer-contact h4 {
            font-size: 1.2rem;
            margin-bottom: 20px;
            color: white;
        }

        .footer-services ul {
            list-style: none;
        }

        .footer-services li {
            margin-bottom: 10px;
            color: rgba(255, 255, 255, 0.7);
        }

        .footer-contact-item {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
            color: rgba(255, 255, 255, 0.7);
        }

        .footer-contact-icon {
            color: var(--highlight-color);
            margin-right: 10px;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 30px;
            text-align: center;
        }

        .footer-bottom-content {
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            align-items: center;
        }

        .footer-bottom p {
            color: rgba(255, 255, 255, 0.5);
            margin-bottom: 15px;
        }

        .footer-tags {
            display: flex;
            gap: 20px;
        }

        .footer-tags span {
            color: rgba(255, 255, 255, 0.5);
            font-size: 0.9rem;
        }

        /* NUEVAS SECCIONES */
        /* Experiencia Section */
        .experience {
            background-color: white;
        }

        .experience-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 40px;
            align-items: center;
        }

        .experience-stats {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }

        .stat-item {
            text-align: center;
            padding: 20px;
            background-color: #d1d9d4;
            border-radius: 12px;
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: #721b27;
            margin-bottom: 10px;
        }

        .stat-text {
            color: #251b1b;
            font-weight: 500;
        }

        .experience-content h2 {
            font-size: 2.2rem;
            margin-bottom: 20px;
        }

        .experience-content p {
            color: #666;
            margin-bottom: 30px;
            font-size: 1.1rem;
        }

        /* Testimonios Section */
        .testimonials {
            background: linear-gradient(135deg, #d1d9d4 0%, white 100%);
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 30px;
        }

        .testimonial-card {
            background-color: white;
            border-radius: 12px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }

        .testimonial-text {
            font-style: italic;
            color: #555;
            margin-bottom: 20px;
            position: relative;
        }

        .testimonial-text::before {
            content: '"';
            font-size: 3rem;
            color: #bcac99;
            position: absolute;
            top: -15px;
            left: -10px;
            opacity: 0.3;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
        }

        .author-image {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            overflow: hidden;
            margin-right: 15px;
        }

        .author-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .author-info h4 {
            font-size: 1rem;
            margin-bottom: 5px;
        }

        .author-info p {
            color: #777;
            font-size: 0.9rem;
        }

        /* Media Queries */
        @media (min-width: 768px) {
            .hero-grid {
                grid-template-columns: 1fr 1fr;
            }
            
            .hero-buttons {
                flex-direction: row;
            }
            
            .services-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .team-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .contact-grid {
                grid-template-columns: 1fr 1fr;
            }
            
            .footer-grid {
                grid-template-columns: repeat(3, 1fr);
            }
            
            .footer-bottom-content {
                flex-direction: row;
            }
            
            .footer-bottom p {
                margin-bottom: 0;
            }
            
            .nav-desktop {
                display: flex;
            }
            
            .mobile-menu-btn {
                display: none;
            }
            
            .experience-grid {
                grid-template-columns: 1fr 1fr;
            }
            
            .testimonials-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (min-width: 1024px) {
            .services-grid {
                grid-template-columns: repeat(4, 1fr);
            }
            
            .team-grid {
                grid-template-columns: repeat(3, 1fr);
            }
            
            .testimonials-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }
   
