/* Reset basico */
body {
     margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    display: flex;
    flex-direction: column;
    min-height: 100vh; /* Garante que o body ocupe pelo menos a tela toda */
}

/* Estilo do cabecalho */
.top-bar {
    background-color: #f5f5f5;
    padding: 5px 20px;
    text-align: center;
    font-size: 12px;
    color: #333;
}

main {
    flex: 1; /* Ocupa todo o espaço restante, empurrando o footer para baixo */
}

header {
    background-color: #fff;
    padding: 25px 0 !important;
    border-bottom: 1px solid #ddd;
    width: 100%;
}

header .custom-title a{
    font-family: 'Arial', sans-serif; /* Escolha uma fonte parecida ou elegante */
    font-weight: bold;
    letter-spacing: 0.1em; /* Espaçamento entre letras */
    color: #000; /* Cor preta */
    font-size: 24px; /* Ajuste o tamanho conforme necessário */
    text-transform: uppercase; /* Deixa todas as letras maiúsculas */
    margin: 0; /* Remove margens padrão */
    text-align: center; /* Centraliza no header */
    text-decoration: none;
}



.logo {
    font-size: 24px;
    font-weight: bold;
}

.nav-links {
    display: flex;
    list-style: none;
    font-weight: bold;
    gap: 20px;
}

.nav-links li a {
    text-decoration: none;
    color: #333;
    font-size: 14px;
    text-transform: uppercase;
}

.search-cart {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-right: 40px; 
}


.shop-button {
    background: none; /* Remove o fundo padrão */
    border: none; /* Remove a borda padrão */
    cursor: pointer; /* Define o cursor como "pointer" para indicar clicável */
    display: flex;
    align-items: center;
    justify-content: center;
}

.shop-button-user {
    background: none; /* Remove o fundo padrão */
    border: none; /* Remove a borda padrão */
    cursor: pointer; /* Define o cursor como "pointer" para indicar clicável */
    display: flex;
    align-items: center;
    justify-content: center;
}

.shop-button-heart {
    background: none; /* Remove o fundo padrão */
    border: none; /* Remove a borda padrão */
    cursor: pointer; /* Define o cursor como "pointer" para indicar clicável */
    display: flex;
    align-items: center;
    justify-content: center;
}

.shop-button img {
    width: 30px; /* Largura desejada */
    height: 30px; /* Altura desejada */
    object-fit: contain; /* Garante que a imagem se ajuste ao tamanho sem distorção */
}

.shop-button-user img {
    width: 23px; /* Largura desejada */
    height: 23px; /* Altura desejada */
    object-fit: contain; /* Garante que a imagem se ajuste ao tamanho sem distorção */
}

.shop-button-heart img {
    width: 23px; /* Largura desejada */
    height: 23px; /* Altura desejada */
    object-fit: contain; /* Garante que a imagem se ajuste ao tamanho sem distorção */
}

/* Estilo do banner */
.banner {
    background: url('/video.mp4') center/cover no-repeat;
    height: 600px;
    position: relative;
    display: flex;
    align-items: flex-end;
    padding: 20px;
    color: white;
}

.banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.banner-text {
    position: relative;
    z-index: 2;
}

.banner-text h2 {
    font-size: 20px;
    margin-bottom: 10px;
}

.banner-text h1 {
    font-size: 50px;
    margin-bottom: 20px;
}

.banner-text p {
    font-size: 18px;
    margin-bottom: 20px;
}

.btn {
    padding: 10px 20px;
    background-color: #fff;
    color: #000;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    text-transform: uppercase;
    font-weight: bold;
}

.btn:hover {
    background-color: #ddd;
}

.highlights {
    padding: 40px;
    background-color: #f5f5f5;
    max-width: 1200px;
    margin: 0 auto;
}

.highlights h2 {
    font-size: 28px;
    margin-bottom: 30px;
    color: #333;
    text-align: left;
    font-weight: 600;
}

.highlights-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    width: 100%;
}

.highlights-item {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.highlights-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.image-container {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.highlights-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.highlights-item:hover img {
    transform: scale(1.05);
}

.highlights-item h3 {
    padding: 15px;
    margin: 0;
    font-size: 16px;
    color: #333;
    text-align: center;
    flex-grow: 1;
}   

.highlight-item img.back {
    opacity: 0; /* Ocultar a imagem de trás inicialmente */
}

.highlight-item:hover img.front {
    opacity: 0; /* Ocultar a imagem da frente ao passar o mouse */
}

.highlight-item:hover img.back {
    opacity: 1; /* Mostrar a imagem de trás ao passar o mouse */
}

@media (max-width: 768px) {
    .highlights-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .image-container {
        height: 180px;
    }
}

@media (max-width: 480px) {
    .highlights-container {
        grid-template-columns: 1fr;
    }
    
    .highlights {
        padding: 20px;
    }
}

.add-to-cart-btn {
    display: block;
    margin: 15px auto;
    padding: 10px 20px;
    background-color: #000;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 80%;
    text-transform: uppercase;
}

.add-to-cart-btn:hover {
    background-color: #333;
    transform: translateY(-2px);
}

.explore {
    margin: 50px auto;
    max-width: 1200px;
    padding: 0 20px;
}

.explore h2 {
    font-size: 28px;
    margin-bottom: 30px;
    color: #333;
    text-align: left;
    font-weight: 600;
}

.explore-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    width: 100%;
}

.explore-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 20px;
}

