/* Variáveis CSS (Cores, Fontes) - Baseadas no novo design */
:root {
    --primary-red: #8e0b0b; /* Verde limão vibrante */
    --secondary-black: #000000;
    --text-dark: #333333;
    --text-light: #f8f9fa; /* Quase branco para texto em fundos escuros */
    --background-white: #ffffff;
    --border-light: #e0e0e0;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;
}

/* Reset Básico e Estilos Gerais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--background-white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: var(--secondary-black); /* Links padrão em preto */
}

a:hover {
    text-decoration: underline;
    color: var(--primary-red); /* Cor de hover */
}

ul {
    list-style: none;
}

/* Botões - Adaptados ao novo design */
.btn-black {
    display: inline-block;
    background-color: var(--secondary-black);
    color: var(--background-white);
    padding: 12px 25px;
    border-radius: 0; /* Design parece ter cantos retos */
    transition: background-color 0.3s ease, color 0.3s ease;
    border: none;
    cursor: pointer;
    font-family: var(--font-heading);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9em;
}

.btn-black:hover {
    background-color: var( --primary-red);
    color: var(--secondary-black);
    text-decoration: none;
}

.btn-outline-dark {
    display: inline-block;
    background-color: transparent;
    color: var(--secondary-black);
    padding: 10px 20px;
    border: 1px solid var(--secondary-black);
    border-radius: 0;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.9em;
}

.btn-outline-dark:hover {
    background-color: var(--secondary-black);
    color: var(--background-white);
    text-decoration: none;
}


/* Seção principal do Carrossel */
.my-carousel-section {
    position: relative; /* Necessário para posicionar o texto e os botões */
    width: 100%;
    overflow: hidden; /* Garante que nada transborde */
}

/* Contêiner do Carrossel (onde as imagens ficam) */
.carousel-container {
    max-width: 100%; /* Ocupa a largura total disponível */
    position: relative;
    margin: 0 auto; /* Centraliza o carrossel */
    overflow: hidden;
    /* Defina uma altura para o carrossel se quiser que todas as imagens tenham a mesma altura */
    height: 400px; /* Ajuste esta altura conforme o design desejado */
}

/* Cada slide individual */
.carousel-slide {
    display: none; /* Oculta os slides por padrão, JavaScript mostrará um por vez */
    width: 100%;
    height: 100%; /* Ocupa a altura total do carousel-container */
    position: relative; /* Para posicionar o texto sobre a imagem */
}

/* Imagens dentro dos slides */
.carousel-slide img {
    width: 100%; /* Imagem ocupa 100% da largura do slide */
    height: 100%; /* Imagem ocupa 100% da altura do slide */
    object-fit: cover; /* Faz a imagem preencher o espaço sem distorcer, cortando se necessário */
    display: block; /* Remove espaços extras abaixo da imagem */
}

/* Texto sobre a imagem do carrossel */
.carousel-text {
    color: #ffffff; /* Cor do texto */
    font-size: 1.8em; /* Tamanho da fonte */
    font-weight: bold;
    padding: 15px 20px;
    position: absolute;
    bottom: 20px; /* Posição do texto na parte inferior */
    left: 0;
    right: 0;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.6); /* Fundo semi-transparente para o texto */
    width: 100%;
    box-sizing: border-box; /* Garante que o padding não adicione largura extra */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7); /* Sombra para o texto */
}

/* Media query para telas menores (smartphones) */
@media (max-width: 768px) {
    .carousel-container {
        height: 250px; /* Altura menor para dispositivos móveis */
    }
    .carousel-text {
        font-size: 1.2em; /* Texto menor em telas pequenas */
        padding: 10px;
        bottom: 10px;
    }
}


/* Botões de navegação (Anterior e Próximo) */
.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%; /* Centraliza verticalmente */
    width: auto;
    padding: 16px;
    margin-top: -22px; /* Ajuste para centralizar perfeitamente */
    color: white;
    font-weight: bold;
    font-size: 24px; /* Tamanho maior para as setas */
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none; /* Impede seleção de texto */
    background-color: rgba(0, 0, 0, 0.4); /* Fundo semi-transparente */
    z-index: 100; /* Garante que fiquem acima das imagens */
}

.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

/* Efeito ao passar o mouse sobre os botões */
.prev:hover, .next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

/* Contêiner dos pontos */
.carousel-dots-container {
    text-align: center;
    padding: 10px 0;
    background-color: #f1f1f1; /* Cor de fundo para os pontos */
}

/* Os pontos de navegação */
.dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 4px; /* Espaçamento entre os pontos */
    background-color: #bbb;
    border-radius: 50%; /* Transforma em círculo */
    display: inline-block;
    transition: background-color 0.6s ease;
}

/* Ponto ativo e ao passar o mouse */
.active, .dot:hover {
    background-color: #717171;
}

/* Animação de transição (fade) */
.fade {
    animation-name: fade;
    animation-duration: 1.5s;
}

@keyframes fade {
    from {opacity: .4}
    to {opacity: 1}
}


/* Top Bar */
.top-bar {
    background-color: var( --primary-red);
    color: var(--text-light);
    padding: 8px 0;
    font-size: 0.85em;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.social-top a {
    color: var(--text-light);
    margin-right: 15px;
    transition: color 0.3s ease;
}

.social-top a:hover {
    color: var( --primary-red);
}

.top-info span {
    margin-left: 20px;
}

.top-info i {
    margin-right: 5px;
}


/* Main Header */
.main-header {
    background-color: var(--background-white);
    padding: 20px 0;
    position: relative;
    z-index: 100; /* Para garantir que fique acima de outros elementos */
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative; /* Para posicionar a faixa */
}

.logo-area {
    flex-shrink: 0; /* Não permite que o logo encolha */
    z-index: 2; /* Acima da faixa */
}

.logo {
    margin: 0;
    font-size: 36px;
    font-weight: 700;
    font-family: var(--font-heading);
    text-transform: uppercase;
}

.logo a {
    color: var(--secondary-black);
    text-decoration: none;
}

.main-nav {
    flex-grow: 1; /* Permite que o menu ocupe o espaço */
    display: flex;
    justify-content: center; /* Centraliza o menu */
    z-index: 2; /* Acima da faixa */
}

.main-nav ul {
    display: flex;
    gap: 30px; /* Espaçamento entre os itens do menu */
}

.main-nav a {
    color: var(--secondary-black);
    font-weight: 600;
    font-family: var(--font-body);
    transition: color 0.3s ease;
    padding: 5px 0; /* Para dar espaço ao sublinhado */
    position: relative;
}

.main-nav a:hover {
    color: var( --primary-red);
    text-decoration: none;
}

/* Indicador de item ativo/hover no menu */
.main-nav a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px; /* Ajuste para onde a linha aparece */
    width: 0;
    height: 3px;
    background-color: var( --primary-black);
    transition: width 0.3s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after { /* Adicione a classe 'active' via JS para a página atual */
    width: 100%;
}


.logo-img {
    height: 150px; /* Define a altura do logo. Ajuste conforme necessário. */
    width: auto; /* Mantém a proporção da imagem automaticamente. */
    max-width: 200px; /* Define uma largura máxima para o logo, útil para telas menores. */
}

/* Opcional: Se precisar ajustar o alinhamento ou margens do logo */
.logo-area {
    display: flex;
    align-items: center; /* Alinha o logo verticalmente ao centro */
    padding: 10px 0; /* Adicione algum padding se necessário */
}



.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
    z-index: 2; /* Acima da faixa */
}

