/* Reset y configuración base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.7;
    color: #2c3e50;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-weight: 400;
    letter-spacing: -0.01em;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
}

/* Professional spacing system */
:root {
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    --spacing-3xl: 6rem;
    
    /* Professional color palette */
    --primary-50: #fff7ed;
    --primary-100: #ffedd5;
    --primary-200: #fed7aa;
    --primary-300: #fdba74;
    --primary-400: #fb923c;
    --primary-500: #f97316;
    --primary-600: #ea580c;
    --primary-700: #c2410c;
    --primary-800: #9a3412;
    --primary-900: #7c2d12;
    
    --secondary-50: #fefce8;
    --secondary-100: #fef9c3;
    --secondary-200: #fef08a;
    --secondary-300: #fde047;
    --secondary-400: #facc15;
    --secondary-500: #eab308;
    --secondary-600: #ca8a04;
    --secondary-700: #a16207;
    --secondary-800: #854d0e;
    --secondary-900: #713f12;
    
    --neutral-50: #f8fafc;
    --neutral-100: #f1f5f9;
    --neutral-200: #e2e8f0;
    --neutral-300: #cbd5e1;
    --neutral-400: #94a3b8;
    --neutral-500: #64748b;
    --neutral-600: #475569;
    --neutral-700: #334155;
    --neutral-800: #1e293b;
    --neutral-900: #0f172a;
    
    /* Professional shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
    
    /* Border radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-3xl: 2rem;
}

/* Header */
.header {
    background: linear-gradient(135deg, var(--primary-500), var(--primary-600));
    padding: var(--spacing-lg) 0;
    box-shadow: var(--shadow-lg);
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
    margin: 0;
}

.logo {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 0 var(--spacing-lg);
}

.logo-image {
    max-height: clamp(100px, 15vw, 150px);
    width: auto;
    height: auto;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.2));
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: var(--radius-lg);
}

.logo-image:hover {
    transform: scale(1.05) translateY(-2px);
    filter: drop-shadow(0 8px 16px rgba(0,0,0,0.3));
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-500) 0%, var(--primary-600) 50%, var(--secondary-500) 100%);
    padding: var(--spacing-3xl) 0;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
    min-height: 70vh;
    display: flex;
    align-items: center;
    background-size: 200% 200%;
    animation: gradientShift 8s ease infinite;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="white" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="white" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

/* Efecto de bolas de nieve animadas */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.8) 2px, transparent 2px),
        radial-gradient(circle at 80% 40%, rgba(255, 255, 255, 0.6) 1.5px, transparent 1.5px),
        radial-gradient(circle at 40% 60%, rgba(255, 255, 255, 0.9) 2.5px, transparent 2.5px),
        radial-gradient(circle at 90% 80%, rgba(255, 255, 255, 0.7) 1px, transparent 1px),
        radial-gradient(circle at 10% 90%, rgba(255, 255, 255, 0.8) 2px, transparent 2px),
        radial-gradient(circle at 60% 10%, rgba(255, 255, 255, 0.6) 1.5px, transparent 1.5px),
        radial-gradient(circle at 30% 70%, rgba(255, 255, 255, 0.9) 2px, transparent 2px),
        radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.7) 1.8px, transparent 1.8px),
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.8) 2.2px, transparent 2.2px),
        radial-gradient(circle at 15% 45%, rgba(255, 255, 255, 0.6) 1.3px, transparent 1.3px),
        radial-gradient(circle at 85% 15%, rgba(255, 255, 255, 0.9) 2.1px, transparent 2.1px),
        radial-gradient(circle at 25% 85%, rgba(255, 255, 255, 0.7) 1.7px, transparent 1.7px),
        radial-gradient(circle at 75% 65%, rgba(255, 255, 255, 0.8) 2.3px, transparent 2.3px),
        radial-gradient(circle at 45% 25%, rgba(255, 255, 255, 0.6) 1.4px, transparent 1.4px),
        radial-gradient(circle at 95% 55%, rgba(255, 255, 255, 0.9) 2px, transparent 2px),
        radial-gradient(circle at 5% 75%, rgba(255, 255, 255, 0.7) 1.6px, transparent 1.6px),
        radial-gradient(circle at 55% 95%, rgba(255, 255, 255, 0.8) 2.4px, transparent 2.4px),
        radial-gradient(circle at 35% 5%, rgba(255, 255, 255, 0.6) 1.2px, transparent 1.2px),
        radial-gradient(circle at 65% 35%, rgba(255, 255, 255, 0.9) 2.1px, transparent 2.1px),
        radial-gradient(circle at 12% 65%, rgba(255, 255, 255, 0.7) 1.8px, transparent 1.8px);
    background-size: 200px 200px, 150px 150px, 180px 180px, 120px 120px, 160px 160px, 
                     140px 140px, 170px 170px, 130px 130px, 190px 190px, 110px 110px,
                     200px 200px, 150px 150px, 180px 180px, 120px 120px, 160px 160px,
                     140px 140px, 170px 170px, 130px 130px, 190px 190px, 110px 110px;
    background-position: 0 0, 50px 50px, 100px 100px, 25px 75px, 75px 25px,
                         125px 125px, 175px 175px, 200px 200px, 225px 225px, 250px 250px,
                         275px 275px, 300px 300px, 325px 325px, 350px 350px, 375px 375px,
                         400px 400px, 425px 425px, 450px 450px, 475px 475px, 500px 500px;
    animation: snowFall 20s linear infinite, snowFloat 15s ease-in-out infinite;
    opacity: 0.4;
    z-index: 1;
}

