/* Reseta o CSS padrão do navegador */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    transition: 0.5s;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #f0f0f0;
    line-height: 1.6;
}

/* Header - Barra Superior */
.top-bar {
    background-color: #000;
    color: #fff;
    text-align: center;
    padding: 5px 0;
    font-size: 14px;
}

/* Header - Menu de Navegação */
.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 50px;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.logo {
    width: 100px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    position: relative;
    padding: 10px 0;
}

.nav-links a::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: #000;
    transition: width .3s;
    position: absolute;
    bottom: 0;
    left: 0;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
    cursor: pointer;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    list-style: none;
    padding: 10px 0;
    border: 1px solid #ddd;
    border-radius: 5px;
    min-width: 150px;
    display: none;
    z-index: 10;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu.active {
    display: block;
}

.dropdown-menu li a {
    padding: 10px 20px;
    display: block;
    white-space: nowrap;
}

.icons {
    display: flex;
    align-items: center;
    gap: 20px;
}

.search-box {
    position: relative;
}

.search-box input {
    border: none;
    background-color: #f0f0f0;
    padding: 8px 10px;
    border-radius: 20px;
    padding-right: 35px;
}

.search-box i {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #555;
    cursor: pointer;
}

.icons i {
    font-size: 1.2em;
    cursor: pointer;
    color: #333;
}

/* Hero Section */
.hero img {
    width: 100%;
    height: auto;
    display: block;
}

/* Coleção */
.collection {
    text-align: center;
    padding: 50px 20px;
}

.collection .subtitle {
    color: #555;
    font-size: 1.1em;
    letter-spacing: 1px;
}

.collection .title {
    font-size: 2.5em;
    font-weight: 700;
    color: #3c2f42; /* Cor roxa similar à da imagem */
    letter-spacing: 2px;
}


