:root {
    --primary: #0066cc;
    --secondary: #003366;
    --accent: #ff6600;
    --light: #f0f8ff;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #f8fafc;
}

/* Estilos para el menú offcanvas */
        .offcanvas-container {
            display: none;
        }
        
        
        .offcanvas-menu {
            position: fixed;
            top: 0;
            right: -100%;
            width: 85%;
            max-width: 300px;
            height: 100%;
            background: white;
            z-index: 1001;
            transition: right 0.3s ease-in-out;
            overflow-y: auto;
            box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        }
        
        .offcanvas-menu.open {
            right: 0;
        }
        
        .overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s ease-in-out;
        }
        
        .overlay.active {
            opacity: 1;
            visibility: visible;
        }
        
        /* Evitar scroll cuando el menú está abierto */
        body.menu-open {
            overflow: hidden;
        }

.title-font {
    font-family: 'Raleway', sans-serif;
}

.hero {
    background: linear-gradient(rgba(0, 50, 100, 0.85), rgba(0, 30, 60, 0.9)), url('https://static-website.imou.com/13a151ca-3733-4b9b-9834-a807516b40b9.jpg');
    background-size: cover;
    background-position: center;
}

.feature-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.product-card {
    transition: all 0.3s ease;
    overflow: hidden;
}

.product-card:hover {
    transform: scale(1.03);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.product-image {
    transition: transform 0.5s ease;
}

.product-card:hover .product-image {
    transform: scale(1.1);
}

.cta-section {
    background: linear-gradient(to right, var(--primary), var(--secondary));
}

.testimonial-card {
    background-color: rgba(255, 255, 255, 0.9);
    border-left: 4px solid var(--accent);
}

.guarantee-badge {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.btn-primary {
    background: var(--primary);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: var(--secondary);
    transform: translateY(-3px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.btn-accent {
    background: var(--accent);
    transition: all 0.3s ease;
}

.btn-accent:hover {
    background: #e55c00;
    transform: translateY(-3px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.floating {
    animation: floating 3s ease-in-out infinite;
}

@keyframes floating {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero {
        padding-top: 80px;
        padding-bottom: 80px;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .feature-card, .testimonial-card {
        padding: 1.5rem;
    }
    
    .guarantee-badge {
        margin-top: 2rem;
    }
    .offcanvas-container {
        display: block;
    }
}