@keyframes snowFall {
    0% {
        transform: translateY(-100vh);
    }
    100% {
        transform: translateY(100vh);
    }
}

@keyframes snowFloat {
    0%, 100% {
        transform: translateX(0px) rotate(0deg);
    }
    25% {
        transform: translateX(10px) rotate(90deg);
    }
    50% {
        transform: translateX(-5px) rotate(180deg);
    }
    75% {
        transform: translateX(8px) rotate(270deg);
    }
}

/* Efecto adicional de partículas pequeñas flotantes */
.hero {
    position: relative;
}

.hero .snow-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.hero .snow-particles::before,
.hero .snow-particles::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.4) 0.8px, transparent 0.8px),
        radial-gradient(circle at 30% 40%, rgba(255, 255, 255, 0.3) 0.6px, transparent 0.6px),
        radial-gradient(circle at 50% 10%, rgba(255, 255, 255, 0.5) 1px, transparent 1px),
        radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.4) 0.7px, transparent 0.7px),
        radial-gradient(circle at 90% 50%, rgba(255, 255, 255, 0.3) 0.5px, transparent 0.5px),
        radial-gradient(circle at 20% 70%, rgba(255, 255, 255, 0.6) 0.9px, transparent 0.9px),
        radial-gradient(circle at 40% 90%, rgba(255, 255, 255, 0.4) 0.8px, transparent 0.8px),
        radial-gradient(circle at 60% 60%, rgba(255, 255, 255, 0.3) 0.6px, transparent 0.6px),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.5) 1.1px, transparent 1.1px),
        radial-gradient(circle at 15% 50%, rgba(255, 255, 255, 0.4) 0.7px, transparent 0.7px);
    background-size: 100px 100px, 80px 80px, 120px 120px, 90px 90px, 70px 70px,
                     110px 110px, 85px 85px, 95px 95px, 105px 105px, 75px 75px;
    animation: particleFloat1 25s linear infinite;
}

.hero .snow-particles::after {
    background-image: 
        radial-gradient(circle at 25% 15%, rgba(255, 255, 255, 0.3) 0.5px, transparent 0.5px),
        radial-gradient(circle at 45% 35%, rgba(255, 255, 255, 0.4) 0.8px, transparent 0.8px),
        radial-gradient(circle at 65% 25%, rgba(255, 255, 255, 0.2) 0.4px, transparent 0.4px),
        radial-gradient(circle at 85% 45%, rgba(255, 255, 255, 0.5) 0.9px, transparent 0.9px),
        radial-gradient(circle at 5% 65%, rgba(255, 255, 255, 0.3) 0.6px, transparent 0.6px),
        radial-gradient(circle at 35% 85%, rgba(255, 255, 255, 0.4) 0.7px, transparent 0.7px),
        radial-gradient(circle at 55% 75%, rgba(255, 255, 255, 0.2) 0.5px, transparent 0.5px),
        radial-gradient(circle at 75% 95%, rgba(255, 255, 255, 0.5) 1px, transparent 1px),
        radial-gradient(circle at 95% 15%, rgba(255, 255, 255, 0.3) 0.6px, transparent 0.6px),
        radial-gradient(circle at 15% 95%, rgba(255, 255, 255, 0.4) 0.8px, transparent 0.8px);
    background-size: 60px 60px, 85px 85px, 45px 45px, 95px 95px, 55px 55px,
                     75px 75px, 65px 65px, 105px 105px, 70px 70px, 80px 80px;
    animation: particleFloat2 30s linear infinite reverse;
}