/* Cards de Produtos */
.products {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    padding: 0 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.product-card {
    background-color: #e6e6e6;
    border-radius: 15px;
    text-align: center;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.product-card p:hover{
    background-color: #1a0024;
}

.product-card img {
    width: 100%;
    max-width: 300px;
    height: auto;
    margin-bottom: 15px;
    border-radius: 10px;
}

.product-card p {
    font-size: 1.5em;
    font-weight: 600;
    color: #531e6b;
    background-color: #d1d1d1;
    border-radius: 20px;
    padding: 10px 40px;
}

/* Footer */
.footer {
    background-color: #3c2f42; /* Cor roxa similar */
    color: #fff;
    padding: 50px;
    margin-top: 50px;
}

.footer-links {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-col {
    max-width: 300px;
}

.footer-col h4 {
    font-size: 1.2em;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #ccc;
    text-decoration: none;
    font-size: 1em;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: #fff;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.social-icons a {
    color: #fff;
    font-size: 1.5em;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: #ccc;
}

.policy-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.policy-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.9em;
}

/* Responsividade básica */
/* ======================================================= */
/* PÁGINA INICIAL */
/* ======================================================= */

/* Telas entre 550px e 1100px */
@media (min-width: 551px) and (max-width: 1100px) {
    .products {
        grid-template-columns: repeat(2, 1fr);
        padding: 0 30px;
    }
    .product-card p {
        padding: 8px 20px;
        font-size: 1.2em;
    }
}

/* Telas com menos de 550px */
@media (max-width: 550px) {
    .collection .title {
        font-size: 1.8em;
    }
    .products {
        grid-template-columns: 1fr;
        padding: 0 15px;
        gap: 20px;
    }
    .product-card {
        padding: 15px;
    }
    .product-card p {
        font-size: 1.3em;
        padding: 10px 30px;
    }
}

/* Página de Tênis (Ofertas) */
.offers-title {
    text-align: center;
    padding: 50px 20px;
}

.offers-title .title {
    font-size: 2.5em;
    font-weight: 700;
    color: #3c2f42; /* Cor roxa similar */
    letter-spacing: 2px;
}

.cliquetenis{
    text-decoration: none;
}

.cliquetenis:hover{
    text-decoration: underline;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    padding: 0 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.product-item {
    background-color: #e6e6e6;
    border-radius: 15px;
    text-align: center;
    overflow: hidden;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}
.ajustetenis{
  margin-top: 90px;
  
}

.product-item img {
    width: 100%;
    max-width: 300px;
    height: auto;
    margin-bottom: 20px;
}

.product-details {
    width: 100%;
    padding: 0 10px;
}


.product-name {
    font-size: 1.1em;
    font-weight: 500;
    color: #333;
    margin-bottom: 10px;
}

.product-price {
    font-size: 1.4em;
    font-weight: 700;
    color: #3c2f42; /* Cor roxa similar */
}

/* Responsividade básica para a nova página */
/* ======================================================= */
/* PÁGINA DE TÊNIS */
/* ======================================================= */

/* Telas entre 550px e 1100px */
@media (min-width: 551px) and (max-width: 1100px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 0 30px;
    }
    .product-item {
        padding: 15px;
    }
}

/* Telas com menos de 550px */
@media (max-width: 550px) {
    .offers-title .title {
        font-size: 1.8em;
    }
    .product-grid {
        grid-template-columns: 1fr;
        padding: 0 15px;
        gap: 20px;
    }
    .product-item {
        padding: 15px;
    }
    .product-name {
        font-size: 1em;
    }
    .product-price {
        font-size: 1.2em;
    }
}

/* Página Quem Somos */
.about-us-container {
    background-color: #f0f0f0;
    padding: 50px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1200px;
    margin: 50px auto;
    border-radius: 20px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.about-us-header {
    text-align: center;
    margin-bottom: 30px;
}

.about-us-logo {
    width: 350px;
    height: auto;
    margin-bottom: 10px;
}

.about-us-header h2 {
    color: #3c2f42;
    font-size: 1.5em;
    font-weight: 700;
}

.about-us-content {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 40px;
}

.about-us-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-right: 20px;
}

.about-us-text h1 {
    font-size: 2.5em;
    font-weight: 700;
    color: #3c2f42;
    margin-bottom: 20px;
}

.about-us-text p {
    font-size: 1em;
    line-height: 1.8;
    color: #555;
    text-align: justify;
    margin-bottom: 30px;
}

.learn-more-button {
    background-color: #3c2f42;
    color: #fff;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    align-self: flex-start;
    transition: background-color 0.3s;
}

.learn-more-button:hover {
    background-color: #5a4b66;
}

.about-us-image {
    flex: 1;
    text-align: center;
}

.about-us-image img {
    width: 100%;
    max-width: 450px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* Responsividade básica para a nova página */
/* ======================================================= */
/* PÁGINA QUEM SOMOS */
/* ======================================================= */

/* Telas entre 550px e 1100px */
@media (min-width: 551px) and (max-width: 1100px) {
    .about-us-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .about-us-text {
        padding-right: 0;
    }
    .about-us-text h1 {
        font-size: 2em;
    }
    .learn-more-button {
        align-self: center;
    }
    .about-us-image {
        margin-top: 20px;
    }
    .about-us-container {
        padding: 30px 15px;
    }
}

/* Telas com menos de 550px */
@media (max-width: 550px) {
    .about-us-header h2 {
        font-size: 1.2em;
    }
    .about-us-text h1 {
        font-size: 1.8em;
    }
    .about-us-text p {
        font-size: 0.9em;
    }
    .about-us-container {
        padding: 20px 10px;
    }
    .about-us-content {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    .about-us-image img {
        width: 90%;
    }
}

/* Página de Contato */
.contact-section {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    padding: 50px 20px;
    background-color: #f0f0f0;
    max-width: 1200px;
    margin: 50px auto;
    border-radius: 20px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.contact-form-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 20px;
}

.contact-text h1 {
    font-size: 2.5em;
    font-weight: 700;
    color: #3c2f42;
    margin-bottom: 5px;
}

.contact-text h2 {
    font-size: 2em;
    font-weight: 600;
    color: #3c2f42;
    margin-bottom: 20px;
}

.contact-text p {
    font-size: 1.2em;
    color: #555;
    margin-bottom: 20px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input,
.contact-form textarea {
    padding: 15px;
    border: none;
    border-radius: 10px;
    background-color: #e6e6e6;
    font-family: 'Poppins', sans-serif;
    font-size: 1em;
    color: #3c2f42;
    outline: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #a0a0a0;
}

.contact-form textarea {
    height: 150px;
    resize: none;
}

.contact-form button {
    background-color: #3c2f42;
    color: #fff;
    padding: 15px;
    border: none;
    border-radius: 10px;
    font-size: 1.1em;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.contact-form button:hover {
    background-color: #5a4b66;
}

.contact-image-container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* Responsividade para a página de contato */
/* ======================================================= */
/* PÁGINA DE CONTATO */
/* ======================================================= */

/* Telas entre 550px e 1100px */
@media (min-width: 551px) and (max-width: 1100px) {
    .contact-section {
        flex-direction: column;
        align-items: center;
        gap: 30px;
        padding: 30px 20px;
    }
    .contact-form-container {
        padding: 0;
        text-align: center;
    }
    .contact-text h1, .contact-text h2, .contact-text p {
        text-align: center;
    }
    .contact-image-container {
        margin-top: 20px;
    }
    .contact-image {
        max-width: 80%;
    }
}

/* Telas com menos de 550px */
@media (max-width: 550px) {
    .contact-section {
        flex-direction: column;
        gap: 20px;
        padding: 20px 10px;
    }
    .contact-text h1 {
        font-size: 2em;
    }
    .contact-text h2 {
        font-size: 1.5em;
    }
    .contact-text p {
        font-size: 1em;
    }
    .contact-form input,
    .contact-form textarea,
    .contact-form button {
        padding: 12px;
    }
    .contact-image-container {
        display: none; /* Oculta a imagem em telas muito pequenas */
    }
}


/* ======================================================= */
/* RESPONSIVIDADE GERAL (APLICADA A TODAS AS PÁGINAS) */
/* ======================================================= */

/* Telas entre 550px e 1100px */
@media (min-width: 551px) and (max-width: 1100px) {
    .nav {
        padding: 15px 30px;
        flex-wrap: wrap;
    }
    .nav-links {
        gap: 20px;
    }
    .icons {
        margin-top: 10px;
        width: 100%;
        justify-content: center;
    }
    .footer-links {
        justify-content: space-between;
    }
    .footer-col {
        max-width: 45%;
    }
    .footer-col.social-media {
        flex-basis: 100%;
        text-align: center;
        margin-top: 20px;
    }
}

/* Telas com menos de 550px */
@media (max-width: 550px) {
    .nav {
        flex-direction: column;
        align-items: center;
        padding: 15px 10px;
    }
    .nav-links {
        flex-direction: column;
        width: 100%;
        text-align: center;
        display: none; /* Escondido por padrão, para usar um menu hambúrguer se necessário */
    }
    .nav-links.active {
        display: flex;
    }
    .icons {
        margin-top: 15px;
        justify-content: center;
        width: 100%;
    }
    .search-box {
        display: none; /* Oculta a barra de busca para economizar espaço */
    }
    .footer {
        padding: 30px 10px;
    }
    .footer-links {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .footer-col {
        max-width: 100%;
        margin-bottom: 20px;
    }
    .social-icons {
        justify-content: center;
    }
    .policy-links {
        justify-content: center;
    }
}

/* ======================================================= */
/* PÁGINA DE CADASTRO */
/* ======================================================= */

.register-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 50px 20px;
    background-color: #f0f0f0;
}

.register-title {
    font-size: 2.5em;
    font-weight: 700;
    color: #3c2f42;
    margin-bottom: 40px;
}

.register-container {
    display: flex;
    max-width: 1000px;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.login-panel {
    flex: 1;
    background-color: #3c2f42; /* Cor roxa escura */
    color: #fff;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.login-panel h3 {
    font-size: 1.8em;
    font-weight: 600;
    margin-bottom: 10px;
}

.login-panel p {
    font-size: 1em;
    margin-bottom: 30px;
    line-height: 1.6;
}

.social-login-icons {
    display: flex;
    gap: 25px;
    margin-bottom: 40px;
}

.social-login-icons a {
    color: #fff;
    font-size: 2em;
    border: 2px solid #fff;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.3s, color 0.3s;
}

.social-login-icons a:hover {
    background-color: #fff;
    color: #3c2f42;
}

.btn-signin {
    background-color: #d1d1d1;
    color: #3c2f42;
    padding: 15px 40px;
    border: none;
    border-radius: 30px;
    font-size: 1.1em;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-signin:hover {
    background-color: #b0b0b0;
}

.signup-panel {
    flex: 1;
    background-color: #e6e6e6; /* Cinza claro */
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.signup-panel h3 {
    font-size: 1.8em;
    font-weight: 600;
    color: #3c2f42;
    margin-bottom: 30px;
}

.signup-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    max-width: 350px;
}

.signup-form input {
    padding: 15px;
    border: none;
    border-radius: 10px;
    background-color: #d1d1d1;
    font-family: 'Poppins', sans-serif;
    font-size: 1em;
    color: #3c2f42;
    outline: none;
}

.signup-form input::placeholder {
    color: #a0a0a0;
}

.btn-signup {
    background-color: #3c2f42;
    color: #fff;
    padding: 15px 40px;
    border: none;
    border-radius: 30px;
    font-size: 1.1em;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 10px;
}

.btn-signup:hover {
    background-color: #5a4b66;
}

/* ======================================================= */
/* RESPONSIVIDADE PÁGINA DE CADASTRO */
/* ======================================================= */

/* Telas entre 550px e 1100px */
@media (min-width: 551px) and (max-width: 1100px) {
    .register-container {
        flex-direction: column;
    }
    .login-panel, .signup-panel {
        padding: 40px;
    }
    .register-title {
        font-size: 2em;
    }
}

/* Telas com menos de 550px */
@media (max-width: 550px) {
    .register-title {
        font-size: 1.8em;
        margin-bottom: 20px;
    }
    .register-container {
        flex-direction: column;
        width: 95%;
    }
    .login-panel, .signup-panel {
        padding: 30px 15px;
    }
    .login-panel h3, .signup-panel h3 {
        font-size: 1.5em;
    }
    .login-panel p {
        font-size: 0.9em;
    }
    .social-login-icons {
        gap: 15px;
        margin-bottom: 20px;
    }
    .social-login-icons a {
        width: 50px;
        height: 50px;
        font-size: 1.5em;
    }
    .btn-signin, .btn-signup {
        width: 100%;
        padding: 12px;
    }
    .signup-form input {
        width: 100%;
    }
}

/* ======================================================= */
/* PÁGINA DO CARRINHO */
/* ======================================================= */

.cart-section {
    display: flex;
    justify-content: center;
    gap: 40px;
    padding: 50px 20px;
    background-color: #f0f0f0;
    max-width: 1200px;
    margin: 50px auto;
}

.cart-left-panel,
.cart-right-panel {
    background-color: #e6e6e6;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cart-left-panel {
    flex: 2;
}

.cart-right-panel {
    flex: 1;
    text-align: center;
}

.section-title {
    font-size: 2em;
    font-weight: 700;
    color: #3c2f42;
    text-align: center;
    margin-bottom: 20px;
}

.cart-item {
    background-color: #d1d1d1;
    border-radius: 10px;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.cart-item-image img {
    width: 100px;
    height: auto;
    border-radius: 5px;
}

.cart-item-details {
    flex-grow: 1;
}

.cart-item-name {
    font-size: 1em;
    font-weight: 500;
    color: #333;
    margin-bottom: 5px;
}

.cart-item-price {
    font-size: 1.2em;
    font-weight: 600;
    color: #3c2f42;
}

.cart-item-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.quantity-control input {
    width: 50px;
    text-align: center;
    padding: 5px;
    border-radius: 5px;
    border: 1px solid #aaa;
}

.remove-item {
    font-size: 1.5em;
    color: #3c2f42;
    cursor: pointer;
}

.payment-summary {
    text-align: left;
    margin-bottom: 20px;
}

.summary-line {
    display: flex;
    justify-content: space-between;
    font-size: 1.1em;
    color: #555;
    margin-bottom: 5px;
}

.summary-value {
    color: #3c2f42;
    font-weight: 600;
}

.promo-code {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background-color: #d1d1d1;
    border-radius: 10px;
    font-weight: 600;
    color: #3c2f42;
    cursor: pointer;
    margin-bottom: 20px;
}

.promo-code i {
    font-size: 1.2em;
}

.btn-checkout {
    background-color: #3c2f42;
    color: #fff;
    padding: 15px 40px;
    border: none;
    border-radius: 30px;
    font-size: 1.1em;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 100%;
}

.btn-checkout:hover {
    background-color: #5a4b66;
}

/* ======================================================= */
/* RESPONSIVIDADE PÁGINA DO CARRINHO */
/* ======================================================= */

/* Telas entre 550px e 1100px */
@media (min-width: 551px) and (max-width: 1100px) {
    .cart-section {
        flex-direction: column;
        gap: 30px;
        padding: 30px 20px;
    }
    .cart-left-panel, .cart-right-panel {
        flex: auto;
        padding: 20px;
    }
    .section-title {
        font-size: 1.8em;
    }
}

/* Telas com menos de 550px */
@media (max-width: 550px) {
    .cart-section {
        flex-direction: column;
        gap: 20px;
        padding: 20px 10px;
    }
    .cart-left-panel, .cart-right-panel {
        flex: auto;
        padding: 15px;
    }
    .section-title {
        font-size: 1.5em;
    }
    .cart-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    .cart-item-image img {
        width: 80px;
    }
    .cart-item-actions {
        flex-direction: row;
        gap: 20px;
    }
    .quantity-control input {
        width: 40px;
    }
    .btn-checkout {
        font-size: 1em;
    }
}