/* Card base */
.catalog-card {
    position: relative;
    height: 180px;
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.catalog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

/* Gradientes animados */
.masc-theme .theme-background {
    background: linear-gradient(135deg, #1a237e 0%, #0d47a1 50%, #1a237e 100%);
    background-size: 200% 200%;
    animation: gradientFlow 5s ease infinite;
}

.fem-theme .theme-background {
    background: linear-gradient(135deg, #ad1457 0%, #e91e63 50%, #ad1457 100%);
    background-size: 200% 200%;
    animation: gradientFlow 5s ease infinite;
}

.kids-theme .theme-background {
    background: linear-gradient(135deg, #ff6b6b 0%, #ffd93d 50%, #ff6b6b 100%);
    background-size: 200% 200%;
    animation: gradientFlow 5s ease infinite;
}

.retro-theme .theme-background {
    background: linear-gradient(135deg, #783f04 0%, #b45f06 50%, #783f04 100%);
    background-size: 200% 200%;
    animation: gradientFlow 5s ease infinite;
}

.nba-theme .theme-background {
    background: linear-gradient(135deg, #c9082a 0%, #17408b 50%, #c9082a 100%);
    background-size: 200% 200%;
    animation: gradientFlow 5s ease infinite;
}

@keyframes gradientFlow {
    0% {
        background-position: 0% 0%;
    }
    50% {
        background-position: 100% 100%;
    }
    100% {
        background-position: 0% 0%;
    }
}

.theme-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.catalog-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 2rem;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.4));
    color: var(--white);
    display: flex;
    align-items: center;
}

.content-wrapper {
    max-width: 70%;
    position: relative;
    z-index: 1;
}

.category-icon {
    position: absolute;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 4rem;
    opacity: 0.2;
    transition: all 0.4s ease;
}

.catalog-card:hover .category-icon {
    opacity: 0.4;
    transform: translateY(-50%) rotate(5deg);
}

.catalog-overlay h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.catalog-card:hover .catalog-overlay h3 {
    transform: translateY(-5px);
}

.catalog-overlay p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.catalog-card:hover .catalog-overlay p {
    opacity: 0.9;
}

.view-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
    color: var(--white);
    opacity: 0.9;
}

.catalog-card:hover .view-more {
    animation: textPulse 1.5s ease-in-out infinite;
}

@keyframes textPulse {
    0%, 100% {
        opacity: 0.9;
    }
    50% {
        opacity: 1;
    }
}

.view-more i {
    transition: transform 0.4s ease;
}

.catalog-card:hover .view-more i {
    animation: arrowPulse 1.5s ease-in-out infinite;
}

@keyframes arrowPulse {
    0%, 100% {
        transform: translateX(0) scale(1);
    }
    50% {
        transform: translateX(5px) scale(1.1);
    }
}

@media (max-width: 768px) {
    .catalog-card {
        height: 120px;
    }

    .category-icon {
        font-size: 2.5rem;
        right: 1rem;
    }

    .catalog-overlay {
        padding: 1rem;
    }

    .catalog-overlay h3 {
        font-size: 1.4rem;
    }

    .catalog-overlay p {
        font-size: 0.9rem;
    }

    .content-wrapper {
        max-width: 85%;
    }
}

/* Estilos para os tamanhos clicáveis */
.product-sizes .size-tag {
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.product-sizes .size-tag:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

.product-sizes .size-tag:active {
    transform: translateY(0);
}

.product-sizes .size-tag::after {
    content: 'Ver medidas';
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
    white-space: nowrap;
}

.product-sizes .size-tag:hover::after {
    opacity: 1;
    visibility: visible;
    bottom: -30px;
}

/* Ajustes para o modal de medidas específicas */
#medidasEspecificasModal .modal-content {
    max-width: 500px;
}

#medidasEspecificasModal .sizes-table {
    margin: 0;
}

#medidasEspecificasModal .modal-header h2 {
    font-size: 1.5rem;
}

#tamanhoSelecionado {
    color: var(--primary-color);
    font-weight: bold;
}

@media (max-width: 768px) {
    .product-sizes .size-tag::after {
        display: none;
    }
}

/* Estilos para o guia de tamanhos */
.sizes-guide {
    padding: 20px;
}

.sizes-guide h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    text-align: center;
    font-size: 1.5rem;
}

.sizes-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin-bottom: 20px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(0, 119, 204, 0.2);
}

.sizes-table th {
    background: rgba(0, 119, 204, 0.1);
    color: var(--primary-color);
    padding: 12px;
    font-weight: 600;
    text-align: center;
}

.sizes-table td {
    padding: 10px;
    color: var(--white);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
}

.sizes-table tr:hover td {
    background: rgba(255, 255, 255, 0.03);
}

.size-notes {
    margin-top: 20px;
    color: var(--white);
    opacity: 0.9;
}