@keyframes particleFloat1 {
    0% {
        transform: translateY(-100vh) translateX(0px);
    }
    100% {
        transform: translateY(100vh) translateX(50px);
    }
}

@keyframes particleFloat2 {
    0% {
        transform: translateY(-100vh) translateX(0px);
    }
    100% {
        transform: translateY(100vh) translateX(-30px);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.hero-text {
    margin-bottom: 2rem;
}

.hero-text h2 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    margin-bottom: var(--spacing-lg);
    text-shadow: 0 4px 8px rgba(0,0,0,0.3);
    animation: slideInFromTop 0.8s ease-out;
    font-family: 'Playfair Display', serif;
    line-height: 1.1;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #ffffff, #f8fafc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text p {
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    font-weight: 400;
    opacity: 0.95;
    animation: slideInFromBottom 0.8s ease-out 0.3s both;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.6;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
    letter-spacing: 0.01em;
}

.hero-image {
    margin-bottom: 2rem;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    max-width: min(450px, 90vw);
    max-height: min(320px, 60vw);
    width: auto;
    height: auto;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-2xl);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 1;
    border: 4px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.hero-image img:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.4);
    border-color: rgba(255, 255, 255, 0.3);
}

.image-placeholder {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid rgba(255, 255, 255, 0.2);
    border-top: 4px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes slideInFromTop {
    0% {
        transform: translateY(-50px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideInFromBottom {
    0% {
        transform: translateY(30px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 0.9;
    }
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Info Section */
.info-section {
    padding: clamp(3rem, 8vw, 5rem) 0;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    position: relative;
}

.info-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="info-grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23ff6b35" opacity="0.05"/><circle cx="75" cy="75" r="1" fill="%23f7931e" opacity="0.05"/><circle cx="50" cy="10" r="0.5" fill="%23ff6b35" opacity="0.05"/><circle cx="10" cy="60" r="0.5" fill="%23f7931e" opacity="0.05"/><circle cx="90" cy="40" r="0.5" fill="%23ff6b35" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23info-grain)"/></svg>');
    opacity: 0.3;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
    gap: clamp(1.5rem, 4vw, 2.5rem);
    margin-top: 2rem;
    position: relative;
    z-index: 2;
}

.info-card {
    background: white;
    border-radius: 20px;
    padding: clamp(1.5rem, 4vw, 2rem);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    border-color: #ff6b35;
}

.info-card:hover::before {
    transform: scaleX(1);
}

.info-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
    transition: all 0.3s ease;
}

.info-card:hover .info-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.info-content {
    text-align: center;
}

.info-content h3 {
    font-size: clamp(1.2rem, 3vw, 1.4rem);
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
    line-height: 1.3;
}

.info-details {
    color: #666;
    line-height: 1.6;
}

.info-details p {
    margin-bottom: 0.5rem;
    font-size: clamp(0.95rem, 2.5vw, 1rem);
}

.info-details strong {
    color: #ff6b35;
    font-weight: 600;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #e4405f;
    text-decoration: none;
    font-weight: 600;
    font-size: clamp(1rem, 2.5vw, 1.1rem);
    padding: 0.8rem 1.5rem;
    border: 2px solid #e4405f;
    border-radius: 50px;
    transition: all 0.3s ease;
    background: white;
}

.contact-link:hover {
    background: #e4405f;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(228, 64, 95, 0.3);
}

/* Products Section */
.products {
    padding: var(--spacing-3xl) 0;
    background: var(--neutral-50);
    position: relative;
}

.section-title {
    text-align: center;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--neutral-800);
    margin-bottom: var(--spacing-2xl);
    position: relative;
    font-family: 'Playfair Display', serif;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -var(--spacing-md);
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-500), var(--secondary-500));
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-md);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(380px, 100%), 1fr));
    gap: var(--spacing-xl);
    margin-top: var(--spacing-xl);
    width: 100%;
}

