/* Estilos generales */
        
        @import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap');
        
        /* Variables de color */
:root {
            --primary: #cf3f2e;         /* Color de la empresa */
            --primary-dark: #a32e20;    /* Versión oscura del color principal */
            --primary-light: #e76354;   /* Versión clara del color principal */
            --secondary: #404040;       /* Color secundario (negro suavizado) */
            --accent: #f8c054;          /* Color complementario para acentos */
            --light: #f8f9fa;           /* Color claro */
            --dark: #212529;            /* Color oscuro */
            --success: #28a745;         /* Color de éxito */
            --gray-light: #e9ecef;      /* Gris claro */
            --gray-medium: #6c757d;     /* Gris medio */
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Montserrat', sans-serif;
        }
        
        body {
            background-color: #f8f9fa;
            color: var(--dark);
            line-height: 1.6;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        /* Header Styles */
        header {
            background-color: white;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        
        .logo {
            font-weight: bold;
            font-size: 18px;
            color: var(--primary);
            display: flex;
            align-items: center;
            text-decoration: none;
        }
        
        .logo img {
            height: 80px;
            margin-right: 20px;
        }
        
        .nav-menu {
            display: flex;
            list-style: none;
        }
        
        .nav-menu li {
            margin-left: 25px;
        }
        
        .nav-menu a {
            text-decoration: none;
            color: var(--secondary);
            font-weight: 500;
            transition: color 0.3s;
        }
        
        .nav-menu a:hover {
            color: var(--primary);
        }
        
        .nav-menu .active {
            color: var(--primary);
            font-weight: 600;
        }
        
        .btn-contact {
            background-color: var(--primary);
            color: white;
            padding: 10px 20px;
            border-radius: 30px;
            transition: background-color 0.3s;
        }
        
        .btn-contact:hover {
            background-color: var(--primary-dark);
            color: white;
        }
        
        .mobile-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 24px;
            cursor: pointer;
            color: var(--secondary);
        }
        
        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            color: white;
            padding: 160px 0 100px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('/api/placeholder/1200/600') center/cover no-repeat;
            opacity: 0.1;
            z-index: 0;
        }
        
        .hero-content {
            position: relative;
            z-index: 1;
            max-width: 800px;
            margin: 0 auto;
        }
        
        .hero h1 {
            font-size: 48px;
            margin-bottom: 20px;
            font-weight: 700;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
            animation: fadeInDown 1s ease-out;
        }
        
        .hero p {
            font-size: 20px;
            margin-bottom: 30px;
            opacity: 0.9;
            animation: fadeIn 1.5s ease-out;
        }
        
        .hero-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
            animation: fadeInUp 2s ease-out;
        }
        
        .btn-primary {
            background-color: white;
            color: var(--primary);
            padding: 12px 30px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s;
            display: inline-block;
        }
        
        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .btn-secondary {
            background-color: transparent;
            color: white;
            padding: 12px 30px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            border: 2px solid white;
            transition: all 0.3s;
            display: inline-block;
        }
        
        .btn-secondary:hover {
            background-color: white;
            color: var(--primary);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        /* Floating shapes animation */
        .floating-shapes {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            overflow: hidden;
            z-index: 0;
        }
        
        .shape {
            position: absolute;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            animation: float 15s infinite linear;
        }
        
        .shape:nth-child(1) {
            width: 80px;
            height: 80px;
            top: 10%;
            left: 10%;
            animation-duration: 17s;
        }
        
        .shape:nth-child(2) {
            width: 120px;
            height: 120px;
            top: 70%;
            left: 20%;
            animation-duration: 22s;
            animation-delay: 2s;
        }
        
        .shape:nth-child(3) {
            width: 60px;
            height: 60px;
            top: 30%;
            left: 80%;
            animation-duration: 25s;
        }
        
        .shape:nth-child(4) {
            width: 100px;
            height: 100px;
            top: 60%;
            left: 70%;
            animation-duration: 20s;
            animation-delay: 1s;
        }
        
        @keyframes float {
            0% {
                transform: translateY(0) rotate(0deg);
                opacity: 0.8;
            }
            50% {
                transform: translateY(-60px) rotate(180deg);
                opacity: 0.4;
            }
            100% {
                transform: translateY(0) rotate(360deg);
                opacity: 0.8;
            }
        }
        
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        
        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* Services Section */
        .services {
            padding: 100px 0;
            background-color: white;
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .section-header h2 {
            font-size: 36px;
            color: var(--secondary);
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }
        
        .section-header h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background-color: var(--primary);
        }
        
        .section-header p {
            color: var(--gray-medium);
            font-size: 18px;
            max-width: 700px;
            margin: 0 auto;
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .service-card {
            background-color: var(--light);
            border-radius: 8px;
            overflow: hidden;
            transition: transform 0.3s, box-shadow 0.3s;
            border: 1px solid var(--gray-light);
            position: relative;
            z-index: 1;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        
        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 0;
            background-color: rgba(207, 63, 46, 0.05);
            transition: height 0.5s ease;
            z-index: -1;
        }
        
        .service-card:hover::before {
            height: 100%;
        }
        
        .service-icon {
            background-color: var(--primary);
            color: white;
            font-size: 36px;
            padding: 25px;
            text-align: center;
            transition: all 0.3s ease;
        }
        
        .service-card:hover .service-icon {
            background-color: var(--primary-dark);
            transform: scale(1.05);
        }
        
        .service-content {
            padding: 25px;
        }
        
        .service-content h3 {
            font-size: 22px;
            margin-bottom: 15px;
            color: var(--secondary);
            transition: color 0.3s;
        }
        
        .service-card:hover .service-content h3 {
            color: var(--primary);
        }
        
        .service-content p {
            color: var(--gray-medium);
            margin-bottom: 20px;
        }
        
        .service-link {
            color: var(--primary);
            text-decoration: none;
            font-weight: 500;
            display: flex;
            align-items: center;
            transition: all 0.3s;
        }
        
        .service-link span {
            margin-left: 5px;
            transition: margin-left 0.3s;
        }
        
        .service-link:hover {
            color: var(--primary-dark);
        }
        
        .service-link:hover span {
            margin-left: 10px;
        }
        
        /* About Section */
        .about {
            padding: 100px 0;
            background-color: var(--light);
            position: relative;
            overflow: hidden;
        }
        
        .about::before {
            content: '';
            position: absolute;
            top: -50px;
            right: -50px;
            width: 300px;
            height: 300px;
            border-radius: 50%;
            background-color: rgba(207, 63, 46, 0.05);
            z-index: 0;
        }
        
        .about::after {
            content: '';
            position: absolute;
            bottom: -100px;
            left: -100px;
            width: 400px;
            height: 400px;
            border-radius: 50%;
            background-color: rgba(207, 63, 46, 0.03);
            z-index: 0;
        }
        
        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
            position: relative;
            z-index: 1;
        }
        
        .about-text h2 {
            font-size: 36px;
            margin-bottom: 20px;
            color: var(--secondary);
            position: relative;
            display: inline-block;
        }
        
        .about-text h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 60px;
            height: 3px;
            background-color: var(--primary);
        }
        
        .about-text p {
            margin-bottom: 20px;
            color: var(--gray-medium);
            font-size: 16px;
        }
        
        .about-features {
            margin-top: 30px;
        }
        
        .feature {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
            transition: transform 0.3s;
        }
        
        .feature:hover {
            transform: translateX(5px);
        }
        
        .feature-icon {
            background-color: rgba(207, 63, 46, 0.1);
            color: var(--primary);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            flex-shrink: 0;
        }
        
        .feature p {
            margin-bottom: 0;
            font-weight: 500;
            color: var(--secondary);
        }
        
        .about-image {
            position: relative;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        
        .about-image::before {
            content: '';
            position: absolute;
            top: -15px;
            left: -15px;
            width: 80px;
            height: 80px;
            background-color: var(--primary);
            opacity: 0.2;
            border-radius: 50%;
            z-index: -1;
        }
        
        .about-image::after {
            content: '';
            position: absolute;
            bottom: -20px;
            right: -20px;
            width: 120px;
            height: 120px;
            background-color: var(--primary);
            opacity: 0.1;
            border-radius: 50%;
            z-index: -1;
        }
        
        .about-image img {
            width: 100%;
            border-radius: 8px;
            transition: transform 0.5s;
        }
        
        .about-image:hover img {
            transform: scale(1.05);
        }
        
        .about-stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        
        .stat {
            text-align: center;
            background-color: white;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .stat:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }
        
        .stat-number {
            font-size: 40px;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 10px;
        }
        
        .stat-text {
            color: var(--gray-medium);
            font-weight: 500;
        }
        
        /* Projects Section */
        .projects {
            padding: 100px 0;
            background-color: white;
        }
        
        .projects-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .project-card {
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: transform 0.3s;
            position: relative;
        }
        
        .project-card:hover {
            transform: translateY(-10px);
        }
        
        .project-image {
            height: 200px;
            overflow: hidden;
            position: relative;
        }
        
        .project-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to bottom, rgba(207, 63, 46, 0), rgba(207, 63, 46, 0.6));
            opacity: 0;
            transition: opacity 0.3s;
            z-index: 1;
        }
        
        .project-card:hover .project-image::before {
            opacity: 1;
        }
        
        .project-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .project-card:hover .project-image img {
            transform: scale(1.1);
        }
        
        .project-content {
            padding: 25px;
            position: relative;
            background-color: white;
        }
        
        .project-content h3 {
            font-size: 20px;
            margin-bottom: 10px;
            color: var(--secondary);
            transition: color 0.3s;
        }
        
        .project-card:hover .project-content h3 {
            color: var(--primary);
        }
        
        .project-content p {
            color: var(--gray-medium);
            margin-bottom: 20px;
        }
        
        .project-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 15px;
        }
        
        .project-tag {
            background-color: rgba(207, 63, 46, 0.1);
            color: var(--primary);
            padding: 5px 10px;
            border-radius: 30px;
            font-size: 12px;
            font-weight: 500;
        }
        
        .project-link {
            color: var(--primary);
            text-decoration: none;
            font-weight: 500;
            display: flex;
            align-items: center;
        }
        
        .project-link span {
            margin-left: 5px;
            transition: margin-left 0.3s;
        }
        
        .project-link:hover span {
            margin-left: 10px;
        }
        
        /* Testimonials Section */
        .testimonials {
            padding: 100px 0;
            background-color: var(--light);
            position: relative;
            overflow: hidden;
        }
        
        .testimonials::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('/api/placeholder/1200/800') center/cover no-repeat;
            opacity: 0.02;
            z-index: 0;
        }
        
        .testimonials-slider {
            max-width: 800px;
            margin: 0 auto;
            overflow: hidden;
            position: relative;
            z-index: 1;
        }
        
        .testimonial {
            background-color: white;
            border-radius: 10px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            text-align: center;
            position: relative;
        }
        
        .testimonial::before {
            content: '\201C';
            position: absolute;
            top: 20px;
            left: 20px;
            font-size: 80px;
            color: rgba(207, 63, 46, 0.1);
            font-family: Georgia, serif;
            line-height: 1;
        }
        
        .testimonial-content {
            font-style: italic;
            margin-bottom: 30px;
            color: var(--gray-medium);
            position: relative;
            z-index: 1;
        }
        
        .testimonial-author {
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .author-image {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            overflow: hidden;
            margin-right: 15px;
            border: 3px solid rgba(207, 63, 46, 0.1);
        }
        
        .author-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .author-info h4 {
            font-size: 18px;
            margin-bottom: 5px;
            color: var(--secondary);
        }
        
        .author-info p {
            color: var(--primary);
            font-size: 14px;
            font-weight: 500;
        }
        
        /* Feature Highlights Section */
        .feature-highlights {
            padding: 100px 0;
            background-color: white;
        }
        
        .highlights-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            margin-top: 50px;
        }
        
        .highlight-card {
            text-align: center;
            padding: 40px 30px;
            border-radius: 10px;
            transition: all 0.3s ease;
            background-color: var(--light);
            position: relative;
            overflow: hidden;
        }
        
        .highlight-card::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 5px;
            background: var(--primary);
            bottom: 0;
            left: 0;
            transform: scaleX(0);
            transform-origin: right;
            transition: transform 0.5s ease;
        }
        
        .highlight-card:hover::before {
            transform: scaleX(1);
            transform-origin: left;
        }
        
        .highlight-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        
        .highlight-icon {
            font-size: 40px;
            color: var(--primary);
            margin-bottom: 20px;
            transition: transform 0.3s ease;
        }
        
        .highlight-card:hover .highlight-icon {
            transform: scale(1.2);
        }
        
        .highlight-title {
            font-size: 22px;
            font-weight: 600;
            margin-bottom: 15px;
            color: var(--secondary);
        }
        
        .highlight-description {
            color: var(--gray-medium);
            line-height: 1.7;
        }
        
        /* Contact Section */
        .contact {
            padding: 100px 0;
            background-color: white;
            position: relative;
            overflow: hidden;
        }
        
        .contact::before {
            content: '';
            position: absolute;
            top: -200px;
            right: -200px;
            width: 400px;
            height: 400px;
            border-radius: 50%;
            background-color: rgba(207, 63, 46, 0.03);
            z-index: 0;
        }
        
        .contact-wrapper {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            position: relative;
            z-index: 1;
        }
        
        .contact-info h3 {
            font-size: 28px;
            margin-bottom: 30px;
            color: var(--secondary);
            position: relative;
            display: inline-block;
        }
        
        .contact-info h3::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 50px;
            height: 3px;
            background-color: var(--primary);
        }
        
        .contact-details {
            margin-bottom: 40px;
        }
        
        .contact-detail {
            display: flex;
            margin-bottom: 25px;
            transition: transform 0.3s;
        }
        
        .contact-detail:hover {
            transform: translateX(5px);
        }
        
        .contact-icon {
            width: 50px;
            height: 50px;
            background-color: rgba(207, 63, 46, 0.1);
            color: var(--primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 20px;
            flex-shrink: 0;
            font-size: 20px;
            transition: all 0.3s;
        }
        
        .contact-detail:hover .contact-icon {
            background-color: var(--primary);
            color: white;
        }
        
        .contact-text h4 {
            font-size: 18px;
            margin-bottom: 5px;
            color: var(--secondary);
        }
        
        .contact-text p, .contact-text a {
            color: var(--gray-medium);
            text-decoration: none;
            transition: color 0.3s;
            font-size: 16px;
        }
        
        .contact-text a:hover {
            color: var(--primary);
        }
        
        .social-links {
            display: flex;
            gap: 15px;
        }
        
        .social-link {
            width: 45px;
            height: 45px;
            background-color: var(--primary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            transition: all 0.3s;
            font-size: 18px;
        }
        
        .social-link:hover {
            transform: translateY(-5px);
            background-color: var(--primary-dark);
            box-shadow: 0 5px 15px rgba(207, 63, 46, 0.3);
        }
        
        .contact-form {
            background-color: var(--light);
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            transition: transform 0.3s, box-shadow 0.3s;
            position: relative;
        }
        
        .contact-form:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.1);
        }
        
        .contact-form::before {
            content: '';
            position: absolute;
            top: -10px;
            right: -10px;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background-color: rgba(207, 63, 46, 0.1);
            z-index: -1;
        }
        
        .form-group {
            margin-bottom: 25px;
        }
        
        .form-label {
            display: block;
            margin-bottom: 10px;
            color: var(--secondary);
            font-weight: 500;
        }
        
        .form-control {
            width: 100%;
            padding: 15px;
            border: 1px solid #ced4da;
            border-radius: 8px;
            font-size: 16px;
            transition: all 0.3s;
            background-color: white;
        }
        
        .form-control:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(207, 63, 46, 0.1);
        }
        
        textarea.form-control {
            min-height: 150px;
            resize: vertical;
        }

