/* =========== BASE STYLES =========== */
:root {
    /* Cores principais */
    --color-dark: #0a0a0a;
    --color-darker: #050505;
    --color-dark-accent: #121212;
    --color-light: #f5f5f5;
    --color-light-muted: #ababab;
    --color-primary: #3b82f6;
    --color-secondary: #8b5cf6;
    --color-accent: #ec4899;
    
    /* Gradientes */
    --gradient-primary: linear-gradient(135deg, #3b82f6, #8b5cf6);
    --gradient-secondary: linear-gradient(135deg, #8b5cf6, #ec4899);
    --gradient-accent: linear-gradient(135deg, #ec4899, #ef4444);
    
    /* Sombras */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-glow: 0 0 15px rgba(59, 130, 246, 0.5);
    
    /* Bordas */
    --border-radius-sm: 4px;
    --border-radius-md: 8px;
    --border-radius-lg: 16px;
    --border-radius-full: 9999px;
}

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

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

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

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
}

section {
    padding: 80px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--color-light-muted);
    max-width: 700px;
    margin: 0 auto;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

/* =========== ANIMAÇÕES =========== */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.5;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 15px rgba(59, 130, 246, 0.5);
    }
    50% {
        box-shadow: 0 0 30px rgba(139, 92, 246, 0.8);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========== COMPONENTES =========== */

/* Botões */
.btn {
    display: inline-block;
    padding: 10px 24px;
    border-radius: var(--border-radius-full);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    border: none;
    outline: none;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.btn-lg {
    padding: 14px 28px;
    font-size: 1rem;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--color-light);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: var(--color-dark-accent);
    color: var(--color-light);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-secondary:hover {
    background: var(--color-dark);
    transform: translateY(-3px);
}

.btn-glow {
    background: var(--gradient-primary);
    color: var(--color-light);
    box-shadow: var(--shadow-glow);
    animation: glow 2s infinite;
}

.btn-glow:hover {
    transform: translateY(-3px) scale(1.05);
}

/* Cards */
.card {
    background-color: var(--color-dark-accent);
    border-radius: var(--border-radius-md);
    padding: 25px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

/* =========== LAYOUT =========== */

/* Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-header.scrolled {
    background-color: rgba(5, 5, 5, 0.95);
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: 1px;
}

.logo .highlight {
    color: var(--color-primary);
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.main-nav a {
    color: var(--color-light);
    font-weight: 500;
    position: relative;
}

.main-nav a:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.main-nav a:hover:after {
    width: 100%;
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10;
}

.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #ffffff;
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Menu Mobile Estilizado */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(5, 5, 5, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1005;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    overflow-y: auto;
    padding: 80px 20px 40px;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
    z-index: 10000;
}

.mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu-close span {
    position: relative;
    width: 30px;
    height: 30px;
}

.mobile-menu-close span:before,
.mobile-menu-close span:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 3px;
    background-color: #ffffff;
    border-radius: 3px;
    top: 50%;
    left: 0;
    transition: all 0.3s ease;
}

.mobile-menu-close span:before {
    transform: rotate(45deg);
}

.mobile-menu-close span:after {
    transform: rotate(-45deg);
}

.mobile-menu-list {
    list-style-type: none;
    margin: 0;
    padding: 0;
    width: 100%;
    max-width: 300px;
}

.mobile-menu-list li {
    margin: 15px 0;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.3s ease;
    transition-delay: calc(0.1s * var(--item-index, 0));
}

.mobile-menu.active .mobile-menu-list li {
    transform: translateY(0);
    opacity: 1;
}

.mobile-menu-list a {
    display: block;
    font-size: 1.8rem;
    font-weight: 600;
    text-align: center;
    padding: 12px 20px;
    border-radius: var(--border-radius-md);
    transition: all 0.3s ease;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.1), transparent);
    color: var(--color-light);
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.mobile-menu-list a:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.4s ease;
}

.mobile-menu-list a:hover:before {
    width: 100%;
}

.mobile-menu-logo {
    margin-bottom: 40px;
}

.mobile-menu-logo .logo {
    font-size: 1.5rem;
}

.mobile-menu-footer {
    margin-top: 40px;
    text-align: center;
}

.mobile-menu-social {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.mobile-menu-social a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: var(--color-dark-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 1.2rem;
    color: var(--color-light);
}

.mobile-menu-social a:hover {
    background: var(--gradient-primary);
    transform: translateY(-3px);
}

/* Animação do hambúrguer para X */
.mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Hero Section Redesigned */
.hero-section {
    position: relative;
    min-height: 100vh;
    background-color: #0a0a0a;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-dots {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.5;
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 30%, rgba(61, 125, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 90% 70%, rgba(255, 107, 107, 0.1) 0%, transparent 50%);
}

.hero-glow {
    position: absolute;
    top: 30%;
    right: 10%;
    width: 60%;
    height: 60%;
    background: radial-gradient(circle at center, rgba(61, 125, 255, 0.15) 0%, transparent 70%);
    filter: blur(50px);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-text {
    max-width: 600px;
}

.hero-title {
    font-size: 5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #ffffff;
    letter-spacing: -0.02em;
}

.hero-unique {
    display: block;
    font-size: 5.5rem;
    letter-spacing: -0.03em;
}

.gradient-text {
    background: linear-gradient(135deg, #3d7dff, #ff6b6b);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    position: relative;
    display: inline-block;
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2.5rem;
}

.hero-cta {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #3d7dff, #6a5af9);
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(106, 90, 249, 0.3);
    border: none;
    cursor: pointer;
}

.hero-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(61, 125, 255, 0.3);
}

.hero-button i {
    transition: transform 0.3s ease;
}

.hero-button:hover i {
    transform: translateX(5px);
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-sneaker-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 500px;
    margin: 0 auto;
}

.hero-sneaker-wrapper {
    position: relative;
    transform-style: preserve-3d;
    animation: float 6s ease-in-out infinite;
}

.hero-sneaker-img {
    width: 100%;
    max-width: 450px;
    height: auto;
    transform: rotate(-10deg);
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.3));
    animation: float 6s ease-in-out infinite;
    z-index: 2;
    transition: all 0.5s ease;
}

/* Garantindo que a transição seja mantida quando as imagens forem mudando */
.hero-sneaker-img img,
.hero-sneaker-img svg {
    width: 100%;
    height: auto;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.hero-sneaker-shadow {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 20px;
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(10px);
    z-index: -1;
    animation: shadowPulse 6s ease-in-out infinite;
}

@keyframes shadowPulse {
    0%, 100% {
        opacity: 0.6;
        transform: translateX(-50%) scale(1);
    }
    50% {
        opacity: 0.4;
        transform: translateX(-50%) scale(0.8);
    }
}

.hero-sneaker-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.decoration-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.5;
}

.circle-1 {
    top: 10%;
    right: 10%;
    width: 150px;
    height: 150px;
    border: 2px solid rgba(61, 125, 255, 0.3);
    animation: rotateCircle 20s linear infinite;
}

.circle-2 {
    bottom: 15%;
    left: 5%;
    width: 100px;
    height: 100px;
    border: 2px solid rgba(255, 107, 107, 0.3);
    animation: rotateCircle 15s linear infinite reverse;
}

.decoration-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    height: 1px;
}