.product-card {
    background: white;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--neutral-200);
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
    position: relative;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-500), var(--secondary-500));
    transform: scaleX(0);
    transition: transform 0.3s ease;
    z-index: 1;
}

.product-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-2xl);
    border-color: var(--primary-200);
}

.product-card:hover::before {
    transform: scaleX(1);
}

.product-image {
    height: clamp(200px, 40vw, 250px);
    overflow: hidden;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease, opacity 0.5s ease;
    opacity: 0;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-image .image-placeholder {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
}

.product-image .loading-spinner {
    width: 32px;
    height: 32px;
    border: 3px solid rgba(249, 115, 22, 0.2);
    border-top: 3px solid var(--primary-500);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    box-shadow: 0 0 15px rgba(249, 115, 22, 0.3);
}

.product-info {
    padding: var(--spacing-lg);
    text-align: center;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(248, 250, 252, 0.9));
    backdrop-filter: blur(10px);
}

.product-info h3 {
    font-size: clamp(1.3rem, 3vw, 1.6rem);
    font-weight: 700;
    color: var(--neutral-800);
    margin-bottom: var(--spacing-sm);
    font-family: 'Playfair Display', serif;
    letter-spacing: -0.01em;
    line-height: 1.3;
}

.price {
    font-size: clamp(1.8rem, 4vw, 2.2rem);
    font-weight: 800;
    color: var(--primary-600);
    margin-bottom: var(--spacing-lg);
    font-family: 'Inter', sans-serif;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.order-btn {
    background: linear-gradient(135deg, var(--primary-500), var(--primary-600));
    color: white;
    border: none;
    padding: var(--spacing-lg) var(--spacing-2xl);
    border-radius: var(--radius-3xl);
    font-size: clamp(1.2rem, 3vw, 1.4rem);
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-md);
    text-decoration: none;
    box-shadow: var(--shadow-xl);
    width: 100%;
    justify-content: center;
    min-height: 70px;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    border: 3px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.order-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.order-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 25px 50px rgba(249, 115, 22, 0.4);
    background: linear-gradient(135deg, var(--primary-600), var(--primary-700));
    border-color: rgba(255, 255, 255, 0.4);
}

.order-btn:hover::before {
    left: 100%;
}

.order-btn:active {
    transform: translateY(-1px) scale(0.98);
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: clamp(25px, 6vw, 35px);
    right: clamp(25px, 6vw, 35px);
    z-index: 1000;
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: clamp(70px, 15vw, 80px);
    height: clamp(70px, 15vw, 80px);
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    font-size: clamp(1.6rem, 4vw, 2rem);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    animation: bounce 2s infinite;
    border: 4px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(15px);
}

.whatsapp-btn:hover {
    transform: scale(1.2) translateY(-3px);
    box-shadow: 0 20px 45px rgba(37, 211, 102, 0.6);
    color: white;
    background: linear-gradient(135deg, #128c7e, #0d6b5f);
    border-color: rgba(255, 255, 255, 0.5);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-15px);
    }
    60% {
        transform: translateY(-8px);
    }
}

/* Mobile-specific pulse animation for WhatsApp button */
@keyframes mobilePulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--neutral-900) 0%, var(--neutral-800) 50%, var(--neutral-900) 100%);
    color: white;
    padding: var(--spacing-3xl) 0 var(--spacing-lg);
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--neutral-700);
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="footer-grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23ff6b35" opacity="0.03"/><circle cx="75" cy="75" r="1" fill="%23f7931e" opacity="0.03"/><circle cx="50" cy="10" r="0.5" fill="%23ff6b35" opacity="0.03"/><circle cx="10" cy="60" r="0.5" fill="%23f7931e" opacity="0.03"/><circle cx="90" cy="40" r="0.5" fill="%23ff6b35" opacity="0.03"/></pattern></defs><rect width="100" height="100" fill="url(%23footer-grain)"/></svg>');
    opacity: 0.5;
}

.footer-top {
    display: flex;
    align-items: center;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-2xl);
    flex-wrap: wrap;
    justify-content: center;
    position: relative;
    z-index: 2;
    padding: var(--spacing-lg);
    background: rgba(255, 255, 255, 0.02);
    border-radius: var(--radius-2xl);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-image {
    flex: 0 0 auto;
    position: relative;
    display: inline-block;
}