.size-notes p {
    margin: 8px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.size-notes i {
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .sizes-guide {
        padding: 15px;
    }

    .sizes-table {
        font-size: 14px;
    }

    .sizes-table th,
    .sizes-table td {
        padding: 8px;
    }
}

@media (max-width: 480px) {
    .sizes-guide {
        padding: 10px;
    }

    .sizes-table {
        font-size: 12px;
    }

    .sizes-table th,
    .sizes-table td {
        padding: 6px;
    }

    .table-wrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
}

.size-section {
    margin-bottom: 30px;
}

.size-section:last-of-type {
    margin-bottom: 20px;
}

.size-section h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    text-align: center;
    font-size: 1.5rem;
}

@media (max-width: 768px) {
    .size-section {
        margin-bottom: 25px;
    }

    .size-section h3 {
        font-size: 1.3rem;
        margin-bottom: 15px;
    }
}

@media (max-width: 480px) {
    .size-section {
        margin-bottom: 20px;
    }

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

/* Variáveis CSS com as cores da marca */
:root {
    --primary-color: #00afef;
    --secondary-color: #001e5a;
    --white: #ffffff;
    --dark: #0a0a0a;
    --darker: #050505;
    --gradient: linear-gradient(135deg, var(--dark), var(--darker));
}

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

/* Estilos Globais */
html {
    scroll-behavior: smooth;
    height: 100%;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--dark);
    min-height: 100%;
    cursor: auto;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 40px;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    cursor: auto;
}

.nav-links a:hover {
    color: var(--primary-color);
}

/* Hero Section com Parallax */
.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    background-color: var(--dark);
    overflow: hidden;
}

#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.parallax-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
}

.parallax-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
}

.bg-layer {
    transform: translateZ(-300px) scale(1.3);
}

.content-layer {
    transform: translateZ(0);
    display: flex;
    align-items: center;
    justify-content: center;
}

.front-layer {
    transform: translateZ(100px) scale(0.9);
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.logo-container {
    width: 300px;
    height: auto;
    position: relative;
    margin: 0 auto;
    margin-bottom: 2rem;
    will-change: transform;
}

.glitch-logo {
    width: 100%;
    height: auto;
    filter: brightness(0) invert(1) drop-shadow(0 0 10px rgba(0, 175, 239, 0.7));
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}

.slogan {
    color: var(--white);
    font-size: 2rem;
    font-weight: 300;
    text-align: center;
    margin-top: 1rem;
    letter-spacing: 1px;
    text-shadow: 0 0 10px rgba(0, 175, 239, 0.5);
    opacity: 0.9;
    will-change: transform;
}

.typewriter-text {
    border-right: 2px solid var(--primary-color);
    padding-right: 5px;
    animation: blink 0.75s step-end infinite;
}

@keyframes blink {
    from, to { border-color: transparent }
    50% { border-color: var(--primary-color); }
}

/* Hero Background */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    transform: translateZ(0);
    will-change: transform;
    backface-visibility: hidden;
    background: 
        radial-gradient(circle at center, rgba(0, 30, 90, 0.3) 0%, var(--darker) 100%),
        var(--gradient);
    transform-style: preserve-3d;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="1" fill="%23ffffff05"/></svg>') 0 0/50px 50px;
    opacity: 0.05;
}

.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0.6;
    transform: translateZ(0);
    will-change: transform;
    backface-visibility: hidden;
}

.particle {
    position: absolute;
    display: block;
    pointer-events: none;
    width: 6px;
    height: 6px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    animation: float-particle 20s infinite linear;
    will-change: transform;
    backface-visibility: hidden;
}

@keyframes float-particle {
    0% {
        transform: translateY(0) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 0.8;
    }
    90% {
        opacity: 0.8;
    }
    100% {
        transform: translateY(-100vh) translateX(100vw);
        opacity: 0;
    }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--white);
    text-align: center;
    opacity: 0.7;
    animation: fadeInUp 2s ease infinite;
    z-index: 2;
}

.scroll-indicator span {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid var(--white);
    border-bottom: 2px solid var(--white);
    transform: rotate(45deg);
    margin: 0 auto;
    animation: scrollArrow 2s infinite;
}

@keyframes scrollArrow {
    0% {
        opacity: 0;
        transform: rotate(45deg) translate(-5px, -5px);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: rotate(45deg) translate(5px, 5px);
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translate(-50%, 20px);
    }
    100% {
        opacity: 0.7;
        transform: translate(-50%, 0);
    }
}

/* Seção de Conteúdo */
.content-section {
    position: relative;
    z-index: 1;
    background-color: var(--dark);
    min-height: 100vh;
    padding: 100px 0;
    color: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Seção de Lendas */
.legends-section {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--dark) 0%, var(--darker) 100%);
    position: relative;
    overflow: hidden;
}

