:root {
    --primary-color: #007bff;
    --secondary-color: #333;
    --hover-color: #0056b3;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f8f9fa;
    color: var(--secondary-color);
    margin: 0;
    padding: 0;
}

.container {
    padding: 20px;
}

.social-icons {
    
    margin-top: 20px;
}

.social-icons a {
    font-size: 1rem;
    margin: 0 10px;
    color: var(--secondary-color);
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: var(--primary-color);
}

.logo-animation {
    animation: spin 3s infinite;
    border-radius: 50%;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.text-animation {
    
    animation: pulse 1.5s infinite;
    font-size: 2rem;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

.footer {
    background-color: var(--secondary-color);
    color: #fff;
    padding: 10px 0;
    position: fixed;
    bottom: 0;
    width: 100%;
}

.footer .social-icons a {
    color: #fff;
    font-size: 1.2rem;
}

.footer p {
    margin: 0;
    font-size: 1rem; /* Texto ligeramente más grande */
}
/* Media Queries */
@media (max-width: 768px) {
    .social-icons {
        margin-top: 10px;
    }

    .card {
        margin-bottom: 10px;
    }
}
.logo1{
    border-radius: 50%;
    width: 200px;
    height:200px ;
}
.neto{
    font-size: 1.2rem;
    text-decoration: none;
}

.fixed-cart-button {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 1000;
}