.line-1 {
    top: 30%;
    left: -10%;
    width: 120%;
    transform: rotate(15deg);
    animation: moveLine 15s linear infinite;
}

.line-2 {
    bottom: 40%;
    left: -10%;
    width: 120%;
    transform: rotate(-15deg);
    animation: moveLine 20s linear infinite reverse;
}

@keyframes rotateCircle {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes moveLine {
    0% {
        transform: translateX(-5%) rotate(15deg);
    }
    100% {
        transform: translateX(5%) rotate(15deg);
    }
}

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

/* Responsive styles for hero section */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 4rem;
    }
    
    .hero-unique {
        font-size: 4.5rem;
    }
    
    .hero-sneaker-container {
        height: 450px;
    }
}

@media (max-width: 992px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 20px;
    }
    
    .hero-text {
        margin: 0 auto;
        order: 1;
    }
    
    .hero-visual {
        order: 0;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-unique {
        font-size: 4rem;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .hero-sneaker-container {
        height: 400px;
    }
    
    .hero-sneaker-img {
        max-width: 100%;
        max-height: 100%;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 100px 0 50px;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-unique {
        font-size: 3.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-sneaker-container {
        height: 350px;
    }
    
    .circle-1 {
        width: 100px;
        height: 100px;
    }
    
    .circle-2 {
        width: 70px;
        height: 70px;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding: 80px 0 40px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-unique {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .hero-button {
        width: 100%;
        justify-content: center;
        padding: 16px 24px;
    }
    
    .hero-sneaker-container {
        height: 300px;
    }
}

/* About Section */
.about-section {
    background-color: var(--color-dark);
    position: relative;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background-color: var(--color-dark-accent);
    border-radius: var(--border-radius-md);
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-glow);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

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

.feature-card p {
    color: var(--color-light-muted);
}

/* Stats Section */
.stats-section {
    padding: 80px 0;
    background: linear-gradient(to bottom, #0a0c10, #111827);
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 30%, rgba(59, 130, 246, 0.08), transparent 40%),
                radial-gradient(circle at 80% 70%, rgba(139, 92, 246, 0.08), transparent 40%);
    z-index: 1;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.stat-item {
    text-align: center;
    padding: 30px 20px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.05);
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
    opacity: 0.7;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
    position: relative;
    min-height: 3.5rem; /* Ensure consistent height during animation */
    display: inline-block;
}

/* Add specific styling for the percentage number */
.stat-number[data-value="95"]::after {
    content: "%";
    font-size: 2rem;
    position: relative;
    top: -0.5rem;
    margin-left: 2px;
}

.stat-label {
    font-size: 1.1rem;
    color: #e5e7eb;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-description {
    font-size: 0.9rem;
    color: #9ca3af;
    margin-top: 10px;
    line-height: 1.5;
}

@media (max-width: 992px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 0 20px;
    }
    
    .stat-number {
        font-size: 3rem;
    }
    
    .stat-label {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .stats-section {
        padding: 60px 0;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        margin: 0 auto;
    }
    
    .stat-item {
        padding: 30px 20px;
        width: 100%;
    }
    
    .stat-number {
        font-size: 2.8rem;
    }
}

/* Customize Section */
.customize-section {
    background-color: var(--color-darker);
    position: relative;
    overflow: hidden;
}

.customize-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.1) 0%, rgba(10, 10, 10, 0) 70%);
    border-radius: 50%;
    z-index: 1;
}

.customize-container {
    margin: 40px 0;
    position: relative;
    z-index: 2;
    background-color: var(--color-dark-accent);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.customize-container .container {
    max-width: 100%;
    padding: 0;
}

.customize-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 30px;
}

.info-card, .cta-card {
    background-color: var(--color-dark-accent);
    border-radius: var(--border-radius-md);
    padding: 25px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.info-card h3, .cta-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--color-light);
}

.info-card ul {
    list-style: none;
}

.info-card li {
    margin-bottom: 10px;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-card i {
    color: var(--color-primary);
}

.cta-card {
    text-align: center;
}

.cta-card p {
    margin-bottom: 20px;
}

.small-text {
    font-size: 0.8rem;
    opacity: 0.7;
    margin-top: 10px;
}

/* Gallery Section */
.gallery-section {
    padding: 50px 0;
    background-color: #0a0c10;
    position: relative;
    overflow: hidden;
}

.gallery-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 30%, rgba(59, 130, 246, 0.1), transparent 40%),
                radial-gradient(circle at 70% 70%, rgba(139, 92, 246, 0.1), transparent 40%);
    z-index: 1;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), 
                box-shadow 0.5s ease;
    cursor: pointer;
    transform-style: preserve-3d;
    perspective: 1000px;
    margin: 0;
    padding: 0;
}

