/* Main Styles */
body {
    background-color: var(--bg-body);
    color: var(--text-body);
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* --- Header --- */
.header {
    background-color: var(--bg-surface);
    height: var(--header-height);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
    font-weight: 800;
    font-family: var(--font-heading);
    color: var(--color-primary);
    font-size: 1.25rem;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.logo-locadora {
    font-size: 0.75rem;
    color: var(--text-heading);
    letter-spacing: 2px;
}

.nav-list {
    display: flex;
    gap: 24px;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-body);
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--color-primary);
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.8rem;
    margin-top: 10px;
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.btn-theme {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    transition: transform 0.3s ease;
    padding: 0 5px;
}

.btn-theme:hover {
    transform: rotate(15deg) scale(1.1);
}


.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-toggle span {
    width: 24px;
    height: 2px;
    background-color: var(--text-heading);
}

/* --- Hero Section --- */
.hero {
    background: var(--bg-body);
    display: flex;
    align-items: center;
    padding: 100px 0;
    /* Extra padding for hero */
    position: relative;
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    /* Big impact */
    line-height: 1.1;
    color: var(--text-heading);
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--text-body);
    margin-bottom: 2.5rem;
    max-width: 90%;
}

.hero-actions {
    display: flex;
    gap: 16px;
}

.btn-outline {
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
    padding: 12px 24px;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-family: var(--font-heading);
    transition: var(--transition);
    text-transform: uppercase;
    font-size: 0.9rem;
}

.btn-outline:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
}

.hero-visual {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-circle {
    position: absolute;
    width: 300px;
    height: 300px;
    background-color: var(--color-accent);
    border-radius: 50%;
    opacity: 0.2;
    z-index: 1;
    filter: blur(40px);
}

.hero-bolt-img {
    position: relative;
    z-index: 2;
    width: 280px;
    height: 280px;
    filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.6));
    /* Enhanced glow for SVG */
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(2deg);
    }

    100% {
        transform: translateY(0px) rotate(0deg);
    }
}

/* --- Responsive Adjustments --- */
@media (max-width: 1024px) {
    .nav-menu {
        display: none;
        /* Hide nav initially on mobile/tablet */
    }

    .mobile-toggle {
        display: flex;
    }

    .hero-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-subtitle {
        margin: 0 auto 2rem;
    }


    .hero-actions {
        justify-content: center;
    }
}

/* --- Value Props --- */
.values {
    background-color: var(--bg-surface);
    padding: 60px 0;
    margin-top: -60px;
    /* Overlap effect if desired, or simple stacking */
    position: relative;
    z-index: 10;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.value-card {
    background: var(--bg-card);
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition);
    border-bottom: 4px solid transparent;
}

.value-card:hover {
    transform: translateY(-5px);
    border-bottom-color: var(--color-accent);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.value-card h3 {
    font-family: var(--font-heading);
    color: var(--text-heading);
    margin-bottom: 15px;
    font-size: 1.25rem;
}

/* --- About Section --- */
.about {
    background-color: var(--bg-surface-alt);
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: var(--text-body);
}

.about-image {
    height: 350px;
    background-color: var(--color-gray-200);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gray-800);
    font-weight: 600;
}

.image-placeholder {
    border: 2px dashed #bbb;
    padding: 2rem;
    border-radius: var(--radius-md);
}

/* --- Benefits Section --- */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.benefit-item {
    background: var(--bg-card);
    padding: 30px;
    border-radius: var(--radius-md);
    display: flex;
    gap: 20px;
    align-items: flex-start;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.benefit-item:hover {
    background-color: var(--bg-card-hover);
}

.check-icon {
    background-color: var(--color-accent);
    color: var(--color-black);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.benefit-item h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-heading);
}

