/* ============================================================
   GATIL MONTEIRO - Premium Dark Theme
   Institutional Cattery Website
   ============================================================ */

/* ----------------------------------------------------------
   1. RESET & BASE
   ---------------------------------------------------------- */

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: #0f0f0f;
    color: #ffffff;
    font-size: 16px;
    line-height: 1.7;
    overflow-x: hidden;
}

::selection {
    background-color: #c9a84c;
    color: #0f0f0f;
}

::-moz-selection {
    background-color: #c9a84c;
    color: #0f0f0f;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

ul, ol {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    outline: none;
    background: none;
}

/* ----------------------------------------------------------
   2. TYPOGRAPHY
   ---------------------------------------------------------- */

h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #ffffff;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
}

h4 {
    font-size: clamp(1rem, 2vw, 1.25rem);
}

p {
    color: #999999;
    font-size: 1rem;
    line-height: 1.8;
    font-weight: 400;
}

.section-title {
    text-align: center;
    margin-bottom: 64px;
    position: relative;
    padding-bottom: 24px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #c9a84c, transparent);
    border-radius: 2px;
}

.section-title span {
    color: #c9a84c;
}

.section-subtitle {
    color: #999999;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 16px auto 0;
    text-align: center;
}

/* ----------------------------------------------------------
   3. CONTAINER
   ---------------------------------------------------------- */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

/* ----------------------------------------------------------
   4. NAVIGATION / HEADER
   ---------------------------------------------------------- */

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    transition: background-color 0.4s ease, box-shadow 0.4s ease, backdrop-filter 0.4s ease, padding 0.4s ease;
    padding: 20px 0;
}

.header.scrolled {
    background: rgba(15, 15, 15, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
    padding: 14px 0;
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    z-index: 1001;
}

.logo-text {
    font-size: 1.3rem;
    font-weight: 300;
    letter-spacing: 0.25em;
    color: #ffffff;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.logo-accent {
    font-weight: 700;
    color: #c9a84c;
}

.header.scrolled .logo-text {
    font-size: 1.1rem;
}

/* Header .logo-img styles removed - image logo used only in footer */

.accent {
    color: #c9a84c;
}

.nav {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: #999999;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    position: relative;
    padding: 4px 0;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #c9a84c;
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: #ffffff;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link.active {
    color: #c9a84c;
}

.nav-link.active::after {
    width: 100%;
}

/* Hamburger */

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    padding: 4px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: #ffffff;
    transition: transform 0.3s ease, opacity 0.3s ease;
    border-radius: 1px;
    transform-origin: center;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

/* Mobile Nav */

.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    background: rgba(15, 15, 15, 0.98);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.mobile-nav.active {
    display: flex;
    opacity: 1;
    pointer-events: all;
}

.mobile-nav .nav-link {
    font-size: 1.25rem;
    color: #ffffff;
}

.mobile-nav .nav-link:hover {
    color: #c9a84c;
}

/* Logo in mobile nav */
.mobile-nav .logo-img {
    height: 60px;
    margin-bottom: 20px;
}

.mobile-nav-logo {
    display: block;
    text-align: center;
    margin-bottom: 24px;
}

.mobile-nav-logo img {
    width: 100px;
    height: 100px;
    filter: drop-shadow(0 2px 12px rgba(201, 168, 76, 0.3));
}

/* ----------------------------------------------------------
   5. HERO SECTION
   ---------------------------------------------------------- */

.hero {
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/assets/images/site/hero_bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(15, 15, 15, 0.7) 0%,
        rgba(15, 15, 15, 0.5) 40%,
        rgba(15, 15, 15, 0.7) 70%,
        rgba(15, 15, 15, 1) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 24px;
}

/* Hero Logo */
.hero-logo {
    width: 180px;
    height: 180px;
    margin-bottom: 32px;
    animation: heroLogoIn 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 4px 32px rgba(201, 168, 76, 0.25));
    transition: transform 0.5s ease, filter 0.5s ease;
}

.hero-logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 8px 40px rgba(201, 168, 76, 0.4));
}

