@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

body {
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
}

.hero-gradient {
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 50%, #9333ea 100%);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.process-animation {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.chaos-lines {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%239C92AC' fill-opacity='0.2' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 1;
    transition: opacity 1s ease-in-out;
}

.order-lines {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='20' viewBox='0 0 100 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M21.5 6c-2.8 0-5 2.2-5 5s2.2 5 5 5 5-2.2 5-5-2.2-5-5-5zm0 8.5c-2 0-3.5-1.6-3.5-3.5S19.6 7 21.5 7 25 8.6 25 10.5 23.4 14.5 21.5 14.5zm15-8.5c-2.8 0-5 2.2-5 5s2.2 5 5 5 5-2.2 5-5-2.2-5-5-5zm0 8.5c-2 0-3.5-1.6-3.5-3.5S34.6 7 36.5 7 40 8.6 40 10.5 38.4 14.5 36.5 14.5zm15-8.5c-2.8 0-5 2.2-5 5s2.2 5 5 5 5-2.2 5-5-2.2-5-5-5zm0 8.5c-2 0-3.5-1.6-3.5-3.5S49.6 7 51.5 7 55 8.6 55 10.5 53.4 14.5 51.5 14.5zm15-8.5c-2.8 0-5 2.2-5 5s2.2 5 5 5 5-2.2 5-5-2.2-5-5-5zm0 8.5c-2 0-3.5-1.6-3.5-3.5S64.6 7 66.5 7 70 8.6 70 10.5 68.4 14.5 66.5 14.5zm15-8.5c-2.8 0-5 2.2-5 5s2.2 5 5 5 5-2.2 5-5-2.2-5-5-5zm0 8.5c-2 0-3.5-1.6-3.5-3.5S79.6 7 81.5 7 85 8.6 85 10.5 83.4 14.5 81.5 14.5z' fill='%234F46E5' fill-opacity='0.2' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.process-animation:hover .chaos-lines {
    opacity: 0;
}

.process-animation:hover .order-lines {
    opacity: 1;
}

.price-card:hover {
    transform: scale(1.03);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.nav-link {
    position: relative;
}

.nav-link:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: #7c3aed;
    transition: width 0.3s ease;
}

.nav-link:hover:after {
    width: 100%;
}

.active-nav:after {
    width: 100%;
}

/* Animation for the hero section */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.floating {
    animation: float 6s ease-in-out infinite;
}

/* Logo optimizations */
.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-image {
    height: 6rem;
    width: auto;
    max-width: 6rem;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.logo-image:hover {
    transform: scale(1.05);
}

@media (min-width: 768px) {
    .logo-image {
        height: 8rem;
        max-width: 8rem;
    }
}

@media (min-width: 1024px) {
    .logo-image {
        height: 10rem;
        max-width: 10rem;
    }
}

@media (min-width: 1280px) {
    .logo-image {
        height: 12rem;
        max-width: 12rem;
    }
}

/* Responsive improvements */
@media (max-width: 768px) {
    .hero-gradient {
        padding-top: 2rem;
        padding-bottom: 2rem;
    }
    
    .floating {
        animation-duration: 4s;
    }
}

/* Accessibility improvements */
.nav-link:focus,
button:focus,
input:focus,
textarea:focus {
    outline: 2px solid #7c3aed;
    outline-offset: 2px;
}

/* Performance optimizations */
.feature-card,
.price-card {
    will-change: transform;
}

/* WhatsApp button styles */
.whatsapp-float {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 50;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    padding: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #22C55E;
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Footer logo adjustments */
footer .logo-container {
    justify-content: flex-start;
}

footer .logo-image {
    height: 7.5rem;
    max-width: 7.5rem;
}

@media (min-width: 768px) {
    footer .logo-image {
        height: 9rem;
        max-width: 9rem;
    }
} 