.search-bar {
    padding: 8px 15px;
    border: 1px solid var(--border-light);
    border-radius: 20px;
    font-size: 14px;
    width: 180px;
    outline: none;
    transition: border-color 0.3s ease;
}

.search-bar:focus {
    border-color: var( --primary-red);
}

.cart-icon, .user-icon {
    font-size: 22px;
    color: var(--secondary-black);
    position: relative;
    transition: color 0.3s ease;
}

.cart-icon:hover, .user-icon:hover {
    color: var( --primary-red);
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: var( --primary-red);
    color: var(--secondary-black);
    font-size: 12px;
    border-radius: 50%;
    padding: 2px 6px;
    min-width: 20px; /* Garante que o círculo seja visível mesmo com 1 dígito */
    text-align: center;
    font-weight: bold;
}

.menu-toggle {
    display: none; /* Esconde por padrão, mostra no mobile */
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: var(--secondary-black);
}

.header-accent-strip {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%; /* Ajuste a largura conforme o design */
    height: 100%;
    background-color: var( );
    z-index: 1; /* Abaixo do conteúdo do cabeçalho */
}

/* Top Hero Section (nova, para a área acima dos produtos) */
.top-hero-section {
    padding: 40px 0;
    text-align: center;
    background-color: var(--background-white); /* Ou alguma cor de fundo se houver */
}

.slogan-top {
    font-family: var(--font-heading);
    font-size: 1.8em;
    color: var(--text-dark);
}

/* Section Titles (Compartilhado por Lançamentos e Destaques) */
.section-title {
    font-family: var(--font-heading);
    font-size: 2.5em;
    margin-bottom: 40px;
    color: var(--secondary-black);
    text-transform: uppercase;
    text-align: center;
}

/* Featured Products Section (Novo estilo) e Nova seção de Lançamentos */
.featured-products-new, .new-arrivals-section {
    padding: 60px 0;
}


.product-grid-new {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    justify-content: center;
}

.product-card-new {
    background-color: var(--background-white);
    border: 1px solid var(--border-light);
    border-radius: 5px;
    padding: 0; /* Remove padding extra, a imagem já tem padding */
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden; /* Para garantir que bordas da imagem não saiam */
    position: relative; /* Para a tag "Mais vendido" */
}

.product-card-new:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.product-card-new img {
    width: 100%;
    height: 280px; /* Altura fixa para consistência */
    object-fit: cover; /* Garante que a imagem preencha o espaço sem distorcer */
    border-bottom: 1px solid var(--border-light); /* Linha divisória como no design */
    margin-bottom: 15px; /* Espaço entre imagem e texto */
}

.product-card-new h4 {
    font-family: var(--font-heading);
    font-size: 1.4em;
    margin-bottom: 8px;
    color: var(--text-dark);
    padding: 0 15px;
}

.product-card-new .price {
    font-family: var(--font-heading);
    font-size: 1.2em;
    color: var(--primary-green); /* Preço em verde vibrante */
    font-weight: 700;
    margin-bottom: 20px;
    padding: 0 15px;
}

.product-card-new .btn-outline-dark {
    width: calc(100% - 30px); /* Ocupa a largura total menos padding */
    margin-bottom: 15px; /* Espaço para o botão na parte inferior */
}

/* Estilo para a tag "Mais vendido" */
.product-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--primary-red);
    color: var(--secondary-black);
    font-family: var(--font-body);
    font-size: 0.8em;
    font-weight: 600;
    padding: 5px 10px;
    border-radius: 3px;
    text-transform: uppercase;
    z-index: 10;
}

/* NOVA SEÇÃO: Banner Promocional de Largura Total COM IMAGEM GRANDE À DIREITA (Conforme Captura 101) - AJUSTADO PARA PREENCHER A LATERAL */
.full-width-promo-banner.right-image {
  
    padding: 0; /* Remove padding da seção para a imagem ir até as bordas verticalmente */
    margin-top: 60px;
    display: flex; /* Para alinhar o conteúdo (promo-content) */
    align-items: stretch; /* Para que o conteúdo interno se estique na altura */
    min-height: 200px; /* Define uma altura mínima para o banner se o conteúdo for pequeno */
}

.full-width-promo-banner.right-image .promo-content {
    max-width: 1400px; /* Aumenta a largura máxima para acomodar o novo layout */
    margin: 0 auto;
    display: flex;
    align-items: stretch; /* Agora os itens se esticam para preencher a altura */
    justify-content: space-between; /* Espaço entre o texto e a imagem */
    width: 100%; /* Ocupa toda a largura do container */
}

.full-width-promo-banner.right-image .promo-text-area {
    padding: 80px 40px; /* Adiciona padding para afastar o texto das bordas */
    text-align: left;
    max-width: 50%; /* O texto ocupa metade da largura */
    display: flex;
    flex-direction: column;
    justify-content: center; /* Centraliza o texto verticalmente dentro da sua área */
}

