   /* Estilos generales y reset */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Montserrat', sans-serif;
        }

        body {
            background-color: #f8f9fa;
            color: #333;
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* Header y Navegación */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            padding: 20px 40px;
            transition: all 0.4s ease;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }

        header.scrolled {
            background: rgba(0, 0, 0, 0.9);
            padding: 15px 40px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
        }

        .logo {
            font-size: 28px;
            font-weight: 700;
            color: #fff;
            text-decoration: none;
            z-index: 1002;
        }

        .nav-menu {
            display: flex;
            list-style: none;
        }

        .nav-menu li {
            margin: 0 15px;
        }

        .nav-menu a {
            color: #fff;
            text-decoration: none;
            font-size: 16px;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
        }

        .nav-menu a:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            background: #fff;
            bottom: -5px;
            left: 0;
            transition: width 0.3s ease;
        }

        .nav-menu a:hover:after {
            width: 100%;
        }

        .mobile-toggle {
            display: none;
            color: #fff;
            font-size: 24px;
            cursor: pointer;
            z-index: 1002;
        }

        /* Carrusel principal */
        .slider-wrapper {
            position: relative;
            height: 100vh;
            width: 100%;
            overflow: hidden;
        }

        .slider-mask {
            width: 100%;
            height: 100%;
            position: relative;
        }

        .w-slide {
            width: 100%;
            height: 100vh;
            position: absolute;
            top: 0;
            left: 0;
            opacity: 0;
            transition: opacity 1s ease;
        }

        .w-slide.active {
            opacity: 1;
            z-index: 2;
        }

        .top-section-bg-image {
            position: relative;
            width: 100%;
            height: 100%;
        }

        .image-bg-full-section {
            position: absolute;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: -2;
        }

        .bg-gradient-full-section {
            z-index: -1;
            background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.3));
            position: absolute;
            inset: 0%;
        }

        .container-default {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            height: 100%;
            display: flex;
            align-items: center;
            position: relative;
            z-index: 5;
        }

        .grid-2-columns {
            display: grid;
            grid-template-columns: 2fr 1fr;
            align-items: center;
            width: 100%;
        }

        .inner-container {
            max-width: 734px;
        }

        .subtitle {
            font-size: 18px;
            letter-spacing: 3px;
            text-transform: uppercase;
            margin-bottom: 32px;
            color: #ffffff;
            opacity: 0;
            transform: translateY(20px);
            padding-top: 10%;
        }

        .display-1 {
            font-size: 60px;
            line-height: 1.2;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 0;
            opacity: 0;
            transform: translateY(20px);
        }

        .mg-bottom-32px {
            margin-bottom: 32px;
        }

        .slider-arrows {
            position: absolute;
            bottom: 50px;
            right: 50px;
            z-index: 10;
            display: flex;
        }

        .slider-dots {
            position: absolute;
            bottom: 50px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 10;
            display: flex;
        }

        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            margin: 0 5px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .dot.active {
            background: #fff;
            transform: scale(1.2);
        }

        /* Sección de servicios */
        .services-section {
            padding: 100px 0;
            background-color: #fff;
            position: relative;
        }

        .services-header {
            margin-bottom: 80px;
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease;
            text-align: center;
        }

        .services-header.animate {
            opacity: 1;
            transform: translateY(0);
        }

        .services-title {
            text-align: center;
            font-size: 16px;
            letter-spacing: 4px;
            text-transform: uppercase;
            color: #888;
            margin-bottom: 16px;
            font-weight: 500;
        }

        .services-main-title {
            font-size: 42px;
            text-align: center;
            font-weight: 700;
            margin-bottom: 24px;
            color: #333;
            text-transform: uppercase;
        }

        .services-intro {
            font-size: 18px;
            line-height: 1.7;
            color: #666;
            max-width: 800px;
            margin: 0 auto;
            flex-grow: 1;
            text-align: center;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 60px 40px;
            position: relative;
        }

        .service-item {
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.8s ease;
            display: flex;
            flex-direction: column;
        }

        .service-item.animate {
            opacity: 1;
            transform: translateY(0);
        }

        .service-content {
            position: relative;
            padding: 0;
            background: transparent;
            transition: all 0.3s ease;
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .service-content:hover {
            transform: translateY(-5px);
        }

        .service-icon {
            margin-bottom: 30px;
            text-align: center;
        }

        .service-icon img {
            transition: transform 0.3s ease;
            width: 80px;
            height: 80px;
            object-fit: contain;
        }

        .service-content:hover .service-icon img {
            transform: scale(1.1);
        }

        .service-item h3 {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 20px;
            color: #333;
            text-transform: uppercase;
            text-align: center;
            letter-spacing: 1px;
        }

        .service-item p {
            font-size: 16px;
            line-height: 1.7;
            color: #666;
            margin-bottom: 20px;
            flex-grow: 1;
            text-align: center;
        }

        .service-line {
            height: 2px;
            background: linear-gradient(to right, transparent, #ff6b6b, transparent);
            width: 60%;
            margin: 20px auto;
            border-radius: 2px;
        }

        .service-cta {
            text-align: center;
            margin-top: 15px;
            font-weight: 600;
            color: #ff6b6b;
        }

        /* Sección de proyectos */
        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 20px;
        }

        .projects-section {
            padding: 100px 0;
            background: linear-gradient(135deg, #ffffff 0%, #f2f6fc 100%);
            position: relative;
        }

        .projects-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23e9ecef" fill-opacity="0.2" d="M0,128L48,117.3C96,107,192,85,288,112C384,139,480,213,576,224C672,235,768,181,864,181.3C960,181,1056,235,1152,234.7C1248,235,1344,181,1392,154.7L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
            background-size: cover;
            background-position: center;
            opacity: 0.3;
            z-index: -1;
        }

        .projects-header {
            text-align: center;
            margin-bottom: 80px;
            padding: 0 20px;
        }

        .projects-pre-title {
            font-size: 16px;
            letter-spacing: 4px;
            text-transform: uppercase;
            color: #888;
            margin-bottom: 16px;
            font-weight: 500;
        }

        .projects-main-title {
            font-size: 60px;
            text-align: center;
            font-weight: 700;
            margin-bottom: 24px;
            color: #2c3e50;
            line-height: 1.1;
        }

        .projects-intro {
            font-size: 18px;
            line-height: 1.7;
            color: #666;
            max-width: 700px;
            margin: 0 auto;
        }

        /* Carrusel tipo tríptico */
        .triptych-carousel {
            position: relative;
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            height: 500px;
            perspective: 1500px;
            overflow: hidden;
        }

        .carousel-container {
            position: relative;
            width: 100%;
            height: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .project-card {
            position: absolute;
            width: 350px;
            height: 450px;
            background: white;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
            transition: all 0.6s cubic-bezier(0.21, 1.00, 0.34, 1.00);
            cursor: pointer;
        }

        .project-card.left {
            transform: translateX(-90%) scale(0.85);
            filter: blur(2px) brightness(0.9);
            z-index: 1;
        }

        .project-card.center {
            transform: translateX(0) scale(1);
            filter: none;
            z-index: 3;
            width: 350px;
            height: 450px;
        }

        .project-card.right {
            transform: translateX(90%) scale(0.85);
            filter: blur(2px) brightness(0.9);
            z-index: 1;
        }

        .project-card.hidden {
            opacity: 0;
            visibility: hidden;
        }

        .card-image-container {
            position: relative;
            height: 280px;
            width: 100%;
            overflow: hidden;
        }

        .card-image-slider {
            position: relative;
            width: 100%;
            height: 100%;
        }

        .card-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 0.8s ease;
            background-size: cover;
            background-position: center;
        }

        .card-slide.active {
            opacity: 1;
        }

        .card-slide-controls {
            position: absolute;
            bottom: 15px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 8px;
            z-index: 5;
        }

        .card-slide-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .card-slide-dot.active {
            background: white;
            transform: scale(1.2);
        }

        .card-content {
            padding: 20px;
            height: 170px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            transition: all 0.4s ease;
        }

        .project-card:not(.center) .card-content {
            opacity: 0;
            transform: translateY(10px);
        }

        .project-card.center .card-content {
            opacity: 1;
            transform: translateY(0);
        }

        .card-title {
            font-size: 22px;
            margin-bottom: 15px;
            color: #2c3e50;
            font-weight: 700;
            text-align: center;
        }

        .card-meta {
            display: flex;
            flex-direction: column;
            gap: 10px;
            margin-bottom: 15px;
        }

        .meta-item {
            display: flex;
            align-items: center;
            gap: 10px;
            justify-content: center;
        }

        .meta-icon {
            width: 28px;
            height: 28px;
            background: #f8f9fa;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #3498db;
            font-size: 13px;
        }

        .meta-content {
            display: flex;
            flex-direction: column;
        }

        .meta-label {
            font-size: 11px;
            color: #888;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .meta-value {
            font-size: 14px;
            font-weight: 600;
            color: #333;
        }

        .card-link {
            display: inline-block;
            background: #2c3e50;
            color: white;
            padding: 10px 20px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            font-size: 14px;
            transition: all 0.3s ease;
            text-align: center;
            margin-top: 10px;
        }

        .card-link:hover {
            background: #1a252f;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        /* Controles de navegación proyectos */
        .carousel-controls {
            position: absolute;
            top: 50%;
            left: 0;
            right: 0;
            display: flex;
            justify-content: space-between;
            padding: 0 20px 20px;
            z-index: 10;
            pointer-events: none;
        }

        .carousel-control {
            width: 50px;
            height: 50px;
            background: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
            transition: all 0.3s ease;
            pointer-events: auto;
        }

        .carousel-control:hover {
            background: #2c3e50;
            color: white;
            transform: scale(1.1);
        }

        .carousel-dots {
            display: flex;
            justify-content: center;
            margin-top: 40px;
            gap: 12px;
        }

        .carousel-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: #ddd;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .carousel-dot.active {
            background: #2c3e50;
            transform: scale(1.2);
        }

        .view-all-button {
            display: block;
            text-align: center;
            margin-top: 70px;
        }

        .view-all-btn {
            background: #2c3e50;
            color: white;
            padding: 16px 42px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }

        .view-all-btn:hover {
            background: #1a252f;
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
        }

        /* Sección de testimonios */
        .testimonials-section {
            padding: 100px 0;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            position: relative;
            border-radius: 16px;
            margin: 20px 0;
        }

        .testimonials-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23dee2e6" fill-opacity="0.2" d="M0,128L48,117.3C96,107,192,85,288,112C384,139,480,213,576,224C672,235,768,181,864,181.3C960,181,1056,235,1152,234.7C1248,235,1344,181,1392,154.7L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
            background-size: cover;
            background-position: center;
            opacity: 0.3;
            z-index: -1;
            border-radius: 16px;
        }

        .testimonials-header {
            text-align: center;
            margin-bottom: 60px;
            padding: 0 20px;
        }

        .testimonials-pre-title {
            font-size: 16px;
            letter-spacing: 4px;
            text-transform: uppercase;
            color: #888;
            margin-bottom: 16px;
            font-weight: 500;
        }

        .testimonials-main-title {
            font-size: 48px;
            text-align: center;
            font-weight: 700;
            margin-bottom: 24px;
            color: #2c3e50;
            line-height: 1.1;
        }

        .testimonials-intro {
            font-size: 18px;
            line-height: 1.7;
            color: #666;
            max-width: 700px;
            margin: 0 auto;
        }

        /* Carrusel de testimonios */
        .testimonials-carousel {
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            overflow: hidden;
        }

        .testimonials-container {
            position: relative;
            width: 100%;
            overflow: hidden;
        }

        .testimonial-track {
            display: flex;
            transition: transform 0.5s ease;
        }

        .testimonial-slide {
            flex: 0 0 33.333%;
            padding: 15px;
            box-sizing: border-box;
            transition: all 0.3s ease;
        }

        .testimonial-card {
            background: white;
            border-radius: 16px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            height: 100%;
            display: flex;
            flex-direction: column;
            transition: all 0.3s ease;
        }

        .testimonial-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
        }

        .testimonial-content {
            font-size: 16px;
            line-height: 1.7;
            color: #555;
            margin-bottom: 20px;
            font-style: italic;
            flex-grow: 1;
            position: relative;
            padding-left: 25px;
        }

        .testimonial-content::before {
            content: '"';
            position: absolute;
            top: -10px;
            left: 0;
            font-size: 50px;
            color: #3498db;
            opacity: 0.3;
            font-family: Georgia, serif;
            line-height: 1;
        }

        .testimonial-author {
            border-top: 1px solid #f1f1f1;
            padding-top: 20px;
            margin-top: auto;
        }

        .author-name {
            font-size: 18px;
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 5px;
        }

        .author-role {
            font-size: 14px;
            color: #3498db;
            font-weight: 500;
        }

        /* Controles de navegación testimonios */
        .testimonial-controls {
            display: flex;
            justify-content: center;
            margin-top: 50px;
            margin-bottom: 50px;
            gap: 15px;
        }

        .testimonial-control {
            width: 50px;
            height: 50px;
            background: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            border: 2px solid #e9ecef;
        }

        .testimonial-control:hover {
            background: #2c3e50;
            color: white;
            transform: scale(1.1);
            border-color: #2c3e50;
        }

        /* Sección de contacto */
        .contact-section {
            padding: 60px 20px;
            background: linear-gradient(135deg, #ffffff 0%, #f2f6fc 100%);
            position: relative;
        }

        .contact-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23e9ecef" fill-opacity="0.2" d="M0,128L48,117.3C96,107,192,85,288,112C384,139,480,213,576,224C672,235,768,181,864,181.3C960,181,1056,235,1152,234.7C1248,235,1344,181,1392,154.7L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
            background-size: cover;
            background-position: center;
            opacity: 0.3;
            z-index: -1;
        }

        .contact-header {
            text-align: center;
            margin-bottom: 40px;
        }

        .contact-pre-title {
            font-size: 14px;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: #888;
            margin-bottom: 12px;
            font-weight: 500;
        }

        .contact-main-title {
            font-size: 32px;
            text-align: center;
            font-weight: 700;
            margin-bottom: 16px;
            color: #2c3e50;
            line-height: 1.2;
        }

        .contact-intro {
            font-size: 16px;
            line-height: 1.6;
            color: #666;
            max-width: 700px;
            margin: 0 auto;
        }

        /* Contenedor principal contacto */
        .contact-container {
            display: flex;
            flex-direction: column;
            max-width: 1000px;
            margin: 0 auto;
            gap: 30px;
        }

        /* Información de contacto */
        .contact-info {
            width: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .contact-card {
            background: white;
            border-radius: 16px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            text-align: center;
            max-width: 600px;
            margin: 0 auto;
            width: 100%;
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 25px;
            gap: 15px;
            text-align: left;
        }

        .contact-icon {
            width: 50px;
            height: 50px;
            background: #f8f9fa;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .contact-icon img {
            width: 25px;
            height: 25px;
            object-fit: contain;
        }

        .contact-details {
            flex: 1;
        }

        .contact-label {
            font-size: 13px;
            color: #888;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 4px;
        }

        .contact-value {
            font-size: 16px;
            font-weight: 600;
            color: #2c3e50;
            line-height: 1.4;
        }

        .contact-link {
            color: #3498db;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .contact-link:hover {
            color: #2c3e50;
        }

        /* Horario de atención */
        .schedule {
            margin-top: 25px;
            padding-top: 25px;
            border-top: 1px solid #f1f1f1;
        }

        .schedule-title {
            font-size: 18px;
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 15px;
            text-align: center;
        }

        .schedule-item {
            display: flex;
            justify-content: space-between;
            margin-bottom: 8px;
        }

        .schedule-day {
            font-size: 15px;
            color: #555;
        }

        .schedule-time {
            font-size: 15px;
            font-weight: 600;
            color: #2c3e50;
        }

        /* Botón de WhatsApp */
        .whatsapp-section {
            text-align: center;
            margin-top: 30px;
            padding: 25px;
            background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
            border-radius: 16px;
            color: white;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        }

        .whatsapp-title {
            font-size: 22px;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .whatsapp-description {
            font-size: 16px;
            margin-bottom: 20px;
            opacity: 0.9;
            max-width: 500px;
            margin-left: auto;
            margin-right: auto;
        }

        .whatsapp-btn {
            display: inline-flex;
            align-items: center;
            background: white;
            color: #075E54;
            padding: 16px 30px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            font-size: 17px;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .whatsapp-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
        }

        .whatsapp-icon {
            width: 28px;
            height: 28px;
            margin-right: 12px;
        }

        /* Media Queries Responsive */
        @media (max-width: 991px) {
            .grid-2-columns {
                grid-template-columns: 1fr;
            }
            
            .inner-container {
                text-align: center;
                padding: 0 20px;
            }
            
            .display-1 {
                font-size: 45px;
            }
            
            .nav-menu {
                position: fixed;
                top: 0;
                right: -100%;
                width: 100%;
                height: 100vh;
                background: rgba(0, 0, 0, 0.95);
                flex-direction: column;
                justify-content: center;
                align-items: center;
                padding: 80px 20px;
                transition: all 0.5s ease;
                z-index: 1001;
            }
            
            .nav-menu.active {
                right: 0;
            }
            
            .nav-menu li {
                margin: 20px 0;
            }
            
            .nav-menu a {
                font-size: 20px;
            }
            
            .mobile-toggle {
                display: block;
            }
            
            .services-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            
            .services-header {
                margin-bottom: 60px;
            }
            
            .services-main-title {
                font-size: 36px;
            }
            
            .service-item:nth-child(2),
            .service-item:nth-child(4) {
                margin-top: 0;
                align-self: start;
            }
            
            .testimonial-slide {
                flex: 0 0 50%;
            }
            
            .testimonials-main-title {
                font-size: 42px;
            }
            
            .projects-main-title {
                font-size: 50px;
            }
            
            .triptych-carousel {
                height: 450px;
            }
            
            .project-card {
                width: 320px;
                height: 420px;
            }
            
            .project-card.center {
                width: 320px;
                height: 420px;
            }
            
            .card-image-container {
                height: 250px;
            }
            
            .card-content {
                height: 170px;
            }
        }

        @media (max-width: 767px) {
            header {
                padding: 15px 20px;
            }
            
            header.scrolled {
                padding: 10px 20px;
            }
            
            .display-1 {
                font-size: 35px;
            }
            
            .subtitle {
                font-size: 14px;
            }
            
            .slider-arrows, .slider-dots {
                bottom: 30px;
            }
            
            .services-section {
                padding: 60px 0;
            }
            
            .services-header {
                margin-bottom: 40px;
            }
            
            .services-main-title {
                font-size: 30px;
            }
            
            .service-content {
                padding: 30px 20px;
            }
            
            .service-item h3 {
                font-size: 20px;
            }
            
            .services-intro {
                font-size: 16px;
                padding: 0 10px;
            }
            
            .testimonials-section {
                padding: 70px 0;
            }
            
            .testimonials-main-title {
                font-size: 36px;
            }
            
            .testimonials-intro {
                font-size: 16px;
            }
            
            .testimonial-slide {
                flex: 0 0 100%;
            }
            
            .testimonial-card {
                padding: 25px;
            }
            
            .testimonial-content {
                font-size: 15px;
            }
            
            .testimonial-control {
                width: 45px;
                height: 45px;
            }
            
            .projects-section {
                padding: 70px 0;
            }
            
            .projects-main-title {
                font-size: 36px;
            }
            
            .projects-intro {
                font-size: 16px;
            }
            
            .triptych-carousel {
                height: auto;
                perspective: none;
            }
            
            .carousel-container {
                flex-direction: column;
                align-items: center;
                gap: 30px;
            }
            
            .project-card {
                position: relative;
                width: 100%;
                max-width: 400px;
                height: auto;
                transform: none !important;
                filter: none !important;
                opacity: 1 !important;
                visibility: visible !important;
                margin-bottom: 20px;
            }
            
            .project-card.hidden {
                display: none;
            }
            
            .carousel-controls {
                display: none;
            }
            
            .card-image-container {
                height: 250px;
            }
            
            .card-content {
                height: auto;
                padding: 20px;
            }
            
            .contact-container {
                flex-direction: column;
            }
            
            .contact-card {
                padding: 25px 20px;
            }
            
            .contact-item {
                flex-direction: column;
                text-align: center;
                gap: 10px;
            }
            
            .contact-icon {
                align-self: center;
            }
            
            .contact-main-title {
                font-size: 28px;
            }
            
            .whatsapp-section {
                padding: 20px 15px;
            }
            
            .whatsapp-title {
                font-size: 20px;
            }
            
            .whatsapp-description {
                font-size: 15px;
            }
        }

        @media (max-width: 479px) {
            .display-1 {
                font-size: 28px;
            }
            
            .subtitle {
                font-size: 12px;
                margin-bottom: 20px;
            }
            
            .services-main-title {
                font-size: 26px;
            }
            
            .services-intro {
                font-size: 14px;
            }
            
            .service-content {
                padding: 25px 15px;
            }
            
            .service-item h3 {
                font-size: 18px;
            }
            
            .testimonials-main-title {
                font-size: 28px;
            }
            
            .testimonials-intro {
                font-size: 14px;
            }
            
            .testimonial-card {
                padding: 20px;
            }
            
            .testimonial-content {
                font-size: 14px;
            }
            
            .projects-main-title {
                font-size: 28px;
            }
            
            .projects-intro {
                font-size: 14px;
            }
            
            .card-title {
                font-size: 20px;
            }
            
            .contact-main-title {
                font-size: 24px;
            }
            
            .contact-intro {
                font-size: 14px;
            }
            
            .contact-value {
                font-size: 15px;
            }
            
            .whatsapp-btn {
                padding: 14px 25px;
                font-size: 16px;
            }
        }

        /* Utilidades */
        .text-color-accent {
            color: #ff6b6b;
        }

        .mg-bottom-24px {
            margin-bottom: 24px;
        }

        .mg-bottom-48px {
            margin-bottom: 48px;
        }

        .text-align-center {
            text-align: center;
        }

        .button {
            display: inline-block;
            padding: 16px 32px;
            background: #ff6b6b;
            color: white;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            font-size: 16px;
        }

        .button:hover {
            background: #ff5252;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(255, 107, 107, 0.4);
        }

        .button-primary {
            background: #3498db;
        }

        .button-primary:hover {
            background: #2980b9;
            box-shadow: 0 5px 15px rgba(52, 152, 219, 0.4);
        }

        .button-secondary {
            background: #2c3e50;
        }

        .button-secondary:hover {
            background: #1a252f;
            box-shadow: 0 5px 15px rgba(44, 62, 80, 0.4);
        }

        .button-white {
            background: white;
            color: #333;
        }

        .button-white:hover {
            background: #f8f9fa;
            box-shadow: 0 5px 15px rgba(255, 255, 255, 0.4);
        }

        .w-hidden {
            display: none !important;
        }

        .w-container {
            margin-left: auto;
            margin-right: auto;
            max-width: 1200px;
        }

        /* Animaciones */
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .animate-in {
            animation: fadeIn 0.8s ease forwards;
        }

        .delay-1 {
            animation-delay: 0.2s;
        }

        .delay-2 {
            animation-delay: 0.4s;
        }

        .delay-3 {
            animation-delay: 0.6s;
        }

        .delay-4 {
            animation-delay: 0.8s;
        }

        .delay-5 {
            animation-delay: 1s;
        }