/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.mobile-nav-buttons {
    display: none;
}
body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

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



/* Header Styles */
.header {
    background: #abb3f7;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navba {
    padding: 0.5rem 0;
}

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

.logo img {
    height: 50px;
    width: auto;
}



.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0 !important;
    padding: 0 !important;
}

.nav-link {
    color: rgb(255, 255, 255);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    padding: 0 !important;
    display: inline !important;

}

.nav-link:hover {
    color: #000000;
}



.nav-buttons {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.btn-secondary {
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}


.btn-secondary {
    background-color: transparent;
    color: white;
    border-color: white;
}

.btn-secondary:hover {
    background-color: white;
    color: #000000;
}

.cart-icon {
    position: relative;
    color: white;
    font-size: 1.2rem;
    text-decoration: none;
    padding: 0.5rem;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.cart-icon:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: #ef4444;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 3px 0;
    transition: all 0.3s ease;
    transform-origin: center;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f3f4f6, #e5e7eb);
    padding: 4rem 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: bold;
    line-height: 1.2;
    color: #1f2937;
}

.highlight {
    color: #fbbf24;
}

.hero-image img {
    width: 100%;
    height: auto;
    max-width: 600px;
}

/* Features Section */
.features {
    padding: 4rem 0;
    background-color: #d1d1d1;
}

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

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: left;
    gap: 10px;

}

.icon-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;

    background-color: #abb3f7;
}



.feature-card h3 {
    font-size: 1.7rem;

    color: #1f2937;
}

.feature-card p {
    color: #6b7280;
    text-align: left;
    font-size: 20px;
}

/* Carrosel */
.section-carrossel {
    margin-top: 50px;

}

.carousel {
    border-radius: 20px !important;
}

.banner {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 500px;
}

.banner.n1 {
    background-image: url("imagens/carrossel/1.jpg");
}

.banner.n2 {
    background-image: url("imagens/carrossel/2.webp");
}

.banner.n3 {
    background-image: url("imagens/carrossel/3.png");
}


/* Products Section */
.fullpage {
    max-width: 100%;
}

.products-section {
    padding: 4rem 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1f2937;
}

.products-grid-home {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(33%, 1fr));
    gap: 0;

}

.product-category-home {
    position: relative;

    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
    height: 500px;

}



.product-category-home img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.267);
    backdrop-filter: blur(6px);
    color: black;
    padding: 2rem;
    text-align: center;
    width: 100%;
}



.category-overlay h3 {
    font-size: 1.5rem;
    font-weight: bold;
    text-decoration: none;
}

/* Footer */
.footer {
    background: #abb3f7;
    color: white;
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

.footer-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    align-items: center;


}

.footer-section h4 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.align-left {
    justify-content: left;
    display: flex;
    align-items: end;
    flex-direction: column;
    text-align: end;
}

.payment-methods {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.payment-methods img {
    height: 50px;
    width: auto;
    background: white;

    border-radius: 5px;
}

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

.footer-logo img {
    height: 80px;
    width: auto;
}

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

.social-links a {
    color: white;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #fbbf24;
}

/* Back Button */
.back-button {
    padding: 1rem 0;
    background-color: #ffffff00;
}

.btn-back {
    background: #abb3f7;
    color: white;
    border: none;
    padding: 1rem;
    min-width: 65px;
    min-height: 65px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
    margin-left: 20px;
}

.btn-back:hover {
    transform: scale(1.1);
}

/* Catalog Styles */
.catalog {
    padding: 2rem 0 4rem;
}

.catalog-title {
    text-align: center;
    font-size: 2.5rem;
    color: #1f2937;
    margin-bottom: 2rem;
    font-weight: bold;
}

/* Filter Section */
.filter-section {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.filter-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.filter-buttons {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    border: 2px solid #e5e7eb;
    background: white;
    color: #6b7280;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.filter-btn:hover {
    border-color: #3b82f6;
    color: #3b82f6;
}

.filter-btn.active {
    background: #3b82f6;
    border-color: #3b82f6;
    color: white;
}

.sort-section {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.sort-section label {
    font-weight: 500;
    color: #374151;
}

.sort-section select {
    padding: 0.5rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    background: white;
    color: #374151;
    cursor: pointer;
}

.search-section {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.search-section input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 1rem;
}

.search-section input:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.search-section button {
    padding: 0.75rem 1rem;
    background: #3b82f6;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.search-section button:hover {
    background: #2563eb;
}

/* Loading and No Products */
.loading-indicator,
.no-products-message {
    text-align: center;
    padding: 3rem 1rem;
    color: #6b7280;
}

.loading-indicator i {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #3b82f6;
}

.no-products-message i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #d1d5db;
}

.no-products-message p {
    font-size: 1.1rem;
}

.catalog-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.catalog-header h1 {
    font-size: 2.5rem;
    color: #1f2937;
}

.filters {
    display: flex;
    gap: 1rem;
}

.filters select {
    padding: 0.5rem 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    background-color: white;
    font-size: 1rem;
}

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

.product-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}





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

.product-info {
    padding: 1.5rem;
}

.product-info h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #1f2937;
}