@keyframes heroLogoIn {
    0% {
        opacity: 0;
        transform: scale(0.8) translateY(20px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.hero-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #c9a84c;
    background: rgba(201, 168, 76, 0.1);
    border: 1px solid rgba(201, 168, 76, 0.25);
    padding: 8px 20px;
    border-radius: 100px;
    margin-bottom: 32px;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-title .accent {
    color: #c9a84c;
    display: inline;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: #999999;
    max-width: 560px;
    margin: 0 auto 48px;
    line-height: 1.8;
    font-weight: 400;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color: #c9a84c;
    color: #0f0f0f;
    padding: 18px 40px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 24px rgba(201, 168, 76, 0.2);
}

.hero-cta:hover {
    background-color: #d4b05c;
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(201, 168, 76, 0.3);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: #666666;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    animation: bounce 2s ease-in-out infinite;
}

.hero-scroll-indicator::after {
    content: '';
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, #666666, transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-12px);
    }
    60% {
        transform: translateX(-50%) translateY(-6px);
    }
}

/* ----------------------------------------------------------
   6. SECTIONS BASE
   ---------------------------------------------------------- */

section {
    padding: 120px 0;
    position: relative;
}

/* ----------------------------------------------------------
   7. KITTENS / FILHOTES SECTION
   ---------------------------------------------------------- */

.filhotes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

/* ----------------------------------------------------------
   8. CAT CARDS
   ---------------------------------------------------------- */

.cat-card {
    background-color: #1a1a1a;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #2a2a2a;
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
    position: relative;
    cursor: pointer;
}

.cat-card:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    border-color: rgba(201, 168, 76, 0.2);
}

.cat-card-image {
    position: relative;
    width: 100%;
    height: 320px;
    overflow: hidden;
}

.cat-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.cat-card:hover .cat-card-image img {
    transform: scale(1.1);
}

.cat-card-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(180deg, rgba(0,0,0,0.4) 0%, transparent 100%);
    z-index: 2;
    pointer-events: none;
}

.cat-card-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(180deg, transparent, rgba(26, 26, 26, 0.95));
    z-index: 1;
    pointer-events: none;
}

.cat-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    z-index: 2;
}

.cat-card-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 4px;
}

.cat-card-details {
    font-size: 0.85rem;
    color: #999999;
    display: flex;
    gap: 12px;
    align-items: center;
}

.cat-card-details span {
    display: flex;
    align-items: center;
    gap: 4px;
}

/* Status Badges - More visible */

.status-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    z-index: 5;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 2px 12px rgba(0,0,0,0.3);
}

.status-badge.disponivel {
    background: rgba(34, 197, 94, 0.95);
    color: #ffffff;
    border: 1px solid rgba(255,255,255,0.2);
}

.status-badge.reservado {
    background: rgba(245, 158, 11, 0.95);
    color: #ffffff;
    border: 1px solid rgba(255,255,255,0.2);
}

.status-badge.vendido {
    background: rgba(239, 68, 68, 0.95);
    color: #ffffff;
    border: 1px solid rgba(255,255,255,0.2);
}

/* Cat Card Info Area */

.cat-card-info {
    padding: 20px 24px;
}

.cat-card-breed {
    font-size: 0.8rem;
    color: #c9a84c;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
    margin-bottom: 8px;
}

.cat-card-price {
    font-size: 0.9rem;
    color: #666666;
    margin-bottom: 16px;
}

.cat-card .btn-whatsapp {
    width: 100%;
    justify-content: center;
}

/* ----------------------------------------------------------
   9. DIFERENCIAIS SECTION
   ---------------------------------------------------------- */

.diferenciais-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.diferencial-card {
    background-color: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 16px;
    padding: 48px 36px;
    text-align: center;
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.diferencial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border-color: rgba(201, 168, 76, 0.2);
}

.diferencial-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: rgba(201, 168, 76, 0.08);
    color: #c9a84c;
    font-size: 1.75rem;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.diferencial-card:hover .diferencial-icon {
    background: rgba(201, 168, 76, 0.15);
    transform: scale(1.1);
}

.diferencial-card h3 {
    margin-bottom: 12px;
    font-size: 1.2rem;
}

.diferencial-card p {
    font-size: 0.9rem;
    line-height: 1.7;
}

/* ----------------------------------------------------------
   10. SOBRE SECTION
   ---------------------------------------------------------- */

.sobre-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.sobre-text h2 {
    margin-bottom: 24px;
}

.sobre-text .accent-line,
.accent-line {
    width: 60px;
    height: 3px;
    background-color: #c9a84c;
    border-radius: 2px;
    margin-bottom: 32px;
}

.sobre-text p {
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.sobre-text p:last-of-type {
    margin-bottom: 32px;
}

.sobre-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.sobre-stat {
    text-align: center;
}

.sobre-stat .number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #c9a84c;
    line-height: 1;
    margin-bottom: 8px;
    display: block;
}

