
.whatsapp-float {
    position: fixed;
    bottom: 32px;
    left: 32px;
    z-index: 1000;
    box-shadow: 0 4px 24px rgba(0,0,0,0.18);
    border-radius: 50%;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    transition: transform 0.3s cubic-bezier(0.4,0,0.2,1), box-shadow 0.2s;
    cursor: pointer;
}
.whatsapp-float:hover {
    box-shadow: 0 8px 32px rgba(0,0,0,0.28);
    transform: scale(1.08);
}

.hero-buttons .btn.btn-primary {
    color: #111 !important;
}
/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colors (HSL format) */
    --background: hsl(222, 27%, 8%);
    --foreground: hsl(220, 20%, 95%);
    --card: hsl(222, 20%, 12%);
    --card-foreground: hsl(220, 20%, 95%);
        --primary: hsl(45, 100%, 60%);
    --primary-foreground: hsl(220, 20%, 95%);
    --secondary: hsl(222, 15%, 18%);
    --secondary-foreground: hsl(220, 20%, 95%);
    --muted: hsl(222, 15%, 15%);
    --muted-foreground: hsl(220, 10%, 65%);
    --accent: hsl(265, 100%, 70%);
    --accent-foreground: hsl(220, 20%, 95%);
    --border: hsl(222, 15%, 20%);
    --input: hsl(222, 15%, 18%);
        --ring: hsl(45, 100%, 60%);
    
    /* Gradients */
        --hero-gradient: linear-gradient(135deg, hsl(45, 100%, 60%) 0%, hsl(55, 100%, 65%) 50%, hsl(65, 100%, 70%) 100%);
    --card-gradient: linear-gradient(145deg, hsl(222, 20%, 12%) 0%, hsl(222, 25%, 15%) 100%);
    --offer-gradient: linear-gradient(135deg, hsl(45, 100%, 60%) 0%, hsl(35, 100%, 55%) 100%);
    
    /* Shadows */
        --shadow-glow: 0 0 40px hsl(45, 100%, 60%, 0.3);
    --shadow-card: 0 8px 32px hsl(222, 27%, 8%, 0.4);
    --shadow-elevated: 0 20px 60px hsl(222, 27%, 8%, 0.6);
    
    /* Animations */
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    
    --radius: 0.75rem;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background-color: var(--background);
    color: var(--foreground);
    line-height: 1.6;
}

html {
    scroll-behavior: smooth;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/files/data/axc.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--background) 0%, transparent 50%, var(--background) 100%);
    z-index: -1;
}

.floating-element {
    position: absolute;
    border-radius: 50%;
    background: var(--hero-gradient);
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.floating-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.floating-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.floating-3 {
    width: 100px;
    height: 100px;
    bottom: 20%;
    left: 70%;
    animation-delay: 4s;
}

.hero-content {
    text-align: center;
    z-index: 1;
    max-width: 800px;
    padding: 0 2rem;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 800;
    line-height: 1;
    margin-bottom: 1.5rem;
    background: var(--hero-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fade-in 1s ease-out;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.25rem);
    color: var(--muted-foreground);
    margin-bottom: 2.5rem;
    animation: fade-in 1s ease-out 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fade-in 1s ease-out 0.4s both;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: pulse 2s infinite;
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid var(--foreground);
    border-bottom: 2px solid var(--foreground);
    transform: rotate(45deg);
    animation: bounce 2s infinite;
}

/* Buttons */
.btn {
    padding: 0.75rem 2rem;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: var(--hero-gradient);
    color: var(--primary-foreground);
    border: 2px solid transparent;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.btn-secondary {
    background: transparent;
    color: var(--foreground);
    border: 2px solid var(--border);
}

.btn-secondary:hover {
    background: var(--secondary);
    border-color: var(--primary);
}

.btn-outline {
    background: transparent;
    color: var(--foreground);
    border: 1px solid var(--border);
}

.btn-outline:hover {
    background: var(--secondary);
    border-color: var(--primary);
}

.btn-whatsapp {
    background: hsl(142, 70%, 49%);
    color: white;
    border: none;
}

.btn-whatsapp:hover {
    background: hsl(142, 70%, 45%);
}

/* Sections */
section {
    padding: 5rem 0;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    background: var(--hero-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-description {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    text-align: center;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* About Section */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.feature-card {
    background: var(--card-gradient);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    text-align: center;
    transition: var(--transition-smooth);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-elevated);
    border-color: hsl(var(--primary) / 0.5);
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--hero-gradient);
    border-radius: 50%;
    color: var(--primary-foreground);
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--foreground);
}

.feature-card p {
    color: var(--muted-foreground);
}

.mission-section {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.mission-section h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--foreground);
}

.mission-section p {
    font-size: 1.125rem;
    color: var(--muted-foreground);
}

/* Products Section */
.category-section {
    margin-bottom: 4rem;
}

.category-title {
    font-size: 2rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--foreground);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.product-card {
    background: var(--card-gradient);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition-smooth);
}

