 /* Reset básico */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }
        
        body {
            line-height: 1.6;
            color: #333;
        }
        
        body.no-scroll {
            overflow: hidden;
        }
        
        /* Navegación */
        .navbar {
            background-color: #fff;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
        }
        
        .container {
            width: 85%;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .nav-container {
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 5px 0;
        }
        
        .logo {
            font-size: 24px;
            font-weight: bold;
            color: #333;
            text-decoration: none;
        }
        
        /* Botón Volver Arriba */
        .scroll-top {
            position: fixed;
            bottom: 30px;
            left: 30px;
            width: 50px;
            height: 50px;
            background-color: #ff6b00;
            color: #fff;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            cursor: pointer;
            z-index: 900;
            box-shadow: 0 2px 10px rgba(0,0,0,0.2);
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }
        
        .scroll-top.active {
            opacity: 1;
            visibility: visible;
        }
        
        .scroll-top svg {
            width: 20px;
            height: 20px;
        }
        
        /* Sección Hero */
        .hero {
            height: 80vh;
            background-color: #f5f5f5;
            margin-top: 70px;
            display: flex;
            align-items: center;
            position: relative;
        }
        
        .hero-img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .hero-content {
            position: relative;
            z-index: 1;
            max-width: 600px;
            padding: 0 20px;
        }
        
        .hero-title {
            font-size: 48px;
            margin-bottom: 20px;
            color: #fff;
            text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
        }
        
        .hero-text {
            font-size: 18px;
            margin-bottom: 30px;
            color: #fff;
            text-shadow: 1px 1px 5px rgba(0,0,0,0.5);
        }
        
        .btn {
            display: inline-block;
            padding: 12px 30px;
            background-color: #ff6b00;
            color: #fff;
            text-decoration: none;
            border-radius: 4px;
            font-weight: bold;
            transition: background-color 0.3s;
        }
        
        .btn:hover {
            background-color: #e55f00;
        }
        
        /* Sección Servicios */
        .section {
            padding: 50px 0;
        }
        
        .section-title {
            text-align: center;
            font-size: 36px;
            margin-bottom: 50px;
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .service-card {
            background-color: #fff;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            border-radius: 8px;
            overflow: hidden;
            transition: transform 0.3s;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
        }
        
        .service-img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }
        
        .service-content {
            padding: 20px;
        }
        
        .service-title {
            font-size: 22px;
            margin-bottom: 10px;
        }
        
        .service-text {
            color: #666;
            margin-bottom: 15px;
        }
        
        /* Sección Sobre Nosotros */
.about {
    background-color: #f9f9f9;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-text h3 {
    font-size: 28px;
    margin-bottom: 20px;
}

.about-text p {
    margin-bottom: 15px;
    color: #555;
}

/* Estilos del Slider */
.slider-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 8px;
}

.slider {
    position: relative;
    width: 100%;
    height: 400px;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.about-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.slider-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dot.active {
    background-color: white;
}
        
        /* Sección Proyectos */
        .projects-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
        }
        
        .project-card {
            position: relative;
            height: 250px;
            overflow: hidden;
            border-radius: 8px;
        }
        
        .project-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .project-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background-color: rgba(0,0,0,0.7);
            color: #fff;
            padding: 15px;
            transform: translateY(100%);
            transition: transform 0.3s;
        }
        
        .project-card:hover .project-overlay {
            transform: translateY(0);
        }
        
        .project-card:hover .project-img {
            transform: scale(1.1);
        }
        