.gallery-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 
                0 0 30px rgba(59, 130, 246, 0.2);
    z-index: 10;
}

.gallery-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.7s ease, filter 0.7s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    transform-style: preserve-3d;
    margin: 0;
}

.gallery-item:hover .gallery-image {
    filter: brightness(1.1) contrast(1.1);
    transform: translateZ(20px);
}

.gallery-sneaker {
    width: 85%;
    height: 80%;
    object-fit: contain;
    transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275), 
                filter 0.6s ease;
    filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.4));
    z-index: 2;
    transform: rotate(-10deg);
    margin: 0;
}

.gallery-item:hover .gallery-sneaker {
    transform: rotate(-5deg) scale(1.1) translateZ(30px);
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.5));
}

.gallery-logo {
    position: absolute;
    top: 15px;
    left: 15px;
    width: 50px;
    height: auto;
    z-index: 3;
    filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.4));
    opacity: 0.9;
    transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.gallery-item:hover .gallery-logo {
    opacity: 1;
    transform: scale(1.1) translateZ(40px);
}

.overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 20px 15px 10px;
    color: white;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    z-index: 4;
}

.gallery-item:hover .overlay {
    opacity: 1;
    transform: translateY(0);
}

.overlay-content h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0 0 5px 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.overlay-content p {
    font-size: 0.9rem;
    opacity: 0.9;
    margin: 0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Ajustes específicos para cada fundo de galeria */
.gallery-item:nth-child(1) .gallery-image {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
}

.gallery-item:nth-child(2) .gallery-image {
    background: linear-gradient(135deg, #ec4899, #ef4444);
}

.gallery-item:nth-child(3) .gallery-image {
    background: linear-gradient(135deg, #8b5cf6, #6366f1);
}

.gallery-item:nth-child(4) .gallery-image {
    background: linear-gradient(135deg, #10b981, #3b82f6);
}

.gallery-item:nth-child(5) .gallery-image {
    background: linear-gradient(135deg, #f59e0b, #ef4444);
}

.gallery-item:nth-child(6) .gallery-image {
    background: linear-gradient(135deg, #6366f1, #ec4899);
}

/* Responsividade aprimorada */
@media (max-width: 1200px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
        padding: 0 15px;
    }
}

@media (max-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .gallery-sneaker {
        width: 85%;
        height: 80%;
    }
    
    .overlay-content h4 {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .gallery-section {
        padding: 60px 0;
    }
    
    .gallery-grid {
        gap: 12px;
    }
    
    .gallery-item {
        aspect-ratio: 1/0.9;
    }
    
    .gallery-sneaker {
        width: 85%;
        height: 80%;
    }
    
    .gallery-logo {
        width: 45px;
        top: 12px;
        left: 12px;
    }
    
    .overlay {
        padding: 20px 12px 8px;
    }
    
    .overlay-content h4 {
        font-size: 1.1rem;
        margin: 0 0 3px 0;
    }
    
    .overlay-content p {
        font-size: 0.85rem;
    }
}

@media (max-width: 576px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        max-width: 320px;
        margin: 0 auto;
        gap: 15px;
    }
    
    .gallery-item {
        aspect-ratio: 1/0.8;
    }
    
    .gallery-sneaker {
        width: 85%;
        height: 80%;
        transform: rotate(-5deg);
    }
    
    .gallery-item:hover .gallery-sneaker {
        transform: rotate(0deg) scale(1.1) translateZ(30px);
    }
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    background-color: var(--color-darker);
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.1) 0%, rgba(10, 10, 10, 0) 70%);
    border-radius: 50%;
    z-index: 1;
}

.testimonials-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, rgba(10, 10, 10, 0) 70%);
    border-radius: 50%;
    z-index: 1;
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.testimonials-slider {
    display: flex;
    transition: transform 0.5s ease;
    gap: 30px;
    width: 100%;
    padding: 20px 0;
}

.testimonial-card {
    flex: 0 0 calc(33.333% - 20px);
    opacity: 0.5;
    transform: scale(0.95);
    transition: all 0.5s ease;
    background: var(--color-dark-accent);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.testimonial-card.active {
    opacity: 1;
    transform: scale(1);
}

.testimonial-navigation {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
}

.nav-button {
    background: var(--color-dark-accent);
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 1.2rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.nav-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-primary);
    z-index: -1;
    transform: scale(0);
    transition: transform 0.3s ease;
    border-radius: 50%;
}

.nav-button:hover {
    color: var(--color-dark);
    transform: scale(1.1);
}

.nav-button:hover::before {
    transform: scale(1);
}

.slide-indicators {
    display: flex;
    gap: 12px;
    align-items: center;
}

.indicator-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: transparent;
    border: 2px solid var(--color-primary);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.indicator-dot.active {
    background: var(--color-primary);
    transform: scale(1.2);
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    color: var(--color-dark);
    font-weight: bold;
}

.stars {
    color: var(--color-primary);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.testimonial-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: var(--color-light);
}

.testimonial-author h4 {
    color: var(--color-primary);
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
}

.testimonial-author p {
    color: var(--color-gray);
    font-size: 0.9rem;
}

@media (max-width: 767px) {
    .testimonials-section {
        padding: 40px 0;
    }
    
    .testimonials-container {
        padding: 0 15px;
    }
    
    .testimonials-slider {
        overflow: hidden;
        gap: 0;
    }
    
    .testimonial-card {
        flex: 0 0 100%;
        margin: 0;
        transform: translateY(20px);
        opacity: 0;
        transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }
    
    .testimonial-card.active {
        opacity: 1;
        transform: translateY(0);
    }
    
    .nav-button {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .indicator-dot {
        width: 10px;
        height: 10px;
    }

    .slide-indicators {
        gap: 10px;
    }
}

/* CTA Section Redesigned */
.cta-section {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
    background-color: #0a0a0a;
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.cta-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.03) 0%, transparent 8px),
        radial-gradient(circle at 70% 60%, rgba(255, 255, 255, 0.03) 0%, transparent 8px),
        radial-gradient(circle at 40% 80%, rgba(255, 255, 255, 0.03) 0%, transparent 8px),
        radial-gradient(circle at 80% 10%, rgba(255, 255, 255, 0.03) 0%, transparent 8px);
    background-size: 180px 180px;
    opacity: 0.8;
    animation: particleFloat 60s linear infinite;
}

.cta-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(61, 125, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 107, 107, 0.15) 0%, transparent 50%);
}

