/* ============================================
   LOJA VIRTUAL - Estilos Principais
   Paleta de Cores: Teal, Pink, Lavender, Yellow
   ============================================ */

:root {
    /* Cores Principais */
    --color-teal: #4ECDC4;           /* Teal/Mint Green - Botões principais */
    --color-teal-dark: #3AB5AE;      /* Teal escuro - Hover */
    --color-pink: #FF6B9D;            /* Rosa vibrante - Tags de desconto */
    --color-pink-light: #FFB6C1;      /* Rosa claro - Elementos suaves */
    --color-lavender: #B19CD9;        /* Lavanda/Roxo claro */
    --color-yellow: #FFD700;          /* Amarelo - Destaques */
    --color-white: #FFFFFF;           /* Branco */
    --color-black: #333333;           /* Preto/Texto escuro */
    --color-grey: #666666;            /* Cinza */
    --color-grey-light: #F5F5F5;     /* Cinza claro - Fundo */
    --color-red: #E74C3C;             /* Vermelho - Preços riscados */
}

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

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--color-black);
    background-color: var(--color-white);
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    position: relative;
}

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

/* Barra Superior */
.barra-superior {
    background: linear-gradient(135deg, var(--color-lavender) 0%, var(--color-pink) 100%);
    color: var(--color-white);
    padding: 12px 0;
    font-size: 14px;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.barra-superior-wrapper {
    width: 100%;
    overflow: hidden;
    max-width: 100%;
    box-sizing: border-box;
}

.barra-superior-content {
    display: inline-flex;
    align-items: center;
    gap: 30px;
    animation: scroll-text 30s linear infinite;
    white-space: nowrap;
}

.barra-superior-content span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.barra-superior-content span:nth-child(even) {
    opacity: 0.5;
    font-size: 12px;
}

@keyframes scroll-text {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Header */
.header {
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    margin-bottom: 30px;
    width: 100%;
    overflow: visible;
    box-sizing: border-box;
    position: relative;
}

.header .container {
    overflow: visible;
    position: relative;
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    width: 100%;
    box-sizing: border-box;
    flex-wrap: wrap;
    overflow: visible;
}

.logo h1 {
    font-size: 28px;
    color: var(--color-teal);
    font-weight: 700;
}

.logo-imagem {
    max-height: 60px;
    max-width: 200px;
    height: auto;
    width: auto;
    object-fit: contain;
    display: block;
}

.logo a {
    text-decoration: none;
}

.header-actions {
    display: flex;
    gap: 15px;
    align-items: center;
}

.icon-btn {
    position: relative;
    font-size: 24px;
    text-decoration: none;
    color: #333;
}

.carrinho-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: var(--color-pink);
    color: var(--color-white);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
}

/* Menu Toggle (Hambúrguer) */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    position: relative;
}

.menu-toggle span {
    width: 100%;
    height: 3px;
    background-color: #333;
    border-radius: 3px;
    transition: all 0.3s ease;
    transform-origin: center;
}

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

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

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

/* Menu */
.menu {
    border-top: 1px solid #eee;
    padding: 15px 0;
    width: 100%;
    overflow: visible;
    box-sizing: border-box;
    position: relative;
    z-index: 100;
    background-color: #fff;
    max-width: 100%;
}

.menu ul {
    list-style: none;
    display: flex;
    gap: 30px;
    flex-wrap: nowrap;
    margin: 0;
    padding: 0;
    position: relative;
    overflow: visible !important;
    -ms-overflow-style: none !important;
    scrollbar-width: none !important;
    width: 100%;
    max-width: 100%;
}

.menu ul::-webkit-scrollbar {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
    background: transparent !important;
}

.menu ul::-webkit-scrollbar-track {
    display: none !important;
    background: transparent !important;
}

.menu ul::-webkit-scrollbar-thumb {
    display: none !important;
    background: transparent !important;
}

.menu li {
    margin: 0;
    position: relative;
}

.menu-item-dropdown {
    position: relative;
}

.menu-item-dropdown.has-dropdown {
    position: relative;
}

.menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
    display: block;
    padding: 5px 0;
    position: relative;
}

.menu-link.has-submenu::after {
    content: '';
    display: none;
}

/* Seta customizada para mobile */
.dropdown-arrow {
    float: right;
    padding: 5px 10px;
    cursor: pointer;
    font-size: 10px;
    transition: transform 0.3s;
    display: inline-block;
}

@media (min-width: 769px) {
    .menu-link.has-submenu::after {
        content: '▼';
        font-size: 10px;
        margin-left: 5px;
        display: inline-block;
        transition: transform 0.3s;
        vertical-align: middle;
    }
    
    .menu-item-dropdown:hover .menu-link.has-submenu::after {
        transform: rotate(180deg);
    }
    
    .dropdown-arrow {
        display: none;
    }
}

/* Garante que o dropdown apareça */
.menu-item-dropdown.has-dropdown:hover .dropdown-menu,
.menu-item-dropdown.has-dropdown:hover > .dropdown-menu {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
    display: block !important;
    pointer-events: auto !important;
}

.menu-item-dropdown:hover .menu-link,
.menu-item-dropdown .menu-link:hover,
.menu-item-dropdown.has-dropdown:hover .menu-link {
    color: var(--color-pink);
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    /* Colado ao item do menu: evita “brecha” onde o hover do <li> se perde */
    top: 100%;
    left: 0;
    background-color: #fff;
    min-width: 600px;
    max-width: 900px;
    width: max-content;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    border-radius: 8px;
    padding: 30px;
    margin-top: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    z-index: 1000;
    border: 1px solid #eee;
    white-space: nowrap;
    display: block !important;
    pointer-events: none;
}

/* Ponte invisível até o link: o cursor continua “sobre” o dropdown (filho do <li>) */
@media (min-width: 769px) {
    .dropdown-menu::before {
        content: '';
        position: absolute;
        left: 0;
        right: 0;
        top: -14px;
        height: 14px;
        background: transparent;
    }
}

.menu-item-dropdown:hover .dropdown-menu,
.menu-item-dropdown.has-dropdown:hover .dropdown-menu,
.menu-item-dropdown:hover > .dropdown-menu {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
    pointer-events: auto !important;
}

/* Ajusta posicionamento do dropdown para não sair da tela */
.menu-item-dropdown:last-child .dropdown-menu {
    left: auto;
    right: 0;
}

.dropdown-content {
    display: flex;
    gap: 40px;
    flex-wrap: nowrap;
}

