* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary: #FFB800;
            --primary-dark: #E5A500;
            --secondary: #1a1a1a;
            --accent: #FF6B35;
            --text: #333;
            --text-light: #666;
            --bg-light: #F8F9FA;
            --white: #ffffff;
            --success: #10B981;
            --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
            --shadow: 0 4px 20px rgba(0,0,0,0.08);
            --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
            --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            --radius: 12px;
            --radius-lg: 20px;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            line-height: 1.6;
            color: var(--text);
            overflow-x: hidden;
            background: var(--white);
        }

        /* Typography */
        h1, h2, h3, h4, h5, h6 {
            font-weight: 700;
            line-height: 1.2;
            color: var(--secondary);
        }

        /* Header */
        header {
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(20px);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.08);
            transition: var(--transition);
        }

        header.scrolled {
            box-shadow: 0 4px 20px rgba(0,0,0,0.15);
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0.5rem 5%;
            max-width: 1400px;
            margin: 0 auto;
            height: 80px;
        }

        .logo {
            display: flex;
            align-items: center;
            height: 65px;
            position: relative;
            z-index: 1;
        }

        .logo img {
            height: 100%;
            width: auto;
            max-width: 200px;
            object-fit: contain;
            filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 2rem;
            align-items: center;
            margin: 0;
            padding: 0;
        }

        .nav-menu a {
            text-decoration: none;
            color: var(--text);
            font-weight: 500;
            font-size: 0.95rem;
            position: relative;
            transition: var(--transition);
            padding: 0.5rem 0;
        }

        .nav-menu a:hover {
            color: var(--primary);
        }

        .nav-menu a::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 50%;
            transform: translateX(-50%) scaleX(0);
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, var(--primary), var(--accent));
            border-radius: 3px;
            transition: transform 0.3s;
        }

        .nav-menu a:hover::after {
            transform: translateX(-50%) scaleX(1);
        }

        .cta-button {
            background: linear-gradient(135deg, var(--primary), var(--accent));
            color: var(--white);
            padding: 0.8rem 2.2rem;
            border: none;
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            font-size: 0.95rem;
            position: relative;
            overflow: hidden;
            white-space: nowrap;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 2.5rem;
            align-items: center;
        }

        .nav-menu a {
            text-decoration: none;
            color: var(--text);
            font-weight: 500;
            font-size: 0.95rem;
            position: relative;
            transition: var(--transition);
        }

        .nav-menu a:hover {
            color: var(--primary);
        }

        .nav-menu a::after {
            content: '';
            position: absolute;
            bottom: -6px;
            left: 50%;
            transform: translateX(-50%) scaleX(0);
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, var(--primary), var(--accent));
            border-radius: 3px;
            transition: transform 0.3s;
        }

        .nav-menu a:hover::after {
            transform: translateX(-50%) scaleX(1);
        }

        .cta-button {
            background: linear-gradient(135deg, var(--primary), var(--accent));
            color: var(--white);
            padding: 0.75rem 2rem;
            border: none;
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            font-size: 0.95rem;
            position: relative;
            overflow: hidden;
        }

        .cta-button::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }

        .cta-button:hover::before {
            width: 300px;
            height: 300px;
        }

        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(255, 184, 0, 0.3);
        }

        /* Hero Section */
        .hero {
            margin-top: 80px; /* Ajustado para el nuevo header */
            min-height: calc(100vh - 80px);
            background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.5)),
                        url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1920 1080"><defs><linearGradient id="sky" x1="0%" y1="0%" x2="0%" y2="100%"><stop offset="0%" style="stop-color:%234a5568;stop-opacity:1" /><stop offset="100%" style="stop-color:%23ed8936;stop-opacity:1" /></linearGradient></defs><rect width="1920" height="1080" fill="url(%23sky)"/><ellipse cx="960" cy="1200" rx="800" ry="400" fill="%23718096" opacity="0.3"/><rect x="100" y="600" width="200" height="300" fill="%232d3748" opacity="0.7"/><rect x="1500" y="550" width="300" height="350" fill="%232d3748" opacity="0.6"/></svg>');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 30% 50%, rgba(255, 184, 0, 0.1) 0%, transparent 50%);
            animation: floatGradient 20s ease infinite;
            pointer-events: none;
        }

        /* Logo overlay en hero */
        .hero-logo {
            position: absolute;
            top: 2rem;
            right: 2rem;
            width: 150px;
            height: auto;
            background: rgba(255, 255, 255, 0.95);
            padding: 0.8rem;
            border-radius: 10px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
            z-index: 3;
        }

        .hero-logo img {
            width: 100%;
            height: auto;
        }

        @keyframes floatGradient {
            0%, 100% { transform: translate(0, 0) rotate(0deg); }
            25% { transform: translate(-20px, -20px) rotate(1deg); }
            50% { transform: translate(20px, -10px) rotate(-1deg); }
            75% { transform: translate(-10px, 20px) rotate(2deg); }
        }

        .hero-content {
            text-align: center;
            color: var(--white);
            z-index: 2;
            position: relative;
            padding: 2rem;
            max-width: 900px;
            animation: fadeInUp 1s ease-out;
            background: rgba(0, 0, 0, 0.3);
            backdrop-filter: blur(5px);
            border-radius: 20px;
            padding: 3rem;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero h1 {
            font-size: clamp(2.5rem, 6vw, 4.5rem);
            margin-bottom: 1.5rem;
            font-weight: 900;
            letter-spacing: -0.02em;
            line-height: 1.1;
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
        }

        .hero .highlight {
            background: linear-gradient(135deg, var(--primary), var(--accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            display: inline-block;
            animation: glow 3s ease-in-out infinite;
            filter: drop-shadow(0 0 20px rgba(255, 184, 0, 0.5));
        }

        @keyframes glow {
            0%, 100% { filter: brightness(1) drop-shadow(0 0 20px rgba(255, 184, 0, 0.5)); }
            50% { filter: brightness(1.3) drop-shadow(0 0 30px rgba(255, 184, 0, 0.8)); }
        }

        .hero p {
            font-size: 1.3rem;
            margin-bottom: 3rem;
            opacity: 0.95;
            font-weight: 300;
            color: rgba(255, 255, 255, 0.95);
            text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
        }

        .hero-buttons {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn-primary, .btn-secondary {
            padding: 1.1rem 2.8rem;
            border-radius: 50px;
            font-size: 1.05rem;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            text-decoration: none;
            display: inline-block;
            position: relative;
            overflow: hidden;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--primary), var(--accent));
            color: var(--white);
            box-shadow: 0 6px 25px rgba(255, 184, 0, 0.4);
        }

        .btn-primary:hover {
            transform: translateY(-3px) scale(1.02);
            box-shadow: 0 10px 35px rgba(255, 184, 0, 0.5);
        }

        .btn-secondary {
            background: rgba(255, 255, 255, 0.2);
            color: var(--white);
            border: 2px solid rgba(255, 255, 255, 0.5);
            backdrop-filter: blur(10px);
        }

        .btn-secondary:hover {
            background: rgba(255, 255, 255, 0.3);
            border-color: var(--primary);
            transform: translateY(-3px);
            box-shadow: 0 10px 35px rgba(255, 184, 0, 0.3);
        }

        /* Services Section */
        .services {
            padding: 6rem 5%;
            background: var(--bg-light);
            position: relative;
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .section-title {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-title h2 {
            font-size: clamp(2rem, 4vw, 3rem);
            color: var(--secondary);
            margin-bottom: 1rem;
            position: relative;
            display: inline-block;
        }

        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 4px;
            background: linear-gradient(90deg, var(--primary), var(--accent));
            border-radius: 2px;
        }

        .section-title p {
            font-size: 1.1rem;
            color: var(--text-light);
            margin-top: 1.5rem;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2rem;
        }

        .service-card {
            background: var(--white);
            padding: 2.5rem;
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow);
            transition: var(--transition);
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(0, 0, 0, 0.05);
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(90deg, var(--primary), var(--accent));
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.5s;
        }

        .service-card:hover::before {
            transform: scaleX(1);
        }

        .service-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-lg);
        }

        .service-icon {
            width: 70px;
            height: 70px;
            margin: 0 auto 1.5rem;
            background: linear-gradient(135deg, rgba(255, 184, 0, 0.1), rgba(255, 107, 53, 0.1));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .service-icon svg {
            width: 40px;
            height: 40px;
            fill: var(--primary);
        }

        .service-card h3 {
            font-size: 1.3rem;
            margin-bottom: 1rem;
            color: var(--secondary);
        }

        .service-card p {
            color: var(--text-light);
            line-height: 1.7;
        }

        /* Equipment Section */
        .equipment {
            padding: 6rem 5%;
            background: var(--white);
        }

        .equipment-carousel-container {
            position: relative;
            overflow: hidden;
            margin-top: 3rem;
        }

        .equipment-carousel {
            display: flex;
            transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .equipment-slide {
            min-width: 100%;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
            padding: 0 2rem;
        }

        .equipment-card {
            background: var(--white);
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
            border: 1px solid rgba(0, 0, 0, 0.05);
            position: relative;
        }

        .equipment-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-lg);
        }

        .equipment-image {
            width: 100%;
            height: 260px;
            background: linear-gradient(135deg, #f0f0f0, #e0e0e0);
            position: relative;
            overflow: hidden;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .equipment-image img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            padding: 20px;
        }

        .equipment-badge {
            position: absolute;
            top: 1rem;
            right: 1rem;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            color: var(--white);
            padding: 0.5rem 1.2rem;
            border-radius: 25px;
            font-weight: 600;
            font-size: 0.85rem;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        }

        .equipment-info {
            padding: 2rem;
        }

        .equipment-info h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: var(--secondary);
        }

        .equipment-specs {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            margin: 1rem 0;
        }

        .spec-tag {
            background: rgba(255, 184, 0, 0.1);
            color: var(--primary-dark);
            padding: 0.4rem 1rem;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 500;
        }

        .equipment-price {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 1.5rem;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(0, 0, 0, 0.08);
        }

        .price {
            font-size: 1.4rem;
            color: var(--primary);
            font-weight: 700;
        }

        .equipment-card .cta-button {
            padding: 0.7rem 1.8rem;
            font-size: 0.9rem;
        }

        /* Carousel Controls */
        .carousel-controls {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 1rem;
            margin-top: 2rem;
        }

        .carousel-btn {
            background: var(--primary);
            color: var(--white);
            border: none;
            width: 45px;
            height: 45px;
            border-radius: 50%;
            cursor: pointer;
            transition: var(--transition);
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 15px rgba(255, 184, 0, 0.3);
        }

        .carousel-btn:hover:not(:disabled) {
            transform: scale(1.1);
            box-shadow: 0 6px 20px rgba(255, 184, 0, 0.4);
        }

        .carousel-btn:disabled {
            opacity: 0.3;
            cursor: not-allowed;
        }

        .carousel-btn svg {
            width: 20px;
            height: 20px;
            fill: currentColor;
        }

        .carousel-dots {
            display: flex;
            gap: 0.8rem;
        }

        .dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: rgba(0, 0, 0, 0.2);
            cursor: pointer;
            transition: var(--transition);
        }

        .dot.active {
            background: var(--primary);
            transform: scale(1.3);
        }

        @media (max-width: 1200px) {
            .equipment-slide {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .equipment-slide {
                grid-template-columns: 1fr;
                padding: 0 1rem;
            }
        }

        /* Benefits Section */
        .benefits {
            padding: 6rem 5%;
            background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
            color: var(--white);
            position: relative;
            overflow: hidden;
        }

        .benefits::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: 
                radial-gradient(circle at 10% 50%, rgba(255, 184, 0, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 90% 20%, rgba(255, 107, 53, 0.06) 0%, transparent 50%);
        }

        .benefits .section-title h2 {
            color: var(--white);
        }

        .benefits .section-title p {
            color: rgba(255, 255, 255, 0.8);
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 3rem;
            margin-top: 4rem;
            position: relative;
            z-index: 1;
        }

        .benefit-card {
            text-align: center;
            padding: 2rem;
            transition: var(--transition);
            position: relative;
        }

        .benefit-card::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 100%;
            height: 100%;
            background: rgba(255, 184, 0, 0.05);
            border-radius: var(--radius-lg);
            opacity: 0;
            transition: opacity 0.3s;
        }

        .benefit-card:hover::before {
            opacity: 1;
        }

        .benefit-card:hover {
            transform: translateY(-10px);
        }

        .benefit-icon {
            width: 90px;
            height: 90px;
            margin: 0 auto 2rem;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 10px 30px rgba(255, 184, 0, 0.3);
            transition: var(--transition);
        }

        .benefit-icon svg {
            width: 45px;
            height: 45px;
            fill: white;
        }

        .benefit-card:hover .benefit-icon {
            transform: rotate(10deg) scale(1.1);
        }

        .benefit-card h3 {
            font-size: 1.4rem;
            margin-bottom: 1rem;
            color: var(--white);
        }

        .benefit-card p {
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.7;
        }

        /* Quote Form Section */
        .quote-section {
            padding: 6rem 5%;
            background: var(--bg-light);
        }

        .quote-form {
            max-width: 900px;
            margin: 3rem auto;
            background: var(--white);
            padding: 3rem;
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-lg);
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 1.8rem;
        }

        .form-group {
            display: flex;
            flex-direction: column;
        }

        .form-group label {
            margin-bottom: 0.6rem;
            font-weight: 600;
            color: var(--text);
            font-size: 0.95rem;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            padding: 0.9rem 1rem;
            border: 2px solid rgba(0, 0, 0, 0.08);
            border-radius: var(--radius);
            font-size: 1rem;
            background: var(--white);
            transition: var(--transition);
            font-family: inherit;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(255, 184, 0, 0.1);
        }

        .form-group.full-width {
            grid-column: 1 / -1;
        }

        .form-group textarea {
            min-height: 140px;
            resize: vertical;
        }

        .submit-btn {
            grid-column: 1 / -1;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            color: var(--white);
            padding: 1.2rem 3rem;
            border: none;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            margin: 1rem auto 0;
            box-shadow: 0 6px 25px rgba(255, 184, 0, 0.3);
        }

        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 35px rgba(255, 184, 0, 0.4);
        }

        /* Contact Section */
        .contact {
            padding: 6rem 5%;
            background: var(--white);
        }

        .contact-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 4rem;
            margin-top: 3rem;
        }

        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 1.5rem;
            padding: 1.5rem;
            background: var(--bg-light);
            border-radius: var(--radius);
            transition: var(--transition);
            border: 1px solid rgba(0, 0, 0, 0.05);
        }

        .contact-item:hover {
            transform: translateX(10px);
            box-shadow: var(--shadow);
            background: var(--white);
        }

        .contact-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .contact-icon svg {
            width: 30px;
            height: 30px;
            fill: white;
        }

        .contact-item h3 {
            font-size: 1.1rem;
            margin-bottom: 0.3rem;
            color: var(--secondary);
        }

        .contact-item p {
            color: var(--text-light);
        }

        .contact-item a {
            color: var(--primary);
            text-decoration: none;
            font-weight: 500;
        }

        .contact-item a:hover {
            color: var(--accent);
        }

        .map-container {
            background: var(--bg-light);
            border-radius: var(--radius-lg);
            height: 450px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(0, 0, 0, 0.05);
        }

        .map-placeholder {
            text-align: center;
            padding: 2rem;
        }

        .map-placeholder h3 {
            font-size: 2rem;
            margin-bottom: 1rem;
            color: var(--text-light);
        }

        /* Footer */
        footer {
            background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
            color: var(--white);
            padding: 4rem 5% 2rem;
            position: relative;
        }

        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 3rem;
            margin-bottom: 3rem;
        }

        .footer-column h4 {
            color: var(--primary);
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            font-weight: 600;
        }

        .footer-column p {
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.7;
            margin-bottom: 1.5rem;
        }

        .footer-column ul {
            list-style: none;
        }

        .footer-column ul li {
            margin-bottom: 0.8rem;
        }

        .footer-column a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: var(--transition);
            position: relative;
            padding-left: 15px;
        }

        .footer-column a::before {
            content: '→';
            position: absolute;
            left: 0;
            opacity: 0;
            transition: var(--transition);
        }

        .footer-column a:hover::before {
            opacity: 1;
        }

        .footer-column a:hover {
            color: var(--primary);
            padding-left: 20px;
        }

        .social-links {
            display: flex;
            gap: 1rem;
        }

        .social-links a {
            width: 45px;
            height: 45px;
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
            padding-left: 0;
        }

        .social-links a svg {
            width: 20px;
            height: 20px;
            fill: rgba(255, 255, 255, 0.7);
            transition: var(--transition);
        }

        .social-links a::before {
            display: none;
        }

        .social-links a:hover {
            background: var(--primary);
            border-color: var(--primary);
            transform: translateY(-5px) rotate(10deg);
            padding-left: 0;
        }

        .social-links a:hover svg {
            fill: white;
        }

        .footer-bottom {
            text-align: center;
            padding: 2rem 0;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            color: rgba(255, 255, 255, 0.5);
            font-size: 0.95rem;
        }

        /* WhatsApp Floating Button */
        .whatsapp-float {
            position: fixed;
            width: 65px;
            height: 65px;
            bottom: 30px;
            right: 30px;
            background: linear-gradient(135deg, #25D366, #128C7E);
            color: white;
            border-radius: 50%;
            text-align: center;
            box-shadow: 0 6px 30px rgba(37, 211, 102, 0.4);
            z-index: 1000;
            cursor: pointer;
            transition: var(--transition);
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            animation: bounceIn 0.6s ease-out, pulse 2s infinite 1s;
        }

        @keyframes bounceIn {
            0% {
                transform: scale(0);
                opacity: 0;
            }
            50% {
                transform: scale(1.1);
            }
            100% {
                transform: scale(1);
                opacity: 1;
            }
        }

        @keyframes pulse {
            0%, 100% {
                box-shadow: 0 6px 30px rgba(37, 211, 102, 0.4);
            }
            50% {
                box-shadow: 0 6px 50px rgba(37, 211, 102, 0.6);
            }
        }

        .whatsapp-float:hover {
            transform: scale(1.15) rotate(15deg);
            box-shadow: 0 8px 40px rgba(37, 211, 102, 0.6);
        }

        .whatsapp-icon {
            width: 35px;
            height: 35px;
            fill: white;
        }

        .whatsapp-tooltip {
            position: fixed;
            bottom: 105px;
            right: 30px;
            background: var(--white);
            color: var(--text);
            padding: 12px 18px;
            border-radius: var(--radius);
            box-shadow: var(--shadow-lg);
            font-size: 14px;
            font-weight: 500;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.3s ease, transform 0.3s ease;
            z-index: 999;
            white-space: nowrap;
            transform: translateY(10px);
        }

        .whatsapp-tooltip::after {
            content: '';
            position: absolute;
            bottom: -8px;
            right: 28px;
            width: 16px;
            height: 16px;
            background: var(--white);
            transform: rotate(45deg);
            box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
        }

        .whatsapp-tooltip.show {
            opacity: 1;
            transform: translateY(0);
        }

        /* Mobile Menu */
        .mobile-menu-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
            padding: 5px;
        }

        .mobile-menu-toggle span {
            width: 28px;
            height: 3px;
            background: var(--secondary);
            margin: 3px 0;
            border-radius: 3px;
            transition: var(--transition);
        }

        .mobile-menu-toggle.active span:nth-child(1) {
            transform: rotate(45deg) translate(8px, 8px);
        }

        .mobile-menu-toggle.active span:nth-child(2) {
            opacity: 0;
        }

        .mobile-menu-toggle.active span:nth-child(3) {
            transform: rotate(-45deg) translate(8px, -8px);
        }

        /* Animation Classes */
        .scroll-animation {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .scroll-animation.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            nav {
                padding: 0.5rem 3%;
                height: 70px;
            }

            .logo {
                height: 55px;
            }

            .logo img {
                max-width: 160px;
            }

            .nav-menu {
                position: fixed;
                left: -100%;
                top: 70px;
                flex-direction: column;
                background: var(--white);
                width: 100%;
                padding: 2rem;
                box-shadow: var(--shadow-lg);
                transition: var(--transition);
                gap: 1.5rem;
                z-index: 999;
            }

            .nav-menu.active {
                left: 0;
            }

            .mobile-menu-toggle {
                display: flex;
            }

            .hero {
                margin-top: 70px;
                min-height: calc(100vh - 70px);
            }

            .hero h1 {
                font-size: 2.5rem;
            }

            .hero-buttons {
                flex-direction: column;
                align-items: center;
                width: 100%;
            }

            .btn-primary, .btn-secondary {
                width: 100%;
                max-width: 300px;
            }

            .services-grid,
            .equipment-slide {
                grid-template-columns: 1fr;
                padding: 0 1rem;
            }

            .whatsapp-float {
                width: 60px;
                height: 60px;
                bottom: 20px;
                right: 20px;
            }
            
            .hero-logo {
                width: 100px;
                top: 1rem;
                right: 1rem;
                padding: 0.5rem;
            }
            
            .hero-content {
                padding: 2rem;
                margin: 1rem;
            }

            .cta-button {
                padding: 0.7rem 1.5rem;
                font-size: 0.9rem;
            }
        }

        /* Utility Classes */
        .sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0,0,0,0);
            white-space: nowrap;
            border-width: 0;
        }
        .hidden-for-aditamentos {
            display: none !important;
            visibility: hidden !important;
            opacity: 0 !important;
            height: 0 !important;
            overflow: hidden !important;
        }

    
       