.sobre-stat .label {
    font-size: 0.8rem;
    color: #666666;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.sobre-image {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
}

.sobre-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}

.sobre-image::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 2px solid rgba(201, 168, 76, 0.2);
    border-radius: 16px;
    z-index: -1;
}

/* ----------------------------------------------------------
   11. CONTATO SECTION - Premium
   ---------------------------------------------------------- */

.contato-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.contato-card {
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 16px;
    padding: 40px 32px;
    text-align: center;
    transition: all 0.4s ease;
}

.contato-card:hover {
    border-color: #c9a84c;
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}

.contato-card-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.contato-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #ffffff;
}

.contato-card p {
    font-size: 0.9rem;
    color: #999;
    margin-bottom: 16px;
    line-height: 1.6;
}

.contato-detail {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: #c9a84c;
    margin-bottom: 24px;
}

.btn-instagram {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: linear-gradient(135deg, #833AB4, #E1306C, #F77737);
    color: #ffffff;
    border: none;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-instagram:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(225, 48, 108, 0.3);
}

/* ============================================================
   FOOTER - Premium
   ============================================================ */

.footer {
    background: #0a0a0a;
    border-top: 1px solid #1a1a1a;
    padding: 100px 0 0;
}

.footer-top {
    padding-bottom: 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
    gap: 48px;
}

/* Logo & Brand */
.footer-brand {
    text-align: left;
}

.footer-logo-link {
    display: inline-block;
    margin-bottom: 20px;
}

.footer-logo-img {
    height: 200px;
    width: auto;
    filter: brightness(0.95);
    transition: all 0.4s ease;
}

.footer-logo-img:hover {
    filter: brightness(1.1);
    transform: scale(1.03);
}

.footer-tagline {
    font-size: 0.9rem;
    color: #888;
    line-height: 1.7;
    max-width: 380px;
    margin-bottom: 24px;
}

/* Social Icons */
.footer-social {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    border: 1px solid #2a2a2a;
    color: #888;
    transition: all 0.3s ease;
}

.social-link:hover {
    color: #c9a84c;
    border-color: #c9a84c;
    background: rgba(201, 168, 76, 0.08);
    transform: translateY(-2px);
}

/* Footer Links */
.footer-links {
    padding-top: 8px;
}

.footer-links h4 {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #c9a84c;
    margin-bottom: 24px;
}

.footer-links a {
    display: block;
    color: #888;
    font-size: 0.9rem;
    padding: 7px 0;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #ffffff;
    padding-left: 6px;
}

/* Schedule */
.footer-schedule {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #1a1a1a;
}

.footer-schedule span {
    display: block;
    font-size: 0.85rem;
    color: #666;
    line-height: 1.8;
}

/* Quality Items */
.quality-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 0;
}

.quality-item span {
    font-size: 0.88rem;
    color: #888;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid #1a1a1a;
    padding: 28px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copyright {
    font-size: 0.82rem;
    color: #555;
}

.footer-credits {
    font-size: 0.85rem;
    color: #555;
}

.credits-link {
    color: #c9a84c;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.credits-link:hover {
    color: #d4b05c;
}

/* Footer Responsive */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    .footer-logo-img { height: 160px; }
    .footer-brand { text-align: center; }
    .footer-tagline { margin: 0 auto 24px; }
    .footer-social { justify-content: center; }
}

@media (max-width: 768px) {
    .footer { padding: 60px 0 0; }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    .footer-brand { text-align: center; }
    .footer-tagline { margin: 0 auto 24px; }
    .footer-social { justify-content: center; }
    .footer-links a:hover { padding-left: 0; }
    .quality-item { justify-content: center; }
    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
    .footer-logo-img { height: 140px; }
}

@media (max-width: 480px) {
    .footer { padding: 48px 0 0; }
    .footer-logo-img { height: 120px; }
}

/* ----------------------------------------------------------
   13. BUTTONS
   ---------------------------------------------------------- */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 14px 32px;
    border-radius: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
    letter-spacing: 0.01em;
}

.btn-primary {
    background-color: #c9a84c;
    color: #0f0f0f;
    box-shadow: 0 4px 20px rgba(201, 168, 76, 0.15);
}

.btn-primary:hover {
    background-color: #d4b05c;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(201, 168, 76, 0.25);
}

.btn-secondary {
    background: transparent;
    color: #c9a84c;
    border: 1px solid #c9a84c;
}

.btn-secondary:hover {
    background-color: rgba(201, 168, 76, 0.08);
    transform: translateY(-2px);
}