.dropdown-column {
    flex: 1;
    min-width: 180px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.dropdown-column:not(:last-child) {
    border-right: 1px solid #f0f0f0;
    padding-right: 20px;
}

.dropdown-column:not(:first-child) {
    padding-left: 20px;
}

.dropdown-item {
    color: #333;
    text-decoration: none;
    padding: 8px 0;
    font-size: 14px;
    transition: color 0.2s, padding-left 0.2s;
    display: block;
}

.dropdown-item:hover {
    color: var(--color-teal);
    padding-left: 8px;
}

/* Main Content */
.main-content {
    min-height: calc(100vh - 400px);
    padding-bottom: 40px;
    width: 100%;
    overflow-x: hidden;
    box-sizing: border-box;
}

/* Banner Principal */
.banner-principal {
    background: linear-gradient(135deg, var(--color-lavender) 0%, var(--color-pink) 100%);
    color: var(--color-white);
    padding: 80px 20px;
    text-align: center;
    border-radius: 10px;
    margin-bottom: 40px;
    width: 100%;
    box-sizing: border-box;
}

.banner-content {
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.banner-content h2 {
    font-size: 36px;
    margin-bottom: 15px;
    padding: 0 10px;
    word-wrap: break-word;
}

.banner-content p {
    font-size: 18px;
    margin-bottom: 25px;
    padding: 0 10px;
    word-wrap: break-word;
    line-height: 1.5;
}

/* Botões */
.btn {
    display: inline-block;
    padding: 12px 24px;
    background-color: var(--color-teal);
    color: var(--color-white);
    text-decoration: none;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(78, 205, 196, 0.3);
}

.btn:hover {
    background-color: var(--color-teal-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(78, 205, 196, 0.4);
}

.btn-primary {
    background-color: var(--color-teal);
}

.btn-primary:hover {
    background-color: var(--color-teal-dark);
}

.btn-secondary {
    background-color: #95a5a6;
}

.btn-secondary:hover {
    background-color: #7f8c8d;
}

.btn-danger {
    background-color: var(--color-red);
}

.btn-danger:hover {
    background-color: #C0392B;
}

.btn-carrinho {
    width: 100%;
    margin-top: 10px;
}

.btn-comprar {
    width: 100%;
    margin-top: auto;
    background-color: var(--color-teal);
    color: var(--color-white);
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-comprar:hover {
    background-color: var(--color-teal-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(78, 205, 196, 0.4);
}

.btn-large {
    padding: 15px 30px;
    font-size: 18px;
}

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
}

.btn-small {
    padding: 6px 12px;
    font-size: 14px;
}

/* Produtos */
.produtos-section {
    margin-bottom: 50px;
    width: 100%;
    overflow-x: hidden;
    box-sizing: border-box;
}

.section-title {
    font-size: 28px;
    margin-bottom: 30px;
    color: var(--color-black);
    font-weight: 700;
}

.produtos-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.produtos-grid {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 20px 0;
}

.produtos-grid::-webkit-scrollbar {
    display: none;
}

.produto-card {
    scroll-snap-align: start;
    flex-shrink: 0;
    width: 280px;
    min-width: 280px;
}

/* Carousel Controls */
.carousel-controls {
    display: flex;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 10;
    justify-content: space-between;
    padding: 0 10px;
}

.carousel-btn {
    position: relative;
    background-color: rgba(255, 255, 255, 0.95);
    color: var(--color-grey);
    border: 1px solid #DDD;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 32px;
    font-weight: 300;
    cursor: pointer;
    z-index: 11;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
    transition: all 0.3s;
    line-height: 1;
    padding: 0;
    pointer-events: auto;
}

.carousel-btn:hover {
    background-color: var(--color-white);
    color: var(--color-teal);
    border-color: var(--color-teal);
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(0,0,0,0.25);
}

.carousel-btn.prev {
    left: 0;
}

.carousel-btn.next {
    right: 0;
}

.carousel-indicators {
    display: none;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.carousel-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #DDD;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    padding: 0;
}

.carousel-indicator.active {
    background-color: var(--color-teal);
    width: 30px;
    border-radius: 5px;
}

.produto-card {
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s, background-color 0.3s;
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid transparent;
}

.produto-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    background-color: #f0f8ff;
    border-color: var(--color-teal);
}

.produto-imagem-container {
    width: 100%;
    height: 280px;
    background-color: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.produto-imagem-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: absolute;
    top: 0;
    left: 0;
}

.produto-imagem-principal {
    opacity: 1;
    z-index: 1;
    transition: opacity 0.4s ease-in-out;
}

.produto-imagem-secundaria {
    opacity: 0;
    z-index: 2;
    transition: opacity 0.4s ease-in-out;
    display: block !important;
}

.produto-imagem {
    width: 100%;
    height: 280px;
    background-color: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.produto-imagem img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.produto-placeholder {
    font-size: 60px;
    color: #ccc;
}

.produto-placeholder.pequeno {
    font-size: 30px;
}

.produto-placeholder.grande {
    font-size: 120px;
}

/* Tag de Desconto */
.produto-desconto {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: var(--color-pink);
    color: var(--color-white);
    padding: 6px 14px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: bold;
    z-index: 10;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.produto-info {
    padding: 15px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.produto-info h3 {
    font-size: 16px;
    margin-bottom: 12px;
    color: var(--color-black);
    font-weight: 600;
    line-height: 1.3;
    min-height: 40px;
}

.produto-descricao {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
    min-height: 40px;
}

.produto-precos {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 8px;
}

.produto-preco-original {
    color: var(--color-red);
    text-decoration: line-through;
    font-size: 14px;
    opacity: 0.8;
}

.produto-preco-atual {
    color: var(--color-black);
    font-size: 16px;
    font-weight: 600;
}

.produto-parcelamento {
    font-size: 13px;
    color: var(--color-black);
    margin-bottom: 15px;
    line-height: 1.4;
}

.produto-preco {
    font-size: 24px;
    font-weight: bold;
    color: var(--color-teal);
    margin-bottom: 10px;
}

.produto-card a {
    text-decoration: none;
    color: inherit;
}

.add-carrinho-form {
    padding: 0 15px 15px;
    margin-top: auto;
}

.add-carrinho-form .btn-comprar {
    width: 100%;
    margin-top: 0;
}

/* Página do Produto */
.produto-detalhe {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    background-color: #fff;
    padding: 40px;
    border-radius: 10px;
    margin-bottom: 40px;
}

.produto-imagem-grande {
    width: 100%;
    height: 400px;
    background-color: #f8f9fa;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.produto-imagem-grande img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Galeria de Imagens do Produto */
.produto-galeria {
    width: 100%;
}

.produto-imagem-principal {
    width: 100%;
    height: 400px;
    background-color: #f8f9fa;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 15px;
    position: relative;
}

.produto-imagem-principal .galeria-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all 0.3s;
    z-index: 10;
}

.produto-imagem-principal .galeria-nav:hover {
    background-color: rgba(0, 0, 0, 0.7);
    transform: translateY(-50%) scale(1.1);
}

.produto-imagem-principal .galeria-nav.prev {
    left: 10px;
}

.produto-imagem-principal .galeria-nav.next {
    right: 10px;
}

.produto-imagem-principal .galeria-nav:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.produto-imagem-principal img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background-color: #fff;
}

.produto-imagens-miniaturas {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.produto-imagens-miniaturas .miniatura {
    width: 80px;
    height: 80px;
    object-fit: contain;
    border: 2px solid #ddd;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s;
    background-color: #fff;
    padding: 3px;
}

.produto-imagens-miniaturas .miniatura:hover {
    border-color: var(--color-teal);
    transform: scale(1.1);
}

.produto-imagens-miniaturas .miniatura.ativa {
    border-color: var(--color-teal);
    border-width: 3px;
    box-shadow: 0 0 10px rgba(0, 123, 255, 0.3);
}

.produto-info-detalhe {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.produto-titulo {
    font-size: 28px;
    font-weight: 600;
    color: #333;
    margin: 0;
    line-height: 1.3;
}

.produto-ref {
    font-size: 14px;
    color: #999;
    margin: -10px 0 15px 0;
}

.produto-urgencia {
    background-color: #E0F7FA;
    border: 2px dashed var(--color-teal);
    border-radius: 5px;
    padding: 10px 15px;
    margin-bottom: 15px;
}

.produto-urgencia p {
    margin: 0;
    color: var(--color-teal);
    font-weight: 500;
    font-size: 14px;
}

.produto-precos-info {
    margin-bottom: 20px;
}

.produto-preco-original {
    font-size: 18px;
    color: var(--color-pink);
    text-decoration: line-through;
    margin-bottom: 5px;
}

.produto-preco-atual {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.produto-preco-atual-grande {
    margin-bottom: 8px;
}

.produto-preco-atual-grande .preco-valor {
    font-size: 24px;
    font-weight: 600;
    color: #333;
}

.produto-parcelamento {
    font-size: 14px;
    color: #666;
    margin-top: 5px;
}

.produto-formas-pagamento {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    font-size: 14px;
    margin-bottom: 20px;
}

.produto-formas-pagamento .pagamento-icon {
    font-size: 18px;
}

.produto-quantidade-compra {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    align-items: center;
}

.quantidade-selector {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 5px;
    overflow: hidden;
    background: #fff;
}

.qty-btn {
    width: 40px;
    height: 45px;
    border: none;
    background: #f5f5f5;
    cursor: pointer;
    font-size: 20px;
    font-weight: bold;
    color: #333;
    transition: background 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.qty-btn:active {
    background: #d0d0d0;
}

.quantidade-selector input {
    width: 60px;
    height: 45px;
    border: none;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    background: #fff;
}

.btn-comprar-produto {
    flex: 1;
    height: 45px;
    background: var(--color-teal);
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-comprar-produto:hover {
    background: #00897b;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.produto-frete {
    margin-bottom: 20px;
    padding: 15px;
    background: #f9f9f9;
    border-radius: 5px;
}

.frete-header {
    margin-bottom: 10px;
    font-weight: 500;
    color: #333;
}

.frete-calculadora {
    display: flex;
    gap: 10px;
}

.frete-calculadora input {
    flex: 1;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
}

.btn-calcular-frete {
    padding: 10px 20px;
    background: var(--color-pink);
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-calcular-frete:hover {
    background: #e91e63;
}

.resultado-frete {
    margin-top: 10px;
    padding: 10px;
    background: #fff;
    border-radius: 5px;
    font-size: 14px;
}

.produto-compartilhar {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
}

.produto-compartilhar p {
    margin: 0;
    color: var(--color-pink);
    font-size: 14px;
}

.whatsapp-share {
    color: #25D366;
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: transform 0.2s;
}

.whatsapp-share:hover {
    transform: scale(1.1);
}

.produto-indisponivel {
    padding: 20px;
    background: #fff3cd;
    border: 1px solid #ffc107;
    border-radius: 5px;
    margin-bottom: 20px;
}

.produto-indisponivel .estoque-indisponivel {
    margin: 0;
    color: #856404;
    font-weight: 500;
}

.produto-descricao-longa {
    margin-bottom: 30px;
}

/* Breadcrumb Navigation */
.breadcrumb-nav {
    background-color: #F5F5DC;
    padding: 12px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 14px;
}

.breadcrumb-nav a {
    color: #333;
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumb-nav a:hover {
    color: var(--color-teal);
    text-decoration: underline;
}

.breadcrumb-separator {
    color: var(--color-pink);
    font-weight: bold;
    margin: 0 4px;
}

.breadcrumb-current {
    color: #333;
    font-weight: 500;
}

.produto-descricao-longa h3 {
    margin-bottom: 10px;
}

.produto-estoque {
    margin-bottom: 30px;
}

.estoque-disponivel {
    color: var(--color-teal);
    font-weight: bold;
}

.estoque-indisponivel {
    color: #e74c3c;
    font-weight: bold;
}

.quantidade-group {
    margin-bottom: 20px;
}

.quantidade-group label {
    display: block;
    margin-bottom: 5px;
}

.quantidade-group input {
    width: 100px;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

/* Controles de quantidade no carrinho */
.quantidade-controls {
    display: flex;
    align-items: center;
    gap: 5px;
    justify-content: center;
}

.quantidade-form {
    display: inline-block;
}

.quantidade-input {
    width: 60px;
    text-align: center;
    padding: 8px 5px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
    -moz-appearance: textfield;
}

.quantidade-input::-webkit-outer-spin-button,
.quantidade-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Controles de quantidade no carrinho - botões específicos */
.quantidade-controls .qty-btn {
    width: 32px;
    height: 32px;
    border: 1px solid #ddd;
    background-color: #fff;
    color: #333;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    padding: 0;
    line-height: 1;
}

.quantidade-controls .qty-btn:hover {
    background-color: var(--color-teal);
    color: #fff;
    border-color: var(--color-teal);
}

.quantidade-controls .qty-btn:active {
    transform: scale(0.95);
}

.quantidade-controls .qty-minus {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.quantidade-controls .qty-plus {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.add-carrinho-form-detalhe {
    margin-top: 20px;
}

/* Modal de Confirmação de Remoção */
.modal-remover-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.modal-remover-content {
    background-color: #fff;
    border-radius: 12px;
    padding: 30px;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    animation: slideUp 0.3s ease;
    position: relative;
}

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

.modal-remover-content h3 {
    margin: 0 0 20px 0;
    font-size: 20px;
    font-weight: 600;
    color: #333;
    text-align: center;
}

.modal-item-info {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 25px;
    border-left: 4px solid var(--color-teal);
}

.modal-item-nome {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin: 0 0 8px 0;
    line-height: 1.4;
}

.modal-item-ref {
    font-size: 14px;
    color: #666;
    margin: 0;
}

.modal-item-ref span {
    font-weight: 600;
    color: #333;
}

.modal-remover-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-modal-remover {
    background-color: #e74c3c;
    color: #fff;
    border: none;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s;
    min-width: 120px;
}

.btn-modal-remover:hover {
    background-color: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(231, 76, 60, 0.3);
}

.btn-modal-cancelar {
    background-color: #fff;
    color: #333;
    border: 2px solid #ddd;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s;
    min-width: 120px;
}

.btn-modal-cancelar:hover {
    background-color: #f8f9fa;
    border-color: #bbb;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Carrinho */
.carrinho-header {
    margin-bottom: 30px;
}

.carrinho-header .page-title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.carrinho-header .page-title span {
    font-size: 28px;
}

.carrinho-count-text {
    color: #666;
    font-size: 16px;
    margin: 0;
}

.carrinho-vazio {
    text-align: center;
    padding: 60px 20px;
    background-color: #fff;
    border-radius: 10px;
}

.carrinho-content {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 30px;
    align-items: start;
}

.carrinho-itens {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.carrinho-item-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
    display: grid;
    grid-template-columns: 100px 1fr auto;
    gap: 20px;
    align-items: start;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.carrinho-item-imagem {
    width: 100px;
    height: 100px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.carrinho-item-imagem img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carrinho-item-imagem .produto-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    background-color: #f5f5f5;
}

.carrinho-item-info {
    flex: 1;
}

.carrinho-item-nome {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin: 0 0 8px 0;
    line-height: 1.4;
}

.carrinho-item-ref {
    font-size: 14px;
    color: #666;
    margin: 0 0 15px 0;
}

.carrinho-item-quantidade {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.carrinho-item-remover {
    color: #e74c3c;
    text-decoration: none;
    font-size: 14px;
    cursor: pointer;
    display: inline-block;
    margin-top: 5px;
}

.carrinho-item-remover:hover {
    text-decoration: underline;
}

.carrinho-item-preco {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 5px;
}

.carrinho-item-preco .preco-original {
    font-size: 14px;
    color: #999;
    text-decoration: line-through;
}

.carrinho-item-preco .preco-atual {
    font-size: 20px;
    font-weight: bold;
    color: #333;
}

.carrinho-seguranca {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.badge-seguranca {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #666;
    padding: 8px 12px;
    background-color: #f8f9fa;
    border-radius: 5px;
}

.badge-seguranca span {
    font-size: 16px;
}

.carrinho-resumo {
    background-color: #fff;
    padding: 25px;
    border-radius: 10px;
    height: fit-content;
    position: sticky;
    top: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.carrinho-resumo h3 {
    margin: 0 0 20px 0;
    font-size: 20px;
    font-weight: 600;
    color: #333;
}

.resumo-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
}

.resumo-item:last-of-type {
    border-bottom: none;
}

.resumo-item span:first-child {
    color: #666;
    font-size: 14px;
}

.resumo-item span:last-child {
    font-weight: 600;
    color: #333;
}

.resumo-item .link-cupom,
.resumo-item .link-calcular-frete {
    margin-left: auto;
}

.cupom-input-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 10px;
    width: 100%;
    max-width: 250px;
}

.cupom-input-group > div {
    display: flex;
    gap: 8px;
    align-items: center;
}

.cupom-input {
    flex: 1;
    padding: 6px 8px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 12px;
    box-sizing: border-box;
    min-width: 0;
    max-width: 150px;
}

.btn-cupom {
    padding: 6px 12px;
    background-color: #555;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: background-color 0.3s;
}

.btn-cupom:hover {
    background-color: #333;
}

.cupom-input:focus {
    outline: none;
    border-color: var(--color-teal);
    box-shadow: 0 0 0 2px rgba(26, 157, 143, 0.1);
}
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: background-color 0.3s;
}

.btn-cupom:hover {
    background-color: #333;
}

.frete-input-group {
    display: flex;
    gap: 8px;
    margin-top: 10px;
    width: 100%;
    align-items: center;
}

.frete-input {
    flex: 1;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    box-sizing: border-box;
}

.frete-input:focus {
    outline: none;
    border-color: var(--color-teal);
    box-shadow: 0 0 0 2px rgba(26, 157, 143, 0.1);
}

.btn-frete {
    padding: 10px 20px;
    background-color: #e0e0e0;
    color: #333;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: background-color 0.3s;
}

.btn-frete:hover {
    background-color: #d0d0d0;
}

.cupom-mensagem {
    margin-top: 0;
    padding: 8px 10px;
    border-radius: 6px;
    font-size: 12px;
    width: 100%;
    max-width: 250px;
}

.cupom-mensagem.cupom-erro {
    background-color: #fff5f5;
    border: 1px solid #fcc;
    color: #c33;
    display: flex;
    align-items: center;
    gap: 8px;
}

.cupom-mensagem.cupom-sucesso {
    background-color: #efe;
    border: 1px solid #cfc;
    color: #3c3;
}

.cupom-aplicado-texto {
    color: #28a745;
    font-weight: 600;
    font-size: 14px;
    margin-right: 10px;
}

.link-remover-cupom {
    color: #e74c3c;
    text-decoration: none;
    font-size: 13px;
    cursor: pointer;
}

.link-remover-cupom:hover {
    text-decoration: underline;
}

.link-calcular-frete {
    color: var(--color-teal);
    text-decoration: none;
    font-size: 14px;
}

.link-calcular-frete:hover {
    text-decoration: underline;
}

.resumo-item.total {
    font-size: 18px;
    font-weight: bold;
    margin-top: 10px;
    padding-top: 15px;
    border-top: 2px solid #333;
}

.total-valor {
    font-size: 22px;
    color: var(--color-teal);
}

.resumo-pagamento-info {
    margin: 15px 0;
    padding: 15px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.resumo-pagamento-info p {
    margin: 5px 0;
    font-size: 13px;
    color: #666;
    text-align: center;
}

.btn-finalizar {
    margin-top: 20px;
    margin-bottom: 15px;
}

.link-continuar {
    display: block;
    text-align: center;
    color: #666;
    text-decoration: none;
    font-size: 14px;
    padding: 10px;
    transition: color 0.3s;
}

.link-continuar:hover {
    color: var(--color-teal);
    text-decoration: underline;
}

/* Checkout */
.checkout-content {
    display: grid;
    grid-template-columns: 1fr 1fr 400px;
    gap: 20px;
    align-items: start;
}

.checkout-steps-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.checkout-steps-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.checkout-step {
    background-color: #fff;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.checkout-step.active {
    background-color: #f8f9fa;
    border-left: 4px solid var(--color-teal);
}

.checkout-step.completed {
    background-color: #f0f0f0;
    opacity: 0.8;
}

.checkout-step.inactive {
    background-color: #f8f9fa;
    opacity: 0.6;
}

.checkout-step.inactive .step-header h3 {
    color: #999;
}

.checkout-step.active,
.checkout-step.completed {
    display: block !important;
}

.step-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.step-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

.checkout-step.active .step-header h3 {
    color: var(--color-teal);
}

.btn-alterar {
    background-color: transparent;
    color: #dc3545;
    border: 1px solid #dc3545;
    padding: 6px 15px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-alterar:hover {
    background-color: #dc3545;
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 2px 6px rgba(220, 53, 69, 0.3);
}

.btn-login-checkout {
    background: #dc3545 !important;
    color: white !important;
    padding: 8px 16px !important;
    border-radius: 6px !important;
    text-decoration: none !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    border: 2px solid #dc3545 !important;
    transition: all 0.3s ease !important;
    display: inline-block !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    box-shadow: 0 2px 4px rgba(220, 53, 69, 0.2) !important;
}

.btn-login-checkout:hover {
    background: #c82333 !important;
    border-color: #c82333 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 8px rgba(220, 53, 69, 0.3) !important;
    text-decoration: none !important;
    color: white !important;
}

.step-content-view {
    padding: 15px 0;
}

.dados-view {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.dado-item {
    font-size: 14px;
    line-height: 1.6;
    color: #333;
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
}

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

.dado-item strong {
    color: #555;
    font-weight: 600;
    margin-right: 8px;
}

.dado-item .cidade-estado {
    color: var(--color-teal);
    font-weight: 600;
    margin-left: 10px;
}

/* Checkout Transparente - Pagamento */
.payment-method-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.payment-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s;
}

.payment-option:hover {
    border-color: var(--color-teal);
    background-color: #f0fdfc;
}

.payment-option input[type="radio"] {
    margin: 0;
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: var(--color-teal);
}

.payment-option input[type="radio"]:checked + span {
    font-weight: 600;
    color: var(--color-teal);
}

.payment-option input[type="radio"]:checked ~ .payment-option {
    border-color: var(--color-teal);
    background-color: #f0fdfc;
}

#cartao-credito-form {
    margin-top: 15px;
}

#cartao-credito-form .form-group {
    margin-bottom: 12px;
}

#cartao-credito-form .form-row {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
}

#cartao-credito-form .form-row .form-group {
    flex: 1;
    margin-bottom: 0;
}

#cartao-credito-form label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    color: #333;
    font-size: 13px;
}

#cartao-credito-form input,
#cartao-credito-form select {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    box-sizing: border-box;
    transition: border-color 0.3s;
}

#cartao-credito-form input:focus,
#cartao-credito-form select:focus {
    outline: none;
    border-color: var(--color-teal);
    box-shadow: 0 0 0 3px rgba(26, 157, 143, 0.1);
}

/* Estilos para campos do Mercado Pago SDK */
#form-checkout__cardNumber,
#form-checkout__cardholderName,
#form-checkout__cardExpirationMonth,
#form-checkout__cardExpirationYear,
#form-checkout__expirationDate,
#form-checkout__securityCode {
    width: 100%;
    min-height: 42px;
    position: relative;
    pointer-events: auto !important;
}

#form-checkout__cardNumber iframe,
#form-checkout__cardholderName iframe,
#form-checkout__cardExpirationMonth iframe,
#form-checkout__cardExpirationYear iframe,
#form-checkout__expirationDate iframe,
#form-checkout__securityCode iframe {
    width: 100% !important;
    height: 42px !important;
    min-height: 42px !important;
    max-height: 42px !important;
    border: 1px solid #ddd !important;
    border-radius: 6px !important;
    padding: 0 12px !important;
    font-size: 14px !important;
    box-sizing: border-box !important;
    pointer-events: auto !important;
    background: #fff !important;
    cursor: text !important;
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
    position: relative !important;
    z-index: 1 !important;
}

/* Remove qualquer bloqueio de interação */
#form-checkout__cardNumber,
#form-checkout__cardholderName,
#form-checkout__cardExpirationMonth,
#form-checkout__cardExpirationYear,
#form-checkout__expirationDate,
#form-checkout__securityCode {
    pointer-events: auto !important;
    user-select: auto !important;
    -webkit-user-select: auto !important;
    -moz-user-select: auto !important;
    -ms-user-select: auto !important;
}

#form-checkout__cardNumber iframe:focus,
#form-checkout__cardholderName iframe:focus,
#form-checkout__cardExpirationMonth iframe:focus,
#form-checkout__cardExpirationYear iframe:focus,
#form-checkout__expirationDate iframe:focus,
#form-checkout__securityCode iframe:focus {
    border-color: var(--color-teal) !important;
    box-shadow: 0 0 0 3px rgba(26, 157, 143, 0.1) !important;
    outline: none !important;
}

/* Garante que os campos não estejam bloqueados */
#cartao-credito-form {
    pointer-events: auto !important;
    position: relative;
    z-index: 1;
}

#cartao-credito-form * {
    pointer-events: auto !important;
}

/* Remove qualquer overlay que possa estar bloqueando */
#cartao-credito-form::before,
#cartao-credito-form::after {
    display: none !important;
}

/* Garante que os containers dos campos estejam habilitados */
#form-checkout__cardNumber,
#form-checkout__cardholderName,
#form-checkout__cardExpirationMonth,
#form-checkout__cardExpirationYear,
#form-checkout__expirationDate,
#form-checkout__securityCode {
    position: relative;
    z-index: 2;
}

/* Remove qualquer bloqueio de interação nos containers */
#form-checkout__cardNumber *,
#form-checkout__cardholderName *,
#form-checkout__cardExpirationMonth *,
#form-checkout__cardExpirationYear *,
#form-checkout__expirationDate *,
#form-checkout__securityCode * {
    pointer-events: auto !important;
    cursor: text !important;
}

.error-message {
    display: block;
    color: #dc3545;
    font-size: 12px;
    margin-top: 4px;
    min-height: 16px;
    line-height: 1.3;
}

.pagamento-total {
    background-color: #f8f9fa;
    padding: 8px;
    border-radius: 6px;
    margin: 10px 0;
    text-align: center;
}

.pagamento-total p {
    margin: 0;
    font-size: 16px;
    color: #333;
}

.pagamento-total strong {
    font-size: 20px;
    color: var(--color-teal);
}

#payment-status {
    margin-top: 15px;
}

.alert {
    padding: 12px 15px;
    border-radius: 6px;
    margin-bottom: 15px;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.link-login {
    background-color: var(--color-teal);
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
}

.link-login:hover {
    background-color: #1a9d8f;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(26, 157, 143, 0.3);
    text-decoration: none;
}

.step-content {
    animation: fadeIn 0.3s ease;
}

.step-message {
    color: #999;
    font-size: 14px;
    font-style: italic;
    padding: 10px 0;
}

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

.checkout-form-step .form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: #333;
    font-size: 14px;
}

.checkout-form-step .form-group input,
.checkout-form-step .form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    box-sizing: border-box;
}

.checkout-form-step .form-group input[readonly] {
    background-color: #f8f9fa;
    cursor: not-allowed;
}

.checkout-form-step .form-group small {
    display: block;
    margin-top: 5px;
    font-size: 12px;
}

.checkout-form-step .form-group input:focus,
.checkout-form-step .form-group select:focus {
    outline: none;
    border-color: var(--color-teal);
    box-shadow: 0 0 0 3px rgba(26, 157, 143, 0.1);
}

.btn-continuar {
    background-color: #28a745;
    color: #fff;
    border: none;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 8px;
    width: 100%;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-continuar:hover {
    background-color: #218838;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
}

.frete-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.frete-option {
    display: flex;
    align-items: center;
}

.frete-option input[type="radio"] {
    margin-right: 10px;
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.frete-option label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s;
}

.frete-option input[type="radio"]:checked + label {
    border-color: var(--color-teal);
    background-color: #f0fdfc;
}

.frete-nome {
    font-weight: 600;
    color: #333;
}

.frete-valor {
    color: var(--color-teal);
    font-weight: 600;
}

.checkout-resumo {
    background-color: #fff;
    padding: 25px;
    border-radius: 10px;
    height: fit-content;
    position: sticky;
    top: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.resumo-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.resumo-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

.link-editar {
    color: var(--color-teal);
    text-decoration: none;
    font-size: 14px;
}

.link-editar:hover {
    text-decoration: underline;
}

.resumo-produtos {
    margin-bottom: 20px;
    max-height: 400px;
    overflow-y: auto;
}

.resumo-produto-item {
    display: flex;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

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

.resumo-produto-imagem {
    width: 60px;
    height: 60px;
    border-radius: 6px;
    overflow: hidden;
    flex-shrink: 0;
}

.resumo-produto-imagem img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.resumo-produto-imagem .produto-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    background-color: #f5f5f5;
}

.resumo-produto-info {
    flex: 1;
}

.resumo-produto-nome {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin: 0 0 5px 0;
    line-height: 1.4;
}

.resumo-produto-ref {
    font-size: 12px;
    color: #666;
    margin: 0 0 5px 0;
}

.resumo-produto-qtd {
    font-size: 13px;
    color: #666;
    margin: 0;
}

.resumo-totais {
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.link-cupom {
    color: var(--color-teal);
    text-decoration: none;
    font-size: 14px;
    cursor: pointer;
    margin-left: 10px;
}

.link-cupom:hover {
    text-decoration: underline;
}

/* Formulários */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
}

.form-group textarea {
    resize: vertical;
}

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

/* Alerts */
.alert {
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
}

.alert-error {
    background-color: #fee;
    color: #c33;
    border: 1px solid #fcc;
}

.alert-success {
    background-color: #efe;
    color: #3c3;
    border: 1px solid #cfc;
}

.alert-warning {
    background-color: #ffd;
    color: #cc3;
    border: 1px solid #ffc;
}

/* Benefícios */
.beneficios-section {
    margin: 50px 0;
}

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

.beneficio-item {
    text-align: center;
    padding: 30px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.beneficio-icon {
    font-size: 48px;
    display: block;
    margin-bottom: 15px;
}

.beneficio-item h3 {
    margin-bottom: 10px;
    color: var(--color-black);
}

/* Auth Pages */
.auth-page {
    max-width: 500px;
    margin: 40px auto;
    background-color: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.auth-form {
    margin-top: 30px;
}

.cadastro-form .form-group {
    margin-bottom: 20px;
}

.cadastro-form .form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
    font-size: 14px;
}

.cadastro-form .form-group input,
.cadastro-form .form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    box-sizing: border-box;
    transition: border-color 0.3s;
}

.cadastro-form .form-group input:focus,
.cadastro-form .form-group select:focus {
    outline: none;
    border-color: var(--color-teal);
    box-shadow: 0 0 0 3px rgba(26, 157, 143, 0.1);
}

.password-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.password-input-wrapper input {
    padding-right: 45px;
}

.toggle-password {
    position: absolute;
    right: 10px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 18px;
    padding: 5px;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
}

.toggle-password:hover {
    color: var(--color-teal);
}

.checkbox-group {
    margin: 20px 0;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 14px;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-top: 3px;
    cursor: pointer;
    accent-color: var(--color-teal);
}

/* Estilos compactos para checkboxes abaixo do botão de finalizar */
.checkboxes-compactos {
    margin-top: 8px;
}

.checkbox-group-compacto {
    margin: 4px 0;
}

.checkbox-label-compacto {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 13px;
    line-height: 1.4;
    margin: 0;
}

.checkbox-label-compacto input[type="checkbox"] {
    width: auto;
    margin: 0;
    cursor: pointer;
    accent-color: var(--color-teal);
    flex-shrink: 0;
}

.checkbox-label-compacto span {
    color: #666;
}

.auth-privacy {
    text-align: center;
    margin-top: 15px;
    font-size: 12px;
    color: #666;
    line-height: 1.5;
}

.auth-link {
    text-align: center;
    margin-top: 20px;
}

.auth-link a {
    color: var(--color-teal);
    text-decoration: underline;
    font-size: 14px;
}

.auth-link a:hover {
    color: var(--color-teal-dark);
}

/* Minha Conta */
.conta-content {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 30px;
}

.conta-sidebar {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    height: fit-content;
}

.conta-menu {
    list-style: none;
    margin-top: 20px;
}

.conta-menu li {
    margin-bottom: 10px;
}

.conta-menu a {
    color: #333;
    text-decoration: none;
    display: block;
    padding: 10px;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.conta-menu a:hover {
    background-color: #f8f9fa;
}

.conta-main {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
}

.conta-section {
    margin-bottom: 40px;
}

.dados-info p {
    margin-bottom: 10px;
}

.pedidos-table {
    width: 100%;
    border-collapse: collapse;
}

.pedidos-table th,
.pedidos-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.pedidos-table th {
    background-color: #f8f9fa;
    font-weight: 600;
}

.status {
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: bold;
}

.status-aprovado {
    background-color: #d4edda;
    color: #155724;
}

.status-pendente {
    background-color: #fff3cd;
    color: #856404;
}

.status-recusado {
    background-color: #f8d7da;
    color: #721c24;
}

/* Footer Newsletter e Redes Sociais */
.footer-newsletter {
    background-color: var(--color-white);
    padding: 30px 0;
    border-bottom: 1px solid #E0E0E0;
}

.newsletter-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.newsletter-form h3 {
    color: var(--color-pink);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.newsletter-subtitle {
    color: var(--color-grey);
    font-size: 14px;
    margin-bottom: 15px;
    font-weight: 500;
}

.social-title {
    color: var(--color-pink);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.social-icons-wrapper {
    display: flex;
    gap: 20px;
}

.newsletter-form-fields {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.newsletter-form-fields input {
    padding: 12px 15px;
    border: 1px solid #DDD;
    border-radius: 5px;
    font-size: 14px;
    min-width: 200px;
    flex: 1;
}

.newsletter-form-fields input:focus {
    outline: none;
    border-color: var(--color-teal);
}

.btn-newsletter {
    background-color: var(--color-pink);
    color: var(--color-white);
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-newsletter:hover {
    background-color: #FF4D7D;
}

.footer-social {
    display: flex;
    gap: 20px;
    align-items: center;
}

.social-icon {
    color: var(--color-grey);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
}

.social-icon:hover {
    transform: scale(1.2);
    color: var(--color-pink);
}

/* Footer Principal */
.footer {
    background-color: var(--color-white);
    color: var(--color-black);
    padding: 50px 0 0;
    margin-top: 50px;
    border-top: 1px solid #E0E0E0;
}

.footer .container {
    padding: 0 20px;
}

.footer-main {
    padding-bottom: 30px;
}

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

.footer-column h3 {
    color: var(--color-black);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

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

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

.footer-column a {
    color: var(--color-grey);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
    display: inline-block;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.footer-column a:hover {
    color: var(--color-pink);
    transform: translateX(5px);
}

.footer-contact {
    list-style: none;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.contact-icon {
    font-size: 18px;
    width: 24px;
    text-align: center;
}

.contact-hours {
    margin-top: 15px;
    font-size: 13px;
    color: var(--color-grey);
    font-style: italic;
}

.footer-bottom-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding-top: 30px;
    border-top: 1px solid #E0E0E0;
}

.footer-payment h3,
.footer-security h3 {
    color: var(--color-black);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.payment-icons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.payment-icon {
    width: 60px;
    height: 40px;
    background-color: var(--color-white);
    border: 1px solid #DDD;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    opacity: 0.8;
}

.security-badges {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.security-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: #F8F8F8;
    padding: 12px 15px;
    border-radius: 5px;
    font-size: 13px;
    color: var(--color-grey);
}

.badge-icon {
    font-size: 18px;
}

.footer-copyright {
    border-top: 1px solid #E0E0E0;
    padding-top: 20px;
    padding-bottom: 20px;
    margin-top: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 12px;
    color: var(--color-grey);
    background-color: #F8F8F8;
}

.copyright-left p {
    margin-bottom: 5px;
}

.copyright-right {
    text-align: right;
}

/* Botão WhatsApp Flutuante */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: var(--color-white);
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.6);
}

/* Page Title */
.page-title {
    font-size: 32px;
    margin-bottom: 30px;
    color: var(--color-black);
    font-weight: 700;
}

/* Finalizar */
.finalizar-page {
    max-width: 600px;
    margin: 40px auto;
    background-color: #fff;
    padding: 40px;
    border-radius: 10px;
    text-align: center;
}

.pedido-info {
    margin: 20px 0;
    text-align: left;
}

.pedido-info p {
    margin-bottom: 10px;
}

/* Responsive */
@media (max-width: 768px) {
    .produto-detalhe {
        grid-template-columns: 1fr;
    }
    
    .carrinho-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .carrinho-item-card {
        grid-template-columns: 80px 1fr;
        gap: 15px;
        padding: 15px;
        position: relative;
    }
    
    .carrinho-item-imagem {
        width: 80px;
        height: 80px;
    }
    
    .carrinho-item-nome {
        font-size: 16px;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .carrinho-item-info {
        min-width: 0;
        overflow: hidden;
    }
    
    .carrinho-item-preco {
        grid-column: 1 / -1;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        margin-top: 10px;
        padding-top: 10px;
        border-top: 1px solid #eee;
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .carrinho-item-preco .preco-original {
        font-size: 13px;
    }
    
    .carrinho-item-preco .preco-atual {
        font-size: 18px;
        font-weight: bold;
    }
    
    .carrinho-item-quantidade {
        margin-top: 10px;
    }
    
    .carrinho-resumo {
        margin-top: 20px;
        position: static;
    }
    
    .carrinho-seguranca {
        justify-content: center;
    }
    
    .checkout-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .checkout-steps-left,
    .checkout-steps-right {
        width: 100%;
    }
    
    .checkout-resumo {
        position: static;
        margin-top: 20px;
    }
    
    .checkout-step {
        padding: 20px;
    }
    
    .resumo-produtos {
        max-height: 300px;
    }
    
    .carrinho-resumo .btn {
        display: block;
        width: 100%;
        text-align: center;
        margin: 10px 0;
    }
    
    .carrinho-resumo .btn-block {
        display: block;
        width: 100%;
        text-align: center;
        margin: 10px 0;
    }
    
    .quantidade-controls {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .quantidade-input {
        width: 50px;
        font-size: 14px;
    }
    
    .quantidade-controls .qty-btn {
        width: 30px;
        height: 30px;
        font-size: 16px;
    }
    
    .modal-remover-content {
        padding: 25px 20px;
        max-width: 90%;
    }
    
    .modal-remover-content h3 {
        font-size: 18px;
        margin-bottom: 15px;
    }
    
    .modal-item-info {
        padding: 15px;
        margin-bottom: 20px;
    }
    
    .modal-item-nome {
        font-size: 15px;
    }
    
    .modal-remover-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .btn-modal-remover,
    .btn-modal-cancelar {
        width: 100%;
        padding: 12px 20px;
    }
    
    .conta-content {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .header .container {
        padding: 0 15px;
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    .header-top {
        flex-wrap: wrap;
        position: relative;
        width: 100%;
        padding: 15px 0;
    }
    
    .logo {
        flex: 1;
        min-width: 0;
        max-width: calc(100% - 50px);
    }
    
    .logo h1 {
        font-size: 22px;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    /* Menu Toggle visível em mobile */
    .menu-toggle {
        display: flex;
        margin-left: auto;
        flex-shrink: 0;
    }
    
    .header-actions {
        order: 2;
        width: 100%;
        justify-content: center;
        margin-top: 15px;
        padding-top: 15px;
        border-top: 1px solid #eee;
        flex-wrap: nowrap;
        gap: 10px;
    }
    
    .icon-btn {
        flex-shrink: 0;
    }
    
    /* Menu escondido por padrão em mobile */
    .menu {
        max-height: 0;
        overflow: hidden;
        width: 100%;
        order: 3;
        border-top: none;
        padding: 0;
        margin-top: 0;
        transition: max-height 0.3s ease, margin-top 0.3s ease;
    }
    
    .menu.active {
        max-height: 500px;
        margin-top: 15px;
    }
    
    .menu ul {
        flex-direction: column;
        gap: 0;
        background-color: #fff;
        border-radius: 5px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        overflow: hidden;
        width: 100%;
        box-sizing: border-box;
    }
    
    .menu-item-dropdown {
        border-bottom: 1px solid #eee;
    }
    
    .menu-item-dropdown:last-child {
        border-bottom: none;
    }
    
    .dropdown-menu {
        position: static;
        min-width: 100%;
        max-width: 100%;
        width: 100%;
        margin-top: 0;
        padding: 15px;
        box-shadow: none;
        border: none;
        border-top: 1px solid #f0f0f0;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        white-space: normal;
    }
    
    .dropdown-menu::before {
        display: none;
        content: none;
    }
    
    .menu-item-dropdown.active .dropdown-menu {
        display: block;
    }
    
    .menu-item-dropdown.active .dropdown-arrow {
        transform: rotate(180deg);
    }
    
    .dropdown-arrow {
        display: inline-block !important;
    }
    
    .dropdown-content {
        flex-direction: column;
        gap: 20px;
    }
    
    .dropdown-column {
        min-width: 100%;
        border-right: none;
        padding: 0;
    }
    
    .dropdown-column:not(:first-child) {
        padding-left: 0;
        border-top: 1px solid #f0f0f0;
        padding-top: 15px;
    }
    
    .menu a {
        word-wrap: break-word;
        overflow-wrap: break-word;
        white-space: normal;
    }
    
    .menu li {
        border-bottom: 1px solid #eee;
    }
    
    .menu li:last-child {
        border-bottom: none;
    }
    
    .menu a {
        padding: 15px 20px;
        display: block;
        transition: background-color 0.3s, color 0.3s;
    }
    
    .menu a:hover {
        background-color: var(--color-pink-light);
        color: var(--color-teal);
    }
    
    /* Barra superior responsiva */
    .barra-superior {
        padding: 10px 0;
        font-size: 13px;
        width: 100%;
        max-width: 100vw;
        overflow-x: hidden;
    }
    
    .barra-superior-wrapper {
        width: 100%;
        max-width: 100vw;
        overflow-x: hidden;
    }
    
    .barra-superior-content {
        gap: 25px;
        animation-duration: 25s;
    }
    
    /* Banner responsivo */
    .banner-principal {
        padding: 40px 0;
        margin-left: 0;
        margin-right: 0;
        margin-bottom: 30px;
        border-radius: 0;
        width: 100%;
        box-sizing: border-box;
    }
    
    .banner-principal .container {
        padding: 0 20px;
    }
    
    .banner-content {
        padding: 0;
        width: 100%;
        max-width: 100%;
    }
    
    .banner-content h2 {
        font-size: 24px;
        padding: 0 10px;
        line-height: 1.3;
    }
    
    .banner-content p {
        font-size: 16px;
        padding: 0 10px;
        line-height: 1.4;
    }
    
    .banner-content .btn {
        margin-top: 10px;
    }
    
    /* Produtos carousel mobile */
    .produtos-wrapper {
        overflow: hidden;
        position: relative;
        padding: 0 55px;
        width: 100%;
    }
    
    .produtos-grid {
        display: flex;
        gap: 15px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
        padding: 20px 0;
        width: 100%;
    }
    
    .produtos-grid::-webkit-scrollbar {
        display: none;
    }
    
    .produto-card {
        min-width: 280px;
        max-width: 280px;
        width: 280px;
        flex-shrink: 0;
        scroll-snap-align: start;
        height: auto;
    }
    
    .produto-imagem {
        height: 220px;
    }
    
    .produto-info {
        padding: 15px;
    }
    
    .produto-info h3 {
        font-size: 15px;
        min-height: 38px;
    }
    
    .produto-preco-atual {
        font-size: 15px;
    }
    
    .produto-parcelamento {
        font-size: 12px;
    }
    
    .btn-comprar {
        font-size: 14px;
        padding: 10px 15px;
    }
    
    .carousel-controls {
        display: flex;
        position: absolute;
        top: 50%;
        left: 0;
        right: 0;
        transform: translateY(-50%);
        justify-content: space-between;
        padding: 0 5px;
        pointer-events: none;
        z-index: 10;
    }
    
    .carousel-btn {
        position: relative;
        pointer-events: auto;
    }
    
    .carousel-btn.prev {
        left: 0;
        right: auto;
    }
    
    .carousel-btn.next {
        right: 0;
        left: auto;
    }
    
    .carousel-indicators {
        display: flex;
        margin-top: 15px;
    }
    
    /* Ajustes gerais mobile */
    .container {
        padding: 0 15px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        overflow-x: hidden;
    }
    
    .main-content {
        width: 100%;
        overflow-x: hidden;
    }
    
    .produto-card {
        margin-bottom: 0;
    }
    
    .produto-info {
        padding: 15px;
    }
    
    .produto-info h3 {
        font-size: 16px;
    }
    
    .produto-descricao {
        font-size: 13px;
        min-height: 35px;
    }
    
    .produto-preco {
        font-size: 20px;
    }
    
    .btn-carrinho {
        font-size: 14px;
        padding: 10px 15px;
    }
    
    .beneficios-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .beneficio-item {
        padding: 20px;
    }
    
    /* Footer responsivo */
    .footer {
        padding: 30px 0 0;
    }
    
    .footer-main {
        padding-bottom: 20px;
    }
    
    .footer .container {
        padding: 0 20px;
    }
    
    .newsletter-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .newsletter-form {
        width: 100%;
    }
    
    .newsletter-form-fields {
        flex-direction: column;
        gap: 10px;
    }
    
    .newsletter-form-fields input {
        width: 100%;
        min-width: auto;
    }
    
    .footer-social {
        width: 100%;
        flex-direction: column;
        align-items: center;
    }
    
    .social-icons-wrapper {
        justify-content: center;
    }
    
    .footer-columns {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .footer-column {
        width: 100%;
        padding: 0;
    }
    
    .footer-column h3 {
        font-size: 15px;
        margin-bottom: 15px;
        word-break: break-word;
    }
    
    .footer-column ul {
        width: 100%;
    }
    
    .footer-column a {
        font-size: 13px;
        word-break: break-word;
        padding: 8px 0;
    }
    
    .footer-contact li {
        flex-wrap: wrap;
        word-break: break-word;
    }
    
    .footer-contact a {
        word-break: break-all;
    }
    
    .contact-hours {
        font-size: 12px;
        line-height: 1.4;
    }
    
    .footer-bottom-section {
        grid-template-columns: 1fr;
        gap: 25px;
        padding-top: 20px;
    }
    
    .footer-payment h3,
    .footer-security h3 {
        font-size: 14px;
        margin-bottom: 15px;
    }
    
    .payment-icons {
        justify-content: flex-start;
        gap: 8px;
    }
    
    .payment-icon {
        width: 50px;
        height: 35px;
        font-size: 18px;
    }
    
    .security-badge {
        padding: 10px 12px;
        font-size: 12px;
    }
    
    .footer-copyright {
        flex-direction: column;
        text-align: left;
        padding: 15px 20px;
        gap: 15px;
    }
    
    .copyright-left p,
    .copyright-right p {
        font-size: 11px;
        line-height: 1.5;
        word-break: break-word;
        margin-bottom: 8px;
    }
    
    .copyright-right {
        text-align: left;
        width: 100%;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 15px;
        right: 15px;
    }
}

@media (max-width: 480px) {
    html, body {
        overflow-x: hidden;
        width: 100%;
        max-width: 100vw;
    }
    
    .container {
        padding: 0 12px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .header .container {
        padding: 0 12px;
    }
    
    .logo h1 {
        font-size: 18px;
        max-width: 100%;
    }
    
    .icon-btn {
        font-size: 18px;
    }
    
    .page-title {
        font-size: 22px;
    }
    
    .section-title {
        font-size: 22px;
        padding: 0 5px;
        word-wrap: break-word;
    }
    
    .produtos-wrapper {
        padding: 0 40px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .produto-card {
        min-width: 250px;
        max-width: 250px;
    }
    
    .carousel-btn {
        width: 35px;
        height: 35px;
        font-size: 20px;
    }
    
    .carousel-btn.prev {
        left: 5px;
    }
    
    .carousel-btn.next {
        right: 5px;
    }
    
    .banner-principal {
        padding: 35px 0;
        margin-left: 0;
        margin-right: 0;
        margin-bottom: 25px;
        border-radius: 0;
        width: 100%;
    }
    
    .banner-principal .container {
        padding: 0 12px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .banner-content {
        padding: 0;
        width: 100%;
        max-width: 100%;
    }
    
    .banner-content h2 {
        font-size: 20px;
        padding: 0 5px;
        line-height: 1.3;
        margin-bottom: 12px;
    }
    
    .banner-content p {
        font-size: 14px;
        padding: 0 5px;
        line-height: 1.4;
        margin-bottom: 20px;
    }
    
    .banner-content .btn {
        font-size: 14px;
        padding: 10px 20px;
        margin-top: 5px;
    }
    
    .produto-imagem {
        height: 180px;
    }
    
    .produto-info h3 {
        font-size: 15px;
    }
    
    .produto-preco {
        font-size: 18px;
    }
    
    /* Footer mobile pequeno */
    .footer .container {
        padding: 0 15px;
    }
    
    .footer-columns {
        gap: 20px;
    }
    
    .footer-column h3 {
        font-size: 14px;
    }
    
    .footer-column a {
        font-size: 12px;
    }
    
    .footer-copyright {
        padding: 15px;
    }
    
    .copyright-left p,
    .copyright-right p {
        font-size: 10px;
    }
    
    .payment-icon {
        width: 45px;
        height: 30px;
        font-size: 16px;
    }
    
    .security-badge {
        font-size: 11px;
        padding: 8px 10px;
    }
    
    .newsletter-form h3 {
        font-size: 16px;
    }
    
    .newsletter-subtitle {
        font-size: 13px;
    }
    
    .social-title {
        font-size: 16px;
    }
}