.product-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-elevated);
    border-color: hsl(var(--primary) / 0.5);
}

.product-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.product-content {
    padding: 1.5rem;
}

.product-name {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--foreground);
}

.product-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: hsl(45, 100%, 60%);
    margin-bottom: 1rem;
}

.product-description {
    color: var(--muted-foreground);
    margin-bottom: 1.5rem;
}

/* Offers Section */
.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.offer-card {
    position: relative;
    padding: 2rem;
    border-radius: var(--radius);
    text-align: center;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.offer-1 {
    background: linear-gradient(135deg, hsl(45, 100%, 60%) 0%, hsl(55, 100%, 65%) 100%);
}

.offer-2 {
    background: linear-gradient(135deg, hsl(142, 70%, 49%) 0%, hsl(162, 70%, 49%) 100%);
}

.offer-3 {
    background: linear-gradient(135deg, hsl(45, 100%, 60%) 0%, hsl(35, 100%, 55%) 100%);
}

.offer-card:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: var(--shadow-elevated);
}

.offer-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 700;
    backdrop-filter: blur(10px);
}

.offer-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    backdrop-filter: blur(10px);
}

.offer-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.offer-card p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.offer-card .btn {
    background: white;
    color: var(--background);
    border: none;
}

.offer-card .btn:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

/* Newsletter */
.newsletter-section {
    text-align: center;
    background: var(--card-gradient);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 3rem 2rem;
}

.newsletter-section h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--foreground);
}

.newsletter-section p {
    color: var(--muted-foreground);
    margin-bottom: 2rem;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 400px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.newsletter-input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--input);
    color: var(--foreground);
    font-size: 1rem;
    min-width: 200px;
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 2px hsl(var(--primary) / 0.2);
}

/* Footer */
.footer {
    background: var(--card);
    border-top: 1px solid var(--border);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--foreground);
}

.footer-brand {
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--hero-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-section p {
    color: var(--muted-foreground);
    margin-bottom: 1rem;
}

.support-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: hsl(45, 100%, 60%);
    font-weight: 500;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: var(--muted-foreground);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--muted-foreground);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer-links a:hover {
    color: var(--primary);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--secondary);
    border-radius: 50%;
    color: var(--foreground);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.social-link:hover {
    background: var(--primary);
    transform: translateY(-2px);
}

.community-benefits {
    font-size: 0.875rem;
}

.benefit-item {
    color: var(--muted-foreground);
    margin-bottom: 0.25rem;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: var(--muted-foreground);
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-bottom-links a {
    color: var(--muted-foreground);
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition-smooth);
}

.footer-bottom-links a:hover {
    color: var(--primary);
}

/* Animations */
@keyframes fade-in {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) rotate(45deg);
    }
    40% {
        transform: translateY(-10px) rotate(45deg);
    }
    60% {
        transform: translateY(-5px) rotate(45deg);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-input {
        min-width: auto;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    section {
        padding: 3rem 0;
    }
    
    .container {
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .hero-content {
        padding: 0 1rem;
    }
    
    .products-grid,
    .offers-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}