.full-width-promo-banner.right-image .promo-image {
    height: 100%; /* A imagem ocupa 100% da altura do seu contêiner pai (.promo-content) */
    width: auto; /* Deixa a largura se ajustar automaticamente para manter a proporção */
    max-width: 60%; /* A imagem ocupa a maior parte da largura direita */
    object-fit: cover; /* AGORA A IMAGEM VAI PREENCHER E SER CORTADA SE NECESSÁRIO PARA OCUPAR TODO O ESPAÇO */
    flex-shrink: 0; /* Impede que a imagem encolha se não houver espaço */
}

.full-width-promo-banner.right-image .promo-discount {
    font-family: var(--font-heading);
    font-size: 5em; /* Aumentei um pouco o tamanho */
    font-weight: 700;
    color: var(--secondary-black);
    margin-bottom: 15px;
    line-height: 1;
}

.full-width-promo-banner.right-image .promo-phrase {
    font-size: 1.3em; /* Aumentei um pouco o tamanho */
    color: var(--text-dark);
    margin-bottom: 40px;
    max-width: 70%; /* Limita a largura do texto */
}

.full-width-promo-banner.right-image .btn-black {
    padding: 18px 45px; /* Botão um pouco maior */
    font-size: 1.2em;
}

/* Footer (Dark Style) */
.main-footer-dark {
    background-color: var(--secondary-black);
    color: var(--text-light);
    padding: 50px 0 20px;
    font-size: 0.9em;
    font-family: var(--font-body);
}

.main-footer-dark .container {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.footer-columns-dark {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
}

.footer-col-dark {
    flex: 1;
    min-width: 200px;
}

.footer-col-dark h4 {
    font-family: var(--font-heading);
    font-size: 1.3em;
    margin-bottom: 20px;
    color: var(--primary-green); /* Títulos em verde */
    text-transform: uppercase;
}

.footer-col-dark ul {
    padding: 0;
}

.footer-col-dark li {
    margin-bottom: 10px;
}

.footer-col-dark a {
    color: var(--text-dark);
    transition: color 0.3s ease;
}

.footer-col-dark a:hover {
    color: var(--primary-green);
    text-decoration: none;
}

.social-icons-dark a {
    color: var(--primary-red);
    font-size: 1.6em;
    margin-right: 18px;
    transition: color 0.3s ease;
}

.social-icons-dark a:hover {
    color: var(--primary-green);
}

.footer-bottom-dark {
    text-align: center;
    margin-top: 40px;
    padding-top: 25px;
    border-top: 1px solid #333333; /* Uma linha mais clara no preto */
}


/* --- Estilos para a Página de Detalhes do Produto (Novo Design) --- */

.product-detail-page-new {
    padding: 60px 0;
}

.breadcrumb {
    margin-bottom: 20px;
    font-size: 0.9em;
    color: var(--secondary-color); /* Usando secondary-color para o breadcrumb */
}

.breadcrumb a {
    color: var(--secondary-color);
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.product-content-new {
    display: flex;
    gap: 60px; /* Mais espaço entre imagem e info */
    flex-wrap: wrap;
    align-items: flex-start;
    margin-bottom: 60px;
}

.product-image-new {

    flex: 1 1 500px; /* Base maior para a imagem */
    max-width: 50%;
    text-align: center;
    background-color: #f0f0f0; /* Fundo cinza claro para a imagem */
    padding: 30px;
    border-radius: 5px;
}

.product-image-new img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
}

.product-info-new {
    flex: 1 1 450px; /* Base para as informações */
    max-width: 50%;
    text-align: left; /* Alinhamento do texto à esquerda */
}

.product-info-new h2 {
    font-family: var(--font-heading);
    font-size: 3em;
    margin-bottom: 15px;
    color: var(--secondary-black);
    line-height: 1.2;
}

.product-rating {
    color: #ffc107; /* Cor para as estrelas */
    margin-bottom: 20px;
    font-size: 1em;
}

.product-price-new {
    font-family: var(--font-heading);
    font-size: 2.8em;
    color: var(--primary-green);
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1;
}

.product-price-new small {
    font-size: 0.5em; /* Reduz o tamanho do texto pequeno */
    color: var(--text-dark);
    font-weight: normal;
}

.product-description-new {
    margin-bottom: 35px;
    line-height: 1.7;
    font-size: 1.1em;
}

.product-options-form-new {
    background-color: var(--background-white); /* Fundo branco, sem o azul claro */
    border: 1px solid var(--border-light);
    border-radius: 5px;
    padding: 30px;
    margin-bottom: 30px;
}

.product-options-form-new .form-group {
    margin-bottom: 20px;
}

.product-options-form-new label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--text-dark);
    font-family: var(--font-heading);
    font-size: 1.1em;
}

.product-options-form-new .form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-light);
    border-radius: 3px; /* Cantos levemente arredondados */
    font-size: 1em;
    font-family: var(--font-body);
    appearance: none;
    background-color: var(--background-white);
    outline: none;
    transition: border-color 0.3s ease;
}

.product-options-form-new .form-control:focus {
    border-color: var(--primary-green);
}

.product-options-form-new .form-control-file {
    border: 1px solid var(--border-light);
    padding: 10px;
    border-radius: 3px;
    width: 100%;
}

.product-options-form-new small {
    display: block;
    margin-top: 8px;
    color: var(--secondary-color); /* Usando secondary-color para small text */
    font-size: 0.9em;
}

.product-options-form-new input[type="checkbox"],
.product-options-form-new input[type="radio"] {
    margin-right: 10px;
    transform: scale(1.1); /* Um pouco maior */
}

.product-options-form-new input[type="checkbox"] + label,
.product-options-form-new input[type="radio"] + label {
    display: inline-block;
    font-weight: normal;
    font-size: 1em;
}