.cta-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas: 
        "text image"
        "action action";
    gap: 40px;
    align-items: center;
}

.cta-text-wrapper {
    grid-area: text;
    max-width: 600px;
}

.cta-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.animate-gradient {
    background-size: 200% 200%;
    background-image: linear-gradient(45deg, #3d7dff, #ff6b6b, #ffd93d, #3d7dff);
    animation: gradientAnimation 8s ease infinite;
}

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

.cta-description {
    font-size: 1.2rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
}

.cta-image {
    grid-area: image;
    position: relative;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cta-logo {
    position: absolute;
    width: 120px;
    height: auto;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.3));
    animation: pulseLogo 3s ease-in-out infinite;
}

@keyframes pulseLogo {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.1); }
}

.cta-sneakers {
    position: relative;
    width: 100%;
    height: 100%;
}

.cta-sneaker {
    position: absolute;
    width: 250px;
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.4));
    transition: all 0.5s ease;
}

.cta-sneaker img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.cta-sneaker-1 {
    top: 10%;
    left: 0;
    transform: rotate(-15deg);
    animation: floatSneaker1 6s ease-in-out infinite;
    z-index: 3;
}

.cta-sneaker-2 {
    top: 40%;
    right: 0;
    transform: rotate(15deg);
    animation: floatSneaker2 7s ease-in-out infinite;
    z-index: 2;
}

.cta-sneaker-3 {
    bottom: 5%;
    left: 20%;
    transform: rotate(-5deg);
    animation: floatSneaker3 8s ease-in-out infinite;
    z-index: 1;
}

@keyframes floatSneaker1 {
    0%, 100% { transform: rotate(-15deg) translateY(0); }
    50% { transform: rotate(-15deg) translateY(-15px); }
}

@keyframes floatSneaker2 {
    0%, 100% { transform: rotate(15deg) translateY(0); }
    50% { transform: rotate(15deg) translateY(-20px); }
}

@keyframes floatSneaker3 {
    0%, 100% { transform: rotate(-5deg) translateY(0); }
    50% { transform: rotate(-5deg) translateY(-10px); }
}

.cta-action {
    grid-area: action;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    margin-top: 20px;
}

.cta-features {
    display: flex;
    gap: 40px;
    justify-content: center;
    margin-bottom: 10px;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    font-size: 1.1rem;
}