.footer-image img {
    max-width: min(120px, 30vw);
    height: auto;
    border-radius: 10px;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.footer-image .image-placeholder {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    justify-content: center;
    align-items: center;
    width: min(120px, 30vw);
    height: min(60px, 15vw);
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    backdrop-filter: blur(5px);
}

.footer-image .loading-spinner {
    width: 25px;
    height: 25px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top: 2px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.footer-description {
    flex: 1;
    min-width: min(300px, 100%);
    text-align: left;
    max-width: 600px;
    padding: 0 1rem;
}

.footer-description p {
    font-size: clamp(1rem, 2.5vw, 1.1rem);
    line-height: 1.8;
    opacity: 0.9;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-2xl);
    padding: 0 var(--spacing-lg);
    position: relative;
    z-index: 2;
}

.footer-section {
    text-align: center;
}

.footer-section h3 {
    font-size: clamp(1.3rem, 3vw, 1.5rem);
    font-weight: 700;
    margin-bottom: var(--spacing-lg);
    color: var(--primary-400);
    font-family: 'Playfair Display', serif;
    text-align: center;
    position: relative;
    padding-bottom: var(--spacing-sm);
    letter-spacing: -0.01em;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: linear-gradient(135deg, var(--primary-500), var(--secondary-500));
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.8rem;
    opacity: 0.95;
    font-size: clamp(1rem, 2.5vw, 1.1rem);
    font-weight: 500;
    color: #e8e8e8;
    transition: all 0.3s ease;
}

.footer-section li:hover {
    color: #ff6b35;
    transform: translateX(5px);
}

.footer-section p {
    font-size: clamp(1rem, 2.5vw, 1.1rem);
    opacity: 0.95;
    line-height: 1.7;
    font-weight: 500;
    color: #e8e8e8;
    transition: all 0.3s ease;
}

.footer-section p:hover {
    color: #ff6b35;
}

.social-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.instagram-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #e4405f;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: clamp(1rem, 2.5vw, 1.1rem);
    padding: 0.8rem 1.5rem;
    border: 2px solid #e4405f;
    border-radius: 50px;
    background: rgba(228, 64, 95, 0.1);
    backdrop-filter: blur(10px);
}

.instagram-link:hover {
    color: white;
    background: #e4405f;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(228, 64, 95, 0.4);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.15);
    padding-top: 2rem;
    position: relative;
    z-index: 2;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 20px 20px 0 0;
    margin-top: 2rem;
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(135deg, var(--primary-500), var(--secondary-500));
    border-radius: 0 0 10px 10px;
    box-shadow: 0 2px 8px rgba(249, 115, 22, 0.3);
}

.footer-bottom-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr));
    gap: var(--spacing-lg);
    text-align: center;
    padding: 0 var(--spacing-lg);
    position: relative;
}

.footer-item {
    opacity: 0.9;
    font-size: clamp(0.8rem, 2vw, 0.9rem);
    padding: var(--spacing-md);
    border-radius: var(--radius-xl);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.footer-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(135deg, var(--primary-500), var(--secondary-500));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.footer-item:hover {
    background: rgba(255, 107, 53, 0.1);
    border-color: rgba(255, 107, 53, 0.3);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.footer-item:hover::before {
    transform: scaleX(1);
}

.footer-item a {
    color: #ff6b35;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 600;
    position: relative;
    z-index: 2;
}

.footer-item a:hover {
    color: #f7931e;
    text-shadow: 0 0 8px rgba(255, 107, 53, 0.5);
}

/* Estilos específicos para cada elemento del footer */
.footer-item:first-child {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(247, 147, 30, 0.05));
    border: 1px solid rgba(255, 107, 53, 0.2);
    color: #e8e8e8;
    font-weight: 500;
    position: relative;
}

.footer-item:first-child::after {
    content: '©';
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    font-size: 1.2rem;
    color: var(--primary-400);
    font-weight: 700;
    opacity: 0.7;
}

.footer-item:first-child:hover {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.15), rgba(247, 147, 30, 0.1));
    border-color: rgba(255, 107, 53, 0.4);
    color: #ffffff;
}

.footer-item:first-child:hover::after {
    opacity: 1;
    transform: scale(1.1);
}

.footer-item:nth-child(2) {
    background: linear-gradient(135deg, rgba(228, 64, 95, 0.1), rgba(193, 53, 132, 0.05));
    border: 1px solid rgba(228, 64, 95, 0.2);
    position: relative;
}