.product-actions-new {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.add-to-cart-btn, .buy-now-btn {
    padding: 15px 30px;
    font-size: 1.2em;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-grow: 1; /* Permite que os botões se expandam */
    justify-content: center;
}

.add-to-cart.added {
    background-color: #28a745; /* verde */
    color: #fff;
    border-color: #28a745;
}

.product-features-new {
    background-color: var(--background-white);
    border: 1px solid var(--border-light);
    border-radius: 5px;
    padding: 30px;
    margin-top: 30px;
}

.product-features-new h4 {
    font-family: var(--font-heading);
    font-size: 1.6em;
    margin-bottom: 20px;
    color: var(--secondary-black);
}

.product-features-new ul {
    list-style: disc;
    padding-left: 25px;
}

.product-features-new li {
    margin-bottom: 12px;
    color: var(--text-dark);
    font-size: 1.05em;
}

.product-full-description-section {
    margin-top: 60px;
    padding: 40px;
    background-color: var(--background-white);
    border: 1px solid var(--border-light);
    border-radius: 5px;
}

.product-full-description-section h3 {
    font-family: var(--font-heading);
    font-size: 2.5em;
    margin-bottom: 25px;
    color: var(--secondary-black);
}

.product-full-description-section p {
    margin-bottom: 18px;
    line-height: 1.8;
    font-size: 1.1em;
}

.related-products-new {
    margin-top: 80px;
    padding-top: 50px;
    border-top: 1px solid var(--border-light);
    text-align: center;
}

.related-products-new h3 {
    font-family: var(--font-heading);
    font-size: 2.5em;
    margin-bottom: 40px;
    color: var(--secondary-black);
}


/* --- Responsividade Global para o Novo Design --- */

@media (max-width: 992px) {
    .main-nav ul {
        gap: 20px;
    }

    .header-accent-strip {
        width: 100%; /* Faixa verde em toda a largura */
        height: 100%;
    }

    .top-hero-section {
        padding: 30px 0;
    }

    /* Detalhes do produto */
    .product-content-new {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    .product-image-new,
    .product-info-new {
        max-width: 100%;
        flex: none;
        width: 100%;
    }

    .product-image-new img {
        max-width: 80%; /* Ajusta o tamanho da imagem em telas médias */
    }

    .product-info-new {
        text-align: center;
    }

    .product-info-new h2 {
        font-size: 2.5em;
    }

    /* Full Width Promo Banner - Responsividade */
    .full-width-promo-banner.right-image {
        padding: 40px 0; /* Ajusta o padding para telas menores */
        min-height: auto; /* Remove a altura mínima fixa em telas menores */
    }
    .full-width-promo-banner.right-image .promo-content {
        flex-direction: column; /* Empilha o texto e a imagem em telas menores */
        align-items: center; /* Centraliza os itens */
        text-align: center;
    }
    .full-width-promo-banner.right-image .promo-text-area {
        padding: 40px 20px; /* Ajusta o padding */
        max-width: 80%; /* Ajusta a largura máxima para o texto */
        margin-bottom: 30px; /* Adiciona margem inferior quando empilhado */
    }
    .full-width-promo-banner.right-image .promo-image {
        height: auto; /* Volta para altura automática para não quebrar o layout empilhado */
        width: 100%; /* Ocupa a largura total disponível */
        max-width: 300px; /* Limite de largura para a imagem empilhada */
        margin: 0 auto; /* Centraliza a imagem quando empilhada */
    }
    .full-width-promo-banner.right-image .promo-discount {
        font-size: 4em;
    }
    .full-width-promo-banner.right-image .promo-phrase {
        font-size: 1.1em;
    }
    .full-width-promo-banner.right-image .btn-black {
        padding: 12px 30px;
        font-size: 1em;
    }
}

@media (max-width: 768px) {
    .top-bar .container {
        flex-direction: column;
        gap: 5px;
    }
    .top-info span {
        margin: 0 10px;
    }

    .header-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .logo-area {
        width: 100%;
        text-align: center;
        margin-bottom: 10px;
    }

    .main-nav {
        width: 100%;
        order: 3;
        justify-content: center; /* Centraliza o menu no mobile */
    }

    .main-nav ul {
        flex-direction: column;
        display: none;
        width: 100%;
        text-align: center;
        background-color: var(--background-white);
        border-top: 1px solid var(--border-light);
        padding-top: 10px;
    }

    .main-nav ul.active {
        display: flex;
    }

    .main-nav li {
        margin: 10px 0;
        width: 100%;
    }

    .main-nav a {
        display: block;
        padding: 10px 0;
    }

    .header-actions {
        width: 100%;
        justify-content: space-between;
        order: 2;
    }

    .search-bar {
        flex-grow: 1;
        width: auto;
        margin-right: 10px;
    }

    .menu-toggle {
        display: block;
    }

    .section-title {
        font-size: 2em;
    }

    .product-grid-new {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .footer-columns-dark {
        flex-direction: column;
        text-align: center;
    }

    .footer-col-dark {
        min-width: unset;
        width: 100%;
    }
    .social-icons-dark {
        justify-content: center;
        display: flex;
    }

    /* Detalhes do produto */
    .product-image-new img {
        max-width: 100%;
    }

    .product-info-new h2 {
        font-size: 2em;
    }

    .product-price-new {
        font-size: 2.2em;
    }

    .product-actions-new {
        flex-direction: column;
        gap: 15px;
    }
    .add-to-cart-btn, .buy-now-btn {
        width: 100%;
        font-size: 1.1em;
        padding: 12px 20px;
    }

    .product-options-form-new {
        padding: 20px;
    }

    /* Full Width Promo Banner - Responsividade */
    .full-width-promo-banner.right-image {
        padding: 30px 0;
    }
    .full-width-promo-banner.right-image .promo-image {
        max-width: 250px;
    }
    .full-width-promo-banner.right-image .promo-discount {
        font-size: 3.5em;
    }
    .full-width-promo-banner.right-image .promo-phrase {
        font-size: 1em;
    }
    .full-width-promo-banner.right-image .btn-black {
        padding: 10px 25px;
        font-size: 0.9em;
    }
}

@media (max-width: 480px) {
    .top-hero-section {
        padding: 25px 0;
    }
    .slogan-top {
        font-size: 1.5em;
    }

    .section-title {
        font-size: 1.8em;
    }

    .product-grid-new {
        grid-template-columns: 1fr;
    }

    /* Detalhes do produto */
    .product-info-new h2 {
        font-size: 1.8em;
    }

    .product-price-new {
        font-size: 1.8em;
    }

    .product-full-description-section {
        padding: 25px;
    }

    /* Full Width Promo Banner - Responsividade */
    .full-width-promo-banner.right-image {
        padding: 20px 0;
    }
    .full-width-promo-banner.right-image .promo-image {
        max-width: 200px;
    }
    .full-width-promo-banner.right-image .promo-discount {
        font-size: 3em;
    }
    .full-width-promo-banner.right-image .promo-phrase {
        font-size: 0.9em;
    }
    .full-width-promo-banner.right-image .btn-black {
        padding: 8px 20px;
        font-size: 0.8em;
    }
}

/*      CARRINHO    */



/* --- Estilos para a Página do Carrinho (cart.html) --- */

.cart-page-new {
    padding: 40px 0;
}

.cart-page-new h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 2.2em;
    color: var(--color-dark);
}

#cart-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden; /* Garante que bordas arredondadas funcionem com overflow */
}

#cart-table th, #cart-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

#cart-table th {
    background-color: var(--color-light-gray);
    color: var(--color-dark);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9em;
}