.cta-feature i {
    font-size: 1.3rem;
    color: #ff6b6b;
    background: linear-gradient(135deg, #ff6b6b, #ffd93d);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cta-button {
    padding: 18px 36px;
    font-size: 1.2rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #3d7dff, #ff6b6b);
    color: white;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(61, 125, 255, 0.4);
}

.cta-button i {
    transition: transform 0.3s ease;
}

.cta-button:hover i {
    transform: translateX(5px);
}

@keyframes particleFloat {
    0% { background-position: 0 0; }
    100% { background-position: 180px 180px; }
}

/* Responsive styles for CTA section */
@media (max-width: 992px) {
    .cta-content {
        grid-template-columns: 1fr;
        grid-template-areas: 
            "text"
            "image"
            "action";
        text-align: center;
    }
    
    .cta-text-wrapper {
        margin: 0 auto;
    }
    
    .cta-title {
        font-size: 3rem;
    }
    
    .cta-image {
        height: 350px;
    }
    
    .cta-sneaker {
        width: 200px;
    }
    
    .cta-features {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .cta-section {
        padding: 80px 0;
    }
    
    .cta-title {
        font-size: 2.5rem;
    }
    
    .cta-description {
        font-size: 1.1rem;
    }
    
    .cta-image {
        height: 300px;
    }
    
    .cta-sneaker {
        width: 150px;
    }
    
    .cta-logo {
        width: 100px;
    }
    
    .cta-features {
        gap: 20px;
    }
    
    .cta-feature {
        font-size: 1rem;
    }
    
    .cta-button {
        width: 100%;
        justify-content: center;
        padding: 16px 24px;
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .cta-section {
        padding: 60px 0;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-image {
        height: 250px;
    }
    
    .cta-sneaker {
        width: 120px;
    }
    
    .cta-logo {
        width: 80px;
    }
    
    .cta-features {
        flex-direction: column;
        gap: 15px;
    }
}

/* Footer */
.site-footer {
    background-color: var(--color-darker);
    padding: 80px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-column h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--gradient-primary);
}

.footer-links, .contact-info {
    list-style: none;
}

.footer-links li, .contact-info li {
    margin-bottom: 10px;
}

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

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.contact-info i {
    color: var(--color-primary);
    margin-top: 4px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--color-dark-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--gradient-primary);
    transform: translateY(-3px);
}

.newsletter-form {
    display: flex;
    margin-top: 15px;
}

.newsletter-form input {
    flex: 1;
    padding: 10px 15px;
    border: none;
    background-color: var(--color-dark-accent);
    color: var(--color-light);
    border-radius: var(--border-radius-full) 0 0 var(--border-radius-full);
    outline: none;
}

.newsletter-form button {
    border-radius: 0 var(--border-radius-full) var(--border-radius-full) 0;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.legal-links {
    display: flex;
    list-style: none;
    gap: 20px;
}

/* Adaptações para o customizar.php */
.customize-section .customize-container {
    box-shadow: var(--shadow-lg);
}

/* Reset específico apenas para o conteúdo do customizador */
.customize-container .container,
.customize-container .customizer,
.customize-container .controls,
.customize-container .canvas-container,
.customize-container #color-options,
.customize-container #svg-container,
.customize-container .zoom-controls,
.customize-container .rotation-controls,
.customize-container button {
    font-family: inherit; /* Manter a fonte consistente */
    box-sizing: border-box;
}

/* Preservar a largura original do customizador */
.customize-container > .container {
    width: 100%;
    max-width: none;
    padding: 0;
}

/* Garantir que o customizador use seus próprios estilos */
.customize-container .customizer {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
    width: 100%;
    margin: 0;
    padding: 15px;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    background-color: var(--color-dark-accent);
}

/* Manter os estilos originais para os painéis */
.customize-container .controls {
    flex: 1;
    min-width: 250px;
    padding: 20px;
    background: #121212;
    border-radius: var(--border-radius-md);
    order: 1; /* Definir ordem padrão */
}

/* Garantir que o container do canvas tenha o layout original */
.customize-container .canvas-container {
    flex: 2;
    min-width: 300px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: white;
    padding: 20px;
    border-radius: var(--border-radius-md);
    order: 2; /* Definir ordem padrão */
}

/* Esconder o título h1 do customizador para evitar duplicação */
.customize-container h1 {
    display: none;
}

/* Ajuste para dispositivos móveis */
@media (max-width: 768px) {
    .customize-container {
        padding: 15px;
    }
    
    .customize-container .customizer {
        flex-direction: column;
    }
    
    /* Inverter a ordem no mobile - canvas primeiro, controles depois */
    .customize-container .canvas-container {
        order: 1;
        margin-bottom: 20px;
    }
    
    .customize-container .controls {
        order: 2;
    }
}

/* =========== RESPONSIVIDADE =========== */
@media (max-width: 992px) {
    .hero-section .container {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-content {
        margin-bottom: 40px;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .customize-info {
        grid-template-columns: 1fr;
    }
    
    .site-header .container {
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    .main-nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-section {
        min-height: 100vh;
        padding-top: 80px; /* Espaço para o header fixo */
        padding-bottom: 30px;
        justify-content: flex-start; /* Alinhar conteúdo ao topo */
    }
    
    .hero-section .container {
        padding-top: 2rem;
        padding-bottom: 2rem;
    }
    
    .hero-content {
        padding: 0 15px;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
        margin-bottom: 15px;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 25px;
    }
    
    .hero-image {
        width: 100%;
        height: auto;
        max-height: 50vh;
    }
    
    .hero-shoe-svg {
        max-width: 100%;
        height: auto;
    }
    
    /* Ajuste para imagens de hero responsivas */
    .hero-image-container {
        margin-top: 20px;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .legal-links {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding-top: 70px;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
        line-height: 1.3;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 10px;
        width: 100%;
        padding: 0 20px;
    }
    
    .hero-cta .btn {
        width: 100%;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* =========== ELEMENTOS DE SUBSTITUIÇÃO DE IMAGEM =========== */

/* SVG do tênis na hero section */
.hero-shoe-svg {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.3));
    animation: float 6s ease-in-out infinite;
}

.hero-shoe-svg svg {
    width: 100%;
    height: auto;
}

/* Placeholders para a galeria */
.gallery-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: var(--border-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.2);
    font-size: 2rem;
    overflow: hidden;
}

.gallery-placeholder::after {
    content: '👟';
    font-size: 4rem;
    opacity: 0.7;
    position: absolute;
}

/* Placeholders para avatares */
.avatar-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    color: white;
    font-weight: bold;
    font-size: 1.5rem;
}

/* Garantir que o overlay funcione com os novos placeholders */
.gallery-item:hover .overlay {
    opacity: 1;
}

/* Customização do background da canvas no customizador */
.customize-container .canvas-container {
    background-color: white;
    background-image: linear-gradient(45deg, #f5f5f5 25%, transparent 25%, transparent 75%, #f5f5f5),
                      linear-gradient(45deg, #f5f5f5 25%, transparent 25%, transparent 75%, #f5f5f5 75%, #f5f5f5);
    background-size: 20px 20px;
    background-position: 0 0, 10px 10px;
    border-radius: var(--border-radius-md);
}

.canvas-logo {
    position: absolute;
    top: 5px;
    left: 5px;
    width: 80px;
    height: auto;
    z-index: 10;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.5));
    -webkit-filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.5)) drop-shadow(0 0 10px rgba(255, 255, 255, 0.4));
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.5)) drop-shadow(0 0 10px rgba(255, 255, 255, 0.4));
}

/* Adicionar um pseudo-elemento para criar uma sombra extra */
.canvas-logo::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    z-index: -1;
    border-radius: 50%;
    filter: blur(8px);
    transform: scale(1.2);
    pointer-events: none;
}