.legends-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(0, 119, 204, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 119, 204, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.sport-subsection {
    margin-top: 4rem;
    position: relative;
    padding: 0 1rem;
}

.sport-subsection:first-of-type {
    margin-top: 2rem;
}

.sport-label {
    display: inline-block;
    padding: 12px 35px;
    background: linear-gradient(
        135deg,
        rgba(var(--primary-rgb), 0.15) 0%,
        rgba(var(--primary-rgb), 0.05) 100%
    );
    color: var(--primary);
    border-left: 4px solid var(--primary);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 2.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 
        0 2px 10px rgba(var(--primary-rgb), 0.1),
        0 10px 20px rgba(0, 0, 0, 0.05);
}

.sport-label::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(var(--primary-rgb), 0.2) 0%,
        rgba(var(--primary-rgb), 0.1) 50%,
        rgba(var(--primary-rgb), 0) 100%
    );
    opacity: 0;
    transition: opacity 0.4s ease;
}

.sport-label::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%230077cc'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.sport-label:hover {
    color: #fff;
    background: linear-gradient(
        135deg,
        var(--primary) 0%,
        rgba(var(--primary-rgb), 0.8) 100%
    );
    transform: translateY(-3px);
    box-shadow: 
        0 5px 15px rgba(var(--primary-rgb), 0.3),
        0 15px 25px rgba(0, 0, 0, 0.08);
    border-left-width: 8px;
    padding-left: 31px;
}

.sport-label:hover::before {
    opacity: 1;
}

.sport-label:hover::after {
    transform: translateY(-50%) rotate(180deg);
    opacity: 1;
    filter: brightness(5);
}

@media (max-width: 768px) {
    .sport-label {
        padding: 10px 25px;
        font-size: 1.1rem;
    }
}

.legends-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.legend-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    position: relative;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transform-style: preserve-3d;
    transform: perspective(1000px);
    transition: all 0.3s ease;
}

.legend-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 15px;
    padding: 2px;
    background: linear-gradient(
        135deg,
        rgba(0, 163, 255, 0.5),
        transparent,
        rgba(0, 163, 255, 0.5)
    );
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
}

.legend-card:hover::before {
    opacity: 1;
}

.legend-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    overflow: hidden;
    position: relative;
    transform: translateZ(20px);
}

.legend-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.legend-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle at 50% 50%,
        transparent 50%,
        rgba(0, 163, 255, 0.2)
    );
    opacity: 0;
    transition: opacity 0.3s ease;
}

.legend-card:hover .legend-image::after {
    opacity: 1;
}

.legend-name {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    transform: translateZ(30px);
}

.legend-title {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    margin-bottom: 1rem;
    transform: translateZ(25px);
}

.legend-description {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    transform: translateZ(20px);
}

@media (max-width: 768px) {
    .legends-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .legend-card {
        transform: none !important;
    }
    
    .sport-subsection {
        padding: 0 0.5rem;
    }
}

/* Seção de Jogadores Lendários */
.legends-section {
    padding: 100px 0;
    background-color: var(--darker);
    color: var(--white);
}

.section-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 4rem;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

.sports-category {
    margin-bottom: 6rem;
}

.category-title {
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding-left: 1rem;
    border-left: 4px solid var(--primary-color);
}

.players-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 0 1rem;
}

.player-card {
    background: linear-gradient(145deg, var(--dark), var(--darker));
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.player-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 175, 239, 0.2);
}

.player-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

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

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

.player-info {
    padding: 1.5rem;
    text-align: center;
}

.player-info h4 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.player-info p {
    color: var(--white);
    opacity: 0.8;
    font-size: 1rem;
}

/* Seção de Preços */
.prices-section {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--darker) 0%, var(--dark) 100%);
    position: relative;
    overflow: hidden;
}

.prices-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(0, 119, 204, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 119, 204, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.product-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(0, 119, 204, 0.2);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.product-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(0, 119, 204, 0.3);
}

.product-image {
    position: relative;
    width: 100%;
    padding-top: 100%; /* Aspect ratio 1:1 */
    overflow: hidden;
    background: rgba(0, 0, 0, 0.2);
}

.product-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-details {
    padding: 1.5rem;
}

.product-title {
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 0.8rem;
}

.product-price {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.product-description {
    color: var(--white);
    opacity: 0.8;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1.2rem;
}

.product-sizes {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.size-tag {
    background: rgba(0, 119, 204, 0.1);
    color: var(--primary-color);
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
}

.size-tag:hover {
    background: rgba(0, 119, 204, 0.2);
}

.additional-info {
    margin-top: 4rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(0, 119, 204, 0.2);
    border-radius: 12px;
}

.info-title {
    color: var(--primary-color);
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    text-align: center;
}

.info-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.info-list li {
    color: var(--white);
    opacity: 0.9;
    font-size: 0.95rem;
    line-height: 1.5;
    padding-left: 1.5rem;
    position: relative;
}

.info-list li::before {
    content: '•';
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .products-grid {
        gap: 2rem;
    }

    .product-details {
        padding: 1.2rem;
    }

    .product-title {
        font-size: 1.1rem;
    }

    .product-price {
        font-size: 1.3rem;
    }

    .additional-info {
        margin-top: 3rem;
        padding: 1.5rem;
    }

    .info-title {
        font-size: 1.2rem;
        margin-bottom: 1.2rem;
    }
}

@media (max-width: 480px) {
    .products-grid {
        gap: 1.5rem;
    }

    .product-details {
        padding: 1rem;
    }

    .product-price {
        font-size: 1.2rem;
    }

    .additional-info {
        margin-top: 2.5rem;
        padding: 1.2rem;
    }
}

/* Tabela de Preços Atacado */
.wholesale-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    overflow: hidden;
}

.wholesale-table th,
.wholesale-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
}