.footer-item:nth-child(2)::after {
    content: '👨‍💻';
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    font-size: 1.2rem;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.footer-item:nth-child(2):hover {
    background: linear-gradient(135deg, rgba(228, 64, 95, 0.15), rgba(193, 53, 132, 0.1));
    border-color: rgba(228, 64, 95, 0.4);
}

.footer-item:nth-child(2):hover::after {
    opacity: 1;
    transform: scale(1.2) rotate(10deg);
}

.footer-item:nth-child(3) {
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.1), rgba(18, 140, 126, 0.05));
    border: 1px solid rgba(37, 211, 102, 0.2);
    position: relative;
}

.footer-item:nth-child(3)::after {
    content: '💻';
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    font-size: 1.2rem;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.footer-item:nth-child(3):hover {
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.15), rgba(18, 140, 126, 0.1));
    border-color: rgba(37, 211, 102, 0.4);
}

.footer-item:nth-child(3):hover::after {
    opacity: 1;
    transform: scale(1.2) rotate(-10deg);
}

.footer-item:nth-child(4) {
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.1), rgba(18, 140, 126, 0.05));
    border: 1px solid rgba(37, 211, 102, 0.2);
    position: relative;
}

.footer-item:nth-child(4)::after {
    content: '📱';
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    font-size: 1.2rem;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.footer-item:nth-child(4):hover {
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.15), rgba(18, 140, 126, 0.1));
    border-color: rgba(37, 211, 102, 0.4);
}

.footer-item:nth-child(4):hover::after {
    opacity: 1;
    transform: scale(1.2) rotate(5deg);
}

.dev-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: white;
    padding: clamp(1rem, 2.5vw, 1.3rem) clamp(1.5rem, 4vw, 2rem);
    border-radius: 35px;
    text-decoration: none;
    font-weight: 800;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: clamp(1.1rem, 3vw, 1.3rem);
    justify-content: center;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    border: 3px solid rgba(255, 255, 255, 0.3);
    min-width: 220px;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
}

.dev-whatsapp::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.dev-whatsapp:hover {
    background: linear-gradient(135deg, #128c7e, #0d6b5f);
    transform: translateY(-5px) scale(1.08);
    color: white;
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.6);
    border-color: rgba(255, 255, 255, 0.5);
}

.dev-whatsapp:hover::before {
    left: 100%;
}

.dev-whatsapp i {
    font-size: clamp(1.3rem, 3.5vw, 1.6rem);
}

.instagram-dev-link {
    color: #e4405f;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0.4rem 1rem;
    border-radius: 25px;
    background: linear-gradient(135deg, rgba(228, 64, 95, 0.15), rgba(193, 53, 132, 0.1));
    border: 2px solid rgba(228, 64, 95, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    letter-spacing: 0.02em;
    position: relative;
    overflow: hidden;
}

.instagram-dev-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.instagram-dev-link:hover {
    color: white;
    background: linear-gradient(135deg, #e4405f, #c13584);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 25px rgba(228, 64, 95, 0.4);
    border-color: rgba(228, 64, 95, 0.6);
}

.instagram-dev-link:hover::before {
    left: 100%;
}

.website-link {
    color: #ff6b35;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0.4rem 1rem;
    border-radius: 25px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.15), rgba(247, 147, 30, 0.1));
    border: 2px solid rgba(255, 107, 53, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    letter-spacing: 0.02em;
    position: relative;
    overflow: hidden;
}

.website-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.website-link:hover {
    color: white;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
    border-color: rgba(255, 107, 53, 0.6);
}

.website-link:hover::before {
    left: 100%;
}

/* Responsive Design - Mobile First Approach */
@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .header {
        padding: var(--spacing-lg) 0;
    }
    
    .logo {
        padding: 0 var(--spacing-lg);
    }
    
    .logo-image {
        max-height: clamp(100px, 30vw, 150px);
        max-width: 90vw;
        width: auto;
    }
    
    .hero {
        padding: 2rem 0;
        min-height: 50vh;
    }
    
    .hero-text h2 {
        font-size: 1.8rem;
        line-height: 1.3;
    }
    
    .hero-text p {
        font-size: 1rem;
    }
    
    .hero-image img {
        max-width: 280px;
        max-height: 180px;
    }
    
    .products {
        padding: 2rem 0;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 0.5rem;
    }
    
    .product-card {
        max-width: 100%;
    }
    
    .product-info {
        padding: 1rem;
    }
    
    .order-btn {
        padding: 1rem 1.8rem;
        font-size: 1.1rem;
        min-height: 60px;
    }
    
    .footer {
        padding: 2rem 0 1rem;
    }
    
    .footer-top {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .footer-description {
        text-align: center;
        min-width: 100%;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 0.5rem;
    }
    
    .footer-bottom-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
        padding: 0 var(--spacing-sm);
    }
    
    .footer-item {
        padding: var(--spacing-sm);
        font-size: 0.8rem;
    }
    
    .footer-item::after {
        font-size: 1rem;
        top: 0.3rem;
        right: 0.3rem;
    }
    
    .dev-whatsapp {
        min-width: 180px;
        padding: 0.9rem 1.3rem;
        font-size: 1rem;
    }
    
    .instagram-dev-link,
    .website-link {
        padding: 0.3rem 0.8rem;
        font-size: 0.8rem;
    }
    
    .info-section {
        padding: 2rem 0;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 0.5rem;
    }
    
    .info-card {
        padding: 1.5rem;
    }
    
    .info-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-btn {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
        border: 4px solid rgba(255, 255, 255, 0.4);
        animation: bounce 1.5s infinite, mobilePulse 2s infinite;
    }
    
    .whatsapp-btn:hover {
        transform: scale(1.25) translateY(-4px);
        box-shadow: 0 12px 35px rgba(37, 211, 102, 0.7);
    }
}

