/* 
   Modern TK2 Bullies Theme 
   Futuristic, Dark Mode, High Contrast
*/

:root {
    --primary-color: #2ec94f;
    /* Neon Green */
    --secondary-color: #FFD700;
    /* Gold */
    --bg-dark: #0b0b0b;
    --bg-card: #141414;
    --text-main: #e4e4e4;
    --text-muted: #a0a0a0;
    --font-heading: 'Orbitron', sans-serif;
    --font-body: 'Montserrat', sans-serif;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    cursor: none;
    /* Custom cursor */
}

/* Custom Cursor */
.cursor-dot,
.cursor-outline {
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 9999;
    pointer-events: none;
}

.cursor-dot {
    width: 8px;
    height: 8px;
    background-color: var(--primary-color);
}

.cursor-outline {
    width: 40px;
    height: 40px;
    border: 2px solid var(--primary-color);
    transition: width 0.2s, height 0.2s, background-color 0.2s;
}

/* Typography */
h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 2px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Utility Classes */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 100px 0;
}

.text-gradient {
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.highlight {
    color: var(--secondary-color);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    background: rgba(11, 11, 11, 0.8);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid var(--glass-border);
    transition: var(--transition);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 50px;
}

.nav-menu {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 600;
    position: relative;
    padding: 5px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

.btn-glow {
    padding: 10px 25px;
    border: 2px solid var(--primary-color);
    border-radius: 30px;
    color: var(--primary-color);
    box-shadow: 0 0 10px rgba(46, 201, 79, 0.2);
}

.btn-glow:hover {
    background: var(--primary-color);
    color: #fff;
    box-shadow: 0 0 20px rgba(46, 201, 79, 0.6);
}

/* Mobile Menu */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: var(--text-main);
    margin: 3px 0;
    transition: 0.4s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    padding-top: 100px;
    padding-bottom: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at center, #1a1a1a 0%, #000 100%);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://tk2.com.br/wp-content/themes/criacaocomvalor/assets/img/pattern.png');
    /* Pattern texture if avail or generic */
    opacity: 0.1;
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 4rem;
    margin: 10px 0;
    color: #fff;
    white-space: nowrap;
}

.hero-image {
    max-width: 800px;
    margin: 30px auto;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.5));
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(45deg, var(--secondary-color), #D4AF37);
    /* Gold gradient */
    color: #000;
    /* Dark text for contrast on gold */
    border-radius: 50px;
    font-weight: 800;
    font-size: 1.1rem;
    text-transform: uppercase;
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
    /* Gold shadow */
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: 0.5s;
}

.cta-button:hover::before {
    left: 100%;
}

.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

/* About Section */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header .subtitle {
    display: block;
    color: var(--primary-color);
    font-size: 0.9rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.section-header h2 {
    font-size: 2.5rem;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-image .image-wrapper {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: -20px 20px 0 var(--secondary-color);
}

.stats {
    display: flex;
    gap: 40px;
    margin-top: 30px;
}

.stat-item .count {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-main);
}

.stat-item p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Puppies Section */
.puppy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.puppy-card {
    background: var(--bg-card);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    transition: var(--transition);
    position: relative;
}

.puppy-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    border-color: var(--primary-color);
}

.card-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-color);
    color: #000;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 700;
    z-index: 10;
}

.card-image {
    position: relative;
    overflow: hidden;
    height: 300px;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.card-image:hover img {
    transform: scale(1.1);
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.card-image:hover .card-overlay {
    opacity: 1;
}

.card-overlay i {
    font-size: 2rem;
    color: #fff;
}

.card-content {
    padding: 25px;
}

.card-content h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.parents {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    background: rgba(255, 255, 255, 0.03);
    padding: 10px;
    border-radius: 10px;
}

.parent {
    display: flex;
    flex-direction: column;
}

.parent small {
    color: var(--secondary-color);
    font-size: 0.7rem;
    text-transform: uppercase;
}

.card-btn {
    display: block;
    width: 100%;
    text-align: center;
    padding: 12px;
    background: transparent;
    border: 1px solid var(--text-muted);
    border-radius: 10px;
    transition: var(--transition);
}

.card-btn:hover {
    background: var(--text-main);
    color: #000;
}

/* Testimonials */
.testimonial-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--glass-bg);
    padding: 30px;
    border-radius: 20px;
    backdrop-filter: blur(5px);
    border: 1px solid var(--glass-border);
}