.btn-whatsapp {
    background-color: #25D366;
    color: #ffffff;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.15);
}

.btn-whatsapp:hover {
    background-color: #20bd5a;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.25);
}

/* ----------------------------------------------------------
   14. FLOATING WHATSAPP BUTTON
   ---------------------------------------------------------- */

.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 900;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #25D366;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 24px rgba(37, 211, 102, 0.35);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
    cursor: pointer;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 36px rgba(37, 211, 102, 0.45);
    background-color: #20bd5a;
}

.whatsapp-float svg {
    width: 28px;
    height: 28px;
}

/* ----------------------------------------------------------
   15. ANIMATIONS
   ---------------------------------------------------------- */

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* Subtle float for decorative elements */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* ----------------------------------------------------------
   16. CAROUSEL
   ---------------------------------------------------------- */

/* Carousel */
#filhotes {
    overflow: visible;
}

.carousel-container {
    position: relative;
    overflow: visible;
    margin: 0 auto;
    padding: 0 56px;
}

.carousel-track-container {
    overflow: hidden;
    border-radius: 0;
    width: 100%;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 24px;
    padding: 8px 0;
}

.carousel-track .cat-card {
    min-width: calc((100% - 48px) / 3);
    max-width: calc((100% - 48px) / 3);
    flex: 0 0 calc((100% - 48px) / 3);
    box-sizing: border-box;
}

.carousel-prev,
.carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(201, 168, 76, 0.9);
    color: #0f0f0f;
    border: none;
    font-size: 1.5rem;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}

.carousel-prev { left: 0; }
.carousel-next { right: 0; }

.carousel-prev:hover,
.carousel-next:hover {
    background: #c9a84c;
    transform: translateY(-50%) scale(1.1);
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 32px;
    position: relative;
    z-index: 5;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #333;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    background: #c9a84c;
    transform: scale(1.2);
}

/* ----------------------------------------------------------
   17. PUBLIC GALLERY
   ---------------------------------------------------------- */

/* Public Gallery */
.gallery-grid-public {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    color: #fff;
    font-size: 0.9rem;
    font-weight: 500;
}

/* ----------------------------------------------------------
   18. FILHOTES PAGE
   ---------------------------------------------------------- */

