/*
Theme Name: Fresh Bite Pets Theme (Completo)
Author: Fredy
Description: Um tema personalizado para a Fresh Bite Pets, contendo todo o conteúdo estático original.
Version: 1.1
*/

/* Custom Styles & New Color Palette */
:root {
    --color-primary: #000000;
    --color-secondary: #6435C1;
    --color-accent: #10B981;
    --color-background: #BFFFB6;
    --color-text-dark: #1F2937;
    --color-text-light: #4B5563;
}

body {
    font-family: 'Nunito', sans-serif;
    background-color: var(--color-background);
    color: var(--color-text-dark);
}

h1, h2, h3, h4 {
    color: var(--color-secondary);
}

html {
    scroll-behavior: smooth;
}

.nav-link {
    @apply relative font-medium text-text-light after:content-[''] after:absolute after:left-0 after:bottom-0 after:w-0 after:h-0.5 after:bg-primary after:transition-all after:duration-300 hover:after:w-full;
}

.cta-button {
     @apply bg-secondary text-white font-bold py-3 px-8 rounded-full hover:bg-purple-700 transition-all duration-300 transform hover:scale-105 shadow-lg;
}

.section-title {
    @apply text-3xl md:text-4xl font-bold mb-4 text-center;
}

.section-subtitle {
    @apply text-lg text-text-light mb-12 text-center max-w-3xl mx-auto;
}