/* Hero Section Compacto */
.catalog-hero-compact {
    background: linear-gradient(135deg, #FFB800, #FF9500);
    padding: 2rem 0;
    text-align: center;
}

.hero-content-compact h1 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.search-bar-hero {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.search-bar-hero input {
    flex: 1;
    padding: 14px 20px;
    border: none;
    font-size: 16px;
    outline: none;
}

.search-bar-hero button {
    padding: 14px 20px;
    background: rgba(0,0,0,0.1);
    border: none;
    color: white;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.3s ease;
}

.search-bar-hero button:hover {
    background: rgba(0,0,0,0.2);
}

/* Filtros Compactos */
.filters-compact {
    background: white;
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
}

.filters-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.category-filters-compact {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.filter-btn-compact {
    padding: 8px 16px;
    border: 2px solid #e9ecef;
    background: white;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
}

.filter-btn-compact:hover {
    border-color: #FFB800;
    background: #fff8e6;
}

.filter-btn-compact.active {
    background: #FFB800;
    border-color: #FFB800;
    color: white;
}

.sort-controls-compact select {
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    background: white;
    cursor: pointer;
}

/* Grid más compacto */
.equipment-grid-section {
    padding: 2rem 0;
}

.catalog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}

/* Tarjetas más compactas */
.catalog-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.catalog-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.item-image {
    position: relative;
    height: 180px;
    overflow: hidden;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
}

.item-image img {
    max-width: 85%;
    max-height: 85%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.catalog-item:hover .item-image img {
    transform: scale(1.03);
}

.badge-available {
    position: absolute;
    top: 8px;
    right: 8px;
    background: #20c997;
    color: white;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
}

.item-info {
    padding: 1rem;
}

.item-info h3 {
    margin: 0 0 0.8rem 0;
    color: #333;
    font-size: 1.1em;
    font-weight: 600;
}

/* Estilo para especificaciones de minicargadores */
.item-info .specs {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 1rem;
}

.item-info .specs span {
    background: #FFB800;
    color: white;
    padding: 3px 10px;
    border-radius: 10px;
    font-size: 10px;
    font-weight: 500;
}

/* Estilo para descripciones de aditamentos */
.item-info p {
    color: #666;
    font-size: 13px;
    line-height: 1.3;
    margin: 0 0 1rem 0;
}

/* Botones más compactos */
.item-actions {
    display: flex;
    gap: 6px;
}

.btn-details, .btn-quote {
    flex: 1;
    padding: 10px 12px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 13px;
}

.btn-details {
    background: #f1f3f4;
    color: #495057;
    border: 1px solid #e9ecef;
}

.btn-details:hover {
    background: #e9ecef;
}

.btn-quote {
    background: #FFB800;
    color: white;
}

.btn-quote:hover {
    background: #FF9500;
    transform: translateY(-1px);
}

/* Sección de filtros anterior eliminada */
.filters-section {
    display: none;
}

/* Mensaje de no resultados */
.no-results {
    text-align: center;
    padding: 2rem;
    color: #666;
}

/* Responsive mejorado */
@media (max-width: 768px) {
    .hero-content-compact h1 {
        font-size: 1.5rem;
    }
    
    .search-bar-hero {
        max-width: 90%;
        margin: 0 5%;
    }
    
    .filters-row {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }
    
    .category-filters-compact {
        justify-content: center;
        overflow-x: auto;
        padding-bottom: 0.5rem;
    }
    
    .filter-btn-compact {
        flex-shrink: 0;
        font-size: 12px;
        padding: 6px 12px;
    }
    
    .catalog-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1rem;
    }
    
    .item-image {
        height: 160px;
    }
}

/* Grid de equipos */
.equipment-grid-section {
    padding: 3rem 0;
}

.catalog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

/* Usar exactamente las mismas clases que catalog-item de las páginas existentes */
.catalog-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.catalog-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.item-image {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
}

.item-image img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.catalog-item:hover .item-image img {
    transform: scale(1.05);
}

.badge-available {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #20c997;
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: capitalize;
}

.item-info {
    padding: 1.5rem;
}

.item-info h3 {
    margin: 0 0 1rem 0;
    color: #333;
    font-size: 1.2em;
    font-weight: 600;
}

/* Estilo específico para Minicargadores */
.item-info .specs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 1.5rem;
}

.item-info .specs span {
    background: #FFB800;
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 500;
}

/* Estilo específico para Aditamentos */
.item-info p {
    color: #666;
    font-size: 14px;
    line-height: 1.4;
    margin: 0 0 1.5rem 0;
}

/* Botones de acción */
.item-actions {
    display: flex;
    gap: 8px;
}

.btn-details, .btn-quote {
    flex: 1;
    padding: 12px 16px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 14px;
}

.btn-details {
    background: #e9ecef;
    color: #495057;
    border: 1px solid #ced4da;
}

.btn-details:hover {
    background: #dee2e6;
    border-color: #adb5bd;
}

.btn-quote {
    background: #FFB800;
    color: white;
}

.btn-quote:hover {
    background: #FF9500;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 184, 0, 0.3);
}

/* Mensaje de no resultados */
.no-results {
    text-align: center;
    padding: 3rem;
    color: #666;
}

.no-results h3 {
    margin-bottom: 1rem;
    color: #333;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #FFB800, #FF9500);
    padding: 3rem 0;
    text-align: center;
}

.cta-content h2 {
    color: white;
    margin-bottom: 1rem;
    font-size: 2em;
}

.cta-content p {
    color: white;
    opacity: 0.9;
    margin-bottom: 2rem;
    font-size: 1.1em;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
}

.btn-primary {
    background: white;
    color: #FFB800;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #FFB800;
}

/* Responsive */
@media (max-width: 768px) {
    .search-filters {
        padding: 0 1rem;
    }
    
    .category-filters {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 0.5rem;
    }
    
    .filter-btn {
        white-space: nowrap;
        flex-shrink: 0;
    }
    
    .equipment-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 1.5rem;
    }
    
    .sort-controls {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary, .btn-secondary {
        width: 200px;
    }
}

