* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    --base-font: "Comic Sans MS", cursive, sans-serif;
    --background-color: #000000;
    --primary-color: #008fff;
    --secondary-color: #fff000;
    --tertiary-color: #ff0000;
    --text-color: #ffffff;
    --secondary-text-color: #000000;
}

@font-face {
  font-family: "ComicSansCustom";
  src: url("../fontes/ComicSansMS.woff2") format("woff2");
       url("../fontes/ComicSansMS.woff") format("woff");
  font-weight:normal;
  font-style:normal;
}

@font-face {
  font-family: "ComicSansCustom";
  src: url("../fontes/ComicSansMS-Bold.woff2") format("woff2");
       url("../fontes/ComicSansMS-Bold.woff") format("woff");
  font-weight:bold;
  font-style:normal;
}

@font-face {
  font-family: "ComicSansCustom";
  src: url("../fontes/ComicSansMS-Italic.woff2") format("woff2");
       url("../fontes/ComicSansMS-Italic.woff") format("woff");
  font-weight:normal;
  font-style:italic;
}

@font-face {
  font-family: "ComicSansCustom";
  src: url("../fontes/ComicSansMS-BoldItalic.woff2") format("woff2");
       url("../fontes/ComicSansMS-BoldItalic.woff") format("woff");
  font-weight:bold;
  font-style:italic;
}

/* For Webkit browsers (Chrome, Safari, Edge) */
::-webkit-scrollbar {
  width: 12px; /* Width of the scrollbar */
}
::-webkit-scrollbar-track {
  background: rgb(26, 26, 26); /* Track color */
}
::-webkit-scrollbar-thumb {
  background: var(--secondary-color); /* Thumb color */
  border-radius: 6px; /* Rounded corners */
}
::-webkit-scrollbar-thumb:hover{
    background: #fbbf24;
}

html {
  scroll-behavior: smooth;
}


body {
    font-family: "ComicSansCustom", cursive;
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
}

.main-container {
    width: 100%;
    background-color: var(--background-color);
    min-height: 100vh;
}

/* Navigation Styles */
.navbar {
    position: fixed;
    padding: 1rem;
    width: 100%;
    background-color: var(--background-color);
    z-index: 1111;
    border-bottom: solid 0.2rem var(--primary-color);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
    max-width: 1280px;
}

.logo {
    height: 2.8rem;
    border-radius:100% ;
    border: solid 0.15rem var(--primary-color);
    transition: all 0.3s ease-in-out;
}

.logo:hover{
    scale:1.1;
    border: solid 0.15rem var(--secondary-color);
}

.logo:active{
    border:solid 0.15rem #ffee00af;
    scale: 0.9;
}

.mobile-menu-btn {
    display: none;
}

.menu-toggle {
    padding: 0.5rem;
    color: var(--primary-color);
    background: none;
    border: none;
    cursor: pointer;
}

.menu-icon {
    width: 1.5rem;
    height: 1.5rem;
}

.desktop-nav {
    display: flex;
    flex: 1;
    justify-content: center;
    align-items: center;
}

.nav-links {
    display: flex;
    align-items: center;
    border-radius: 0.5rem;
    background-color: var(--primary-color);
}

.nav-link {
    padding: 0.5rem 1.5rem;
    font-weight: 500;
    color: #ffffff;
    text-decoration: none;
    border-radius: 0;
    transition: all 0.3s ease-in-out;
    background-color: transparent;
}

.nav-link:hover {
    background-color: var(--secondary-color);
    color: var(--secondary-text-color);
    scale: 1.1;
}
.nav-link:hover:first-child{
    border-radius: 0.5rem 0 0 0.5rem;
}

.nav-link:hover:last-child{
    border-radius: 0 0.5rem 0.5rem 0;
}

.nav-link:active{
    background-color: #ffee00af;
    color: var(--secondary-text-color);
    scale: 0.9;
}

.nav-spacer {
    width: 2rem;
}

.mobile-menu {
    display: none;
    padding-bottom: 1rem;
    margin-top: 1rem;
    border-top: 1px solid var(--primary-color);
}

.mobile-menu-content{
    display: flex;
    flex-direction:row;
    gap: 0.5rem;
    margin-top: 1rem;
}

