/* Custom styles for DRUGSTORE DROGAMAIS */
body {
    font-family: 'Inter', sans-serif;
}

.brand-red {
    background-color: #e63946;
}

.brand-red-text {
    color: #e63946;
}

.whatsapp-green {
    background-color: #25D366;
}

.whatsapp-green-text {
    color: #25D366;
}

.cta-button {
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* Additional responsive improvements */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
}

/* Smooth scrolling for anchor links */
html {
    scroll-behavior: smooth;
}

/* Loading animation for images */
img {
    transition: opacity 0.3s ease-in-out;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #e63946;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #d62839;
}