/* Filhotes Page */
.filhotes-hero {
    min-height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(180deg, #0f0f0f, #141414);
    padding: 120px 24px 60px;
}

.filhotes-filters {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
    padding: 32px 24px;
    background: #141414;
    border-bottom: 1px solid #2a2a2a;
}

.filhotes-filters input,
.filhotes-filters select {
    padding: 10px 16px;
    font-size: 0.9rem;
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 8px;
    color: #fff;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.filhotes-filters input:focus,
.filhotes-filters select:focus {
    border-color: #c9a84c;
    outline: none;
}

.filhotes-filters .btn {
    padding: 10px 24px;
}

.filhotes-results {
    padding: 60px 0;
}

/* Ver Mais Button */
.btn-ver-mais {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 40px;
    background: transparent;
    border: 2px solid #c9a84c;
    color: #c9a84c;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-ver-mais:hover {
    background: #c9a84c;
    color: #0f0f0f;
}

/* ----------------------------------------------------------
   19. RESPONSIVE
   ---------------------------------------------------------- */

/* Tablet landscape */
@media (max-width: 1024px) {
    .filhotes-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .diferenciais-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .sobre-grid {
        gap: 48px;
    }

    .carousel-track .cat-card {
        min-width: calc((100% - 24px) / 2);
        max-width: calc((100% - 24px) / 2);
        flex: 0 0 calc((100% - 24px) / 2);
    }

    .contato-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid-public { grid-template-columns: repeat(3, 1fr); }
}

/* Tablet portrait / Mobile */
@media (max-width: 768px) {
    section {
        padding: 80px 0;
    }

    .section-title {
        margin-bottom: 48px;
    }

    .nav {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .filhotes-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .diferenciais-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .contato-grid {
        grid-template-columns: 1fr;
    }

    .contato-card {
        padding: 32px 24px;
    }

    .sobre-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .sobre-image {
        order: -1;
    }

    .sobre-image::before {
        display: none;
    }

    .sobre-stats {
        justify-content: center;
    }

    .hero-title {
        font-size: clamp(2rem, 8vw, 3.5rem);
    }

    .hero-logo {
        width: 140px;
        height: 140px;
        margin-bottom: 24px;
    }

    .hero-cta {
        padding: 16px 32px;
    }

    .hero-label {
        font-size: 0.65rem;
        padding: 6px 16px;
        margin-bottom: 24px;
    }

    .hero-scroll-indicator {
        bottom: 24px;
    }

    .cat-card-image {
        height: 260px;
    }

    .carousel-track .cat-card {
        min-width: 100%;
        max-width: 100%;
        flex: 0 0 100%;
    }
    .carousel-container { padding: 0 44px; }
    .carousel-prev, .carousel-next { width: 36px; height: 36px; font-size: 1.2rem; }

    .gallery-grid-public { grid-template-columns: repeat(2, 1fr); }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 54px;
        height: 54px;
    }

    .whatsapp-float svg {
        width: 24px;
        height: 24px;
    }
}

/* Small phones */
@media (max-width: 480px) {
    body {
        font-size: 15px;
    }

    .container {
        padding: 0 16px;
    }

    section {
        padding: 64px 0;
    }

    .section-title {
        margin-bottom: 36px;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    h3 {
        font-size: 1.15rem;
    }

    .hero-logo {
        width: 120px;
        height: 120px;
        margin-bottom: 20px;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .hero-cta {
        padding: 14px 28px;
        font-size: 0.9rem;
        width: 100%;
        justify-content: center;
    }

    .diferencial-card {
        padding: 32px 24px;
    }

    .sobre-stats {
        gap: 24px;
        flex-wrap: wrap;
    }

    .sobre-stat .number {
        font-size: 2rem;
    }

    .btn {
        padding: 12px 24px;
        font-size: 0.85rem;
        width: 100%;
        justify-content: center;
    }

    .cat-card-image {
        height: 220px;
    }

    .logo {
        font-size: 1.25rem;
    }

    .whatsapp-float {
        bottom: 16px;
        right: 16px;
        width: 50px;
        height: 50px;
    }

    .gallery-grid-public { grid-template-columns: 1fr; }
}

/* ----------------------------------------------------------
   20. UTILITIES
   ---------------------------------------------------------- */

.text-gold { color: #c9a84c; }
.text-white { color: #ffffff; }
.text-muted { color: #666666; }
.text-secondary { color: #999999; }
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
.mb-5 { margin-bottom: 48px; }
.mb-6 { margin-bottom: 64px; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mt-5 { margin-top: 48px; }
.mt-6 { margin-top: 64px; }

.mx-auto { margin-left: auto; margin-right: auto; }

.d-flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }

.hidden { display: none; }
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ----------------------------------------------------------
   21. IMAGE PLACEHOLDERS
   ---------------------------------------------------------- */

.placeholder-image {
    background-color: #1a1a1a;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.placeholder-image::before {
    content: '';
    position: absolute;
    width: 120px;
    height: 120px;
    opacity: 0.06;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath d='M50 25c-8 0-14 6-14 14 0 5 2 9 6 12l-2 4c-1 2 0 4 2 5h16c2-1 3-3 2-5l-2-4c4-3 6-7 6-12 0-8-6-14-14-14zm-18 50c0-3 2-5 5-5h26c3 0 5 2 5 5v3c0 1-1 2-2 2H34c-1 0-2-1-2-2v-3z' fill='%23c9a84c'/%3E%3Ccircle cx='42' cy='36' r='3' fill='%23c9a84c'/%3E%3Ccircle cx='58' cy='36' r='3' fill='%23c9a84c'/%3E%3Cpath d='M20 20l8 12M80 20l-8 12' stroke='%23c9a84c' stroke-width='3' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.placeholder-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 20px,
        rgba(201, 168, 76, 0.015) 20px,
        rgba(201, 168, 76, 0.015) 21px
    );
}

/* ----------------------------------------------------------
   22. SCROLLBAR
   ---------------------------------------------------------- */

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #0f0f0f;
}

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

::-webkit-scrollbar-thumb:hover {
    background: #3a3a3a;
}

/* Firefox */
html {
    scrollbar-width: thin;
    scrollbar-color: #2a2a2a #0f0f0f;
}

/* ----------------------------------------------------------
   Cat card subtle branding
   ---------------------------------------------------------- */

.cat-card-info {
    position: relative;
}

.cat-card-info::after {
    content: '';
    position: absolute;
    bottom: 8px;
    right: 8px;
    width: 24px;
    height: 24px;
    background: url('/assets/images/logo/logo.png') center/contain no-repeat;
    opacity: 0.08;
    pointer-events: none;
}
