/* ============================================
   TAINÁ CAMPOS - VETERINÁRIA HOME CARE
   Custom Styles
   ============================================ */

/* Base Styles */
* {
    font-family: 'Nunito', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
}

/* Organic Blob Shapes */
.blob-1 {
    border-radius: 60% 40% 70% 30% / 50% 60% 40% 50%;
}

.blob-2 {
    border-radius: 40% 60% 30% 70% / 60% 40% 60% 40%;
}

.blob-3 {
    border-radius: 70% 30% 50% 50% / 40% 60% 40% 60%;
}

/* Playful Animations */
@keyframes bounce-subtle {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.bounce-hover:hover {
    animation: bounce-subtle 0.6s ease-in-out;
}

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

.float-animation {
    animation: float 3s ease-in-out infinite;
}

/* Hover Lift Effect */
.card-lift {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-lift:hover {
    transform: translateY(-12px) rotate(-1deg);
    box-shadow: 0 25px 50px rgba(46, 168, 164, 0.2);
}

/* WhatsApp Float Button */
@keyframes pulse-ring {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.whatsapp-float {
    animation: pulse-ring 2s infinite;
}

/* Accordion */
.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out;
}

.accordion-content.active {
    max-height: 500px;
}

/* Gradient Text */
.gradient-text {
    background: linear-gradient(135deg, #2EA8A4 0%, #B01B55 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Scroll Reveal Animation */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-up.revealed {
    opacity: 1;
    transform: translateY(0);
}