/* Sección Contacto */
        .contact {
            background-color: #333;
            color: #fff;
        }
        
        .contact-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
        }
        
        .contact-info h3 {
            font-size: 24px;
            margin-bottom: 20px;
        }
        
        .contact-details {
            margin-bottom: 30px;
        }
        
        .contact-item {
            display: flex;
            margin-bottom: 15px;
        }
        
        .contact-item i {
            margin-right: 10px;
            color: #ff6b00;
        }
        
        .contact-form input,
        .contact-form textarea {
            width: 100%;
            padding: 12px;
            margin-bottom: 15px;
            border: none;
            border-radius: 4px;
        }
        
        .contact-form textarea {
            height: 120px;
        }

        /* whatsapp */
        #whatsapp {
            z-index: 9999;
            position: fixed;
            bottom: 10px;
            right: 10px;
}
        
        /* Footer */
        .footer {
            background-color: #222;
            color: #fff;
            padding: 30px 0;
            text-align: center;
        }

        /* Estilos específicos para la página de detalle */
        .detail-section {
            margin-top: 100px;
            padding: 50px 0;
        }
        
        .detail-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
        }
        
        .detail-image {
            width: 100%;
            height: 500px;
            object-fit: cover;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .detail-content h1 {
            font-size: 36px;
            margin-bottom: 20px;
            color: #333;
        }
        
        .detail-content p {
            margin-bottom: 15px;
            color: #555;
            font-size: 16px;
            line-height: 1.8;
        }
        
        .detail-gallery {
            margin-top: 50px;
        }
        
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }
        
        .gallery-item {
            height: 200px;
            overflow: hidden;
            border-radius: 8px;
            cursor: pointer;
        }
        
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s;
        }
        
        .gallery-item:hover img {
            transform: scale(1.1);
        }
        
        .specifications {
            margin-top: 50px;
            background-color: #f9f9f9;
            padding: 30px;
            border-radius: 8px;
        }
        
        .specifications h3 {
            font-size: 24px;
            margin-bottom: 20px;
            color: #333;
        }
        
        .specs-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }
        
        .spec-item {
            display: flex;
            align-items: center;
        }
        
        .spec-icon {
            width: 40px;
            height: 40px;
            background-color: #ff6b00;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            margin-right: 15px;
        }
        
        .spec-icon svg {
            width: 20px;
            height: 20px;
            color: white;
        }
        
        /* Lightbox para imágenes */
        .lightbox {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.9);
            z-index: 1100;
            justify-content: center;
            align-items: center;
        }
        
        .lightbox.active {
            display: flex;
        }
        
        .lightbox-content {
            position: relative;
            max-width: 80%;
            max-height: 80%;
        }
        
        .lightbox-img {
            max-width: 100%;
            max-height: 80vh;
            border: 3px solid white;
        }
        
        .lightbox-close {
            position: absolute;
            top: -40px;
            right: 0;
            color: white;
            font-size: 30px;
            cursor: pointer;
        }
        
        .lightbox-prev, .lightbox-next {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            color: white;
            font-size: 30px;
            cursor: pointer;
            background-color: rgba(0,0,0,0.5);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        
        .lightbox-prev {
            left: -70px;
        }
        
        .lightbox-next {
            right: -70px;
        }
        
        .back-button {
            display: inline-block;
            margin-bottom: 20px;
            padding: 10px 20px;
            background-color: #333;
            color: white;
            text-decoration: none;
            border-radius: 4px;
            font-weight: bold;
            transition: background-color 0.3s;
        }
        
        .back-button:hover {
            background-color: #555;
        }

                /* Responsive */
        @media (max-width: 768px) {
            .hero-title {
                font-size: 36px;
            }
            
            .about-content {
                grid-template-columns: 1fr;
            }
            
            .about-img {
                height: 300px;
            }
            
            .scroll-top {
                bottom: 20px;
                right: 20px;
                width: 45px;
                height: 45px;
            }
        
        /* Responsive */
        @media (max-width: 768px) {
            .detail-container {
                grid-template-columns: 1fr;
            }
            
            .detail-image {
                height: 300px;
            }
            
            .gallery-grid, .specs-grid {
                grid-template-columns: 1fr 1fr;
            }
            
            .lightbox-prev {
                left: 20px;
            }
            
            .lightbox-next {
                right: 20px;
            }
        }
        
        @media (max-width: 480px) {
            .gallery-grid, .specs-grid {
                grid-template-columns: 1fr;
            }
        }
        

        }