.wholesale-table th {
    background-color: rgba(0, 0, 0, 0.3);
    font-weight: 600;
}

.wholesale-table .discount {
    color: #00A3FF;
    font-weight: 600;
}

/* Seção de Contato */
.contact {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--dark) 0%, var(--darker) 100%);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(0, 119, 204, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 119, 204, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.contact .section-title {
    color: var(--white);
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    font-weight: 600;
    position: relative;
}

.contact .section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: var(--primary-color);
    margin: 1rem auto 0;
    border-radius: 2px;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
    position: relative;
    z-index: 1;
}

.contact-info {
    color: var(--white);
    padding-right: 2rem;
    text-align: center;
    margin: 30px 0;
}

.contact-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    color: var(--white);
    opacity: 0.9;
}

.contact-info h2 {
    margin-bottom: 20px;
    color: var(--white);
}

/* Lista de Métodos de Contato */
.contact-methods {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.contact-method-item {
    display: flex;
    align-items: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(0, 119, 204, 0.2);
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.contact-method-item:hover {
    background: rgba(255, 255, 255, 0.03);
    transform: translateY(-2px);
}

.contact-method-icon {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-right: 1rem;
    flex-shrink: 0;
}

.contact-method-content {
    flex: 1;
}

.contact-method-info {
    color: var(--white);
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .contact-methods {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }

    .contact-method-item {
        padding: 0.8rem;
    }

    .contact-method-icon {
        font-size: 1.1rem;
    }

    .contact-method-info {
        font-size: 0.9rem;
    }
}

/* Tabela de Preços */
.wholesale-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin-bottom: 3rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(0, 119, 204, 0.2);
}

.wholesale-table th {
    background: rgba(0, 119, 204, 0.1);
    color: var(--primary-color);
    padding: 1.2rem;
    font-weight: 600;
    text-align: left;
}

.wholesale-table td {
    padding: 1rem 1.2rem;
    color: var(--white);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.wholesale-table tr:hover td {
    background: rgba(255, 255, 255, 0.03);
}

/* Formulário */
.contact-form {
    background: rgba(255, 255, 255, 0.02);
    padding: 3rem;
    border-radius: 12px;
    border: 1px solid rgba(0, 119, 204, 0.2);
    position: relative;
    transition: all 0.3s ease;
}

.contact-form:hover {
    background: rgba(255, 255, 255, 0.03);
    transform: translateY(-5px);
}

.form-title {
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-size: 1.5rem;
    font-weight: 500;
}

.form-group {
    margin-bottom: 1.5rem;
    position: relative;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--white);
    font-weight: 400;
    font-size: 0.95rem;
    opacity: 0.9;
}

.form-control {
    width: 100%;
    padding: 0.875rem 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(0, 119, 204, 0.2);
    border-radius: 6px;
    color: var(--white);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: rgba(0, 119, 204, 0.5);
    background: rgba(255, 255, 255, 0.04);
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

textarea.form-control {
    min-height: 120px;
    resize: none;
    max-height: 120px;
    overflow-y: auto;
}

.submit-btn {
    background: var(--primary-color);
    color: var(--white);
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 1rem;
}

.submit-btn:hover {
    background: #0095cc;
    transform: translateY(-2px);
}

.submit-btn:active {
    transform: translateY(0);
}

.form-message {
    padding: 1rem;
    border-radius: 6px;
    margin-top: 1rem;
    font-weight: 400;
    font-size: 0.95rem;
    text-align: center;
    display: none;
}

.form-message.success {
    background: rgba(0, 119, 204, 0.1);
    color: var(--primary-color);
    border: 1px solid rgba(0, 119, 204, 0.2);
}

.form-message.error {
    background: rgba(255, 71, 87, 0.1);
    color: #ff4757;
    border: 1px solid rgba(255, 71, 87, 0.2);
}

@media (max-width: 768px) {
    .contact-section {
        padding: 80px 0;
    }

    .contact-section .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-info {
        padding-right: 0;
    }

    .wholesale-table {
        font-size: 0.9rem;
    }

    .contact-form {
        padding: 2rem;
    }

    .form-title {
        font-size: 1.3rem;
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 480px) {
    .contact-section {
        padding: 60px 0;
    }

    .contact-section .section-title {
        font-size: 1.8rem;
    }

    .wholesale-table {
        font-size: 0.85rem;
    }

    .contact-form {
        padding: 1.5rem;
    }
}

.policy-section a {
    color: var(--primary-color);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.policy-section a:hover {
    color: #0095cc;
}

.policy-section .contact-info {
    text-align: center;
    margin-top: 60px;
    padding: 30px;
    border-radius: 15px;
}

.policy-section .contact-info h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.policy-section .contact-options {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.policy-section .contact-button {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    background: var(--primary-color);
    color: var(--white) !important;
    text-decoration: none !important;
    border-radius: 25px;
    transition: all 0.3s ease;
    min-width: 160px;
    justify-content: center;
    margin: 0 auto;
}

.policy-section .contact-button:hover {
    background: #0095cc;
    transform: translateY(-2px);
}

.policy-section .contact-button i {
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .policy-section .contact-methods {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }

    .policy-section .contact-method-item {
        padding: 0.8rem;
    }

    .policy-section .contact-method-icon {
        font-size: 1.1rem;
    }

    .policy-section .contact-method-info {
        font-size: 0.9rem;
    }
}

/* Estilos Comuns para Seções */
.section-title {
    color: var(--white);
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    font-weight: 600;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: var(--primary-color);
    margin: 1rem auto 0;
    border-radius: 2px;
}

/* Footer com efeitos especiais */
.footer {
    background: linear-gradient(135deg, #001e3c 0%, #001428 100%);
    color: var(--white);
    padding: 6rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(
            135deg,
            rgba(0, 163, 255, 0.1) 0%,
            transparent 100%
        ),
        radial-gradient(
            circle at 0% 0%,
            rgba(0, 163, 255, 0.2) 0%,
            transparent 50%
        ),
        radial-gradient(
            circle at 100% 100%,
            rgba(0, 163, 255, 0.2) 0%,
            transparent 50%
        );
    opacity: 1;
    z-index: 1;
    animation: gradientMove 20s ease infinite;
}

.footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        45deg,
        rgba(0, 163, 255, 0.03) 0px,
        rgba(0, 163, 255, 0.03) 1px,
        transparent 1px,
        transparent 10px
    );
    z-index: 2;
}

@keyframes gradientMove {
    0% {
        background-position: 0% 0%;
    }
    50% {
        background-position: 100% 100%;
    }
    100% {
        background-position: 0% 0%;
    }
}

.footer .container {
    position: relative;
    z-index: 3;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand {
    max-width: 300px;
}

.footer-brand p {
    margin-top: 1.5rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.footer-logo {
    width: 180px;
    height: auto;
    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
}

.footer-logo:hover {
    transform: translateY(-5px);
    filter: brightness(0) invert(1) drop-shadow(0 0 5px rgba(0, 163, 255, 0.5));
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.link-group h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.link-group a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    display: block;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 0;
    cursor: pointer;
}

.link-group a:hover {
    color: var(--primary-color);
    transform: translateX(8px);
}

.footer-social h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: var(--primary-color);
    transform: translateY(-5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

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

    .footer-brand {
        max-width: 100%;
        text-align: center;
    }

    .footer-logo {
        margin: 0 auto;
    }

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

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

    .social-links {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .footer-links {
        grid-template-columns: 1fr;
    }
}

/* Efeito de loading suave para imagens */
img {
    opacity: 0;
    transition: opacity 0.5s ease;
}

img.loaded {
    opacity: 1;
}

/* Botão Voltar ao Topo */
.back-to-top {
    position: fixed;
    bottom: -60px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    opacity: 0;
    z-index: 999;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.back-to-top.visible {
    bottom: 30px;
    opacity: 1;
}

.back-to-top:hover {
    background-color: #0095cc;
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 175, 239, 0.3);
}

.back-to-top i {
    transition: transform 0.3s ease;
}

.back-to-top:hover i {
    transform: translateY(-2px);
}

/* Garantir que as seções não sobreponham o menu */
section {
    position: relative;
    z-index: 1;
}

/* Scrollbar Personalizada */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--dark);
    border: 1px solid rgba(0, 175, 239, 0.1);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(
        to bottom,
        var(--primary-color),
        rgba(0, 175, 239, 0.8)
    );
    border: 2px solid var(--dark);
    border-radius: 6px;
    box-shadow: inset 0 0 6px rgba(255, 255, 255, 0.1);
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(
        to bottom,
        #0095cc,
        rgba(0, 149, 204, 0.8)
    );
    box-shadow: inset 0 0 8px rgba(255, 255, 255, 0.2);
}

::-webkit-scrollbar-button:single-button {
    background-color: var(--dark);
    border: 1px solid rgba(0, 175, 239, 0.2);
    display: block;
    height: 13px;
    width: 12px;
}

/* Up */
::-webkit-scrollbar-button:single-button:vertical:decrement {
    border-radius: 4px 4px 0 0;
    border-width: 1px 1px 0 1px;
}

::-webkit-scrollbar-button:single-button:vertical:decrement:hover {
    background-image: linear-gradient(
        to bottom,
        rgba(0, 175, 239, 0.3),
        transparent
    );
}

/* Down */
::-webkit-scrollbar-button:single-button:vertical:increment {
    border-radius: 0 0 4px 4px;
    border-width: 0 1px 1px 1px;
}

::-webkit-scrollbar-button:single-button:vertical:increment:hover {
    background-image: linear-gradient(
        to top,
        rgba(0, 175, 239, 0.3),
        transparent
    );
}

/* Setas */
::-webkit-scrollbar-button:single-button:vertical:decrement::before {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-bottom: 4px solid var(--primary-color);
    position: relative;
    top: 3px;
    left: 1px;
}

::-webkit-scrollbar-button:single-button:vertical:increment::before {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid var(--primary-color);
    position: relative;
    top: 5px;
    left: 1px;
}

::-webkit-scrollbar-button:single-button:hover::before {
    border-bottom-color: #fff;
    border-top-color: #fff;
}

/* Cursor pointer nos menus */
.floating-nav li a,
.nav-links li a,
.product-sizes .size-tag,
.info-list li,
.contact-form .submit-btn,
.footer-links a,
.social-links a,
.social-nav a {
    cursor: pointer;
}

/* Bloquear resize da textarea */
.contact-form textarea {
    resize: none;
    min-height: 120px;
    max-height: 120px;
    overflow-y: auto;
}

/* Media Queries */
@media (max-width: 768px) {
    /* Esconder menus flutuantes */
    .floating-nav,
    .social-nav {
        display: none;
    }

    #particles-js {
        opacity: 0.5;
    }
}

/* Menu de Navegação Flutuante */
.floating-nav {
    position: fixed;
    top: 1.5rem;
    right: 1.5rem;
    z-index: 99999;
    padding: 0.5rem;
}

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

.floating-nav li {
    margin: 0.3rem 0;
    text-align: right;
}

.floating-nav a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 0.9rem;
    padding: 0.3rem;
    display: inline-block;
    transition: color 0.3s ease;
    font-weight: 400;
    cursor: auto;
}

.floating-nav a:hover {
    color: var(--primary-color);
    text-shadow: 0 0 15px var(--primary-color);
}

.floating-nav a.active {
    color: var(--primary-color);
    text-shadow: 0 0 15px var(--primary-color);
}

/* Menu de Redes Sociais */
.social-nav {
    position: absolute;
    bottom: 25%;
    left: 2rem;
    z-index: 99;
}

.social-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}

.social-nav li {
    position: relative;
}

.social-nav a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 1.2rem;
    transition: color 0.3s ease, text-shadow 0.3s ease;
    display: block;
    cursor: pointer;
}

.social-nav a:hover {
    color: var(--primary-color);
    text-shadow: 0 0 15px var(--primary-color);
}

/* Tooltip Personalizado */
.social-nav a::after {
    content: attr(title);
    position: absolute;
    left: 140%;
    top: 50%;
    transform: translateY(-50%) translateX(-20px);
    background: rgba(0, 0, 0, 0.7);
    color: rgba(255, 255, 255, 0.9);
    padding: 0.3rem 0.7rem;
    border-radius: 3px;
    font-size: 0.75rem;
    white-space: nowrap;
    pointer-events: none;
    opacity: 0;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 163, 255, 0.3);
    box-shadow: 0 0 8px rgba(0, 163, 255, 0.1);
}