.explore-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.explore-image-container {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.explore-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.explore-card:hover img {
    transform: scale(1.05);
}

.explore-card button {
    margin-top: 15px;
    background-color: #000;
    color: #fff;
    padding: 10px 25px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.explore-card button:hover {
    background-color: #333;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .explore-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .explore-image-container {
        height: 180px;
    }
}

@media (max-width: 480px) {
    .explore-grid {
        grid-template-columns: 1fr;
    }
    
    .explore {
        padding: 0 15px;
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.back-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #000;
    text-decoration: none;
    font-weight: bold;
    margin-bottom: 30px;
    padding: 8px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    transition: all 0.3s;
}

.back-button:hover {
    background-color: #f0f0f0;
}

.back-button img {
    height: 16px;
}

.section-title {
    font-size: 28px;
    margin: 40px 0 30px;
    text-align: center;
    color: #333;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background-color: #000;
    margin: 15px auto 0;
}

.highlight-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.highlight-item {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.highlight-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.image-slider {
    position: relative;
    height: 350px;
    overflow: hidden;
}

.image-slider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.5s;
    position: absolute;
    top: 0;
    left: 0;
}

.image-slider img.back {
    opacity: 0;
}

.highlight-item:hover .image-slider img.front {
    opacity: 0;
}

.highlight-item:hover .image-slider img.back {
    opacity: 1;
}

.item-info {
    padding: 20px;
    text-align: center;
}

.item-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
}

.item-price {
    font-size: 16px;
    color: #555;
    margin-bottom: 15px;
}

.buy-button {
    background-color: #000;
    color: #fff;
    border: none;
    padding: 12px 25px;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 100%;
}

.buy-button:hover {
    background-color: #333;
}

.more-items {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.more-item {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.more-item:hover {
    transform: translateY(-5px);
}

.more-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.more-item-info {
    padding: 15px;
    text-align: center;
}

.view-more {
    text-align: center;
    margin: 40px 0;
}

.forward-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #000000;
    color: rgb(255, 255, 255) !important;
    padding: 12px 25px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s;
    text-shadow: 0 0 2px rgba(0,0,0,0.5);
}

.forward-button:hover {
    background-color: #333;
}

.forward-button img {
    height: 16px;
    filter: invert(1);
}

@media (max-width: 768px) {
    .highlight-section {
        grid-template-columns: 1fr;
    }
    
    .more-items {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .more-items {
        grid-template-columns: 1fr;
    }
}

.section-title {
    font-size: 24px;
    margin-bottom: 20px;
    text-align: center;
}
.highlight-section, .more-items {
    display: grid;
    gap: 20px;
    margin-bottom: 40px;
}
.highlight-section {
    grid-template-columns: repeat(3, 1fr);
}
.highlight-item, .more-item {
    border: 1px solid #ccc;
    border-radius: 8px;
    overflow: hidden;
    text-align: center;
}
.highlight-item img, .more-item img {
    width: 100%;
    height: auto;
    display: block;
}

.forward-button {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    text-decoration: none;
    color: #000;
    margin-bottom: 20px;
    font-weight: bold;
    position: absolute; /* Define posição absoluta */
    right: 20px; /* Define a distância do lado direito */
}
.forward-button img {
    width: 16px;
    height: 16px;
}


.sports-section {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    height: 100vh; /* Preenche toda a tela */
}

.sport {
    width: 50%; /* Cada modal ocupa metade horizontalmente */
    height: 50%; /* Cada modal ocupa metade verticalmente */
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    font-weight: bold;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    outline: none;
}

.sport:hover {
    filter: brightness(0.8);
    transform: scale(1.1);
}

/* Estilo para cada desporto */
.football {
    background: url('../imagens/football.jpg') center/cover no-repeat;
    background-color: #000;
}

.basketball {
    background: url('../imagens/basketball.jpg') center/cover no-repeat;
    background-color: #000;
}

.volleyball {
    background: url('../imagens/volleyball.jpg') center/cover no-repeat;
    background-color: #000;
}

.running {
    background: url('../imagens/running.jpg') center/cover no-repeat;
    background-color: #000;
}

.swimming {
    background: url('../imagens/swimming.jpg') center/cover no-repeat;
    background-color: #000;
}

.training_and_gym {
    background: url('../imagens/training.jpg') center/cover no-repeat;
    background-color: #000;
}

.category-buttons {
    display: flex;
    justify-content: center;
    margin: 20px 0;
}

.category-buttons button {
    border: 1px solid #ddd;
    background-color: #f9f9f9;
    color: black;
    padding: 10px 20px;
    margin: 0 10px;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.category-buttons button:hover {
    background-color: black;
    color: white;
}

.category-buttons .active {
    background-color: black;
    color: white;
}

.filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.filters button {
    background: var(--white);
    border: 1px solid #ddd;
    padding: 8px 15px;
    border-radius: 20px;
    cursor: pointer;
    transition: var(--transition);
}

.filters button:hover {
    background: var(--primary-color);
    color: var(--white);
}

.price-filter {
    display: none;
    background: var(--white);
    padding: 15px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    margin-bottom: 20px;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
}

.price-filter input {
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    width: 80px;
}

.price-filter button {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 8px 15px;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
}

.price-filter button:hover {
    background: var(--secondary-color);
}

.price-filter button.reset {
    background: transparent;
    color: var(--primary-color);
    text-decoration: underline;
}

.products-section {
    margin-top: 30px;
}

.products-section h2 {
    font-size: 28px;
    margin-bottom: 5px;
}

.products-section p {
    color: #666;
    margin-bottom: 20px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 25px;
}

.product {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    position: relative;
}

.product:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.product img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-bottom: 1px solid #eee;
}

.product-info {
    padding: 15px;
}

.product-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
}

.product-price {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.color-options {
    display: flex;
    gap: 8px;
    margin-bottom: 15px;
}

.color-options div {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 1px solid #eee;
    cursor: pointer;
    transition: var(--transition);
}

.color-options div:hover {
    transform: scale(1.1);
}

.add-button {
    width: 100%;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 10px;
    border-radius: var(--border-radius);
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
}

.add-button:hover {
    background: var(--secondary-color);
}

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .filters {
        overflow-x: auto;
        padding-bottom: 10px;
        flex-wrap: nowrap;
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .category-buttons {
        overflow-x: auto;
        padding-bottom: 10px;
        flex-wrap: nowrap;
    }
}

.category-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.category-buttons button {
    background: var(--white);
    border: 1px solid #ddd;
    padding: 8px 15px;
    border-radius: 20px;
    cursor: pointer;
    transition: var(--transition);
    font-size: 14px;
}

.category-buttons button:hover, 
.category-buttons button.active {
    background: var(--primary-color);
    color: var(--white);
}

.login-wrapper {
    display: flex;
    justify-content: center; /* Centraliza horizontalmente */
    align-items: center; /* Centraliza verticalmente */
    height: 65vh; /* Preenche a altura total da viewport */
}

.login-container {
    width: 100%;
    max-width: 400px;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}



.input-field {
    width: 100%;
    margin: 10px 0;
}

.input-field input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
    box-sizing: border-box;
}

.forgot-password {
    font-size: 12px;
    color: #666666;
    text-decoration: none;
    margin-top: 10px;
    display: inline-block;
}

.forgot-password:hover {
    text-decoration: underline;
}

.login-button {
    width: 100%;
    padding: 12px;
    background-color: #000;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    margin-top: 20px;
    font-weight: bold;
}

.login-button:hover {
    background-color: #333;
}

.register-section {
    margin-top: 20px;
    font-size: 14px;
    color: #666666;
}

.register-section a {
    color: #000;
    text-decoration: none;
    font-weight: bold;
}

.register-section a:hover {
    text-decoration: underline;
}


  
  .newsletter {
    max-width: 400px;
  }
  
  .newsletter h3 {
    font-size: 16px;
    margin-bottom: 10px;
  }
  
  .newsletter p {
    font-size: 14px;
    margin-bottom: 10px;
  }
  
  .newsletter input,
  .subscribe-button {
    width: 100%;
    height: 45px;
    box-sizing: border-box;
    border-radius: 4px;
    font-size: 14px;
    padding: 0 10px;
    margin-bottom: 10px;
  }
  
  .newsletter input {
    border: 1px solid #ccc;
  }
  
  .subscribe-button {
    background-color: #000;
    color: #fff;
    border: none;
    cursor: pointer;
  }
  
  .subscribe-button:hover {
    background-color: #333;
  }
  
  
  
  

  .modalidade-section {
  text-align: center;
  padding: 50px 20px;
}

h2 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 30px;
}

.carousel-container {
  display: flex;
  overflow: hidden;
  position: relative;
}

.carousel-item {
  position: relative;
  flex: 0 0 100%;
  transition: transform 0.5s ease;
}

.carousel-item img {
  width: 100%;
  height: auto;
}

.modalidade-button {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  padding: 10px 20px;
  font-size: 16px;
  border: none;
  cursor: pointer;
  border-radius: 5px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.carousel-item:hover .modalidade-button {
  opacity: 1;
}

.carousel-controls {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.prev-btn, .next-btn {
  background-color: rgba(187, 187, 187, 0.5);
  color: rgb(0, 0, 0);
  padding: 10px;
  border: none;
  cursor: pointer;
  border-radius: 50%;
  font-size: 18px;
}

.prev-btn:hover, .next-btn:hover {
  background-color: rgba(97, 97, 97, 0.8);
}

.auth-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f4f4f4;
}

.auth-box {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 100%;
    max-width: 400px;
}

.auth-box h1 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.auth-box p {
    font-size: 1rem;
    margin-bottom: 20px;
    color: #666;
}

.form-group {
    margin-bottom: 15px;
    text-align: left;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 5px;
    color: #333;
}

.form-group input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 0.95rem;
}

.auth-button {
    width: 100%;
    padding: 10px;
    background-color: #000000;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 20px;
    margin-bottom: 20px;
}

.auth-button:hover {
    background-color: #555;
}

.auth-box a {
    color: #000000;
    text-decoration: none;
    font-weight: bold;
}

.auth-box a:hover {
    text-decoration: underline;
}

.user-menu-container {
    position: relative;
    display: inline-block;
}

.user-menu-button {
    background: none;
    border: none;
    cursor: pointer;
    position: relative;
}

.user-menu-button img {
    width: 24px;
    height: 24px;
}

.user-menu-dropdown {
    display: none;
    position: absolute;
    top: 35px;
    right: 0;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    padding: 10px;
    z-index: 10;
}

.user-menu-dropdown p {
    margin: 5px 0;
    font-size: 14px;
    color: #333;
}

.user-menu-dropdown button {
    display: block;
    width: 100%;
    margin-top: 10px;
    padding: 8px;
    font-size: 14px;
    background-color: #f44336;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.user-menu-dropdown button:hover {
    background-color: #d32f2f;
}

.user-menu-container:hover .user-menu-dropdown {
    display: block;
}

.cart-container {
    display: flex;
    justify-content: space-between;
    margin: 20px;
}

.cart-items {
    width: 60%;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    border-bottom: 1px solid #ddd;
}

.cart-item img {
    width: 100px;
    height: 100px;
    object-fit: cover;
}

.cart-summary {
    width: 35%;
    border: 1px solid #ddd;
    padding: 20px;
}

.cart-summary h3 {
    margin-bottom: 20px;
}

.cart-summary p {
    margin: 10px 0;
}

.checkout-btn {
    display: block;
    width: 100%;
    padding: 10px;
    background-color: #000;
    color: #fff;
    text-align: center;
    border: none;
    cursor: pointer;
}

.checkout-btn:disabled {
    background-color: #aaa;
}

.mensagem {
    padding: 10px;
    margin: 10px 0;
    border-radius: 5px;
    font-size: 16px;
    text-align: center;
}

.mensagem.sucesso {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.mensagem.erro {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.btn-remover {
    background-color: #ff4d4d; /* Vermelho */
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 5px;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-remover:hover {
    background-color: #e60000; /* Tom mais escuro no hover */
}

.btn-remover:active {
    background-color: #cc0000; /* Tom ainda mais escuro ao clicar */
    transform: scale(0.98);
}

.banner-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%; /* Faz o vídeo preencher a largura do banner */
    height: auto; /* Ajusta a altura proporcionalmente */
    object-fit: cover; /* Cobre o container mantendo o aspecto correto */
}

/* Conteúdo sobreposto ao vídeo */
.banner-overlay {
    position: relative;
    z-index: 1;
    color: white;
    text-align: center;
    padding: 20px;
}

.banner-overlay h1 {
    font-size: 2.5rem;
    font-weight: bold;
}

.banner-overlay p {
    margin-top: 10px;
    font-size: 1.2rem;
}

.banner-overlay button {
    margin-top: 20px;
    padding: 10px 20px;
    font-size: 1.2rem;
    background-color: white;
    color: black;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}

.banner-overlay button:hover {
    background-color: black;
    color: white;
}

.overlay {
    position: relative;
    z-index: 1;
    color: white;
    text-align: center;
    top: 50%;
    transform: translateY(-50%);
    padding: 20px;
}

.overlay h1 {
    font-size: 3rem;
    font-weight: bold;
}

.overlay p {
    margin-top: 10px;
    font-size: 1.5rem;
}

.overlay button {
    margin-top: 20px;
    padding: 10px 20px;
    font-size: 1.2rem;
    background-color: white;
    color: black;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}

.overlay button:hover {
    background-color: black;
    color: white;
}

.user-btn {
    display: block;
    margin: 8px auto;
    padding: 10px 15px;
    text-decoration: none;
    font-size: 14px;
    color: #fff;
    background-color: #4CAF50; /* Verde para os botões */
    border: none;
    border-radius: 5px;
    transition: background 0.3s ease;
}


.sucesso {
    color: green;
    text-align: center;
}

.erro {
    color: red;
    text-align: center;
}

.form-adicionar-produto {
    max-width: 500px;
    margin: 20px auto;
    padding: 20px;
    background: #f9f9f9; /* Fundo suave */
    border: 1px solid #ddd; /* Borda suave */
    border-radius: 8px; /* Cantos arredondados */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Sombra */
    font-family: Arial, sans-serif;
}

/* Labels */
.form-adicionar-produto label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #555;
}

/* Campos de Input */
.input-form {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
    font-size: 14px;
    transition: border 0.3s;
}

.input-form:focus {
    border: 1px solid #007bff; /* Destaque azul */
    outline: none;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}

/* Botão */
.botao-adicionar {
    display: inline-block;
    width: 100%;
    padding: 10px 15px;
    background-color: #000000; /* Azul */
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-align: center;
    transition: background-color 0.3s, box-shadow 0.3s;
}

.botao-adicionar:hover {
    background-color: #262626; /* Azul mais escuro */
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
}

.botao-adicionar:active {
    background-color: #000000;
    transform: scale(0.98); /* Efeito de clique */
}

/* Estilos Gerais */
body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f9;
    margin: 0;
    padding: 0;
    color: #333;
}

.manage-header {
    background-color: #333;
    color: #fff;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.manage-header-title {
    margin: 0;
    font-size: 1.8rem;
}

.manage-header-btn {
    text-decoration: none;
    color: #fff;
    background-color: #4CAF50;
    padding: 0.5rem 1rem;
    border-radius: 5px;
}

.manage-header-btn:hover {
    background-color: #45a049;
}

/* Tabela de Gestão de Produtos */
.manage-table {
    width: 95%;
    margin: 2rem auto;
    border-collapse: collapse;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.manage-table th, .manage-table td {
    padding: 0.8rem;
    text-align: center;
    border-bottom: 1px solid #ddd;
}

.manage-table th {
    background-color: #333;
    color: #fff;
    font-weight: bold;
}

.manage-table tr:nth-child(even) {
    background-color: #f9f9f9;
}

.manage-table tr:hover {
    background-color: #f1f1f1;
    transition: background-color 0.3s;
}

/* Formulário de Edição */
.manage-edit-form {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.manage-edit-form input[type="text"],
.manage-edit-form input[type="number"],
.manage-edit-form input[type="color"] {
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
    width: 120px;
}

.manage-edit-form input[type="color"] {
    padding: 3px;
    width: 50px;
    height: 40px;
}

.manage-edit-form button {
    padding: 8px 12px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
}

.manage-edit-form button:hover {
    background-color: #45a049;
}

.manage-delete-btn {
    padding: 8px 12px;
    background-color: #f44336;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    text-decoration: none;
    display: inline-block;
    margin-left: 10px;
}

.manage-delete-btn:hover {
    background-color: #d32f2f;
}


body {
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
    text-align: center;
    margin: 0;
    padding: 0;
}

.recup-container {
    max-width: 400px;
    margin: 100px auto;
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

.recup-titulo {
    font-size: 24px;
    color: #222;
    margin-bottom: 20px;
}

.recup-botoes {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.recup-btn {
    display: block;
    text-decoration: none;
    background: #000;
    color: white;
    font-size: 16px;
    font-weight: bold;
    padding: 14px;
    border-radius: 8px;
    text-align: center;
    transition: 0.3s;
}

.recup-btn:hover {
    background: #333;
}


/* 🔵 Estilos para recuperação de email */
.blc-recup-box {
    max-width: 400px;
    margin: 120px auto;
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

.blc-recup-title {
    font-size: 22px;
    color: #222;
    margin-bottom: 10px;
}

.blc-recup-info {
    font-size: 14px;
    color: #555;
    margin-bottom: 20px;
}

.blc-recup-field {
    width: 100%;
    padding: 12px;
    border-radius: 5px;
    border: 1px solid #ccc;
    margin-bottom: 15px;
}

.blc-recup-action {
    width: 100%;
    background: #000;
    color: white;
    font-size: 16px;
    font-weight: bold;
    padding: 12px;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
}

.blc-recup-action:hover {
    background: #333;
}

/* 🟢 Estilos para a verificação */
.blc-verif-box {
    max-width: 400px;
    margin: 100px auto;
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

.blc-verif-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 15px;
}

.blc-verif-info {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

.blc-verif-input-container {
    display: flex;
    justify-content: center;
}

.blc-verif-code {
    width: 60%;
    padding: 10px;
    text-align: center;
    font-size: 18px;
    border-radius: 5px;
    border: 1px solid #ccc;
}

.blc-verif-action {
    width: 100%;
    background: #000000;
    color: white;
    font-size: 16px;
    font-weight: bold;
    padding: 12px;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
}

.blc-verif-action:hover {
    background: #252525;
}

.blc-verif-links {
    margin-top: 15px;
}

.blc-verif-links a {
    text-decoration: none;
    color: #007bff;
    margin-right: 15px;
}


/* Estilos para recuperação por telefone */
.blc-recup-tel-box {
    width: 100%;
    max-width: 400px;
    margin: 100px auto;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.blc-recup-tel-title {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
}

.blc-recup-tel-info {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}

.blc-recup-tel-field {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 16px;
    margin-bottom: 15px;
    outline: none;
}

.blc-recup-tel-action {
    width: 100%;
    background: black;
    color: white;
    font-size: 16px;
    font-weight: bold;
    padding: 12px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s;
}

.blc-recup-tel-action:hover {
    background: #222;
}

/* Estilos para verificação do código */
.blc-verif-tel-box {
    width: 100%;
    max-width: 420px;
    margin: 80px auto;
    padding: 20px;
    background: #ffffff;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.blc-verif-tel-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #222;
}

.blc-verif-tel-info {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

.blc-verif-tel-input-container {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.blc-verif-tel-code {
    width: 50px;
    height: 50px;
    text-align: center;
    font-size: 20px;
    border: 1px solid #ccc;
    border-radius: 6px;
    outline: none;
}

.blc-verif-tel-action {
    width: 100%;
    background: #000000;
    color: white;
    font-size: 16px;
    font-weight: bold;
    padding: 12px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    margin-top: 15px;
    transition: 0.3s;
}

.blc-verif-tel-action:hover {
    background: #2a2a2a;
}

.blc-verif-tel-links {
    margin-top: 15px;
}

.blc-verif-tel-links a {
    display: block;
    font-size: 14px;
    color: #007bff;
    text-decoration: none;
    margin-top: 5px;
}

.blc-verif-tel-links a:hover {
    text-decoration: underline;
}

/* Estilos para a página de suporte */
.blc-suporte-container {
    max-width: 800px;
    margin: 100px auto;
    text-align: center;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.blc-suporte-titulo {
    font-size: 26px;
    font-weight: bold;
    color: #222;
}

.blc-suporte-texto {
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
}

.blc-suporte-opcoes {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.blc-suporte-botao {
    display: block;
    width: 48%;
    padding: 12px;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    color: white;
    background: black;
    text-align: center;
    border-radius: 6px;
    transition: 0.3s;
}

.blc-suporte-botao:hover {
    background: #222;
}

/* Botão especial para contactar suporte */
.blc-suporte-botao.destaque {
    background: #d9534f;
}

.blc-suporte-botao.destaque:hover {
    background: #c9302c;
}

/* Responsividade */
@media (max-width: 600px) {
    .blc-suporte-botao {
        width: 100%;
    }
}


.product-form-container {
    max-width: 800px;
    margin: auto;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

/* Criando um layout flexível para alinhar os labels e inputs */
.product-form-group {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

/* Garantindo que os labels fiquem alinhados à esquerda */
.product-form-group label {
    width: 30%;
    text-align: left;
    font-weight: bold;
    color: #333;
}

/* Os inputs e selects ocupam o restante do espaço */
.product-form-group input,
.product-form-group select {
    width: 65%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

/* Para campos que ocupam a largura completa */
.product-form-full-width {
    flex-direction: column;
}

.product-form-full-width label {
    width: 100%;
    text-align: left;
    margin-bottom: 5px;
}

.product-form-full-width input,
.product-form-full-width select {
    width: 100%;
}

/* Botão de envio estilizado */
.product-submit-btn {
    width: 100%;
    padding: 10px;
    background: black;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.3s;
}

.product-submit-btn:hover {
    background: #333;
}


.product-image {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 4px;
}

.mensagem-sucesso {
    color: green;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid green;
    background-color: #e6ffe6;
}
.mensagem-erro {
    color: red;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid red;
    background-color: #ffe6e6;
}
.product-form-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
.product-form-group {
    margin-bottom: 15px;
}
.input-form {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
}
.product-submit-btn {
    background-color: #000000;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}
.product-submit-btn:hover {
    background-color: #3d3d3d;
}
.product-image {
    max-width: 100px;
    max-height: 100px;
}



.search-form {
    display: flex !important;
    align-items: center !important;
    margin-right: 15px !important;
    position: relative !important;
    height: 100% !important; /* Ocupa toda a altura do container pai */
}

.search-form input[type="text"] {
    padding: 5px 30px 5px 10px !important; /* Reduz o padding vertical */
    border: 1px solid #ddd !important;
    border-radius: 20px !important;
    width: 160px !important; /* Largura menor */
    outline: none;
    height: 28px !important; /* Altura menor */
    font-size: 13px !important ; /* Fonte ligeiramente menor */
}

.search-form button {
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    cursor: pointer !important;
    position: absolute !important;
    right: 8px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.search-form button img {
    width: 14px !important;  /* Ícone ligeiramente menor */
    height: 14px !important;
    opacity: 0.7 !important;
}

.search-form button:hover img {
    opacity: 1 !important;
}

/* Estilos para os resultados da pesquisa */
.search-results {
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.product-card {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px;
    text-align: center;
}

.product-card img {
    max-width: 100%;
    height: auto;
    margin-bottom: 10px;
}

.view-product {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 15px;
    background: #333;
    color: white;
    text-decoration: none;
    border-radius: 4px;
}

.product-detail-container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.product-images {
    display: flex;
    flex-direction: column;
}

.main-product-image {
    width: 100%;
    height: 500px;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    margin-bottom: 20px;
}

.product-info {
    padding: 20px 0;
}

.product-title {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.product-category {
    font-size: 1rem;
    color: #666;
    margin-bottom: 20px;
}

.product-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #000;
    margin: 25px 0;
}

.color-section, .size-section {
    margin-bottom: 30px;
}

.section-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.color-options {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.color-option {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.color-option.selected {
    border-color: #000;
    transform: scale(1.1);
}

.color-option:hover {
    transform: scale(1.1);
}

.size-options {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.size-option {
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.size-option.selected {
    background: #000;
    color: white;
    border-color: #000;
}

.size-option.unavailable {
    color: #ccc;
    text-decoration: line-through;
    cursor: not-allowed;
}

.size-option:not(.unavailable):hover {
    border-color: #999;
}

.add-to-cart {
    background: #000;
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    margin-top: 30px;
    width: 100%;
    max-width: 300px;
    border-radius: 4px;
    transition: background 0.3s ease;
}

.add-to-cart:hover {
    background: #333;
}

.product-description {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.description-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.description-content {
    line-height: 1.6;
    color: #555;
}

@media (max-width: 768px) {
    .product-detail-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .main-product-image {
        height: 400px;
    }
}

.variacoes-container {
    display: grid;
    gap: 10px;
    margin: 10px 0;
}
.variacao-item {
    margin-bottom: 10px;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    display: flex;
    gap: 10px;
    align-items: center;
}

.variacao-item input, .variacao-item select {
    flex: 1;
}

.color-box {
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-right: 5px;
    border: 1px solid #ddd;
}
.manage-table td {
    vertical-align: top;
}
.edit-form-container {
    display: none;
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background: white;
            padding: 20px;
            z-index: 1000;
            box-shadow: 0 0 10px rgba(0,0,0,0.3);
            max-height: 80vh;
            overflow-y: auto;
            width: 80%;
            max-width: 600px;
}

.manage-edit-btn {
    padding: 8px 15px;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    background-color: #6db1fa;
}

.manage-produto-variacoes {
    background: #cfd4cc;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ddd;
    margin-top: 10px;
}

.cart-container {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 20px auto;
    padding: 20px;
}

.cart-items {
    flex: 2;
    margin-right: 20px;
}

.cart-summary {
    flex: 1;
    background: #f9f9f9;
    padding: 20px;
    border-radius: 5px;
}

.cart-item {
    display: flex;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.cart-item img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    margin-right: 20px;
}

.quantity-form {
    display: flex;
    align-items: center;
    margin: 10px 0;
}

.quantity-input {
    width: 60px;
    padding: 5px;
    margin: 0 10px;
}

.checkout-btn {
    background-color: #000;
    color: white;
    border: none;
    padding: 12px 20px;
    width: 100%;
    cursor: pointer;
    margin-top: 20px;
}

.checkout-btn:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}
    
.manage-delete-btn-nodelete {
    padding: 8px 12px;
    background-color: #000000;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    text-decoration: none;
    display: inline-block;
    margin-left: 10px;
}

.checkout-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    z-index: 1000;
    overflow-y: auto;
  }
  
  .checkout-container {
    background: white;
    width: 90%;
    max-width: 1000px;
    margin: 50px auto;
    padding: 30px;
    display: flex;
    position: relative;
    border-radius: 8px;
  }
  
  .checkout-left {
    flex: 2;
    padding-right: 30px;
  }
  
  .checkout-right {
    flex: 1;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 8px;
  }
  
  .checkout-section {
    margin-bottom: 30px;
  }
  
  .form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
  }
  
  .delivery-options label {
    display: block;
    margin-bottom: 10px;
    cursor: pointer;
  }
  
  .payment-options {
    display: flex;
    gap: 15px;
  }
  
  .payment-method input {
    display: none;
  }
  
  .payment-method label {
    cursor: pointer;
    border: 1px solid #ddd;
    padding: 10px;
    border-radius: 4px;
    display: block;
  }
  
  .payment-method input:checked + label {
    border-color: #000;
  }
  
  .payment-method img {
    height: 30px;
    width: auto;
  }
  
  .confirm-purchase {
    background: #000;
    color: white;
    border: none;
    padding: 12px 25px;
    width: 100%;
    cursor: pointer;
    font-size: 16px;
    margin-top: 20px;
  }
  
  .close-checkout {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
  }
  
  .order-summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
  }
  
  .order-total {
    font-weight: bold;
    border-top: 1px solid #ddd;
    padding-top: 10px;
    margin-top: 10px;
  }
  
  @media (max-width: 768px) {
    .checkout-container {
      flex-direction: column;
    }
    
    .checkout-left {
      padding-right: 0;
      margin-bottom: 30px;
    }
  }

  .checkout-product-images {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
  }
  
  .checkout-product-image {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border: 1px solid #ddd;
    border-radius: 4px;
  }

  .video-banner {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.banner-content {
    max-width: 800px;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.5);
}

.banner-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-weight: bold;
}

.banner-content p {
    font-size: 1.5rem;
    margin-bottom: 30px;
}

.banner-btn {
    padding: 15px 30px;
    background-color: #000;
    color: white;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.banner-btn:hover {
    background-color: #333;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

/* Estilos para a seção de modalidades */
.modalidade-section {
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.modalidade-section h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 2rem;
    color: #000;
}

.carousel-container {
    position: relative;
    overflow: hidden;
}

.carousel-wrapper {
    display: flex;
    transition: transform 0.5s ease;
    gap: 15px;
    padding: 0 10px;
}

.modalidade-section {
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.modalidade-section h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 2rem;
    color: #000;
}

.modalidade-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    justify-items: center;
}

.modalidade-card {
    width: 100%;
    max-width: 220px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.modalidade-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.modalidade-card img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    display: block;
}

.modalidade-content {
    padding: 15px;
    text-align: center;
    background: white;
}

.modalidade-content h3 {
    margin: 0 0 10px 0;
    font-size: 1.2rem;
    color: #333;
    font-weight: 600;
}

.modalidade-button {
    background: #000;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: background 0.3s;
    width: 100%;
}

.modalidade-button:hover {
    background: #333;
}

@media (max-width: 768px) {
    .modalidade-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .modalidade-card {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .modalidade-grid {
        grid-template-columns: 1fr;
    }
}

.carousel-controls {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.carousel-controls button {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #000;
}

 /* Estilos específicos para a página FAQ */
 .blc-faq-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}

.blc-faq-categoria {
    margin-bottom: 40px;
}

.blc-faq-categoria-titulo {
    font-size: 1.5rem;
    color: #333;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.blc-faq-item {
    margin-bottom: 20px;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
}

.blc-faq-pergunta {
    padding: 15px 20px;
    background-color: #f9f9f9;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.blc-faq-pergunta:hover {
    background-color: #f0f0f0;
}

.blc-faq-resposta {
    padding: 15px 20px;
    background-color: white;
    display: none;
}

.blc-faq-icone {
    transition: transform 0.3s;
}

.blc-faq-item.ativo .blc-faq-icone {
    transform: rotate(180deg);
}

.blc-faq-item.ativo .blc-faq-resposta {
    display: block;
}

.blc-conta-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}

.blc-conta-secao {
    margin-bottom: 40px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    padding: 25px;
}

.blc-conta-titulo {
    font-size: 1.5rem;
    color: #333;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.blc-conta-titulo i {
    margin-right: 10px;
    font-size: 1.2em;
}

.blc-conta-solucao {
    margin-bottom: 25px;
}

.blc-conta-solucao h3 {
    color:rgb(0, 0, 0);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.blc-conta-solucao p {
    line-height: 1.6;
    margin-bottom: 10px;
}

.blc-conta-passos {
    background-color: #f9f9f9;
    border-left: 4px solid #000;
    padding: 15px;
    margin: 15px 0;
}

.blc-conta-passos ol {
    padding-left: 20px;
}

.blc-conta-passos li {
    margin-bottom: 8px;
}

.blc-conta-aviso {
    background-color: #fff8e1;
    border-left: 4px solid #ffc107;
    padding: 15px;
    margin: 15px 0;
    font-size: 0.9rem;
}

.blc-conta-botao {
    display: inline-block;
    padding: 10px 20px;
    background-color:rgb(0, 0, 0);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    margin-top: 10px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.blc-conta-botao:hover {
    background-color:rgb(37, 37, 37);
}

.blc-pagamentos-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}

.blc-pagamentos-secao {
    margin-bottom: 40px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    padding: 25px;
}

.blc-pagamentos-titulo {
    font-size: 1.5rem;
    color: #333;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.blc-pagamentos-titulo i {
    margin-right: 10px;
    font-size: 1.2em;
}

.blc-pagamentos-solucao {
    margin-bottom: 25px;
}

.blc-pagamentos-solucao h3 {
    color: #000000;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.blc-pagamentos-solucao p {
    line-height: 1.6;
    margin-bottom: 10px;
}

.blc-pagamentos-passos {
    background-color: #f9f9f9;
    border-left: 4px solid #000000;
    padding: 15px;
    margin: 15px 0;
}

.blc-pagamentos-passos ol {
    padding-left: 20px;
}

.blc-pagamentos-passos li {
    margin-bottom: 8px;
}

.blc-pagamentos-aviso {
    background-color: #fff8e1;
    border-left: 4px solid #ffc107;
    padding: 15px;
    margin: 15px 0;
    font-size: 0.9rem;
}

.blc-pagamentos-botao {
    display: inline-block;
    padding: 10px 20px;
    background-color: #000000;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    margin-top: 10px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.blc-pagamentos-botao:hover {
    background-color: #333;
}

.blc-pagamentos-metodos {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin: 20px 0;
}

.blc-pagamentos-metodo {
    flex: 1 1 200px;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    background-color: #f9f9f9;
}

.blc-pagamentos-metodo i {
    font-size: 2rem;
    margin-bottom: 10px;
    display: block;
}

.blc-envios-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}

.blc-envios-secao {
    margin-bottom: 40px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    padding: 25px;
}

.blc-envios-titulo {
    font-size: 1.5rem;
    color: #333;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.blc-envios-titulo i {
    margin-right: 10px;
    font-size: 1.2em;
}

.blc-envios-info {
    margin-bottom: 25px;
}

.blc-envios-info h3 {
    color: #000000;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.blc-envios-info p {
    line-height: 1.6;
    margin-bottom: 10px;
}

.blc-envios-passos {
    background-color: #f9f9f9;
    border-left: 4px solid #000000;
    padding: 15px;
    margin: 15px 0;
}

.blc-envios-passos ol {
    padding-left: 20px;
}

.blc-envios-passos li {
    margin-bottom: 8px;
}

.blc-envios-aviso {
    background-color: #fff8e1;
    border-left: 4px solid #ffc107;
    padding: 15px;
    margin: 15px 0;
    font-size: 0.9rem;
}

.blc-envios-botao {
    display: inline-block;
    padding: 10px 20px;
    background-color: #000000;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    margin-top: 10px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.blc-envios-botao:hover {
    background-color: #333;
}

.blc-envios-tabela {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.blc-envios-tabela th, .blc-envios-tabela td {
    border: 1px solid #ddd;
    padding: 12px;
    text-align: left;
}

.blc-envios-tabela th {
    background-color: #f2f2f2;
}

.blc-envios-tabela tr:nth-child(even) {
    background-color: #f9f9f9;
}

.blc-devolucoes-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}

.blc-devolucoes-secao {
    margin-bottom: 40px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    padding: 25px;
}

.blc-devolucoes-titulo {
    font-size: 1.5rem;
    color: #333;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.blc-devolucoes-titulo i {
    margin-right: 10px;
    font-size: 1.2em;
}

.blc-devolucoes-info {
    margin-bottom: 25px;
}

.blc-devolucoes-info h3 {
    color:rgb(0, 0, 0);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.blc-devolucoes-info p {
    line-height: 1.6;
    margin-bottom: 10px;
}

.blc-devolucoes-passos {
    background-color: #f9f9f9;
    border-left: 4px solid #000;
    padding: 15px;
    margin: 15px 0;
}

.blc-devolucoes-passos ol {
    padding-left: 20px;
}

.blc-devolucoes-passos li {
    margin-bottom: 8px;
}

.blc-devolucoes-aviso {
    background-color: #fff8e1;
    border-left: 4px solid #ffc107;
    padding: 15px;
    margin: 15px 0;
    font-size: 0.9rem;
}

.blc-devolucoes-alerta {
    background-color: #ffebee;
    border-left: 4px solid #f44336;
    padding: 15px;
    margin: 15px 0;
    font-size: 0.9rem;
}

.blc-devolucoes-botao {
    display: inline-block;
    padding: 10px 20px;
    background-color:rgb(0, 0, 0);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    margin-top: 10px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.blc-devolucoes-botao:hover {
    background-color: #333;
}

.blc-devolucoes-tabela {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.blc-devolucoes-tabela th, .blc-devolucoes-tabela td {
    border: 1px solid #ddd;
    padding: 12px;
    text-align: left;
}

.blc-devolucoes-tabela th {
    background-color: #f2f2f2;
}

.blc-devolucoes-tabela tr:nth-child(even) {
    background-color: #f9f9f9;
}

.blc-seguranca-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}

.blc-seguranca-secao {
    margin-bottom: 40px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    padding: 25px;
}

.blc-seguranca-titulo {
    font-size: 1.5rem;
    color: #333;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.blc-seguranca-titulo i {
    margin-right: 10px;
    font-size: 1.2em;
}

.blc-seguranca-info {
    margin-bottom: 25px;
}

.blc-seguranca-info h3 {
    color:rgb(0, 0, 0);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.blc-seguranca-info p {
    line-height: 1.6;
    margin-bottom: 10px;
}

.blc-seguranca-dicas {
    background-color: #f9f9f9;
    border-left: 4px solid #333;
    padding: 15px;
    margin: 15px 0;
}

.blc-seguranca-dicas ul {
    padding-left: 20px;
}

.blc-seguranca-dicas li {
    margin-bottom: 8px;
}

.blc-seguranca-aviso {
    background-color: #fff8e1;
    border-left: 4px solid #ffc107;
    padding: 15px;
    margin: 15px 0;
    font-size: 0.9rem;
}

.blc-seguranca-alerta {
    background-color: #ffebee;
    border-left: 4px solid #f44336;
    padding: 15px;
    margin: 15px 0;
    font-size: 0.9rem;
}

.blc-seguranca-botao {
    display: inline-block;
    padding: 10px 20px;
    background-color:rgb(0, 0, 0);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    margin-top: 10px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.blc-seguranca-botao:hover {
    background-color: #333;
}

.blc-seguranca-certificado {
    display: flex;
    align-items: center;
    margin: 20px 0;
    padding: 15px;
    background-color: #f5f9fc;
    border-radius: 8px;
}

.blc-seguranca-certificado i {
    font-size: 2.5rem;
    margin-right: 20px;
    color:rgb(0, 0, 0);
}

.blc-personalizacao-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}

.blc-personalizacao-secao {
    margin-bottom: 40px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    padding: 25px;
}

.blc-personalizacao-titulo {
    font-size: 1.5rem;
    color: #333;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.blc-personalizacao-titulo i {
    margin-right: 10px;
    font-size: 1.2em;
}

.blc-personalizacao-info {
    margin-bottom: 25px;
}

.blc-personalizacao-info h3 {
    color: #000000;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.blc-personalizacao-info p {
    line-height: 1.6;
    margin-bottom: 10px;
}

.blc-personalizacao-detalhes {
    background-color: #f9f9f9;
    border-left: 4px solid #000;
    padding: 15px;
    margin: 15px 0;
}

.blc-personalizacao-detalhes ul {
    padding-left: 20px;
}

.blc-personalizacao-detalhes li {
    margin-bottom: 8px;
}

.blc-personalizacao-cores {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin: 20px 0;
}

.blc-personalizacao-cor {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 5px;
    font-weight: bold;
    color: white;
    text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}

.blc-personalizacao-aviso {
    background-color: #fff8e1;
    border-left: 4px solid #ffc107;
    padding: 15px;
    margin: 15px 0;
    font-size: 0.9rem;
}

.blc-personalizacao-botao {
    display: inline-block;
    padding: 10px 20px;
    background-color: #000000;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    margin-top: 10px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.blc-personalizacao-botao:hover {
    background-color: #333;
}

.blc-contato-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}

.blc-contato-secao {
    margin-bottom: 40px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    padding: 25px;
}

.blc-contato-titulo {
    font-size: 1.5rem;
    color: #333;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.blc-contato-titulo i {
    margin-right: 10px;
    font-size: 1.2em;
}

.blc-contato-info {
    margin-bottom: 25px;
}

.blc-contato-info h3 {
    color: #000000;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.blc-contato-info p {
    line-height: 1.6;
    margin-bottom: 10px;
}

.blc-contato-formulario {
    margin-top: 30px;
}

.blc-contato-grupo {
    margin-bottom: 20px;
}

.blc-contato-grupo label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
}

.blc-contato-grupo input,
.blc-contato-grupo select,
.blc-contato-grupo textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
}

.blc-contato-grupo textarea {
    min-height: 150px;
    resize: vertical;
}

.blc-contato-botao {
    display: inline-block;
    padding: 12px 25px;
    background-color: #000000;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}

.blc-contato-botao:hover {
    background-color: #333;
}

.blc-contato-metodos {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
}

.blc-contato-metodo {
    flex: 1;
    min-width: 250px;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    border-left: 4px solid #000000;
}

.blc-contato-metodo h3 {
    color: #000000;
    margin-top: 0;
    display: flex;
    align-items: center;
}

.blc-contato-metodo i {
    margin-right: 10px;
    font-size: 1.5rem;
}

.blc-contato-aviso {
    background-color: #fff8e1;
    border-left: 4px solid #ffc107;
    padding: 15px;
    margin: 15px 0;
    font-size: 0.9rem;
}

.blc-voltar-suporte {
    display: inline-block;
    margin-top: 30px;
    padding: 10px 20px;
    background-color: #000000;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    transition: background-color 0.3s;
}

.blc-voltar-suporte:hover {
    background-color: #333;
}

.video-control-btn {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 16px;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-control-btn:hover {
    background: rgba(0, 0, 0, 0.8);
}

.blc-hero-masc {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('../../imagens/tent.png');
    background-size: cover;
    background-position: center;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-bottom: 50px;
}

.blc-hero-content-masc h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.blc-hero-content-masc p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
}

.blc-btn-hero-masc {
    background: #000;
    color: white;
    padding: 15px 30px;
    border: 2px solid white;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
}

.blc-btn-hero-masc:hover {
    background: white;
    color: black;
}

/* Filter Section */
.blc-filter-section-masc {
    background: #f8f8f8;
    padding: 30px 0;
    margin-bottom: 50px;
}

.blc-filter-container-masc {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.blc-filter-select-masc {
    padding: 10px 15px;
    min-width: 200px;
    border: 1px solid #ddd;
    background: white;
}

/* Product Grid */
.blc-product-grid-masc {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    padding: 0 5%;
    margin-bottom: 50px;
}

.blc-product-card-masc {
    border: 1px solid #eee;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
}

.blc-product-card-masc:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.blc-product-badge-masc {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #000;
    color: white;
    padding: 5px 10px;
    font-size: 0.8rem;
    z-index: 2;
}

.blc-product-img-masc {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.blc-product-info-masc {
    padding: 20px;
}

.blc-product-title-masc {
    font-size: 1.1rem;
    margin-bottom: 10px;
    font-weight: 500;
}

.blc-product-price-masc {
    font-size: 1.2rem;
    font-weight: bold;
    color: #000;
    margin-bottom: 15px;
}

.blc-btn-product-masc {
    background: #000;
    color: white;
    width: 100%;
    padding: 10px;
    border: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background 0.3s;
}

.blc-btn-product-masc:hover {
    background: #333;
}

/* Featured Section */
.blc-featured-section-masc {
    padding: 50px 5%;
    background: #f8f8f8;
    margin-bottom: 50px;
}

.blc-section-title-masc {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Banner Section */
.blc-banner-grid-masc {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 50px 5%;
}

.blc-banner-item-masc {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.blc-banner-img-masc {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.blc-banner-item-masc:hover .blc-banner-img-masc {
    transform: scale(1.05);
}

.blc-banner-content-masc {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 20px;
}

/* Newsletter */
.blc-newsletter-masc {
    background: #1f1d1d;
    color: white;
    padding: 50px 5%;
    text-align: center;
}

.blc-newsletter-form-masc {
    max-width: 500px;
    margin: 0 auto;
}

.blc-newsletter-input-masc {
    width: 100%;
    padding: 15px;
    margin-bottom: 15px;
    border: none;
}

.blc-btn-newsletter-masc {
    background: white;
    color: rgb(0, 0, 0);
    padding: 15px 30px;
    border: none;
    text-transform: uppercase;
    font-weight: bold;
    cursor: pointer;
}

/* Responsividade */
@media (max-width: 768px) {
    .blc-hero-content-masc h1 {
        font-size: 2.5rem;
    }
    
    .blc-banner-grid-masc {
        grid-template-columns: 1fr;
    }
    
    .blc-product-grid-masc {
        grid-template-columns: 1fr 1fr;
    }
}

.blc-hero-fem {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../../imagens/mulherdest.png');
    background-size: cover;
    background-position: center;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-bottom: 50px;
}

.blc-hero-content-fem h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 300;
}

.blc-hero-content-fem p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
    font-weight: 300;
}

.blc-btn-hero-fem {
    background: transparent;
    color: white;
    padding: 15px 30px;
    border: 2px solid white;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
}

.blc-btn-hero-fem:hover {
    background: white;
    color: #000;
}

/* Filter Section */
.blc-filter-section-fem {
    background: #f8f1f1;
    padding: 30px 0;
    margin-bottom: 50px;
}

.blc-filter-container-fem {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.blc-filter-select-fem {
    padding: 12px 20px;
    min-width: 220px;
    border: 1px solid #e0c9c9;
    background: white;
    color: #555;
    font-size: 0.95rem;
}

/* Product Grid */
.blc-product-grid-fem {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    padding: 0 5%;
    margin-bottom: 50px;
}

.blc-product-card-fem {
    border: 1px solid #f0e6e6;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    background: white;
}

.blc-product-card-fem:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 25px rgba(0,0,0,0.08);
}

.blc-product-badge-fem {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #d4a8a8;
    color: white;
    padding: 5px 12px;
    font-size: 0.8rem;
    z-index: 2;
    border-radius: 3px;
}

.blc-product-img-fem {
    width: 100%;
    height: 380px;
    object-fit: cover;
}

.blc-product-info-fem {
    padding: 20px;
    text-align: center;
}

.blc-product-title-fem {
    font-size: 1.1rem;
    margin-bottom: 10px;
    font-weight: 400;
    color: #333;
}

.blc-product-price-fem {
    font-size: 1.2rem;
    font-weight: 600;
    color: #000;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.blc-btn-product-fem {
    background: #000;
    color: white;
    width: 100%;
    padding: 12px;
    border: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background 0.3s;
    font-size: 0.9rem;
}

.blc-btn-product-fem:hover {
    background: #333;
}

/* Featured Section */
.blc-featured-section-fem {
    padding: 60px 5%;
    background: #faf5f5;
    margin-bottom: 50px;
}

.blc-section-title-fem {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #333;
    font-weight: 300;
}

/* Banner Section */
.blc-banner-grid-fem {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin: 50px 5%;
}

.blc-banner-item-fem {
    position: relative;
    height: 320px;
    overflow: hidden;
    border-radius: 5px;
}

.blc-banner-img-fem {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.blc-banner-item-fem:hover .blc-banner-img-fem {
    transform: scale(1.05);
}

.blc-banner-content-fem {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.6);
    color: white;
    padding: 25px;
    text-align: center;
}

.blc-banner-content-fem h3 {
    font-weight: 300;
    margin-bottom: 8px;
    font-size: 1.5rem;
}

/* Newsletter */
.blc-newsletter-fem {
    background: #f8f1f1;
    color: #333;
    padding: 60px 5%;
    text-align: center;
}

.blc-newsletter-fem h2 {
    font-weight: 300;
    margin-bottom: 15px;
}

.blc-newsletter-form-fem {
    max-width: 500px;
    margin: 0 auto;
}

.blc-newsletter-input-fem {
    width: 100%;
    padding: 15px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    background: white;
    color: #555;
}

.blc-btn-newsletter-fem {
    background: #d4a8a8;
    color: white;
    padding: 15px 30px;
    border: none;
    text-transform: uppercase;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
    width: 100%;
}

.blc-btn-newsletter-fem:hover {
    background: #c99a9a;
}

/* Responsividade */
@media (max-width: 768px) {
    .blc-hero-content-fem h1 {
        font-size: 2.5rem;
    }
    
    .blc-banner-grid-fem {
        grid-template-columns: 1fr;
    }
    
    .blc-product-grid-fem {
        grid-template-columns: 1fr 1fr;
    }
    
    .blc-product-img-fem {
        height: 300px;
    }
}


header.header-kids {
    background-image: url('/imagens/bannerfinal.jpg'); /* Caminho para a tua imagem */
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding: 25px 0;
    border-bottom: 1px solid #ddd;
}

header.header-kids .custom-title a {
    font-family: 'Comic Neue', cursive;
    font-weight: bold;
    letter-spacing: 0.1em;
    color: #000;
    font-size: 24px;
    text-transform: uppercase;
    margin: 0;
    text-align: center;
    text-decoration: none;
}

.header-kids .nav-links {
    font-family: 'Comic Neue', cursive;
}

.nav-links-kids {
    display: flex;
    list-style: none;
    font-weight: bold;
    gap: 20px;
    font-family: 'Comic Neue', cursive; /* Fonte específica */
}

.nav-links-kids li a {
    text-decoration: none;
    color: #333;
    font-size: 14px;
    text-transform: uppercase;
    font-family: 'Comic Neue', cursive; /* Herda a fonte do container */
}

.blc-hero-acessorios {
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--branco);
    margin-bottom: 80px;
    position: relative;
    overflow: hidden;
}

.blc-hero-acessorios video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.blc-hero-content-acessorios {
    max-width: 800px;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.blc-hero-content-acessorios h1 {
    font-size: 4.5rem;
    margin-bottom: 25px;
    font-weight: 300;
    font-family: 'Playfair Display', serif;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.blc-hero-content-acessorios p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    font-weight: 300;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
}

.blc-btn-hero-acessorios {
    background: transparent;
    color: var(--branco);
    padding: 15px 40px;
    border: 1px solid var(--dourado);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

.blc-btn-hero-acessorios:hover {
    background: var(--dourado);
    color: var(--preto);
}

/* Filtros */
.blc-filter-section-acessorios {
    background: var(--cinza-claro);
    padding: 40px 0;
    margin-bottom: 60px;
}

.blc-filter-container-acessorios {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.blc-filter-select-acessorios {
    padding: 15px 25px;
    min-width: 250px;
    border: 1px solid #ddd;
    background: var(--branco);
    color: var(--cinza-escuro);
    font-size: 0.95rem;
    font-family: 'Montserrat', sans-serif;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 15px;
}

/* Grid de Produtos */
.blc-product-grid-acessorios {
    max-width: 1400px;
    margin: 0 auto 80px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 40px;
    padding: 0 20px;
}

.blc-product-card-acessorios {
    position: relative;
    transition: all 0.3s;
}

.blc-product-card-acessorios:hover {
    transform: translateY(-10px);
}

.blc-product-img-container-acessorios {
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
    background: var(--cinza-claro);
    padding: 30px;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blc-product-img-acessorios {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.5s;
}

.blc-product-card-acessorios:hover .blc-product-img-acessorios {
    transform: scale(1.05);
}

.blc-product-badge-acessorios {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--dourado);
    color: var(--preto);
    padding: 5px 15px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    z-index: 2;
}

.blc-product-info-acessorios {
    text-align: center;
}

.blc-product-title-acessorios {
    font-size: 1.1rem;
    margin-bottom: 10px;
    font-weight: 400;
    color: var(--preto);
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 1px;
}

.blc-product-price-acessorios {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dourado);
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
}

.blc-btn-product-acessorios {
    background: var(--preto);
    color: var(--branco);
    width: 100%;
    padding: 12px;
    border: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
    font-size: 0.9rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

.blc-btn-product-acessorios:hover {
    background: var(--dourado);
    color: var(--preto);
}

/* Banner Promocional */
.blc-banner-grid-acessorios {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    max-width: 1400px;
    margin: 0 auto 80px;
    padding: 0 20px;
}

.blc-banner-item-acessorios {
    position: relative;
    height: 350px;
    overflow: hidden;
    border-radius: 5px;
}

.blc-banner-img-acessorios {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.blc-banner-item-acessorios:hover .blc-banner-img-acessorios {
    transform: scale(1.05);
}

.blc-banner-content-acessorios {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.6);
    color: white;
    padding: 30px;
    text-align: center;
}

.blc-banner-content-acessorios h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    margin-bottom: 10px;
    font-size: 1.8rem;
}

.blc-banner-content-acessorios p {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
}

/* Seção Destaques */
.blc-featured-section-acessorios {
    padding: 80px 20px;
    background: var(--cinza-claro);
    margin-bottom: 80px;
}

.blc-section-title-acessorios {
    text-align: center;
    margin-bottom: 60px;
    font-size: 2.5rem;
    font-weight: 300;
    letter-spacing: 2px;
    color: var(--preto);
    font-family: 'Playfair Display', serif;
    position: relative;
}

.blc-section-title-acessorios:after {
    content: "";
    display: block;
    width: 80px;
    height: 2px;
    background: var(--dourado);
    margin: 20px auto 0;
}

/* Newsletter */
.blc-newsletter-acessorios {
    max-width: 600px;
    margin: 0 auto 80px;
    padding: 0 20px;
    text-align: center;
}

.blc-newsletter-acessorios h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: 300;
    color: var(--preto);
    font-family: 'Playfair Display', serif;
}

.blc-newsletter-acessorios p {
    font-size: 1rem;
    margin-bottom: 30px;
    color: var(--cinza-escuro);
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
}

.blc-newsletter-form-acessorios {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.blc-newsletter-input-acessorios {
    padding: 15px;
    border: 1px solid #ddd;
    font-size: 0.9rem;
    font-family: 'Montserrat', sans-serif;
}

.blc-btn-newsletter-acessorios {
    background: var(--preto);
    color: var(--branco);
    padding: 15px;
    border: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    transition: all 0.3s;
}

.blc-btn-newsletter-acessorios:hover {
    background: var(--dourado);
    color: var(--preto);
}

/* Responsividade */
@media (max-width: 1024px) {
    .blc-hero-content-acessorios h1 {
        font-size: 3.5rem;
    }
    
    .blc-product-grid-acessorios {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .blc-hero-content-acessorios h1 {
        font-size: 2.5rem;
    }
    
    .blc-hero-content-acessorios p {
        font-size: 1.1rem;
    }
    
    .blc-filter-container-acessorios {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .blc-filter-select-acessorios {
        width: 100%;
        max-width: 300px;
    }
    
    .blc-product-grid-acessorios {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    
    .blc-banner-grid-acessorios {
        grid-template-columns: 1fr;
    }
    
    .blc-section-title-acessorios {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .blc-product-grid-acessorios {
        grid-template-columns: 1fr;
    }
    
    .blc-hero-content-acessorios h1 {
        font-size: 2rem;
    }
}

.filter-toggle-container {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 1000;
}

.toggle-filters {
    background: #ffffff;
    border: 1px solid #ddd;
    color: #000;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 15px;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
}

.toggle-filters:hover {
    background: #f5f5f5;
}

.toggle-filters .icon-container {
    position: relative;
    width: 16px;
    height: 16px;
}

.toggle-filters img {
    width: 16px;
    height: 16px;
    transition: all 0.3s ease;
    position: absolute;
    top: 0;
    left: 0;
}

.toggle-filters .setting-icon {
    opacity: 0;
    transform: rotate(-90deg);
}

.toggle-filters.active .filter-icon {
    opacity: 0;
    transform: rotate(90deg);
}

.toggle-filters.active .setting-icon {
    opacity: 1;
    transform: rotate(0);
}

/* COLUNA FILTROS (ESQUERDA) - MODIFICAÇÕES PRINCIPAIS AQUI */
.filters-column {
    flex: 0 0 250px;
    position: sticky;
    top: 80px;
    align-self: flex-start;
    height: fit-content;
    max-height: 80vh; /* Limita a altura máxima */
    overflow-y: auto; /* Adiciona scroll se necessário */
    display: none; /* Começa escondido em todas as telas */
}

.filters-column.active {
    display: block;
    animation: fadeIn 0.3s ease-out;
}

.filters-content {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

/* GRUPOS DE FILTROS */
.filter-group {
    margin-bottom: 20px;
}

.filter-group h4 {
    margin-bottom: 12px;
    font-size: 16px;
    color: #333;
}

.filter-options {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.filter-option {
    padding: 8px 15px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 14px;
}

.filter-option:hover {
    border-color: #999;
}

.filter-option.active {
    background: #000;
    color: #fff;
    border-color: #000;
}

/* ORDENAÇÃO */
.sort-container {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.sort-container select {
    padding: 8px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: #fff;
    font-size: 14px;
    cursor: pointer;
}

/* PRODUTOS */
.products-column {
    flex: 1;
    min-width: 300px;
}

.section-title {
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: bold;
}

.highlight-section, .more-items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.highlight-item, .more-item {
    position: relative;
}

.highlight-item .image-slider {
    position: relative;
    overflow: hidden;
    margin-bottom: 15px;
}

.highlight-item .image-slider img {
    width: 100%;
    height: auto;
    transition: opacity 0.3s;
}

.highlight-item .image-slider .back {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}

.highlight-item:hover .image-slider .front {
    opacity: 0;
}

.highlight-item:hover .image-slider .back {
    opacity: 1;
}

.item-info, .more-item-info {
    padding: 10px 0;
}

.item-title {
    font-size: 16px;
    margin-bottom: 8px;
}

.item-price {
    font-weight: bold;
    margin-bottom: 15px;
}

.buy-button {
    background: #000;
    color: #fff;
    border: none;
    padding: 10px 15px;
    width: 100%;
    cursor: pointer;
    transition: background 0.3s;
    border-radius: 4px;
}

.buy-button:hover {
    background: #333;
}

.view-more {
    text-align: center;
    margin-top: 30px;
}

.forward-button {
    color: #000;
    text-decoration: none;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* ANIMAÇÕES */
@keyframes fadeIn {
    from { opacity: 0; transform: translateX(-20px); }
    to { opacity: 1; transform: translateX(0); }
}

/* RESPONSIVIDADE */
@media (max-width: 1200px) {
    /* Ajuste para telas médias/grandes */
    .filters-column {
        flex: 0 0 220px; /* Reduz um pouco a largura */
    }
    
    .highlight-section, .more-items {
        gap: 20px;
    }
}

@media (max-width: 992px) {
    .highlight-section, .more-items {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Ajuste adicional para telas menores */
    .filters-column {
        flex: 0 0 200px;
    }
}

@media (max-width: 768px) {
    .filters-column {
        position: static;
        flex: 1 0 100%;
        order: -1;
        max-height: none; /* Remove a altura máxima em mobile */
        overflow-y: visible; /* Remove o scroll em mobile */
    }
    
    .desktop-sort {
        display: none;
    }
}

@media (max-width: 480px) {
    .highlight-section, .more-items {
        grid-template-columns: 1fr;
    }
    
    .toggle-filters {
        padding: 8px 12px;
        font-size: 14px;
    }
}

#imagens-container {
    margin-top: 1rem;
    padding: 1rem;
    background-color: #f5f5f5;
    border-radius: 5px;
}

#imagens-container .product-form-group {
    margin-bottom: 1rem;
    padding: 0.5rem;
    background-color: white;
    border-radius: 4px;
}

.btn-criar-conjunto {
    display: inline-block;
    padding: 10px 15px;
    background-color: #000;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    margin: 10px;
    font-weight: bold;
}

.btn-criar-conjunto:hover {
    background-color: #333;
}

/* Estilo para os conjuntos */
.lista-conjuntos {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.conjunto-card {
    border: 1px solid #ddd;
    padding: 15px;
    border-radius: 5px;
    position: relative;
}

.conjunto-card img {
    max-width: 100%;
    height: auto;
    margin-bottom: 10px;
}

.conjunto-card h3 {
    margin-top: 0;
}

.conjunto-card .produtos-conjunto {
    margin-top: 10px;
    font-size: 0.9em;
    color: #666;
}

.btn-criar-conjunto {
    display: inline-block;
    padding: 10px 20px;
    background-color: #000;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    margin: 10px 0;
    font-size: 14px;
}

.btn-criar-conjunto:hover {
    background-color: #333;
}

.ratings-title {
    font-size: 2.5rem;
    color: var(--ratings-primary-color);
    margin-bottom: 1rem;
    font-weight: 300;
    letter-spacing: 1px;
}

.ratings-summary {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 3rem;
    padding: 2rem;
    background-color: var(--ratings-secondary-color);
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.ratings-average {
    font-size: 3.5rem;
    font-weight: 300;
    color: var(--ratings-primary-color);
    margin-bottom: 0.5rem;
}

.ratings-stars {
    display: flex;
    margin-bottom: 1rem;
}

.ratings-star {
    color: var(--ratings-light-gray);
    font-size: 1.5rem;
}

.ratings-star.filled {
    color: gold;
}

.ratings-total {
    color: #666;
    font-size: 1rem;
}

.ratings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.ratings-card {
    background-color: white;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    border: 1px solid var(--ratings-light-gray);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ratings-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.ratings-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.ratings-name {
    font-weight: 600;
    color: var(--ratings-primary-color);
}

.ratings-date {
    color: #888;
    font-size: 0.9rem;
}

.ratings-stars-container {
    margin-bottom: 1rem;
}

.ratings-review-title {
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.ratings-review-text {
    color: #555;
    margin-bottom: 1rem;
}

.ratings-verified {
    display: inline-flex;
    align-items: center;
    background-color: #e8f5e9;
    color: #2e7d32;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-size: 0.8rem;
    margin-top: 0.5rem;
}

.ratings-verified i {
    margin-right: 0.3rem;
    font-size: 0.7rem;
}

.ratings-empty {
    text-align: center;
    grid-column: 1 / -1;
    padding: 3rem;
    color: #888;
}

.ratings-button {
    display: inline-block;
    background-color: var(--ratings-primary-color);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 4px;
    text-decoration: none;
    margin-top: 2rem;
    transition: background-color 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.ratings-button:hover {
    background-color: #333;
}

@media (max-width: 768px) {
    .ratings-grid {
        grid-template-columns: 1fr;
    }
    
    .ratings-title {
        font-size: 2rem;
    }
}

.ratings-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.btn-apagar {
    background: transparent;
    color: #f44336;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

/* Modal de alterações não salvas */
#unsaved-changes-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

#unsaved-changes-modal > div {
    background: white;
    padding: 30px;
    border-radius: 12px;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

#unsaved-changes-modal h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #333;
    display: flex;
    align-items: center;
    gap: 10px;
}

#unsaved-changes-modal p {
    margin-bottom: 25px;
    color: #555;
    line-height: 1.5;
}

#unsaved-changes-modal button {
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

#unsaved-changes-modal button:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

#save-changes {
    background: #000;
    color: white;
    border: none;
}

#discard-changes {
    background: #eee;
    border: none;
    color: #333;
}