.product-info p {
    color: #6b7280;
    margin-bottom: 1rem;
}

.product-price {
    font-size: 1.5rem;
    font-weight: bold;
    color: #000000;
    margin-bottom: 1rem;
}

.btn-add-cart {
    width: 100%;
    background: #abb3f7;
    color: white;
    border: none;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-decoration: none;
}

.btn-add-cart:hover {
    background: #8489bd;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.btn-add-cart i {
    font-size: 0.9rem;
}

/* Customization Styles */
.customization {
    padding: 2rem 0 4rem;
}

.customization-header {
    text-align: center;
    margin-bottom: 3rem;
}

.customization-header h1 {
    font-size: 2.5rem;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.customization-header p {
    font-size: 1.2rem;
    color: #6b7280;
}


.customization-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.shoe-preview {
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgb(255, 255, 255);
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    height: 500px
}

.tenis {
    width: 500px;
    position: absolute;
    transition: filter 0.3s ease;
}

.red {
    filter: invert(100%) sepia(100%) saturate(1000%) hue-rotate(330deg);
}

.blue {
    filter: invert(100%) sepia(100%) saturate(1000%) hue-rotate(200deg);
}

.green {
    filter: invert(100%) sepia(30%) saturate(1000%) hue-rotate(90deg) brightness(1.7);
}

.yellow {
    filter: invert(100%) sepia(100%) saturate(1000%) hue-rotate(35deg) brightness(2.2);
}

.gray {
    filter: invert(0%) sepia(0%) saturate(0%) brightness(70%);
}

.black {
    filter: invert(100%) brightness(50%);
}

.pink {
    filter: invert(100%) sepia(100%) saturate(1000%) hue-rotate(300deg) brightness(1.2);
}

.white {
    filter: none;
}

.customization-title {
    text-align: center;
}

/* Color option buttons */
.color-options {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.color-option {
    width: 40px;
    height: 40px;
    border: 2px solid transparent;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.color-option:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.color-option.active {
    border-color: #333;
    transform: scale(1.1);
    box-shadow: 0 0 0 3px rgba(51, 51, 51, 0.3);
}

.color-option.active::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.option-group {
    margin-bottom: 25px;
}

.option-group h4 {
    margin-bottom: 10px;
    color: #333;
    font-size: 16px;
}


.customization-panel {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.customization-panel h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #1f2937;
    text-align: center;
    border-bottom: 2px solid #e5e7eb;
    padding-bottom: 1rem;
}

.price-summary {
    background: #f9fafb;
    padding: 1.5rem;
    border-radius: 12px;
    margin: 2rem 0;
    border: 1px solid #e5e7eb;
}

.price-summary div {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    color: #6b7280;
}

.price-summary .total-price {
    font-size: 1.2rem;
    font-weight: bold;
    color: #1f2937;
    border-top: 2px solid #e5e7eb;
    padding-top: 0.5rem;
    margin-top: 1rem;
}

.btn-add-to-cart {
    width: 100%;

    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: 0 4px 12px rgba(171, 179, 247, 0.3);
}

.btn-add-to-cart:hover {

    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(171, 179, 247, 0.4);
}

.btn-add-to-cart:active {
    transform: translateY(0);
}

.option-group {
    margin-bottom: 2rem;
}

.option-group h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #1f2937;
}

.color-options {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.color-option {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.3s ease;
}

.color-option.active {
    border-color: #1f2937;
    transform: scale(1.1);
}

.size-options {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.size-option {
    width: 50px;
    height: 50px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 14px;
    color: #374151;
}

.size-option:hover {
    border-color: #abb3f7;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(171, 179, 247, 0.3);
}

.size-option.active {
    border-color: #abb3f7;
    background-color: #abb3f7;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(171, 179, 247, 0.4);
}

.price-display {
    text-align: center;
    margin: 2rem 0;
}

.price {
    font-size: 2rem;
    font-weight: bold;
    color: #000000;
}

.btn-buy {
    width: 100%;
    background: #abb3f7;
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 8px;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-buy:hover {
    transform: translateY(-2px);
}

/* Cart Styles */
.cart {
    padding: 2rem 0 4rem;
}

.cart-title {
    text-align: center;
    font-size: 2.5rem;
    color: #1f2937;
    margin-bottom: 3rem;
}

.cart-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.cart-items {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.cart-header {
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
    color: white;
    padding: 1rem;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr auto;
    gap: 1rem;
    align-items: center;
    font-weight: bold;
}

.cart-item {
    padding: 1rem;
    border-bottom: 1px solid #e5e7eb;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr auto;
    gap: 1rem;
    align-items: center;
}

.item-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.item-info img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
}

.item-details h3 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
    color: #1f2937;
}

.item-details p {
    color: #6b7280;
    font-size: 0.9rem;
}

.item-price,
.item-total {
    font-weight: bold;
    color: #1f2937;
}

.item-quantity {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.qty-btn {
    background: #f3f4f6;
    border: 1px solid #d1d5db;
    width: 30px;
    height: 30px;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.qty-btn:hover {
    background: #e5e7eb;
}

.qty-input {
    width: 50px;
    text-align: center;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    padding: 0.25rem;
}

.remove-btn {
    background: #ef4444;
    color: white;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.remove-btn:hover {
    background: #dc2626;
}

.cart-summary {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    height: fit-content;
}

.cart-summary h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #1f2937;
    text-align: center;
}

.summary-line {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
}

.summary-line.total {
    border-top: 2px solid #e5e7eb;
    padding-top: 1rem;
    font-weight: bold;
    font-size: 1.2rem;
    color: #1f2937;
}

.btn-checkout {
    width: 100%;
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 8px;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.3s ease;
    margin-top: 1rem;
}

.btn-checkout:hover {
    transform: translateY(-2px);
}

/* Auth Styles */
.auth-backgrond {
    background-image: url('imagens/grafit-backgrond.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.auth-section {
    padding: 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.auth-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
    place-items: center;
}

.auth-form {
    background: white;
    padding: 1rem;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    width: 400px;
    margin-top: 50px;
    margin-bottom: 50px;
}

.auth-form h1 {
    font-size: 2.5rem;
    color: #1f2937;
    margin-bottom: 0.5rem;
    text-align: center;
}

.auth-form p {
    color: #6b7280;
    margin-bottom: 2rem;
    text-align: center;
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #374151;
    font-weight: 500;
}

.form-group input {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #abb3f7;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.checkbox-container {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 0.9rem;
}

.checkbox-container input {
    margin-right: 0.5rem;
}

.forgot-password {
    color: #676da0;
    text-decoration: none;
    font-size: 0.9rem;
}

.forgot-password:hover {
    text-decoration: underline;
}

.btn-auth {
    width: 100%;
    background: #abb3f7;
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.3s ease;
    margin-bottom: 1.5rem;
}

.btn-auth:hover {
    transform: translateY(-2px);
}

.auth-divider {
    text-align: center;
    margin: 2rem 0;
    position: relative;
}

.auth-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #e5e7eb;
}





.auth-switch {
    text-align: center;
    color: #6b7280;
}

.auth-switch a {
    color: #8b5cf6;
    text-decoration: none;
    font-weight: 500;
}

.auth-switch a:hover {
    text-decoration: underline;
}


/*Sobre Nós*/
.sobre {
    margin-top: 70px;
    min-height: 100vh;
    width: 100%;
}

.sobre-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    gap: 20px;

}

.sobre-content h1 {
    font-size: 40px;
    text-align: center;
    color: #abb3f7;
    font-weight: 900;
}

.sobre-content p {
    font-size: 25px;
}

.img-sobre {
    max-height: 80vh;
    width: auto;
}


/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex !important;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 0;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        background: #abb3f7;
        width: 100%;
        height: 100vh;
        text-align: center;
        transition: left 0.3s ease;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.1);
        padding: 2rem 0;
        z-index: 1000;
        gap: 2rem;
    }

    .nav-link {
        font-size: 2rem;
        padding: 1rem 2rem;
        border-radius: 8px;
        transition: all 0.3s ease;
        width: 80%;
        text-align: center;
    }

    .nav-link:hover {
        background-color: rgba(255, 255, 255, 0.1);
        transform: translateY(-2px);
    }

    .nav-menu.active {
        left: 0 !important;
    }

    .nav-buttons {
        display: none;
    }

    .nav-buttons .btn-secondary {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }

    .nav-buttons .cart-icon {
        font-size: 1.5rem;
        padding: 0.75rem;
    }

    /* Mobile menu buttons */
    .mobile-nav-buttons {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        margin-top: 2rem;
        padding-top: 2rem;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
        width: 100%;
        align-items: center;
    }

    .mobile-user-info {
        color: white;
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }

    .mobile-user-greeting {
        font-weight: 600;
    }

    .mobile-cart-link,
    .mobile-logout {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        justify-content: center;
    }

    .mobile-cart-link .cart-count {
        background-color: #ef4444;
        color: white;
        border-radius: 50%;
        width: 20px;
        height: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.8rem;
        font-weight: bold;
        margin-left: 0.5rem;
    }

    /* Hide mobile buttons on desktop by default */
    .mobile-nav-buttons {
        display: none;
    }

    /* Show mobile buttons only on mobile when menu is active */
    @media (max-width: 768px) {
        .mobile-nav-buttons {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            margin-top: 2rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.2);
            width: 100%;
            align-items: center;
        }
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-title {
        font-size: 2rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .products-grid-home {
        grid-template-columns: 1fr;
    }

    .customization-container {
        grid-template-columns: 1fr;
    }

    .cart-container {
        grid-template-columns: 1fr;
    }

    .cart-header,
    .cart-item {
        grid-template-columns: 1fr;
        gap: 0.5rem;
        text-align: center;
    }

    .item-info {
        justify-content: center;
    }

    .auth-container {
        grid-template-columns: 1fr;
    }

    .auth-form {
        padding: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .catalog-header {
        flex-direction: column;
        text-align: center;
    }

    .filter-controls {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }

    .filter-buttons {
        justify-content: center;
    }

    .filter-btn {
        flex: 1;
        min-width: 120px;
    }

    .sort-section {
        justify-content: center;
    }

    .search-section {
        flex-direction: column;
        gap: 0.5rem;
    }

    .filters {
        width: 100%;
        justify-content: center;
    }

    .align-left {
        justify-content: left;
        display: flex;
        align-items: start;
        flex-direction: row;
        text-align: left;
        gap: 20px;
    }

    .footer-logo {
        text-align: left;
    }

    .sobre-content {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        gap: 20px;

    }

    .img-sobre {
        max-height: none;
        width: 100%;
    }

    .tenis {
        width: 400px;
        position: absolute;
    }

    .customization-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .shoe-preview {
        height: 400px;
        margin-bottom: 2rem;
    }

    .customization-panel {
        padding: 1.5rem;
    }

    .size-options {
        justify-content: center;
    }

    .color-options {
        justify-content: center;
    }
}

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

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

    .auth-form {
        padding: 1.5rem;
    }

    .auth-form h1 {
        font-size: 2rem;
    }
}

/* Payme
nt Success Page Styles */
.success-section {
    padding: 4rem 0;
    min-height: 80vh;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    display: flex;
    align-items: center;
}

.success-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.success-icon {
    margin-bottom: 2rem;
}

.success-icon i {
    font-size: 5rem;
    color: #10b981;
    animation: successPulse 2s ease-in-out infinite;
}

@keyframes successPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

.success-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.success-message {
    font-size: 1.2rem;
    color: #6b7280;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.order-info {
    background: #f9fafb;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    text-align: left;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 0.5rem 0;
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-item i {
    font-size: 1.5rem;
    color: #3b82f6;
    width: 30px;
    text-align: center;
}

.info-item div {
    display: flex;
    flex-direction: column;
}

.info-item strong {
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.25rem;
}

.info-item span {
    color: #6b7280;
    font-size: 0.9rem;
}

.next-steps {
    text-align: left;
    background: #f0f9ff;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.next-steps h3 {
    color: #1f2937;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.next-steps ul {
    list-style: none;
}

.next-steps li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: #374151;
}

.next-steps li i {
    color: #10b981;
    font-size: 1rem;
}

.action-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.action-buttons .btn-primary,
.action-buttons .btn-secondary {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    min-width: 180px;
    justify-content: center;
}

.action-buttons .btn-primary {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
}

.action-buttons .btn-primary:hover {
    background: linear-gradient(135deg, #2563eb, #1e40af);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.action-buttons .btn-secondary {
    background: white;
    color: #374151;
    border: 2px solid #d1d5db;
}

.action-buttons .btn-secondary:hover {
    background: #f9fafb;
    border-color: #9ca3af;
    transform: translateY(-2px);
}

.support-info {
    border-top: 1px solid #e5e7eb;
    padding-top: 2rem;
    text-align: center;
}

.support-info p {
    color: #6b7280;
    margin-bottom: 1rem;
}

.contact-options {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #3b82f6;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #1d4ed8;
}

.contact-link i {
    font-size: 1.1rem;
}

/* Responsive Design for Success Page */
@media (max-width: 768px) {
    .success-section {
        padding: 2rem 1rem;
    }

    .success-content {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }

    .success-title {
        font-size: 2rem;
    }

    .success-message {
        font-size: 1.1rem;
    }

    .action-buttons {
        flex-direction: column;
        align-items: center;
    }

    .action-buttons .btn-primary,
    .action-buttons .btn-secondary {
        width: 100%;
        max-width: 300px;
    }

    .contact-options {
        flex-direction: column;
        gap: 1rem;
    }

    .order-info,
    .next-steps {
        padding: 1.5rem;
    }
}

/* Back Button Styles */
.back-button {
    position: fixed;
    top: 100px;
    left: 20px;
    z-index: 1000;
}

.btn-back {
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid #e5e7eb;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.btn-back:hover {
    background: white;
    border-color: #3b82f6;
    color: #3b82f6;
    transform: translateX(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-back i {
    font-size: 1.2rem;
    color: #374151;
    transition: color 0.3s ease;
}

.btn-back:hover i {
    color: #3b82f6;
}

/* Cart 
Styles */
.cart {
    padding: 2rem 0;
    min-height: 80vh;
}

.cart-title {
    text-align: center;
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 2rem;
    color: #1f2937;
}

.cart-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.cart-items {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.cart-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 50px;
    gap: 1rem;
    padding: 1rem 2rem;
    background: #f9fafb;
    font-weight: bold;
    color: #374151;
    border-bottom: 1px solid #e5e7eb;
}

.cart-item {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 50px;
    gap: 1rem;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid #e5e7eb;
    align-items: center;
}

.cart-item:last-child {
    border-bottom: none;
}

.item-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.item-info img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
}

.item-details h3 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
    color: #1f2937;
}

.item-details p {
    font-size: 0.9rem;
    color: #6b7280;
}

.item-price,
.item-total {
    font-weight: bold;
    color: #1f2937;
}

.item-quantity {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.qty-btn {
    background: #f3f4f6;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.2s ease;
}

.qty-btn:hover {
    background: #e5e7eb;
    border-color: #9ca3af;
}

.qty-input {
    width: 60px;
    text-align: center;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    padding: 0.5rem;
    font-size: 0.9rem;
}

.remove-btn {
    background: #fee2e2;
    border: 1px solid #fecaca;
    border-radius: 6px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #dc2626;
    transition: all 0.2s ease;
}

.remove-btn:hover {
    background: #fecaca;
    border-color: #f87171;
}

.cart-summary {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    height: fit-content;
}

.cart-summary h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #1f2937;
    border-bottom: 2px solid #e5e7eb;
    padding-bottom: 0.5rem;
}

.summary-line {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    color: #6b7280;
}

.summary-line.total {
    font-size: 1.25rem;
    font-weight: bold;
    color: #1f2937;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid #e5e7eb;
}

.btn-checkout {
    width: 100%;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1.5rem;
}

.btn-checkout:hover {
    background: linear-gradient(135deg, #059669, #047857);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
}

/* Styles for customized shoe preview in cart */
.shoe-preview-cart {
    position: relative;
    width: 100px; /* Adjust as needed */
    height: 100px; /* Adjust as needed */
    overflow: hidden;
}

.tenis-cart {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Color classes for customized shoes */
.tenis-cart.red {
    filter: hue-rotate(0deg) brightness(0.8) saturate(2);
}

.tenis-cart.green {
    filter: hue-rotate(120deg) brightness(0.8) saturate(2);
}

.tenis-cart.blue {
    filter: hue-rotate(240deg) brightness(0.8) saturate(2);
}

.tenis-cart.yellow {
    filter: hue-rotate(60deg) brightness(0.8) saturate(2);
}

.tenis-cart.gray {
    filter: grayscale(100%) brightness(0.8);
}

.tenis-cart.black {
    filter: brightness(0);
}

.tenis-cart.pink {
    filter: hue-rotate(300deg) brightness(0.8) saturate(2);
}

/* Responsive Design for Cart */
@media (max-width: 768px) {
    .cart-container {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .cart-header,
    .cart-item {
        grid-template-columns: 1fr;
        gap: 0.5rem;
        text-align: center;
    }

    .cart-header {
        display: none;
    }

    .cart-item {
        padding: 1rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .item-info {
        flex-direction: column;
        text-align: center;
        margin-bottom: 1rem;
    }

    .item-quantity {
        margin: 1rem 0;
    }

    .cart-summary {
        padding: 1.5rem;
    }
}

/*
 Alert Styles */
.alert {
    padding: 1rem;
    margin-bottom: 1rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.alert-error {
    background-color: #fee2e2;
    color: #dc2626;
    border: 1px solid #fecaca;
}

.alert-success {
    background-color: #d1fae5;
    color: #059669;
    border: 1px solid #a7f3d0;
}

.alert i {
    font-size: 1.1rem;
}

/* User Menu Styles */
.user-menu {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.user-greeting {
    color: #ffffff;
    font-weight: 500;
    font-size: 0.9rem;
}

/* Auth Form Styles */
.auth-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding: 2rem 0;
   
}

.auth-container {
    max-width: 400px;
    margin: 0 auto;
}

.auth-form {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.auth-form h1 {
    text-align: center;
    margin-bottom: 0.5rem;
    color: #1f2937;
    font-size: 2rem;
}

.auth-form p {
    text-align: center;
    color: #6b7280;
    margin-bottom: 2rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #374151;
}

.form-group input {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #d1d5db;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-group small {
    color: #6b7280;
    font-size: 0.8rem;
    margin-top: 0.25rem;
    display: block;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.checkbox-container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.9rem;
    color: #374151;
}

.forgot-password {
    color: #3b82f6;
    text-decoration: none;
    font-size: 0.9rem;
}

.forgot-password:hover {
    text-decoration: underline;
}



.auth-switch {
    text-align: center;
    color: #6b7280;
    font-size: 0.9rem;
}

.auth-switch a {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 600;
}

.auth-switch a:hover {
    text-decoration: underline;
}



/* Auth form mobile */
.auth-form {
    margin: 1rem;
    padding: 1.5rem;
}

.auth-form h1 {
    font-size: 1.5rem;
}




/* Hero Section Improvements */
.hero-subtitle {
    font-size: 1.1rem;
    color: #6b7280;
    margin-top: 1rem;
    text-align: center;
}

/* Product Cards */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.product-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.product-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #1f2937;
}

.product-card .price {
    font-size: 1.3rem;
    font-weight: bold;
    color: #10b981;
    margin-bottom: 1rem;
}

.product-card .btn-primary {
    width: 100%;
    padding: 0.75rem;
    text-decoration: none;
    display: inline-block;
    border: none;
    cursor: pointer;
}

.cart-item-image {
    width: 100px;
    height: 100px;
    object-fit: cover;
    margin-right: 20px;
    border-radius: 8px;
}

.cart-item-image.custom-preview {
    object-fit: contain;
    background: #ffffff;
    padding: 5px;
}

.shoe-preview-cart {
    position: relative;
    width: 120px;
    height: 80px;
    margin-right: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.tenis-cart-layer {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 85%;
    height: 85%;
    object-fit: contain;
}

/* Color Filters - Same as customization page */
.tenis-cart-layer.red {
    filter: invert(100%) sepia(100%) saturate(1000%) hue-rotate(330deg);
}

.tenis-cart-layer.blue {
    filter: invert(100%) sepia(100%) saturate(1000%) hue-rotate(200deg);
}

.tenis-cart-layer.green {
    filter: invert(100%) sepia(30%) saturate(1000%) hue-rotate(90deg) brightness(1.7);
}

.tenis-cart-layer.yellow {
    filter: invert(100%) sepia(100%) saturate(1000%) hue-rotate(35deg) brightness(2.2);
}

.tenis-cart-layer.gray {
    filter: invert(0%) sepia(0%) saturate(0%) brightness(70%);
}

.tenis-cart-layer.black {
    filter: invert(100%) brightness(50%);
}

.tenis-cart-layer.pink {
    filter: invert(100%) sepia(100%) saturate(1000%) hue-rotate(300deg) brightness(1.2);
}

.tenis-cart-layer.white {
    filter: none;
}


/* Payment Options Styling */
.payment-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.payment-option-label {
    display: flex;
    align-items: center;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    background-color: #f9f9f9;
}

.payment-option-label:hover {
    border-color: #007bff;
    box-shadow: 0 0 8px rgba(0, 123, 255, 0.2);
}

.payment-option-label input[type="radio"] {
    margin-right: 15px;
    transform: scale(1.2);
}

.payment-option-label img.payment-icon {
    width: 40px;
    height: auto;
    margin-right: 15px;
}

/* Hide payment details by default */
.payment-details {
    display: none;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.payment-details.active {
    display: block;
}

/* Pix and Boleto specific styling */
.pix-qr-code img,
.boleto-image img {
    max-width: 250px;
    height: auto;
    display: block;
    margin: 20px auto;
    border: 1px solid #eee;
    border-radius: 5px;
}

.pix-code-copy,
.boleto-barcode-copy {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
}

.pix-code-copy input,
.boleto-barcode-copy input {
    flex-grow: 1;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: monospace;
    background-color: #f0f0f0;
}

.copy-button {
    padding: 10px 15px;
    background-color: #28a745;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.copy-button:hover {
    background-color: #218838;
}

.btn-download-boleto {
    display: block;
    width: fit-content;
    margin: 20px auto 0;
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    text-align: center;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.btn-download-boleto:hover {
    background-color: #0056b3;
}

.pix-confirm-button,
.boleto-confirm-button {
    margin-top: 20px;
    width: 100%;
}