.mobile-nav-link {
    padding: 0.5rem 1rem;
    color: #ffffff;
    text-decoration: none;
    border-radius: 0.5rem;
    transition: all 0.3s ease-in-out;
}

.mobile-nav-link.active {
    background-color: var(--primary-color);
}

.mobile-nav-link:hover {
    background-color: var(--secondary-color);
    color: var(--secondary-text-color);
    scale: 1.1;
}

/* Main Content */
.main-content {
    padding-top: 5.5rem;
    width: 100%;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(to right, #000000, #000000);
    width: 100%;
}

.hero-content {
    margin: 0 auto;
    text-align: center;
    max-width: 1280px;
}

.banner {
    position: relative;
    width: 100%;
    height: auto;
    text-align: center;
    text-align:center;
    font-size:80%;
    line-height:25%;
}
.banner img {
    pointer-events: none;
    width: 100%;
    height: 250px;
}
.center {
    width: 100%;
    display: flex;
    flex-direction: column;
    background-color: rgba(0, 0, 0, 0.5);
    text-align: center;
    z-index: 1000;
    line-height: 1.5;
    position: absolute;
    top: 30%;
}
.center h1 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
}
.center p{
    font-size: 1.2rem;
}

.yellow-divider {
    font-size: 1em;
    background-color: var(--secondary-color);
    color: var(--secondary-text-color);
}

/* Section Styles */
.categories-section {
    padding: 2rem 1rem;
    width: 100%;
}

.products-section {
    padding: 1.5rem 1rem;
    width: 100%;
    background-color: #0a0a0a;
    border-top: solid 0.3rem var(--primary-color);
}

.section-container {
    margin: 0 auto;
    max-width: 1280px;
}

.section-title {
    margin-bottom: 3rem;
    font-weight: 800;
    text-align: center;
    color: #ffffff;
    font-size: 2.25rem;
    line-height: 2.5rem;
}

/* Categories Grid */
.categories-grid {
    overflow: hidden;
    width: 100%;
    border-radius: 0.75rem;
    border: 4px double var(--secondary-color);
    background-color: #262626;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.category-card {
    display: flex;
    flex-direction: column;
    padding: 2rem;
    height: 100%;
    text-align: center;
    transition: all 0.3s ease-in-out;
    border-right: 2px solid var(--secondary-color);
}
.category-card:last-child{
    border-right:none ;
}
.category-card:hover {
    background-color: rgba(0, 0, 0, 0.336);
}

.category-image {
    object-fit:fill;
    margin: 0 auto 1.5rem;
    width: 100%;
    border-radius: 0.5rem;
    height: 8rem;
    max-width: 200px;
}

.category-title {
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 2rem;
    color: var(--primary-color);
}

.category-description {
    margin-bottom: 1.5rem;
    line-height: 1.625;
    color: #d1d5db;
    flex-grow: 1;
}

.category-features {
    gap: 0.5rem;
    margin: 0 auto 1.5rem;
    text-align: left;
    color: #9ca3af;
    max-width: 20rem;
    list-style: none;
}

.feature-item {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    margin-bottom: 0.5rem;
}

.feature-dot {
    width: 0.5rem;
    height: 0.5rem;
    background-color: var(--secondary-color);
    border-radius: 50%;
    flex-shrink: 0;
}

