
/* Custom Styles for Pet Royalty - Light & Clean Edition */

html {
    scroll-behavior: smooth;
}

body {
    background-color: #ffffff;
    color: #1e293b; /* Slate 800 */
}

/* Hero Background - Imagem High-Key e Brilhante */
.vintage-overlay {
    background: linear-gradient(rgba(255,255,255,0.4), rgba(255,255,255,0.7)), url('https://images.unsplash.com/photo-1516734212186-a967f81ad0d7?auto=format&fit=crop&q=80&w=2071');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

/* Animations - Reveal on Scroll */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Transition Delays */
.delay-100 { transition-delay: 100ms; }
.delay-200 { transition-delay: 200ms; }
.delay-300 { transition-delay: 300ms; }
.delay-400 { transition-delay: 400ms; }

/* Navbar scroll effect - Glassmorphism Light */
#navbar {
    transition: all 0.4s ease;
}

.nav-scrolled {
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding-top: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
}

/* Service Cards - Neumorphism Suave */
.service-card {
    background: #ffffff;
    border: 1px solid #f1f5f9;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.04);
    transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px -10px rgba(16, 185, 129, 0.1);
    border-color: #10b981;
}

/* Ícones nos cards */
.service-icon {
    background-color: #f8fafc;
    color: #10b981;
    transition: all 0.4s ease;
}

.service-card:hover .service-icon {
    background-color: #10b981;
    color: #ffffff;
    transform: scale(1.1);
}

/* Social Links Footer */
.social-link {
    width: 2.5rem;
    height: 2.5rem;
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    color: #64748b;
}

.social-link:hover {
    background-color: #10b981;
    color: #ffffff;
    transform: translateY(-3px);
}

/* CTA Buttons */
.cta-button-primary {
    background-color: #10b981;
    color: #ffffff;
    box-shadow: 0 4px 14px 0 rgba(16, 185, 129, 0.39);
}

.cta-button-primary:hover {
    background-color: #059669;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.23);
}

.gallery-img-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

@media (max-width: 640px) {
    .vintage-overlay {
        background-attachment: scroll;
    }
}