.social-nav a:hover::after {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}

/* Seta do Tooltip */
.social-nav a::before {
    content: '';
    position: absolute;
    left: calc(140% - 4px);
    top: 50%;
    transform: translateY(-50%) translateX(-20px);
    border: 4px solid transparent;
    border-right-color: rgba(0, 0, 0, 0.7);
    opacity: 0;
    transition: all 0.3s ease;
}

.social-nav a:hover::before {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .legends-section,
    .prices-section,
    .contact {
        padding: 80px 0;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.8rem;
    }

    .legends-section,
    .prices-section,
    .contact {
        padding: 60px 0;
    }
}

/* Botão Catálogo Completo */
.catalog-button-container {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

.catalog-button {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2rem;
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 175, 239, 0.3);
}

.catalog-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 175, 239, 0.4);
    background: #0095cc;
}

.catalog-button i {
    font-size: 1.2em;
}

/* Modais */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0);
    overflow-y: auto;
    transition: background-color 0.3s ease;
    overflow: hidden;
}

.modal.active {
    background-color: rgba(0, 0, 0, 0.8);
}

.modal-content {
    background-color: var(--dark);
    margin: 5% auto;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    width: 90%;
    max-width: 800px;
    position: relative;
    transform: translateY(-20px);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    max-height: 75vh;
}