/* Hero Showcase Image */
.sneaker-showcase {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.showcase-img {
    max-width: 120%;
    max-height: 120%;
    object-fit: contain;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.6));
    animation: float 6s ease-in-out infinite;
    transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    transform: scale(1.2);
    margin-left: -10%;
}

/* Gallery Sneaker Images */
.gallery-sneaker {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.5s ease, filter 0.5s ease;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.3));
    padding: 20px;
}

.gallery-item:hover .gallery-sneaker {
    transform: scale(1.05);
    filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.4));
}

.gallery-image {
    position: relative;
    width: 100%;
    height: 300px;
    border-radius: 12px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(139, 92, 246, 0.1));
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Restore original gallery backgrounds */
.gallery-item:nth-child(1) .gallery-image {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
}

.gallery-item:nth-child(2) .gallery-image {
    background: linear-gradient(135deg, #ec4899, #ef4444);
}

.gallery-item:nth-child(3) .gallery-image {
    background: linear-gradient(135deg, #8b5cf6, #6366f1);
}

.gallery-item:nth-child(4) .gallery-image {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
}

.gallery-item:nth-child(5) .gallery-image {
    background: linear-gradient(135deg, #6b7280, #4b5563);
}

.gallery-item:nth-child(6) .gallery-image {
    background: linear-gradient(135deg, #0ea5e9, #3b82f6);
}

.logo-container {
    position: absolute;
    top: 5px;
    left: 5px;
    z-index: 10;
    width: 80px;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.canvas-logo {
    width: 100%;
    height: auto;
    position: relative;
    /* Sombra principal */
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.6)) drop-shadow(0 0 12px rgba(0, 0, 0, 0.4));
}

/* Efeito de brilho ao redor da logo */
.logo-container::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    z-index: -1;
    border-radius: 50%;
    filter: blur(8px);
    pointer-events: none;
}

/* Sombra extra para destacar */
.logo-container::after {
    content: '';
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    background: radial-gradient(circle at center, rgba(0, 0, 0, 0.3) 0%, transparent 70%);
    z-index: -2;
    filter: blur(10px);
    pointer-events: none;
}

/* Ajustes para responsividade da imagem na hero section */
@media (max-width: 768px) {
    .hero-section .container {
        flex-direction: column;
        text-align: center;
    }

    .hero-content {
        margin: 0 auto;
        max-width: 100%;
        padding: 0 20px;
    }

    .hero-image {
        width: 100%;
        margin: 40px auto 0;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .sneaker-showcase {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .showcase-img {
        max-width: 90%;
        max-height: 90%;
        margin: 0 auto;
        transform: scale(1.1);
    }
}

/* Ajustes para responsividade da galeria */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

@media (max-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        max-width: 350px;
        margin: 0 auto;
    }
    
    .gallery-item {
        aspect-ratio: 1/1;
    }
    
    .gallery-sneaker {
        width: 85%;
        height: 75%;
        transform: rotate(-5deg);
    }
    
    .gallery-item:hover .gallery-sneaker {
        transform: rotate(0deg) scale(1.1) translateZ(30px);
    }
}

/* Ajustes para dispositivos móveis */
@media (max-width: 768px) {
    .logo-container {
        top: 5px;
        left: 5px;
        width: 60px;
    }
    
    /* Reduzir o tamanho dos efeitos de brilho/sombra */
    .logo-container::before {
        top: -6px;
        left: -6px;
        right: -6px;
        bottom: -6px;
    }
    
    .logo-container::after {
        top: 3px;
        left: 3px;
        right: 3px;
        bottom: 3px;
        filter: blur(6px);
    }
}

@media (max-width: 480px) {
    .logo-container {
        top: 2px;
        left: 2px;
        width: 50px;
    }
}

/* ===== FOOTER ===== */
.footer {
    background-color: var(--color-darker);
    color: var(--color-light);
    position: relative;
    padding: 0;
}

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

.footer-top {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-logo {
    flex: 1 1 300px;
}

.footer-logo img {
    height: 50px;
    margin-bottom: 20px;
}

.footer-logo p {
    color: var(--color-gray-light);
    font-size: 0.95rem;
    max-width: 300px;
}

.footer-links {
    flex: 1 1 600px;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-section {
    flex: 1 1 180px;
}

.footer-section h3 {
    color: var(--color-light);
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    font-weight: 600;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 40px;
    height: 3px;
    background: var(--color-primary);
    border-radius: 3px;
}

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

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

.footer-section a {
    color: var(--color-gray-light);
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
    display: inline-block;
}

.footer-section a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -2px;
    left: 0;
    background-color: var(--color-primary);
    transition: width 0.3s ease;
}

.footer-section a:hover {
    color: var(--color-primary);
}

.footer-section a:hover::after {
    width: 100%;
}

/* Ícones personalizados sem API */
.footer-icon {
    display: inline-block;
    width: 18px;
    height: 18px;
    margin-right: 10px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    vertical-align: middle;
}

.email-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ec4899'%3E%3Cpath d='M20 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 4l-8 5-8-5V6l8 5 8-5v2z'/%3E%3C/svg%3E");
}

.phone-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ec4899'%3E%3Cpath d='M6.62 10.79c1.44 2.83 3.76 5.14 6.59 6.59l2.2-2.2c.27-.27.67-.36 1.02-.24 1.12.37 2.33.57 3.57.57.55 0 1 .45 1 1V20c0 .55-.45 1-1 1-9.39 0-17-7.61-17-17 0-.55.45-1 1-1h3.5c.55 0 1 .45 1 1 0 1.25.2 2.45.57 3.57.11.35.03.74-.25 1.02l-2.2 2.2z'/%3E%3C/svg%3E");
}

.location-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ec4899'%3E%3Cpath d='M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 9.5c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z'/%3E%3C/svg%3E");
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #1a1a1a;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.social-icon i {
    font-size: 22px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.social-icon:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.instagram-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M12 2.163c3.204 0 3.584.012 4.85.07 3.252.148 4.771 1.691 4.919 4.919.058 1.265.069 1.645.069 4.849 0 3.205-.012 3.584-.069 4.849-.149 3.225-1.664 4.771-4.919 4.919-1.266.058-1.644.07-4.85.07-3.204 0-3.584-.012-4.849-.07-3.26-.149-4.771-1.699-4.919-4.92-.058-1.265-.07-1.644-.07-4.849 0-3.204.013-3.583.07-4.849.149-3.227 1.664-4.771 4.919-4.919 1.266-.057 1.645-.069 4.849-.069zM12 0C8.741 0 8.333.014 7.053.072 2.695.272.273 2.69.073 7.052.014 8.333 0 8.741 0 12c0 3.259.014 3.668.072 4.948.2 4.358 2.618 6.78 6.98 6.98C8.333 23.986 8.741 24 12 24c3.259 0 3.668-.014 4.948-.072 4.354-.2 6.782-2.618 6.979-6.98.059-1.28.073-1.689.073-4.948 0-3.259-.014-3.667-.072-4.947-.196-4.354-2.617-6.78-6.979-6.98C15.668.014 15.259 0 12 0zm0 5.838a6.162 6.162 0 100 12.324 6.162 6.162 0 000-12.324zM12 16a4 4 0 110-8 4 4 0 010 8zm6.406-11.845a1.44 1.44 0 100 2.881 1.44 1.44 0 000-2.881z'/%3E%3C/svg%3E");
}

.whatsapp-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M.057 24l1.687-6.163a11.867 11.867 0 01-1.587-5.946C.16 5.335 5.495 0 12.05 0a11.817 11.817 0 018.413 3.488 11.824 11.824 0 013.48 8.414c-.003 6.557-5.338 11.892-11.893 11.892a11.9 11.9 0 01-5.688-1.448L.057 24zm6.597-3.807c1.676.995 3.276 1.591 5.392 1.592 5.448 0 9.886-4.434 9.889-9.885.002-5.462-4.415-9.89-9.881-9.892-5.452 0-9.887 4.434-9.889 9.884a9.91 9.91 0 001.414 5.094l-.901 3.29 3.976-.984zm7.32-5.39c-.1-.149-.36-.175-.506-.061-1.035.812-1.517 1.022-2.032 1.091-.484.066-.881-.089-1.27-.384-.39-.299-1.347-1.095-2.314-2.062-.945-.943-1.533-1.859-1.747-2.236-.215-.376-.44-.934-.111-1.439.304-.478.813-.61 1.136-.64.261-.026.485-.035.709-.009.226.027.411.19.536.363.126.174.304.573.41.754.105.182.194.329.211.455.025.18-.009.344-.127.54-.118.194-.25.283-.364.409-.113.124-.241.254-.15.492.09.239.438.918 1.017 1.677.72.947 1.316 1.254 1.533 1.394.216.141.35.122.483.018.135-.103.59-.541.753-.727.163-.186.314-.227.49-.144.175.082 1.13.531 1.326.628.196.095.328.142.372.224.046.079.046.451-.105.887-.152.43-.744.872-1.047.958-.301.089-.63.149-1.036.13a3.19 3.19 0 01-1.328-.341c-.59-.267-1.221-.686-2.196-1.603-.979-.92-1.691-1.853-2.089-2.604-.396-.751-.484-1.358-.292-1.892.173-.488.696-.886 1.028-1.087.329-.201.69-.286 1.016-.282.326.006.767-.039 1.183.365.416.402.402.655.741.765.984.106.242.133.399.126.584-.007.186-.157 1.002-.44 1.393'/%3E%3C/svg%3E");
}