#cart-table tbody tr:last-child td {
    border-bottom: none;
}

.cart-item-image img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 4px;
    margin-right: 15px;
    vertical-align: middle;
}

.cart-item-info {
    display: flex;
    align-items: center;
}

.cart-item-info h5 {
    margin: 0;
    font-size: 1.1em;
    color: var(--color-dark);
}

.cart-item-options {
    font-size: 0.85em;
    color: var(--color-gray);
    margin-top: 5px;
    line-height: 1.4;
}

/* Estilo para o input de quantidade no carrinho */
#cart-table .item-quantity-input {
    width: 60px;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    text-align: center;
    font-size: 1em;
}

/* Botão de remover item */
.remove-item-btn {
    background: none;
    border: none;
    color: var(--color-red);
    font-size: 1.2em;
    cursor: pointer;
    transition: color 0.3s ease;
}

.remove-item-btn:hover {
    color: var(--color-dark-red);
}

/* Resumo do Carrinho */
.cart-summary {
    background-color: #f9f9f9;
    padding: 25px;
    border-radius: 8px;
    margin-top: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    max-width: 400px;
    margin-left: auto; /* Alinha à direita */
    border: 1px solid #eee;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px dashed #eee;
    font-size: 1.1em;
    color: var(--color-dark);
}

.summary-item:last-of-type {
    border-bottom: none;
}

.summary-item.total {
    font-size: 1.4em;
    font-weight: 700;
    color: var(--color-accent);
    padding-top: 15px;
    margin-top: 15px;
    border-top: 2px solid var(--color-accent);
}

.cart-actions {
    display: flex;
    flex-wrap: wrap; /* Permite que os botões quebrem a linha em telas menores */
    gap: 15px;
    margin-top: 25px;
    justify-content: flex-end; /* Alinha os botões à direita */
}

.cart-actions .btn-black,
.cart-actions .btn-outline-dark {
    padding: 12px 25px;
    font-size: 1em;
    min-width: 180px; /* Garante tamanho mínimo para os botões */
    text-align: center;
}

.btn-clear-cart {
    background-color: #f44336; /* Vermelho */
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1em;
    transition: background-color 0.3s ease;
    min-width: 180px;
}

.btn-clear-cart:hover {
    background-color: #d32f2f;
}

#empty-cart-message {
    color: var(--color-gray);
    font-size: 1.2em;
    margin-top: 50px;
    text-align: center;
}

/* Responsividade para a tabela do carrinho */
@media (max-width: 768px) {
    #cart-table, #cart-table tbody, #cart-table td, #cart-table th {
        display: block;
    }

    #cart-table thead {
        display: none; /* Esconde o cabeçalho original da tabela em telas pequenas */
    }

    #cart-table tr {
        margin-bottom: 20px;
        border: 1px solid #eee;
        display: block;
        border-radius: 8px;
        overflow: hidden;
    }

    #cart-table td {
        border-bottom: 1px solid #eee;
        text-align: right;
        padding-left: 50%; /* Espaço para o pseudo-elemento */
        position: relative;
    }

    #cart-table td::before {
        content: attr(data-label); /* Usa o atributo data-label para o "cabeçalho" */
        position: absolute;
        left: 15px;
        width: calc(50% - 30px);
        padding-right: 10px;
        white-space: nowrap;
        text-align: left;
        font-weight: 600;
        color: var(--color-dark);
    }

    .cart-item-info {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    .cart-item-image img {
        margin-right: 0;
        margin-bottom: 10px;
    }

    .cart-item-options {
        text-align: left;
        width: 100%;
    }

    .cart-summary {
        margin-left: 0;
        max-width: 100%;
    }
    
    .cart-actions {
        justify-content: center; /* Centraliza botões em telas menores */
    }
}

/* AJUDA */


/* --- Estilos para a Página de Ajuda e FAQ (help-faq.html) --- */

.help-faq-page {
    padding: 40px 0;
}

.help-faq-page h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.5em;
    color: var(--color-dark);
}

.faq-section {
    margin-bottom: 40px;
    background-color: #f8f8f8;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.faq-section h3 {
    font-size: 1.8em;
    color: var(--color-accent);
    margin-bottom: 25px;
    border-bottom: 2px solid var(--color-light-gray);
    padding-bottom: 15px;
}

.faq-item {
    margin-bottom: 15px;
    border: 1px solid #eee;
    border-radius: 6px;
    overflow: hidden; /* Importante para a transição de altura */
    background-color: #fff;
    transition: all 0.3s ease;
}

.faq-item.active {
    border-color: var(--color-accent);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.faq-question {
    width: 100%;
    background-color: #fff;
    border: none;
    padding: 18px 25px;
    text-align: left;
    font-size: 1.15em;
    font-weight: 600;
    color: var(--color-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #f2f2f2;
}

.faq-question::after {
    content: '\2b'; /* Sinal de mais */
    font-family: "Font Awesome 5 Free"; /* Certifique-se de que Font Awesome esteja carregado */
    font-weight: 900;
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
    content: '\2212'; /* Sinal de menos */
    transform: rotate(0deg); /* Não precisa girar o sinal de menos */
}


.faq-answer {
    padding: 0 25px;
    max-height: 0; /* Inicialmente escondido */
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out; /* Transição suave */
    background-color: #fdfdfd;
}

.faq-item.active .faq-answer {
    padding: 15px 25px 20px; /* Adiciona padding quando expandido */
}

.faq-answer p {
    margin: 0;
    line-height: 1.6;
    color: var(--color-gray);
}

.faq-answer a {
    color: var(--color-accent);
    text-decoration: none;
}

.faq-answer a:hover {
    text-decoration: underline;
}

.contact-prompt {
    text-align: center;
    margin-top: 50px;
    font-size: 1.2em;
    color: var(--color-dark);
}

.contact-prompt a {
    color: var(--color-accent);
    font-weight: 600;
    text-decoration: none;
}

.contact-prompt a:hover {
    text-decoration: underline;
}

/* Responsividade */
@media (max-width: 768px) {
    .faq-section {
        padding: 15px;
    }
    .faq-section h3 {
        font-size: 1.5em;
    }
    .faq-question {
        padding: 15px 20px;
        font-size: 1em;
    }
    .faq-answer {
        padding: 0 20px;
    }
    .faq-item.active .faq-answer {
        padding: 10px 20px 15px;
    }
}

/*  CONTACTOS ESTILO */

/* --- Estilos para a Página de Contactos (contact.html) --- */

.contact-page {
    padding: 40px 0;
}

.contact-page h2 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 2.5em;
    color: var(--color-dark);
}

.contact-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px auto;
    font-size: 1.1em;
    color: var(--color-gray);
    line-height: 1.6;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 2fr; /* Coluna de info menor, formulário maior */
    gap: 40px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    padding: 30px;
    margin-bottom: 50px;
}