/* --- Responsive 2 --- */
@media (max-width: 768px) {
    .about-container {
        grid-template-columns: 1fr;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

/* --- Calculator Section --- */
.calculator-section {
    padding: 80px 0;
    background-color: var(--bg-surface-alt);
}

.calculator-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-top: 40px;
}

.calc-inputs-card,
.calc-result-card {
    background: var(--bg-card);
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.calc-result-card {
    background: var(--color-black);
    /* Fixed undefined variable */
    color: var(--color-white);
    text-align: center;
    transform: scale(1.05);
    /* Slight emphasis */
    border: 2px solid var(--color-accent);
}

.input-group-calc {
    margin-bottom: 25px;
}

.input-group-calc label {
    display: flex;
    justify-content: space-between;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-body);
}

.input-group-calc label span {
    color: var(--color-primary);
}

.input-group-calc input[type="range"] {
    width: 100%;
    height: 8px;
    background: #ddd;
    border-radius: 5px;
    outline: none;
    cursor: pointer;
    accent-color: var(--color-primary);
}

.input-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.input-group-calc input[type="number"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
}

/* Results Formatting */
.savings-amount {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--color-accent);
    margin: 20px 0;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.savings-amount small {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 400;
}

.calc-details {
    background: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.detail-item:last-child {
    margin-bottom: 0;
}

.detail-item.red span {
    color: #ff9999;
}

.detail-item.green span {
    color: #99ff99;
}

.calc-note {
    font-size: 0.7rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .calculator-wrapper {
        grid-template-columns: 1fr;
    }

    .calc-result-card {
        transform: scale(1);
    }
}

/* --- Fleet Section --- */
.fleet {
    background-color: var(--bg-surface-alt);
}

.testimonials {
    background-color: var(--bg-surface);
    padding: 80px 0;
}

.testimonial-card {
    background: var(--bg-card);
    padding: 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.testimonial-card p {
    font-style: italic;
    color: var(--text-body);
    margin-bottom: 20px;
}

.author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--bg-surface-alt);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.author-avatar img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    opacity: 0.9;
}

.author-info h4 {
    font-weight: bold;
    margin: 0;
    color: var(--text-heading);
}

.fleet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.fleet-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.fleet-card:hover {
    transform: translateY(-5px);
}

.fleet-image {
    height: 200px;
    background-color: var(--color-gray-200);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gray-800);
    font-weight: 600;
    position: relative;
    /* Fix for absolute positioning of hint */
    overflow: hidden;
    /* Ensure image zoom stays inside */
    cursor: pointer;
}

.click-hint {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 500;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    pointer-events: none;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}


.fleet-card:hover .click-hint {
    opacity: 1;
    transform: translateY(0);
}

.fleet-card:hover .fleet-image img {
    transform: scale(1.05);
    transition: transform 0.5s ease;
}


.fleet-info {
    padding: 24px;
}

.fleet-info h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--text-heading);
    margin-bottom: 12px;
}

.fleet-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.tag {
    font-size: 0.75rem;
    padding: 4px 8px;
    border-radius: 4px;
    background-color: var(--color-gray-100);
    color: var(--color-gray-800);
    font-weight: 500;
}

.fleet-desc {
    font-size: 0.95rem;
    color: var(--text-body);
}

/* --- How It Works --- */
.how-it-works {
    background-color: var(--bg-surface);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    text-align: center;
}

.step-card {
    padding: 20px;
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: var(--color-primary);
    color: var(--color-white);
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    font-family: var(--font-heading);
}

.step-card h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--text-heading);
}

.step-card p {
    color: var(--text-body);
    font-size: 0.95rem;
}

/* --- Audience Section --- */
.audience {
    background-color: var(--color-primary-dark);
    color: var(--color-white);
}

.audience-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.audience-list {
    list-style: disc;
    padding-left: 20px;
    margin-top: 20px;
}

.audience-list li {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.audience-visual {
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.app-logos span {
    display: inline-block;
    padding: 10px 20px;
    background: var(--color-white);
    color: var(--color-black);
    font-weight: 800;
    margin: 0 10px;
    border-radius: var(--radius-sm);
}

@media (max-width: 768px) {
    .audience-container {
        grid-template-columns: 1fr;
    }
}

/* --- Contact Form --- */
.contact {
    background-color: var(--bg-surface-alt);
}

.contact-container {
    background-color: var(--bg-card);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    max-width: 800px;
    /* Centered form */
}

.lead-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.full-width {
    grid-column: 1 / -1;
}

label {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-body);
}

input,
select,
textarea {
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
    background-color: var(--bg-input);
    color: var(--text-body);
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(204, 0, 0, 0.1);
}

.checkbox-group {
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
}

.checkbox-group input {
    margin-top: 4px;
}

.checkbox-group label {
    font-weight: 400;
    font-size: 0.85rem;
}

.btn-block {
    width: 100%;
    padding: 16px;
    font-size: 1rem;
    grid-column: 1 / -1;
}

.form-feedback {
    grid-column: 1 / -1;
    text-align: center;
    font-weight: 600;
    margin-top: 10px;
}

.form-feedback.success {
    color: green;
}

.form-feedback.error {
    color: red;
}

/* --- FAQ --- */
.faq {
    background-color: var(--bg-surface);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 16px 24px;
    background: var(--bg-card);
    font-weight: 600;
    font-size: 1.1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
    color: var(--text-heading);
}

.faq-question:hover {
    background-color: var(--bg-surface-alt);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 24px;
    background-color: var(--bg-surface-alt);
    transition: all 0.3s ease;
}

.faq-answer p {
    padding: 16px 0;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    /* Approximate height */
}

.faq-item.active .icon {
    transform: rotate(45deg);
}

.icon {
    font-weight: 300;
    font-size: 1.5rem;
    transition: transform 0.3s;
}

/* --- Footer --- */
.footer {
    background-color: var(--color-black);
    color: var(--color-white);
    padding: 60px 0 20px;
}

.footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    text-align: center;
}