/* Continuación del archivo CSS */
        
        .btn-submit {
            background-color: var(--primary);
            color: white;
            border: none;
            padding: 15px 30px;
            border-radius: 30px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            display: block;
            width: 100%;
        }
        
        .btn-submit:hover {
            background-color: var(--primary-dark);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(207, 63, 46, 0.3);
        }
        
        .form-check {
            display: flex;
            align-items: center;
            margin-bottom: 25px;
        }
        
        .form-check-input {
            margin-right: 10px;
        }
        
        .form-check-label {
            color: var(--gray-medium);
            font-size: 14px;
        }
        
        /* Footer */
        footer {
            background-color: var(--secondary);
            color: var(--light);
            padding: 80px 0 30px;
            position: relative;
            overflow: hidden;
        }
        
        footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, var(--primary), var(--primary-light), var(--primary));
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            margin-bottom: 60px;
        }
        
        .footer-column h3 {
            font-size: 20px;
            margin-bottom: 25px;
            color: white;
            position: relative;
            display: inline-block;
        }
        
        .footer-column h3::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 40px;
            height: 3px;
            background-color: var(--primary);
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 15px;
        }
        
        .footer-links a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: all 0.3s;
            display: flex;
            align-items: center;
        }
        
        .footer-links a i {
            margin-right: 10px;
            font-size: 14px;
            transition: transform 0.3s;
        }
        
        .footer-links a:hover {
            color: white;
            transform: translateX(5px);
        }
        
        .footer-links a:hover i {
            color: var(--primary);
        }
        
        .footer-newsletter p {
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 20px;
        }
        
        .newsletter-form {
            display: flex;
        }
        
        .newsletter-input {
            flex-grow: 1;
            padding: 12px 15px;
            border: none;
            border-radius: 30px 0 0 30px;
            font-size: 14px;
            outline: none;
        }
        
        .newsletter-btn {
            background-color: var(--primary);
            color: white;
            border: none;
            padding: 0 20px;
            border-radius: 0 30px 30px 0;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        
        .newsletter-btn:hover {
            background-color: var(--primary-dark);
        }
        
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.6);
            font-size: 14px;
        }
        
        .copyright a {
            color: var(--primary-light);
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .copyright a:hover {
            color: white;
        }
        
        /* Visual enhancements - decorative elements */
        .dot-pattern {
            position: absolute;
            width: 200px;
            height: 200px;
            background-image: radial-gradient(var(--primary) 1px, transparent 1px);
            background-size: 10px 10px;
            opacity: 0.3;
            z-index: 0;
            border-radius: 50%;
        }
        
        .services .dot-pattern {
            top: 50px;
            right: 50px;
        }
        
        .projects .dot-pattern {
            bottom: 50px;
            left: 50px;
        }
        
        /* Animate on scroll */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 1s ease, transform 1s ease;
        }
        
        .fade-in.active {
            opacity: 1;
            transform: translateY(0);
        }
        
        /* Enhanced visual elements */
        .service-card {
            border-top: 4px solid transparent;
            transition: all 0.4s ease;
        }
        
        .service-card:hover {
            border-top: 4px solid var(--primary);
        }
        
        /* Team Section */
        .team {
            padding: 100px 0;
            background-color: var(--light);
            position: relative;
        }
        
        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        
        .team-member {
            background-color: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
            position: relative;
        }
        
        .team-member:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.1);
        }
        
        .member-image {
            height: 300px;
            overflow: hidden;
            position: relative;
        }
        
        .member-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to bottom, rgba(0,0,0,0), rgba(207, 63, 46, 0.7));
            opacity: 0;
            transition: opacity 0.3s;
            z-index: 1;
        }
        
        .team-member:hover .member-image::before {
            opacity: 1;
        }
        
        .member-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .team-member:hover .member-image img {
            transform: scale(1.1);
        }
        
        .member-info {
            padding: 25px;
            text-align: center;
            position: relative;
        }
        
        .member-info::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 50px;
            height: 3px;
            background-color: var(--primary);
            transition: width 0.3s;
        }
        
        .team-member:hover .member-info::before {
            width: 100px;
        }
        
        .member-name {
            font-size: 20px;
            margin-bottom: 5px;
            color: var(--secondary);
        }
        
        .member-position {
            color: var(--primary);
            font-size: 14px;
            font-weight: 500;
            margin-bottom: 15px;
        }
        
        .member-social {
            display: flex;
            justify-content: center;
            gap: 10px;
        }
        
        .member-social a {
            width: 35px;
            height: 35px;
            background-color: rgba(207, 63, 46, 0.1);
            color: var(--primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            transition: all 0.3s;
        }
        
        .member-social a:hover {
            background-color: var(--primary);
            color: white;
            transform: translateY(-3px);
        }
        
        /* Improved hover effects for projects */
        .project-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(207, 63, 46, 0.8);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s;
            z-index: 2;
        }
        
        .project-card:hover .project-overlay {
            opacity: 1;
        }
        
        .overlay-content {
            text-align: center;
            color: white;
            transform: translateY(20px);
            transition: transform 0.3s;
        }
        
        .project-card:hover .overlay-content {
            transform: translateY(0);
        }
        
        .overlay-content h3 {
            font-size: 24px;
            margin-bottom: 10px;
        }
        
        .overlay-btn {
            display: inline-block;
            background-color: white;
            color: var(--primary);
            padding: 10px 20px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            margin-top: 15px;
            transition: all 0.3s;
        }
        
        .overlay-btn:hover {
            background-color: var(--secondary);
            color: white;
            transform: translateY(-3px);
        }
        
        /* Cta Section */
        .cta {
            padding: 80px 0;
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            color: white;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .cta::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('/api/placeholder/1200/400') center/cover no-repeat;
            opacity: 0.1;
            z-index: 0;
        }
        
        .cta-content {
            position: relative;
            z-index: 1;
            max-width: 800px;
            margin: 0 auto;
        }
        
        .cta h2 {
            font-size: 36px;
            margin-bottom: 20px;
        }
        
        .cta p {
            font-size: 18px;
            margin-bottom: 30px;
            opacity: 0.9;
        }
        
        .cta-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
        }
        
        /* Partners section */
        .partners {
            padding: 80px 0;
            background-color: white;
        }
        
        .partners-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 40px;
            align-items: center;
            margin-top: 50px;
        }
        
        .partner-item {
            display: flex;
            flex-direction: column; /* Asegura que la imagen y el nombre se apilen */
            justify-content: center;
            align-items: center;
            height: auto; /* Ajusta según el contenido */
            text-align: center;
            filter: grayscale(100%);
            opacity: 0.7;
            transition: all 0.3s;
        }
        
        .partner-item:hover {
            filter: grayscale(0%);
            opacity: 1;
            transform: scale(1.05);
        }
        
        .partner-item img {
            max-width: 100%;
            max-height: 80px;
        }
        .partner-name{
            margin-top: 10px; /* Espacio entre la imagen y el nombre */
            font-size: 16px;
            font-weight: bold; 
        }
        
        /* Enhanced animations for scroll */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* Responsive Design */
        @media (max-width: 992px) {
            .header-container {
                padding: 15px 20px;
            }
            
            .nav-menu {
                position: fixed;
                top: 80px;
                left: -100%;
                width: 80%;
                height: calc(100vh - 80px);
                background-color: white;
                flex-direction: column;
                align-items: center;
                justify-content: flex-start;
                padding: 40px 0;
                transition: all 0.3s ease;
                box-shadow: 5px 0 10px rgba(0,0,0,0.1);
                z-index: 999;
            }
            
            .nav-menu.active {
                left: 0;
            }
            
            .nav-menu li {
                margin: 15px 0;
            }
            
            .mobile-toggle {
                display: block;
            }
            
            .hero h1 {
                font-size: 36px;
            }
            
            .hero p {
                font-size: 18px;
            }
            
            .about-content {
                grid-template-columns: 1fr;
            }
            
            .about-image {
                order: -1;
                margin-bottom: 30px;
            }
            
            .contact-wrapper {
                grid-template-columns: 1fr;
            }
            
            .contact-info {
                margin-bottom: 30px;
            }
        }
        
        @media (max-width: 768px) {
            .hero-buttons {
                flex-direction: column;
                gap: 15px;
            }
            
            .section-header h2 {
                font-size: 30px;
            }
            
            .section-header p {
                font-size: 16px;
            }
            
            .service-card, .project-card, .highlight-card {
                max-width: 400px;
                margin: 0 auto;
            }
            
            .footer-content {
                grid-template-columns: 1fr 1fr;
            }
        }
        
        @media (max-width: 576px) {
            .hero h1 {
                font-size: 28px;
            }
            
            .footer-content {
                grid-template-columns: 1fr;
            }
            
            .newsletter-form {
                flex-direction: column;
            }
            
            .newsletter-input {
                border-radius: 30px;
                margin-bottom: 10px;
            }
            
            .newsletter-btn {
                border-radius: 30px;
                padding: 12px;
            }
        }