.contact-info-col {
    padding-right: 20px;
    border-right: 1px solid #eee; /* Separador visual */
}

.contact-info-col h3,
.contact-form-col h3,
.map-section h3 {
    font-size: 1.6em;
    color: var(--color-accent);
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--color-light-gray);
}

.contact-item-info {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    font-size: 1.05em;
    color: var(--color-dark);
}

.contact-item-info i {
    font-size: 1.5em;
    color: var(--color-dark);
    margin-right: 15px;
    width: 30px; /* Garante alinhamento */
    text-align: center;
}

.contact-item-info p {
    margin: 0;
    line-height: 1.6;
}

.social-icons-contact {
    margin-top: 30px;
    display: flex;
    gap: 15px;
}

.social-icons-contact a {
    color: var(--primary-red);
    font-size: 1.8em;
    transition: color 0.3s ease;
}

.social-icons-contact a:hover {
    color: var(--color-accent);
}

/* Formulário de Contato */
.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--color-dark);
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #A3FF1C;
    border-radius: 5px;
    font-size: 1em;
    font-family: 'Open Sans', sans-serif;
    color: var(--color-dark);
    box-sizing: border-box; /* Garante que padding não aumente a largura total */
}

.contact-form textarea {
    resize: vertical; /* Permite redimensionar verticalmente */
    min-height: 120px;
}

.contact-form input[type="text"]:focus,
.contact-form input[type="email"]:focus,
.contact-form textarea:focus {
    border-color: var(--color-accent);
    outline: none;
    box-shadow: 0 0 0 3px rgba(var(--color-accent-rgb), 0.2);
}

.contact-form .btn-primary-new {
    width: auto;
    padding: 12px 30px;
    font-size: 1.1em;
    margin-top: 15px;
}

.map-section {
    text-align: center;
    margin-top: 50px;
    padding: 30px;
    background-color: #f8f8f8;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.map-placeholder {
    width: 100%;
    height: 400px; /* Altura fixa para o mapa */
    background-color: #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    margin-top: 30px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
}

.map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Garante que a imagem preencha o espaço */
}

.map-note {
    font-size: 0.95em;
    color: var(--color-gray);
}

/* Responsividade */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr; /* Uma coluna em telas menores */
        padding: 20px;
    }
    .contact-info-col {
        border-right: none;
        border-bottom: 1px solid #eee; /* Separador na parte inferior */
        padding-bottom: 30px;
        margin-bottom: 30px;
        padding-right: 0;
    }
    .contact-form-col {
        padding-top: 0;
    }
    .map-placeholder {
        height: 300px; /* Ajusta a altura do mapa em telas menores */
    }
}

@media (max-width: 576px) {
    .contact-page h2 {
        font-size: 2em;
    }
    .contact-intro {
        font-size: 1em;
        margin-bottom: 30px;
    }
    .contact-grid {
        padding: 15px;
    }
    .contact-info-col h3,
    .contact-form-col h3,
    .map-section h3 {
        font-size: 1.4em;
        margin-bottom: 15px;
    }
    .contact-item-info {
        font-size: 1em;
    }
    .contact-item-info i {
        font-size: 1.3em;
        margin-right: 10px;
    }
    .contact-form input,
    .contact-form textarea {
        padding: 10px;
    }
    .contact-form .btn-primary-new {
        font-size: 1em;
        padding: 10px 20px;
    }
    .map-placeholder {
        height: 200px;
    }
}

/* PRIVACIDADE */


/* --- Estilos para a Página de Política de Privacidade (privacy-policy.html) --- */

.privacy-policy-page {
    padding: 40px 0;
}

.privacy-policy-page h2 {
    text-align: center;
    margin-bottom: 10px;
    font-size: 2.5em;
    color: var(--color-dark);
}

.privacy-policy-page .last-updated {
    text-align: center;
    margin-bottom: 40px;
    font-size: 0.9em;
    color: var(--color-gray);
    font-style: italic;
}

.privacy-policy-page section {
    background-color: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.privacy-policy-page section h3 {
    font-size: 1.8em;
    color: var(--color-accent);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--color-light-gray);
}

.privacy-policy-page section p {
    font-size: 1.05em;
    line-height: 1.7;
    color: var(--color-dark);
    margin-bottom: 15px;
}

.privacy-policy-page section ul {
    list-style: disc;
    margin-left: 25px;
    margin-bottom: 15px;
    color: var(--color-dark);
}

.privacy-policy-page section ul li {
    margin-bottom: 8px;
    line-height: 1.6;
    font-size: 1.0em;
}

.privacy-policy-page section ul li strong {
    color: var(--color-dark);
}

/* Responsividade */
@media (max-width: 768px) {
    .privacy-policy-page h2 {
        font-size: 2em;
    }
    .privacy-policy-page section {
        padding: 20px;
        margin-bottom: 20px;
    }
    .privacy-policy-page section h3 {
        font-size: 1.5em;
        margin-bottom: 15px;
    }
    .privacy-policy-page section p,
    .privacy-policy-page section ul li {
        font-size: 0.95em;
    }
}

/* SERVICES */


/* --- Estilos para a Página de Serviços e Design (services.html) --- */