.category-button {
    padding: 0.75rem 0;
    margin-top: auto;
    width: 100%;
    font-weight: 600;
    color: #ffffff;
    background-color: var(--primary-color);
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.category-button:hover {
    background-color: var(--secondary-color);
    color: #000000;
    scale: 1.1;
}

.category-button:active {
    background-color: #fbbf24;
    scale: 0.9;
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.product-card {
    padding: 1rem;
    border-radius: 0.5rem;
    border: 1px solid #333333;
    transition: all 0.3s ease-in-out;
    background-color: #262626;
}

.product-card:hover {
    border-color: #008fff;
    transform: translateY(-3px);
}

.product-image {
    background-size: cover;
    margin-bottom: 0.75rem;
    width: 100%;
    border-radius: 0.25rem;
    height: 8rem;
}

.product-title {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #0ea5e9;
}

.product-description {
    margin-bottom: 0.75rem;
    font-size: 0.875rem;
    line-height: 1.25rem;
    color: #9ca3af;
}

.product-price {
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 1.75rem;
    color: #fbbf24;
}

/* Products Info Section */
.products-info {
    padding: 2rem;
    border-radius: 0.75rem;
    border: 1px solid #0ea5e9;
    background-color: #262626;
}

.autoimg{
    width: 50vw;
    height: 40vh;
}

.info-title {
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 2rem;
    color: var(--primary-color);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.info-subtitle {
    margin-bottom: 1rem;
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.75rem;
    color: var(--secondary-color);
}

.info-description {
    margin-bottom: 1rem;
    line-height: 1.625;
    color: #d1d5db;
}

.info-features {
    gap: 0.5rem;
    color: #9ca3af;
    list-style: none;
}

/* Footer */
.footer {
    padding: 3rem 1rem;
    width: 100%;
    border-top: 1px solid #0ea5e9;
    background-color: #0a0a0a;
}

.footer-content {
    margin: 0 auto;
    max-width: 1280px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
    margin-left:1.2rem;
    margin-right: 1.3px;
}

.footer-title {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.75rem;
    color: #0ea5e9;
}

.contact-info {
    gap: 0.75rem;
    color: #d1d5db;
}

.contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    display: flex;
    gap: 0.75rem;
    align-items: center;
    margin-bottom: 0.75rem;
}

.contact-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: #fbbf24;
}

.social-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.social-link {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease-in-out;
    text-decoration: none;
}

.social-link img{
    border-radius: 100%;
    width: 3vw;
    height: 3vh;
}

.social-link:hover,
.social-icon:hover {
    background-color: #ffff00;
    color: #000000;
}

.social-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: #ffffff;
}

.social-description {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    line-height: 1.25rem;
    color: #9ca3af;
}

.footer-bottom {
    padding-top: 2rem;
    text-align: center;
    border-top: 1px solid #374151;
}

.copyright {
    color: #9ca3af;
    margin-bottom: 0.5rem;
}

.tagline {
    margin-top: 0.5rem;
    font-size: 0.875rem;
    line-height: 1.25rem;
    color: #6b7280;
}

.fotter-nav{
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1rem;
}
.fotter-nav a{
    padding: 1rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .categories-grid {
        grid-template-columns: 1fr;
    }

    .category-card {
        border-right: none;
        border-bottom: 1px solid #404040;
    }

    .category-card:last-child {
        border-bottom: none;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .info-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .autoimg {
        width: 80vw;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 0.5rem;
    }

    .mobile-menu-btn {
        display: block;
    }

    .desktop-nav {
        display: none;
    }

    .nav-spacer {
        display: none;
    }

    .hero-section {
        padding: 3rem 0.5rem;
    }

    .hero-title {
        font-size: 2rem;
        line-height: 2.5rem;
    }

    .hero-description {
        font-size: 1.125rem;
        line-height: 1.75rem;
    }

    .categories-section,
    .products-section {
        padding: 2rem 0.5rem;
    }

    .section-title {
        margin-bottom: 2rem;
        font-size: 1.5rem;
        line-height: 2rem;
    }

    .category-card {
        padding: 1.5rem;
    }

    .category-title {
        font-size: 1.25rem;
        line-height: 1.75rem;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .products-info {
        padding: 1.5rem;
    }

    .info-title {
        font-size: 1.25rem;
        line-height: 1.75rem;
    }

    .footer {
        padding: 2rem 0.5rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 640px) {
    .hero-title {
        font-size: 1.875rem;
        line-height: 2.25rem;
    }

    .hero-description {
        font-size: 1rem;
        line-height: 1.5rem;
    }

    .section-title {
        font-size: 1.25rem;
        line-height: 1.75rem;
    }

    .category-title {
        font-size: 1.125rem;
        line-height: 1.5rem;
    }

    .info-title {
        font-size: 1.125rem;
        line-height: 1.5rem;
    }
}

/* Mobile Menu Animation */
.mobile-menu.show {
    display: block;
}

/* Hover States for Dynamic Elements */
.nav-link.hovered {
    background-color: #008fff;
}

.cta-button.hovered {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 0, 0.3);
}

.category-card.hovered {
    background-color: rgba(0, 143, 255, 0.1);
}

.product-card.hovered {
    border-color: #008fff;
    transform: translateY(-3px);
}

.social-link.hovered {
    background-color: #ffff00;
}
