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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: #fff;
    color: #1d1d1f;
    line-height: 1.6;
}



.hero-store {
    text-align: center;
    padding: 5rem 2rem 3rem;
    background: #ffffff;
}

.hero-store h1 {
    font-size: 3.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.futuristic-text-gradient {
    background: linear-gradient(90deg, #007aff 0%, #5856d6 25%, #af52de 50%, #ff3b30 75%, #ff9500 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-store p {
    font-size: 1rem !important;
    color: #FFFFFF;
    font-weight: 400;
}

.categories {
    display: flex;
    justify-content: center;
    gap: 3rem;
    max-width: 1200px;
    margin: 3rem auto 0;
    padding: 0 2rem;
    flex-wrap: wrap;
}

.category-item {
    text-align: center;
    padding: 1rem;
    transition: transform 0.3s;
    flex: 0 1 auto;
}

.category-item:hover {
    transform: translateY(-5px);
}

.category-item svg {
    margin-bottom: 0.5rem;
}

.category-item h3 {
    font-size: 0.875rem;
    font-weight: 500;
    color: #000000;
    margin: 0;
}

.products-grid {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.25rem;
}

.product-card {
    background: #FFFFFF;
    border-radius: 12px;
    padding: 0.75rem;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid #e8e8ed;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-card-featured {
    background: #FFFFFF !important;
}

.produtos-recomendados .product-card-featured,
.produtos-recomendados > div {
    background: #FFFFFF !important;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.product-image {
    width: 100%;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
    overflow: hidden;
    border-radius: 8px;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.product-card h3 {
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.375rem;
}

.product-price {
    font-size: 0.875rem;
    color: #1d1d1f;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.product-description {
    font-size: 0.75rem;
    color: #6e6e73;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.btn-buy {
    background: #007AFF;
    color: #fff;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s;
    width: 100%;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    margin-top: auto;
}

.btn-buy:hover {
    background: #0051d5;
    color: #fff;
}

.pagination-container {
    text-align: center;
    margin: 3rem auto;
}

.pagination {
    display: inline-flex;
    gap: 0.5rem;
}

.pagination-btn {
    background: #f5f5f7;
    color: #1d1d1f;
    border: 1px solid #e8e8ed;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 1rem;
}

.pagination-btn:hover {
    background: #e8e8ed;
}

.pagination-btn.active {
    background: #007AFF;
    color: #fff;
    border-color: #007AFF;
}

.store-features {
    max-width: 1200px;
    margin: 6rem auto 4rem;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.feature {
    text-align: center;
}

.feature svg {
    margin-bottom: 1rem;
}

.feature h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.feature p {
    font-size: 0.875rem;
    color: #6e6e73;
}

.microsoft-footer {
    background: #2F2F2F;
    color: #FFFFFF;
    padding: 40px 0 0 0;
    margin-top: auto;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 40px;
    margin-bottom: 30px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 40px;
}

.footer-section {
    text-align: center;
}

.footer-section h4 {
    color: #FFFFFF;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section li {
    margin-bottom: 8px;
}

.footer-section a {
    color: #CCCCCC;
    text-decoration: none;
    font-size: 0.8rem;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #007aff;
}

.footer-bottom {
    border-top: 1px solid #444444;
    padding: 20px 0 0 0;
    text-align: center;
}

.footer-bottom p {
    color: #CCCCCC;
    font-size: 0.8rem;
    margin: 0;
}

.social-media-section {
    text-align: center;
}

.social-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.social-links a {
    display: flex;
    align-items: center;
    gap: 8px;
}

.instagram-icon {
    color: #E4405F !important;
}

.fa-twitter {
    color: #1DA1F2 !important;
}

@media (min-width: 769px) {
    .ad-skyscraper-left,
    .ad-skyscraper-right {
        position: sticky;
        top: 80px;
        align-self: flex-start;
    }
}

@media (max-width: 768px) {
    .hero-store h1 {
        font-size: 2.5rem;
    }

    .hero-store p {
        font-size: 1.25rem;
    }

    .products-grid {
        grid-template-columns: 1fr;
        margin: 2rem auto;
    }

    .produtos-recomendados {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.75rem !important;
        max-width: 100% !important;
    }

    .produtos-recomendados .product-card {
        aspect-ratio: 1;
        padding: 0.5rem !important;
    }

    .produtos-recomendados .product-image {
        height: 60px !important;
    }

    .produtos-recomendados h3 {
        font-size: 0.7rem !important;
    }

    .produtos-recomendados .btn-buy {
        font-size: 0.65rem !important;
        padding: 0.4rem !important;
    }

    .filter-btn-store {
        padding: 10px 16px !important;
        font-size: 0.9rem !important;
    }

    .filter-btn-store i {
        display: none;
    }

    .filtros-container {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
        max-width: 100%;
    }

    .filtros-container .filter-btn-store {
        width: 100% !important;
    }

    .store-features {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

.hamburger-menu {
    display: none;
}

.hamburger-icon {
    position: relative;
    width: 20px;
    height: 16px;
}

.hamburger-icon span,
.hamburger-icon::before,
.hamburger-icon::after {
    position: absolute;
    width: 20px;
    height: 2px;
    background: #000;
    left: 0;
    transition: all 0.3s ease;
}

.hamburger-icon span {
    top: 7px;
}

.hamburger-icon::before {
    content: '';
    top: 0;
}

.hamburger-icon::after {
    content: '';
    top: 14px;
}

.hamburger-menu.active .hamburger-icon span {
    opacity: 0;
}

.hamburger-menu.active .hamburger-icon::before {
    transform: rotate(45deg);
    top: 7px;
}

.hamburger-menu.active .hamburger-icon::after {
    transform: rotate(-45deg);
    top: 7px;
}

.mobile-nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: white;
    z-index: 99997;
    padding: 80px 0 20px 0;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    overflow-y: auto;
}

.mobile-nav-menu.active {
    right: 0;
}

.mobile-nav-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav-menu li {
    margin-bottom: 0;
}

.mobile-nav-menu a {
    display: block;
    padding: 15px 20px;
    color: #333;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    border-bottom: 1px solid #eee;
}

.mobile-nav-menu a:hover {
    background: #007aff;
    color: white;
}

.navigation-wrapper {
    display: flex;
}

/* Garantir que os links inline também tenham o efeito hover */
.navigation-wrapper a {
  border-bottom: 2px solid transparent !important;
  transition: border-bottom 0.3s ease !important;
}

.navigation-wrapper a:hover {
  border-bottom: 2px solid black !important;
}

@media (max-width: 768px) {
    .hamburger-menu {
        display: flex !important;
        position: absolute !important;
        top: 50% !important;
        right: 20px !important;
        transform: translateY(-50%) !important;
        z-index: 99999 !important;
        background: none !important;
        border: none !important;
        cursor: pointer !important;
    }

    .navigation-wrapper {
        display: none !important;
    }
}


.produtos-recomendados .product-card-featured {
    background: #FFFFFF !important;
}

@media (max-width: 768px) {
  .cards-coloridos-loja {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
    margin: 30px 0 !important;
  }
}