.services-page {
    padding: 40px 0;
}

.services-page h2 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 2.5em;
    color: var(--color-dark);
}

.services-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px auto;
    font-size: 1.1em;
    color: var(--color-gray);
    line-height: 1.6;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* 300px min width */
    gap: 30px;
    margin-bottom: 60px;
}

.service-card {
    background-color: #fff;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex; /* Para flexbox interno */
    flex-direction: column;
    justify-content: space-between; /* Empurra o botão para o fundo */
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.service-icon {
    font-size: 3.5em;
    color: var(--color-accent);
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.6em;
    color: var(--color-dark);
    margin-bottom: 15px;
}

.service-card p {
    font-size: 1em;
    color: var(--color-gray);
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1; /* Permite que a descrição cresça */
}

.service-card ul {
    list-style: none;
    padding: 0;
    text-align: left;
    margin-bottom: 25px;
}

.service-card ul li {
    font-size: 0.95em;
    color: var(--color-dark);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

.service-card ul li .fas {
    color: var(--color-success); /* Verde para o check */
    margin-right: 10px;
    font-size: 1.1em;
}

.service-card .btn-outline-dark {
    display: inline-block;
    padding: 10px 25px;
    font-size: 0.95em;
    margin-top: auto; /* Empurra o botão para o final */
}

.cta-banner {
    background-color: var(--color-accent);
    color: white;
    padding: 50px 30px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
}

.cta-banner h3 {
    font-size: 2.2em;
    margin-bottom: 15px;
    color: white;
}

.cta-banner p {
    font-size: 1.1em;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto 30px auto;
}

.cta-banner .btn-primary-new {
    background-color: white;
    color: var(--color-accent);
    border: 2px solid white;
    padding: 12px 35px;
    font-size: 1.1em;
    font-weight: 700;
    transition: all 0.3s ease;
}

.cta-banner .btn-primary-new:hover {
    background-color: var(--color-dark); /* Escurece no hover */
    color: white;
    border-color: var(--color-dark);
}

/* Responsividade */
@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
    }
    .service-card {
        padding: 25px;
    }
    .service-icon {
        font-size: 3em;
    }
    .service-card h3 {
        font-size: 1.4em;
    }
    .cta-banner {
        padding: 40px 20px;
    }
    .cta-banner h3 {
        font-size: 2em;
    }
    .cta-banner p {
        font-size: 1em;
    }
}

@media (max-width: 576px) {
    .services-page h2 {
        font-size: 2em;
    }
    .services-intro {
        font-size: 1em;
        margin-bottom: 30px;
    }
    .services-grid {
        grid-template-columns: 1fr; /* Uma coluna em mobile */
        gap: 20px;
    }
    .service-card {
        padding: 20px;
    }
    .service-icon {
        font-size: 2.8em;
    }
    .service-card h3 {
        font-size: 1.3em;
    }
    .service-card p {
        font-size: 0.95em;
    }
    .cta-banner {
        padding: 30px 15px;
    }
    .cta-banner h3 {
        font-size: 1.6em;
    }
    .cta-banner p {
        font-size: 0.9em;
    }
    .cta-banner .btn-primary-new {
        padding: 10px 25px;
        font-size: 1em;
    }
}


/* CARTÕES DE VISITAS ESTILO*/

/* --- Estilos para Páginas de Detalhes de Produto (Aplicável a business-cards.html) --- */

.product-detail-page-new {
    padding: 40px 0;
}

.product-detail-page-new .container {
    max-width: 1200px;
}

.product-content-new {
    display: flex;
    gap: 40px;
    margin-bottom: 50px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 30px;
}

.product-gallery-new {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.product-gallery-new .main-image {
    width: 100%;
    max-width: 550px; /* Ajuste conforme a necessidade */
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
}

.product-gallery-new .main-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Container principal do carrossel */
.carousel-container {
  max-width: 100%;
  position: relative;
  margin: auto;
  overflow: hidden; /* Garante que as imagens não transbordem */
}

/* Oculta os slides por padrão */
.carousel-slide {
  display: none;
  width: 100%;
}

.carousel-slide img {
  width: 100%;
  height: auto;
  display: block;
}

/* Texto dentro dos slides */
.carousel-slide .text {
  color: #fff;
  font-size: 20px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.5); /* Fundo semi-transparente para o texto */
}

/* Botões de navegação (Anterior e Próximo) */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -22px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* Fundo dos botões ao passar o mouse */
.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
}

/* Pontos de navegação (indicadores) */
.carousel-dots {
  text-align:center;
  padding: 10px 0;
}

.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

/* Ponto ativo */
.active, .dot:hover {
  background-color: #717171;
}

/* Animação de transição (fade) */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}

/* Container principal do carrossel */
.carousel-container {
    max-width: 100%; /* Garante que o container não exceda a largura do seu contêiner pai */
    position: relative;
    margin: auto;
    overflow: hidden;
}

/* Oculta os slides por padrão */
.carousel-slide {
    display: none;
    width: 100%;
}

.carousel-slide img {
    width: 100%; /* Isso faz com que a imagem ocupe 100% da largura do seu contêiner */
    height: auto; /* Isso mantém a proporção original da imagem, evitando distorções */
    display: block;
}

/* Se quiser um tamanho fixo para o carrossel, pode adicionar uma altura máxima. */
/* Isso é útil se suas imagens tiverem alturas diferentes e você quiser unificá-las. */
.carousel-container {
    max-height: 400px; /* Exemplo: ajuste a altura para o valor desejado */
    overflow: hidden;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Recorta a imagem para preencher o espaço, mantendo a proporção */
}
.product-gallery-new .thumbnail-images {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap; /* Para lidar com muitas miniaturas */
}

.product-gallery-new .thumbnail-images img {
    width: 80px; /* Tamanho da miniatura */
    height: 80px;
    object-fit: cover;
    border: 2px solid #ddd;
    border-radius: 5px;
    cursor: pointer;
    transition: border-color 0.3s ease, transform 0.2s ease;
}

.product-gallery-new .thumbnail-images img:hover {
    border-color: var(--color-accent);
    transform: translateY(-2px);
}

.product-gallery-new .thumbnail-images img.active {
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(var(--color-accent-rgb), 0.3);
}

.product-info-new {
    flex: 1;
}