.stars {
    color: #ffd700;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.testimonial-card p {
    font-style: italic;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.author h4 {
    font-size: 1rem;
    margin-bottom: 2px;
}

.author small {
    color: var(--primary-color);
    font-size: 0.8rem;
}

/* Footer */
footer {
    background: #050505;
    padding-top: 80px;
    border-top: 1px solid var(--glass-border);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    padding-bottom: 60px;
}

.footer-logo img {
    width: 200px;
    margin-bottom: 20px;
}

.footer-links h3,
.footer-contact h3 {
    margin-bottom: 25px;
    font-size: 1.2rem;
}

.footer-links ul li {
    margin-bottom: 15px;
}

.footer-links a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.social-link.whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: #fff;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 700;
    margin-bottom: 20px;
}

.socials {
    display: flex;
    gap: 15px;
}

.socials a {
    width: 40px;
    height: 40px;
    background: var(--glass-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.socials a:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-5px);
}

.footer-bottom {
    text-align: center;
    padding: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Animations */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0) translateX(-50%);
    }

    40% {
        transform: translateY(-20px) translateX(-50%);
    }

    60% {
        transform: translateY(-10px) translateX(-50%);
    }
}

.glitch {
    position: relative;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch::before {
    left: 2px;
    text-shadow: -1px 0 var(--primary-color);
    clip: rect(44px, 450px, 56px, 0);
    animation: glitch-anim 5s infinite linear alternate-reverse;
}

.glitch::after {
    left: -2px;
    text-shadow: -1px 0 var(--secondary-color);
    clip: rect(44px, 450px, 56px, 0);
    animation: glitch-anim2 5s infinite linear alternate-reverse;
}

@keyframes glitch-anim {
    0% {
        clip: rect(15px, 9999px, 81px, 0);
    }

    20% {
        clip: rect(89px, 9999px, 99px, 0);
    }

    40% {
        clip: rect(10px, 9999px, 45px, 0);
    }

    60% {
        clip: rect(54px, 9999px, 12px, 0);
    }

    80% {
        clip: rect(66px, 9999px, 33px, 0);
    }

    100% {
        clip: rect(27px, 9999px, 90px, 0);
    }
}

@keyframes glitch-anim2 {
    0% {
        clip: rect(69px, 9999px, 18px, 0);
    }

    20% {
        clip: rect(3px, 9999px, 83px, 0);
    }

    40% {
        clip: rect(93px, 9999px, 66px, 0);
    }

    60% {
        clip: rect(21px, 9999px, 4px, 0);
    }

    80% {
        clip: rect(55px, 9999px, 78px, 0);
    }

    100% {
        clip: rect(11px, 9999px, 35px, 0);
    }
}

.animate-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.pulse-btn {
    animation: pulse 2s infinite;
}

.pulse-btn.animate-up {
    animation: fadeInUp 0.8s forwards, pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.7);
        /* Gold Pulse Start */
    }

    70% {
        box-shadow: 0 0 0 20px rgba(255, 215, 0, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 215, 0, 0);
    }
}

/* Media Queries */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
        z-index: 1001;
    }

    .nav-menu {
        position: fixed;
        right: -100%;
        top: 0;
        flex-direction: column;
        background: rgba(11, 11, 11, 0.98);
        width: 100%;
        height: 100vh;
        justify-content: center;
        transition: 0.3s;
        backdrop-filter: blur(20px);
    }

    .nav-menu.active {
        right: 0;
    }

    .hero h2 {
        font-size: 1.1rem;
        margin-bottom: 5px;
        letter-spacing: 1px;
    }

    .hero h1 {
        font-size: clamp(1.8rem, 8vw, 2.5rem);
        margin: 5px 0 15px 0;
    }

    .hero p {
        font-size: 0.9rem;
        padding: 0 10px;
    }

    .hero-image {
        width: 160%;
        max-width: none;
        margin: 20px 0 30px -30%;
    }

    .cta-button {
        padding: 12px 25px;
        font-size: 0.95rem;
    }

    .about-grid,
    .footer-content {
        grid-template-columns: 1fr;
    }

    .about-image {
        order: -1;
    }
}