.modal.active .modal-content {
    transform: translateY(0);
    opacity: 1;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 20px;
}

.modal-header h2 {
    margin: 0;
    color: var(--white);
}

.modal-close {
    background: none;
    border: none;
    font-size: 24px;
    color: var(--white);
    cursor: pointer;
    padding: 0;
    line-height: 1;
}

.modal-close:hover {
    color: var(--primary-color);
}

.modal-body {
    color: var(--white);
    overflow-y: auto;
    max-height: calc(75vh - 110px);
}

/* FAQ Modal */
.faq-search {
    margin-bottom: 20px;
}

.faq-search input {
    width: 100%;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
}

.faq-categories {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.faq-category {
    padding: 8px 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    background: none;
    color: var(--white);
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-category.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.faq-item {
    margin-bottom: 20px;
    padding: 15px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    transition: background 0.3s ease;
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.08);
}

.faq-item h3 {
    margin: 0 0 10px;
    font-size: 1.1rem;
    color: var(--primary-color);
}

/* Envios Modal */
.shipping-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.shipping-section {
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.shipping-section h3 {
    color: var(--primary-color);
    margin: 0 0 10px;
}

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

.shipping-section li {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.shipping-section li:before {
    content: "•";
    color: var(--primary-color);
}

/* Contato Modal */
.quick-contact {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-option {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.contact-option:hover {
    transform: translateY(-2px);
}

.contact-option i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.contact-option h3 {
    margin: 10px 0;
    color: var(--white);
}

.contact-option p {
    margin: 0 0 15px;
    color: rgba(255, 255, 255, 0.7);
}

.contact-button {
    display: inline-block;
    padding: 8px 20px;
    background: var(--primary-color);
    color: var(--white) !important;
    text-decoration: none !important;
    border-radius: 20px;
    transition: background 0.3s ease;
}

.contact-button:hover {
    background: #0095cc;
}

.contact-divider {
    position: relative;
    text-align: center;
    margin: 20px 0;
}

.contact-divider:before,
.contact-divider:after {
    content: "";
    position: absolute;
    top: 50%;
    width: 45%;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
}

.contact-divider:before {
    left: 0;
}

.contact-divider:after {
    right: 0;
}

.contact-divider span {
    background: var(--dark);
    padding: 0 15px;
    color: rgba(255, 255, 255, 0.5);
}

.modal-link {
    display: block;
    text-align: center;
    color: var(--primary-color);
    text-decoration: none;
    margin-top: 15px;
    transition: color 0.3s ease;
}

.modal-link:hover {
    color: #0095cc;
}

.contact-form-link {
    padding: 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    margin-top: 20px;
}

/* Responsividade dos Modais */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        margin: 20px;
    }

    .faq-categories {
        gap: 5px;
    }

    .faq-category {
        padding: 6px 12px;
        font-size: 0.9rem;
    }

    .contact-option {
        padding: 15px;
    }
}

/* Página de Política de Trocas */
.policy-page {
    padding: 120px 0 60px;
    position: relative;
    color: var(--white);
    min-height: 100vh;
    background-color: var(--dark);
}

.policy-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="1" fill="%23ffffff05"/></svg>') 0 0/50px 50px;
    opacity: 0.05;
}

.policy-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.policy-section {
    margin-bottom: 3rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.policy-section h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.policy-section p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

.policy-section ul, 
.policy-section ol {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.policy-section li {
    margin-bottom: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.alert-text {
    color: #ff4444 !important;
    font-weight: 500;
    padding: 1rem;
    background: rgba(255, 68, 68, 0.1);
    border-radius: 8px;
    border-left: 4px solid #ff4444;
}

.legal-info {
    padding: 1.5rem;
    background: rgba(0, 175, 239, 0.1);
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.legal-info p {
    margin-bottom: 0;
    font-size: 0.95rem;
}

/* Responsividade */
@media (max-width: 768px) {
    .policy-page {
        padding: 100px 0 40px;
    }

    .policy-content {
        padding: 15px;
    }

    .policy-section {
        padding: 20px;
        margin-bottom: 30px;
    }

    .policy-section h2 {
        font-size: 1.3rem;
    }

    .contact-options {
        flex-direction: column;
    }

    .contact-options .contact-button {
        width: 100%;
        justify-content: center;
    }
}

/* Botão Voltar */
.back-button {
    position: fixed;
    top: 20px;
    left: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 25px;
    z-index: 100;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.back-button:hover {
    background: #0095cc;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.back-button i {
    font-size: 1.2rem;
}

.back-button span {
    font-weight: 500;
}

/* Ajuste de responsividade para o botão voltar */
@media (max-width: 768px) {
    .back-button {
        top: 15px;
        left: 15px;
        padding: 10px 16px;
        font-size: 0.9rem;
    }

    .back-button i {
        font-size: 1rem;
    }
}

.policy-section .contact-button {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    background: var(--primary-color);
    color: var(--white) !important;
    text-decoration: none !important;
    border-radius: 25px;
    transition: all 0.3s ease;
    min-width: 160px;
    justify-content: center;
    margin: 0 auto;
}

.contact-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.contact-buttons .contact-button {
    min-width: 200px;
    text-align: center;
}

@media (max-width: 768px) {
    .contact-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .contact-buttons .contact-button {
        width: 80%;
        margin: 0;
    }
}

/* Estilos do Catálogo */
.catalog-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 2rem;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
}

.catalog-card {
    position: relative;
    height: 180px;
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.catalog-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

/* Gradientes animados */
.masc-theme .theme-background {
    background: linear-gradient(135deg, #1a237e 0%, #0d47a1 50%, #1a237e 100%);
    background-size: 200% 200%;
    animation: gradientFlow 5s ease infinite;
}

.fem-theme .theme-background {
    background: linear-gradient(135deg, #ad1457 0%, #e91e63 50%, #ad1457 100%);
    background-size: 200% 200%;
    animation: gradientFlow 5s ease infinite;
}

.kids-theme .theme-background {
    background: linear-gradient(135deg, #ff6b6b 0%, #ffd93d 50%, #ff6b6b 100%);
    background-size: 200% 200%;
    animation: gradientFlow 5s ease infinite;
}

.retro-theme .theme-background {
    background: linear-gradient(135deg, #783f04 0%, #b45f06 50%, #783f04 100%);
    background-size: 200% 200%;
    animation: gradientFlow 5s ease infinite;
}

.nba-theme .theme-background {
    background: linear-gradient(135deg, #c9082a 0%, #17408b 50%, #c9082a 100%);
    background-size: 200% 200%;
    animation: gradientFlow 5s ease infinite;
}

.diversos-theme .theme-background {
    background: linear-gradient(135deg, #c9a608 0%, #7f8b17 50%, #c908a9 100%);
    background-size: 200% 200%;
    animation: gradientFlow 5s ease infinite;
}

@keyframes gradientFlow {
    0% {
        background-position: 0% 0%;
    }
    50% {
        background-position: 100% 100%;
    }
    100% {
        background-position: 0% 0%;
    }
}

.catalog-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 2rem;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.4));
    color: var(--white);
    display: flex;
    align-items: center;
}

.content-wrapper {
    max-width: 70%;
    position: relative;
    z-index: 1;
}

.category-icon {
    position: absolute;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 4rem;
    opacity: 0.2;
    transition: all 0.4s ease;
}

.catalog-card:hover .category-icon {
    opacity: 0.4;
    transform: translateY(-50%) rotate(5deg);
}

.catalog-overlay h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.catalog-card:hover .catalog-overlay h3 {
    transform: translateY(-5px);
}

.catalog-overlay p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.catalog-card:hover .catalog-overlay p {
    opacity: 0.9;
}

.view-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
    color: var(--white);
    opacity: 0.9;
}

.catalog-card:hover .view-more {
    animation: textPulse 1.5s ease-in-out infinite;
}

@keyframes textPulse {
    0%, 100% {
        opacity: 0.9;
    }
    50% {
        opacity: 1;
    }
}

.view-more i {
    transition: transform 0.4s ease;
}

.catalog-card:hover .view-more i {
    animation: arrowPulse 1.5s ease-in-out infinite;
}

@keyframes arrowPulse {
    0%, 100% {
        transform: translateX(0) scale(1);
    }
    50% {
        transform: translateX(5px) scale(1.1);
    }
}

@media (max-width: 768px) {
    .catalog-card {
        height: 120px;
    }

    .category-icon {
        font-size: 2.5rem;
        right: 1rem;
    }

    .catalog-overlay {
        padding: 1rem;
    }

    .catalog-overlay h3 {
        font-size: 1.4rem;
    }

    .catalog-overlay p {
        font-size: 0.9rem;
    }

    .content-wrapper {
        max-width: 85%;
    }
}

.soccer-ball-loader {
    font-size: 40px;
    display: block;
    margin: 20px auto;
    text-align: center;
    animation: bounce 1s ease infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.form-confirmation, 
.form-error {
    text-align: center;
    padding: 15px;
    margin-top: 15px;
    border-radius: 5px;
    font-weight: bold;
}

.form-confirmation {
    background-color: rgba(0, 175, 239, 0.1);
    color: #00AFEF;
}

.form-error {
    background-color: rgba(255, 0, 0, 0.1);
    color: #FF0000;
}

@media (max-width: 420px) {
    .contact {
        padding: 40px 10px;
    }

    .contact-container {
        padding: 0;
        margin: 0;
        width: 100%;
    }

    .contact-info {
        width: 100%;
        padding: 10px 5px;
        overflow-x: hidden;
    }

    .wholesale-table {
        font-size: 14px;
        width: 100%;
        margin: 10px 0;
    }

    .wholesale-table th,
    .wholesale-table td {
        padding: 8px;
        white-space: normal;
    }

    .contact-methods {
        grid-template-columns: 1fr;
        gap: 8px;
        padding: 0;
        width: 100%;
    }

    .contact-method-item {
        padding: 8px;
        width: 100%;
        box-sizing: border-box;
    }

    .contact-form {
        padding: 15px 10px;
        width: 100%;
        box-sizing: border-box;
    }

    .form-control {
        width: 100%;
        box-sizing: border-box;
    }
}