.product-info-new h1 {
    font-size: 2.5em;
    color: var(--color-dark);
    margin-bottom: 10px;
    line-height: 1.2;
}

.product-rating-new {
    color: var(--color-rating); /* Cor dourada para estrelas */
    margin-bottom: 20px;
    font-size: 0.9em;
}

.product-rating-new .fas {
    margin-right: 2px;
}

.product-description-new {
    font-size: 1.1em;
    color: var(--color-gray);
    line-height: 1.7;
    margin-bottom: 30px;
}

.product-price-section-new {
    margin-bottom: 30px;
    padding: 20px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    text-align: center; /* Centralizar preço */
}

.product-price-section-new .price-label {
    display: block;
    font-size: 1em;
    color: var(--color-dark);
    margin-bottom: 5px;
}

.product-price-new {
    font-size: 2.8em;
    font-weight: 700;
    color: var(--color-accent);
    display: block;
    margin-bottom: 5px;
}

.product-price-small-text {
    font-size: 0.9em;
    color: var(--color-gray);
}

.product-options-new {
    margin-bottom: 30px;
}

.product-options-new .option-group {
    margin-bottom: 20px;
}

.product-options-new label {
    display: block;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--color-dark);
    font-size: 1.05em;
}

.product-options-new select,
.product-options-new input[type="text"] {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1em;
    font-family: 'Open Sans', sans-serif;
    color: var(--color-dark);
    appearance: none; /* Remove estilo padrão do select */
    background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%232c3e50%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-24.8%200L146.2%20185.6%2030.3%2069.4a17.6%2017.6%200%200%200-24.8%2024.8l130.4%20130.5c6.5%206.5%2014.5%209.7%2022.6%209.7s16.1-3.2%2022.6-9.7l130.4-130.5c6.5-6.4%206.5-17%200-23.4z%22%2F%3E%3C%2Fsvg%3E'); /* Seta customizada */
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 12px;
    padding-right: 30px; /* Espaço para a seta */
}

.product-options-new select:focus,
.product-options-new input[type="text"]:focus {
    border-color: var(--color-accent);
    outline: none;
    box-shadow: 0 0 0 3px rgba(var(--color-accent-rgb), 0.2);
}

.product-options-new .checkbox-group {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.product-options-new .checkbox-group input[type="checkbox"] {
    margin-right: 10px;
    width: 20px;
    height: 20px;
    accent-color: var(--color-accent); /* Cor do checkbox */
}

.product-options-new .checkbox-group label {
    margin-bottom: 0; /* Remove margem padrão do label dentro do checkbox-group */
    font-weight: 400; /* Mais leve para opções de checkbox */
    font-size: 1em;
    cursor: pointer;
}

.product-options-new .small-text {
    font-size: 0.85em;
    color: var(--color-gray);
    margin-top: 5px;
    line-height: 1.5;
}

.product-actions-new {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.product-actions-new .btn-primary-new,
.product-actions-new .btn-secondary-new {
    flex: 1; /* Faz os botões ocuparem espaço igualmente */
    padding: 15px 20px;
    font-size: 1.1em;
    text-align: center;
}

.product-actions-new .btn-secondary-new {
    background-color: transparent;
    border: 2px solid var(--color-accent);
    color: var(--color-accent);
    transition: background-color 0.3s ease, color 0.3s ease;
}

.product-actions-new .btn-secondary-new:hover {
    background-color: var(--color-accent);
    color: white;
}


.product-delivery-info {
    font-size: 0.95em;
    color: var(--color-dark);
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.product-delivery-info p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.product-delivery-info p i {
    margin-right: 10px;
    color: var(--color-accent);
    font-size: 1.2em;
}

/* Descrição detalhada do produto */
.product-details-description {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 30px;
    margin-top: 40px;
}

.product-details-description h3 {
    font-size: 2em;
    color: var(--color-dark);
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.product-details-description h4 {
    font-size: 1.5em;
    color: var(--color-accent);
    margin-top: 25px;
    margin-bottom: 15px;
}

.product-details-description p {
    font-size: 1.05em;
    line-height: 1.7;
    color: var(--color-gray);
    margin-bottom: 15px;
}

.product-details-description ul,
.product-details-description ol {
    list-style-position: inside; /* Numerações/marcadores dentro do padding */
    margin-left: 20px;
    margin-bottom: 20px;
}

.product-details-description ul li,
.product-details-description ol li {
    font-size: 1em;
    line-height: 1.6;
    color: var(--color-dark);
    margin-bottom: 8px;
}

.product-details-description ul li strong,
.product-details-description ol li strong {
    color: var(--color-dark);
}

/* Responsividade para a página de produto/cartão de visita */
@media (max-width: 992px) {
    .product-content-new {
        flex-direction: column;
        gap: 30px;
        padding: 20px;
    }
    .product-gallery-new .main-image {
        max-width: 100%;
    }
    .product-info-new h1 {
        font-size: 2em;
        text-align: center;
    }
    .product-rating-new {
        text-align: center;
    }
    .product-description-new {
        text-align: center;
        font-size: 1em;
    }
    .product-price-new {
        font-size: 2.2em;
    }
    .product-actions-new {
        flex-direction: column;
    }
    .product-delivery-info {
        text-align: center;
    }
    .product-delivery-info p {
        justify-content: center;
    }
    .product-details-description {
        padding: 20px;
    }
    .product-details-description h3 {
        font-size: 1.8em;
    }
    .product-details-description h4 {
        font-size: 1.3em;
    }
}

@media (max-width: 576px) {
    .product-detail-page-new {
        padding: 20px 0;
    }
    .product-content-new {
        padding: 15px;
    }
    .product-info-new h1 {
        font-size: 1.8em;
    }
    .product-options-new select,
    .product-options-new input[type="text"] {
        padding: 10px;
        font-size: 0.95em;
    }
    .product-options-new label {
        font-size: 1em;
    }
    .product-actions-new .btn-primary-new,
    .product-actions-new .btn-secondary-new {
        padding: 12px 15px;
        font-size: 1em;
    }
    .product-details-description {
        padding: 15px;
    }
    .product-details-description h3 {
        font-size: 1.6em;
    }
    .product-details-description h4 {
        font-size: 1.2em;
    }
    .product-details-description p,
    .product-details-description ul li,
    .product-details-description ol li {
        font-size: 0.9em;
    }
}