@media (min-width: 481px) and (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .header {
        padding: var(--spacing-md) 0;
    }
    
    .logo {
        padding: 0 var(--spacing-md);
    }
    
    .logo-image {
        max-height: clamp(80px, 12vw, 100px);
    }
    
    .hero {
        padding: 3rem 0;
    }
    
    .hero-text h2 {
        font-size: 2.2rem;
    }
    
    .hero-text p {
        font-size: 1.1rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-top {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .footer-description {
        text-align: center;
        min-width: 100%;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-bottom-content {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-md);
    }
    
    .footer-item {
        padding: var(--spacing-sm);
    }
    
    .dev-whatsapp {
        min-width: 200px;
    }
    
    .info-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .footer-content {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1025px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
    }
    
    .footer-content {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Landscape orientation for mobile devices */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        min-height: 100vh;
        padding: 1rem 0;
    }
    
    .hero-text h2 {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }
    
    .hero-text p {
        font-size: 0.9rem;
    }
    
    .hero-image img {
        max-width: 200px;
        max-height: 120px;
    }
    
    .products {
        padding: 2rem 0;
    }
}

/* High DPI displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .hero-image img,
    .product-image img,
    .footer-image img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Professional focus states for accessibility */
.order-btn:focus,
.whatsapp-btn:focus,
.instagram-link:focus,
.contact-link:focus {
    outline: 3px solid var(--primary-400);
    outline-offset: 2px;
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.3);
}

/* Professional hover states for interactive elements */
.footer-item:hover {
    background: rgba(249, 115, 22, 0.1);
    border-color: rgba(249, 115, 22, 0.3);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
    .product-card:hover {
        transform: none;
    }
    
    .product-card:active {
        transform: scale(0.98);
    }
    
    .order-btn:hover {
        transform: none;
    }
    
    .order-btn:active {
        transform: scale(0.95);
    }
    
    .whatsapp-btn:hover {
        transform: none;
    }
    
    .whatsapp-btn:active {
        transform: scale(0.85);
        box-shadow: 0 5px 15px rgba(37, 211, 102, 0.6);
    }
    
    .whatsapp-btn {
        /* Make WhatsApp button more prominent on touch devices */
        width: 75px;
        height: 75px;
        font-size: 2rem;
        box-shadow: 0 10px 30px rgba(37, 211, 102, 0.6);
        border: 5px solid rgba(255, 255, 255, 0.5);
        animation: bounce 1.2s infinite, mobilePulse 1.8s infinite;
    }
    
    .logo-image:hover {
        transform: none;
    }
    
    .hero-image img:hover {
        transform: none;
    }
}

/* Print styles */
@media print {
    .whatsapp-float,
    .whatsapp-btn {
        display: none;
    }
    
    .hero {
        background: white;
        color: black;
    }
    
    .footer {
        background: white;
        color: black;
    }
}