.facebook-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M22.676 0H1.324C.593 0 0 .593 0 1.324v21.352C0 23.408.593 24 1.324 24h11.494v-9.294H9.689v-3.621h3.129V8.41c0-3.099 1.894-4.785 4.659-4.785 1.325 0 2.464.097 2.796.141v3.24h-1.921c-1.5 0-1.792.721-1.792 1.771v2.311h3.584l-.465 3.63H16.56V24h6.115c.733 0 1.325-.592 1.325-1.324V1.324C24 .593 23.408 0 22.676 0'/%3E%3C/svg%3E");
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    margin: 0;
    color: var(--color-gray-light);
    font-size: 0.9rem;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    color: var(--color-gray-light);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

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

#back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--color-primary);
    color: white;
    border: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

#back-to-top.visible {
    opacity: 1;
    transform: translateY(0);
}

#back-to-top:hover {
    transform: translateY(-5px);
}

.arrow-up-icon {
    display: block;
    width: 20px;
    height: 20px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M7.41 15.41L12 10.83l4.59 4.58L18 14l-6-6-6 6z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

@media (max-width: 768px) {
    .footer-container {
        padding: 40px 20px 20px;
    }
    
    .footer-top {
        flex-direction: column;
        gap: 30px;
        margin-bottom: 30px;
    }
    
    .footer-logo {
        text-align: center;
        margin: 0 auto;
    }
    
    .footer-logo p {
        margin: 0 auto;
    }
    
    .footer-links {
        gap: 30px;
    }
    
    .footer-section h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-section {
        text-align: center;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    #back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}

/* Order Modal Styles */
.order-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.order-modal.active {
    opacity: 1;
    visibility: visible;
}

.order-modal-content {
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    border-radius: 15px;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 30px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transform: translateY(30px);
    transition: all 0.4s ease;
    color: white;
}

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

.order-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: transparent;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.order-modal-close:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.order-modal-header {
    text-align: center;
    margin-bottom: 20px;
}

.order-modal-header h3 {
    font-size: 28px;
    margin-bottom: 10px;
    background: linear-gradient(90deg, #ec4899, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

.order-modal-header p {
    color: #ccc;
    font-size: 16px;
}

.order-modal-sneaker {
    text-align: center;
    margin-bottom: 25px;
    position: relative;
}

.order-modal-sneaker img {
    max-width: 80%;
    max-height: 200px;
    object-fit: contain;
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.3));
    animation: float 3s ease-in-out infinite;
}

.order-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 5px;
    font-size: 14px;
    color: #ccc;
}

.form-group input,
.form-group textarea {
    padding: 12px 15px;
    border-radius: 8px;
    border: 1px solid #444;
    background-color: rgba(255, 255, 255, 0.05);
    color: white;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ec4899;
    box-shadow: 0 0 0 2px rgba(236, 72, 153, 0.2);
}

.form-actions {
    margin-top: 10px;
    display: flex;
    justify-content: center;
}

.form-actions button {
    width: 100%;
    padding: 15px;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(90deg, #ec4899, #8b5cf6);
    border: none;
    color: white;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-actions button:hover {
    transform: translateY(-3px);
    box-shadow: 0 7px 15px rgba(236, 72, 153, 0.3);
}

.form-disclaimer {
    text-align: center;
    font-size: 12px;
    color: #888;
    margin-top: 15px;
}

@media (max-width: 768px) {
    .order-modal-content {
        padding: 20px;
    }
    
    .order-modal-header h3 {
        font-size: 24px;
    }
    
    .order-modal-sneaker img {
        max-height: 150px;
    }
    
    .form-actions button {
        padding: 12px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .order-modal-content {
        padding: 15px;
    }
    
    .order-modal-header h3 {
        font-size: 20px;
    }
    
    .order-modal-sneaker img {
        max-height: 120px;
    }
} 