.footer-brand h3 {
    font-family: var(--font-heading);
    color: var(--color-primary);
    font-size: 1.5rem;
    line-height: 1;
}

.footer-brand p {
    font-size: 0.8rem;
    letter-spacing: 2px;
    color: var(--color-gray-100);
}

.footer-links {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links a {
    color: var(--color-gray-200);
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--color-white);
}

.footer-copy {
    color: var(--color-gray-800);
    /* Darker gray for footer text? No, should be compliant */
    color: var(--text-muted);
    font-size: 0.8rem;
    margin-top: 20px;
}

@media (max-width: 600px) {
    .lead-form {
        grid-template-columns: 1fr;
    }
}

/* --- Floating WhatsApp Button --- */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    transform: scale(1.1);
}

/* --- Modal Styles --- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    display: none;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    display: flex;
    opacity: 1;
}

.modal-content {
    background: var(--bg-card);
    width: 90%;
    max-width: 500px;
    border-radius: 16px;
    padding: 30px;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--text-body);
    cursor: pointer;
    line-height: 1;
}

.modal-body h3 {
    font-size: 1.8rem;
    margin-bottom: 5px;
    color: var(--color-primary);
}

.modal-subtitle {
    color: var(--text-body);
    margin-bottom: 25px;
    font-size: 1rem;
}

.specs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.spec-item {
    background: var(--bg-surface-alt);
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.spec-icon {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.spec-label {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.spec-item strong {
    font-size: 1.1rem;
    color: var(--text-heading);
}

@media (max-width: 480px) {
    .specs-grid {
        grid-template-columns: 1fr 1fr;
        /* Keep 2 cols on mobile for compactness */
    }
}

.whatsapp-icon {
    margin-top: 2px;
}

/* Placeholder Fix */
::placeholder {
    color: var(--text-muted);
    opacity: 1;
}

/* Dark Mode Overrides for Specific Text */
[data-theme="dark"] .section-subtitle,
[data-theme="dark"] .fleet-desc,
[data-theme="dark"] .calc-note,
[data-theme="dark"] .step-card p,
[data-theme="dark"] .testimonial-card p,
[data-theme="dark"] .benefit-item p,
[data-theme="dark"] .value-card p,
[data-theme="dark"] .hero-subtitle,
[data-theme="dark"] li,
[data-theme="dark"] p {
    color: var(--color-white) !important;
    opacity: 1 !important;
}

[data-theme="dark"] h1,
[data-theme="dark"] h2,
[data-theme="dark"] h3,
[data-theme="dark"] h4,
[data-theme="dark"] h5,
[data-theme="dark"] h6,
[data-theme="dark"] strong {
    color: var(--color-white) !important;
}

/* --- Scroll Animations --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
    will-change: opacity, transform;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.fade-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.8s ease-out;
}

.fade-left.active {
    opacity: 1;
    transform: translateX(0);
}

@media (prefers-reduced-motion: reduce) {

    .reveal,
    .fade-left {
        transition: none;
        opacity: 1;
        transform: none;
    }
}

/* --- Cookie Banner (LGPD) --- */
/* --- Cookie Banner (LGPD) --- */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    width: 90%;
    max-width: 600px;
    background-color: var(--bg-card);
    color: var(--text-body);
    padding: 20px;
    border-radius: var(--radius-md);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    z-index: 9999;
    border: 1px solid var(--border-color);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease, transform 0.3s ease;
}

.cookie-banner.active {
    opacity: 1;
    pointer-events: all;
}

.cookie-text {
    font-size: 0.9rem;
}

.cookie-btn {
    background-color: var(--color-primary);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-weight: 600;
    white-space: nowrap;
}

.cookie-btn:hover {
    background-color: var(--color-primary-dark);
}

/* Social Icons */
.footer-social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 15px;
}

.social-icon-link svg {
    width: 30px;
    height: 30px;
    fill: var(--color-gray-400);
    /* Use variable or default gray */
    transition: fill 0.3s ease, transform 0.3s ease;
}

.social-icon-link:hover svg {
    fill: var(--color-white);
    /* Hover color */
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .cookie-banner {
        flex-direction: column;
        text-align: center;
        bottom: 0;
        left: 0;
        transform: none;
        /* Reset transform for mobile */
        width: 100%;
        max-width: 100%;
        border-radius: 16px 16px 0 0;
        padding-bottom: 30px;
    }
}

/* --- Fleet Filters --- */
.fleet-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.filter-btn {
    background: transparent;
    border: 2px solid var(--color-primary);
    color: var(--text-heading);
    padding: 8px 20px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--color-primary);
    color: white;
}

[data-theme="dark"] .filter-btn {
    color: var(--color-white);
    border-color: var(--color-primary);
}

[data-theme="dark"] .filter-btn:hover,
[data-theme="dark"] .filter-btn.active {
    background: var(--color-primary);
    color: var(--color-white);
}