/* ========== VARIÁVEIS ========== */
:root {
    --bg-dark: #fff;
    --bg-card: #fff;
    --bg-section: #f9f9f9;
    --bg-signals: #0f172a;
    --primary: #005eff;
    --primary-hover: #0046c7;
    --accent: #00e676;
    --text: #fff;
    --text-muted: #94a3b8;
    --text-footer-small: #64748b;
    --text-dark: #1a1a1a;
    --text-product: #333;
    --text-meta: #888;
    --text-strike: #bbb;
    --border: #eee;
    --border-light: rgba(255, 255, 255, 0.1);
    --overlay: rgba(0, 0, 0, 0.6);
    --overlay-nav: rgba(0, 0, 0, 0.95);
    --nav-bg: rgba(0, 0, 0, 0.8);
    --nav-bg-solid: #000;
    --gradient-overlay: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, transparent 100%);

    --shadow-nav: 0 2px 15px rgba(0, 0, 0, 0.5);
    --shadow-card: 0 4px 15px rgba(0, 0, 0, 0.08);
    --shadow-card-hover: 0 12px 24px rgba(0, 0, 0, 0.2);
    --shadow-icon: 0 0 20px rgba(0, 94, 255, 0.2);

    --font-main: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;

    --transition-fast: 0.2s;
    --transition: 0.3s;
    --transition-slow: 0.4s;

    --nav-height: 8vh;
    --section-padding: 60px 10%;
    --section-padding-narrow: 40px 10%;
    --container-padding: 10%;
    --hero-bg: url("../Imagens/Group 3.svg");

    --radius-sm: 8px;
    --radius: 10px;
    --radius-md: 12px;
    --radius-lg: 15px;
    --radius-xl: 20px;
}

/* ========== RESET & BASE ========== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-main);
    background: var(--bg-dark);
    color: var(--text);
    overflow-x: hidden;
    padding-top: var(--nav-height);
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    font-family: var(--font-main);
}

h1 {
    font-weight: 700;
}

h2 {
    font-weight: 600;
}

h3,
h4 {
    font-weight: 700;
}

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
}

/* ========== NAV ========== */
nav {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-height);
  padding: 0 7%;
  background: var(--bg-dark);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
  z-index: 2000;
}

.logo {
    position: absolute;
    left: 5%;
    display: flex;
    align-items: center;
    height: 100%; /* Garante que o link ocupe a altura da nav */
    z-index: 10;
    margin-top: 12.5px;
}

/* Ajuste da Imagem (Proporcional ao Header) */
.logo-img {
    /* Como a imagem está 'refilada', 65px a 75px já é um tamanho bem grande */
    height: clamp(75px, 27vw, 120px);   
    width: auto;        /* Mantém a proporção original da logo */
    display: block;
    object-fit: contain;
    
    /* Suaviza a transição caso você adicione efeitos */
    transition: transform var(--transition-fast);
    
}

/* Hover opcional para dar um toque moderno */
.logo-img:hover {
    transform: scale(1.03);
}

.nav-list {
    list-style: none;
    display: flex;
    gap: 32px;
}

.nav-list a {
    color: #000;
    text-decoration: none;
    letter-spacing: 2px;
    font-size: 1.1rem;
    transition: color var(--transition);
}

.nav-list a:hover,
.nav-list a.active {
    color: #44C662;
}

.nav-right {
    position: absolute;
    right: 7%;
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-icons {
    display: flex;
    gap: 28px;
}

.nav-icons a {
    display: inline-flex;
    position: relative;
    text-decoration: none;
    outline: none;
    border: none;
}

.nav-icons a i {
    color: #000;
    font-size: 1.5rem;
    transition: color var(--transition);
}

.nav-icons a i:hover {
    color: var(--primary);
}

.cart-badge {
    position: absolute;
    top: -8px;
    right: -10px;
    width: 17px;
    height: 17px;
    display: none;
    align-items: center;
    justify-content: center;
    background: var(--accent);
    color: var(--bg-dark);
    font-size: 10px;
    font-weight: 700;
    border-radius: 50%;
    z-index: 10;
    pointer-events: none;
}

.cart-badge.active {
    display: flex;
    animation: pop-in 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

.mobile-menu {
    display: none;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu div {
    width: 25px;
    height: 2px;
    margin: 6px 0;
    background: var(--text);
    transition: transform var(--transition-slow), opacity var(--transition);
}

.mobile-menu.toggle .line1,
.mobile-menu.open .line1 {
    transform: rotate(-45deg) translate(-5px, 8px);
}

.mobile-menu.toggle .line2,
.mobile-menu.open .line2 {
    opacity: 0;
}

.mobile-menu.toggle .line3,
.mobile-menu.open .line3 {
    transform: rotate(45deg) translate(-5px, -8px);
}

/* ========== HERO ========== */
.hero-section {
    height: calc(100vh - var(--nav-height));
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 10%;
    color: var(--text);
    background-image: linear-gradient(var(--overlay), var(--overlay)), var(--hero-bg);
    background-size: cover;
    background-position: center;
}

.hero-content {
    width: 100%;
    max-width: 550px;
    text-align: left;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
}

.btn-comprar {
    display: inline-flex;
    align-items: center;
    padding: 15px 35px;
    background: #37AD44;
    color: var(--text);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 700;
    border-radius: var(--radius-sm);
    width: fit-content;
    transition: background var(--transition), transform var(--transition-fast);
}

.btn-comprar:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
}

/* ========== CATEGORIAS ========== */


/* ========== PRODUTOS ========== */
.products-section {
    padding: var(--section-padding);
    background: var(--bg-section);
}

.products-header {
    text-align: center;
    margin-bottom: 40px;
}

.products-header h2 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.products-header p {
    color: var(--bg-dark);
}

.products-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 25px;
    padding-top: 20px;
}

.product-card {
    width: 100%;
    max-width: 280px;
    display: flex;
    flex-direction: column;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    overflow: hidden;
    transition: transform var(--transition);
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.product-info {
    padding: 20px;
    text-align: left;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.product-category {
    font-size: 0.8rem;
    color: var(--text-meta);
}

.product-title {
    font-size: 1rem;
    color: var(--text-product);
    font-weight: 600;
    margin: 5px 0;
}

.product-rating {
    font-size: 0.85rem;
    margin-bottom: 15px;
}

.product-price-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.old-price {
    display: block;
    font-size: 0.8rem;
    color: var(--text-strike);
    text-decoration: line-through;
}

.current-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
}

.btn-cart {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: var(--text);
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: background var(--transition-fast);
}

.btn-cart:hover {
    background: var(--primary-hover);
}

/* ========== PROMO BANNER ========== */
.promo-banner-container {
    padding: var(--section-padding-narrow);
    background: var(--bg-card);
}

.promo-banner {
    width: 100%;
    min-height: 350px;
    border-radius: var(--radius-xl);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    padding: 60px;
    color: var(--text);
    overflow: hidden;
}

.promo-content {
    max-width: 500px;
}

.promo-badge {
    display: inline-block;
    padding: 8px 15px;
    margin-bottom: 20px;
    background: var(--accent);
    color: var(--bg-dark);
    font-size: 0.9rem;
    font-weight: 700;
    border-radius: var(--radius);
}

.promo-title {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 15px;
}

.promo-subtitle {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.promo-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: var(--primary);
    color: var(--text);
    text-decoration: none;
    font-weight: 600;
    border-radius: var(--radius-md);
    transition: background var(--transition);
}

.promo-button:hover {
    background: var(--primary-hover);
}

/* ========== TRUST SIGNALS ========== */
.trust-signals {
    padding: var(--section-padding);
    background: var(--bg-signals);
    color: var(--text);
    display: flex;
    justify-content: center;
}

.signals-container {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    gap: 30px;
    width: 100%;
    max-width: 1200px;
}

.signal-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.signal-icon {
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 1.6rem;
    color: var(--text);
    border-radius: 50%;
    box-shadow: var(--shadow-icon);
}

.signal-icon.icon-blue {
    background: var(--primary);
}

.signal-icon.icon-green {
    background: var(--accent);
}

.signal-item h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 12px;
}

.signal-item p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ========== FOOTER ========== */
.main-footer {
    padding: 60px 10% 20px;
    background: var(--bg-dark);
    color: var(--text);
    border-top: 1px solid var(--border-light);
    background: #000;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-column {
    flex: 1;
    min-width: 200px;
}

.footer-column h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-column p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 250px;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: var(--text-muted);
    font-size: 0.9rem;
    text-decoration: none;
    transition: color var(--transition);
}

.footer-column ul li a:hover {
    color: var(--primary);
}

.social-icons,
.payment-icons {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    font-size: 1.2rem;
}

.social-icons a {
    color: var(--text);
    transition: transform var(--transition), color var(--transition);
}

.social-icons a:hover {
    color: var(--primary);
    transform: translateY(-3px);
}

.footer-bottom {
    margin-top: 50px;
    padding-top: 25px;
    border-top: 1px solid var(--border-light);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: var(--text-footer-small);
}

/* ========== ANIMAÇÕES ========== */
@keyframes pop-in {
    from {
        transform: scale(0);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* ========== MEDIA QUERIES (agrupadas no final) ========== */

@media (max-width: 950px) {

    nav {
        display: flex !important;
        flex-direction: row;
        justify-content: space-between;
        /* Empurra logo para esquerda e o resto para direita */
        align-items: center;
        padding: 0 5%;
        height: 80px !important;
        /* Altura fixa para controle do menu */
        background: #fff;
        position: fixed;
        top: 0;
        width: 100%;
        z-index: 2000;
    }

    .logo {
        position: static;
        font-size: 1.2rem;
        margin: 0;

    }

    .nav-right {
        display: flex;
        align-items: center;
        /* Define um espaçamento fixo e pequeno entre carrinho, perfil e menu */
        gap: 20px !important;
        /* Garante que o container não cresça mais que o necessário */
        width: auto;
        justify-content: flex-end;
        position: static;
    }

    .nav-icons {
        display: flex;
        gap: 20px;
        align-items: center;
    }

    .mobile-menu {
        /* Removemos o position absolute das linhas para centralizar melhor */
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        position: relative;
        width: 30px;
        height: 30px;
        order: 3;
        /* Garante que o hambúrguer seja o último item à direita */
    }

    .mobile-menu div {
        width: 28px;
        height: 2px;
        background: #000;
        margin: 0;
        transition: transform var(--transition-slow);
        position: absolute;
    }

    .line1 {
        transform: translateY(-8px);
    }

    .line2 {
        transform: translateY(0);
    }

    .line3 {
        transform: translateY(8px);
    }

    .mobile-menu.toggle .line1 {
        transform: rotate(-45deg) translateY(0);
    }

    .mobile-menu.toggle .line2 {
        opacity: 0;
    }

    .mobile-menu.toggle .line3 {
        transform: rotate(45deg) translateY(0);
    }

    .nav-list {
        position: fixed;
        /* Deve ser EXATAMENTE a mesma altura definida no nav */
        top: 80px !important;
        left: 0;
        width: 100%;
        /* Altura total menos a altura do header para não vazar embaixo */
        height: calc(100vh - 80px) !important;

        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 40px 5%;

        background: rgba(255, 255, 255, 0.5);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);

        transform: translateX(100%);
        transition: transform 0.4s ease-in-out;
        z-index: 1999;
        /* Um número abaixo da nav (2000) para ficar "atrás" dela */
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-list.active {
        transform: translateX(0);
    }

    .nav-list li {
        width: 100%;
        border-bottom: 1px solid #000;
        color: #000;
        text-align: center;
    }

    .nav-icons a i {
        color: #000 !important;
    }

    .nav-list a {
        font-size: 1.1rem;
        display: block;
        padding: 10px 0;
        color: black;
    }


    .hero-section {
        padding: 0 8%;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        text-align: left;
    }

    .hero-content {
        max-width: 85%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-content p {
        font-size: 1rem;
        max-width: 350px;
        margin-bottom: 25px;
    }

    .btn-comprar {
        width: 60%;
        min-width: 180px;
        max-width: 280px;
        padding: 12px 20px;
        font-size: 0.9rem;
        justify-content: center;
        margin: 0;
    }

    .categories-section {
        padding: 40px 5%;
    }

    .categories-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .category-card {
        width: 100%;
        height: 170px;
        border-radius: var(--radius-lg);
    }

    .category-card:last-child {
        grid-column: span 2;
        height: 140px;
    }
}
@media (min-width: 875px) and (max-width: 999px) {
    .categories-grid {
        display: grid;
        grid-template-columns: repeat(3, 220px);
        justify-content: center;
        gap: 20px;
    }

    .category-card {
        width: 220px !important;
        height: 220px !important;
        aspect-ratio: 1 / 1;
    }

    .category-card:last-child {
        grid-column: auto;
        width: 220px !important;
        height: 220px !important;
    }
}

@media (max-width: 600px) {
    .categories-section {
        padding: 40px 5%;
    }

    .categories-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .category-card {
        width: 100%;
        height: auto;
        border-radius: var(--radius-lg);
    }

    .category-card:last-child {
        grid-column: span 2;
        aspect-ratio: 2 / 1;
    }
}

@media (max-width: 768px) {
    .product-card {
        max-width: 320px;
    }

    .products-grid {
        padding: 20px 5%;
        gap: 20px;
    }

    .promo-banner-container {
        padding: 20px 5%;
    }

    .promo-banner {
        padding: 40px 30px;
        min-height: 450px;
        align-items: flex-end;
        background-position: 70% center;
    }

    .promo-title {
        font-size: 2rem;
    }

    .signals-container {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 50px;
        text-align: center;
    }

    .signal-item {
        width: 100%;
        max-width: 280px;
    }

    .trust-signals {
        padding: 60px 5%;
    }

    .footer-container {
        flex-direction: column;
        gap: 40px;
    }

    .footer-column {
        text-align: left;
    }

    .footer-column p {
        max-width: 100%;
    }

    .main-footer {
        padding: 50px 8% 30px;
    }
}

@media (min-width: 950px) and (max-width: 1250px) {
    /* 1. Reset total para garantir que nada empurre o header */
    body {
        margin-top: 0 !important;
        padding-top: 0 !important;
    }

    nav {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        padding: 0 !important;
        /* Ajustamos a altura para ser exatamente o tamanho da logo */
        height: 80px !important; 
        position: fixed; /* Ou absolute, conforme seu projeto */
        top: 0;
        left: 0;
        width: 100%;
        background: #fff;
        z-index: 2000;
        /* Remove sombras ou bordas que podem parecer espaços brancos */
        border: none !important;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1); 
    }

    .logo {
        margin: 0 !important;
        padding-left: 10px !important; /* Colado na parede esquerda */
    }

    .logo img {
        height: 120px !important; /* Sua altura solicitada */
        display: block;
        transform: translateX(-4vw);
    }

    /* 2. Centralização absoluta sem bugar o topo */
    .nav-list {
        position: absolute !important;
        left: 50% !important;
        top: 50% !important;
        transform: translate(-50%, -50%) !important;
        margin: 0 !important;
        display: flex !important;
        flex-direction: row !important;
        gap: 20px !important;
    }

    .nav-right {
        padding-right: 15px !important; /* Colado na parede direita */
        margin: 0 !important;
    }
}

.footer-column h3 span {
    color: #44C662; 
}

.products-header p {
    color: #000;
}

/* Container que agrupa o ícone e o menu secreto */
.profile-container {
    position: relative;
    display: inline-flex;
    align-items: center;
}

/* O Menu: inicialmente invisível e deslocado para baixo */
.profile-dropdown {
    display: none;
    position: absolute;
    top: 100%; /* Gruda no fundo do header */
    right: 0;   /* Alinha o menu pela direita para não vazar da tela */
    background-color: #ffffff;
    min-width: 180px;
    padding: 10px 0;
    margin-top: 10px; /* Pequeno respiro do ícone */
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    list-style: none;
    z-index: 3000;
}

/* Mostra o menu quando o mouse passa no container */
.profile-dropdown.active {
    display: block;
    animation: dropDownAnim 0.3s ease;
}

/* Garante que o container não tenha comportamentos de hover disparando o menu */
.profile-container:hover .profile-dropdown {
    display: none; 
}
/* Mas se a classe active estiver presente, ele deve mostrar */
.profile-container .profile-dropdown.active {
    display: block;
}

/* Estilização dos itens da lista */
.profile-dropdown li a {
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #333 !important;
    font-size: 0.9rem;
    text-decoration: none;
    transition: background 0.2s;
    letter-spacing: normal; /* Reseta o espaçamento de 2px da nav */
}

.profile-dropdown li a:hover {
    background-color: #f8f9fa;
    color: #005eff !important; /* Cor primary */
}

/* Linha divisória antes do 'Sair' */
.dropdown-divider {
    height: 1px;
    background-color: #eee;
    margin: 5px 0;
}

.logout {
    color: #e74c3c !important; /* Vermelho para o sair */
}

/* Animação suave */
@keyframes dropDownAnim {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}


#mobile-menu.active .line1 { transform: rotate(-45deg) translate(-8px, 8px); }
#mobile-menu.active .line2 { opacity: 0; }
#mobile-menu.active .line3 { transform: rotate(45deg) translate(-5px, -7px); }

/* Container que surgirá na tela */
.custom-alert {
    position: fixed;
    top: 25px;
    right: 25px;
    background: #1a1a1a; /* Fundo escuro elegante */
    color: #fff;
    padding: 15px 25px;
    border-radius: 8px;
    border-left: 5px solid #27ae60; /* Verde Nutrir Vida */
    box-shadow: 0 10px 25px rgba(0,0,0,0.4);
    font-family: 'Poppins', sans-serif;
    z-index: 999999;
    display: flex;
    align-items: center;
    gap: 12px;
    animation: slideIn 0.4s ease-out forwards;
}

@keyframes slideIn {
    from { transform: translateX(120%); }
    to { transform: translateX(0); }
}

.custom-alert.hide {
    animation: slideOut 0.4s ease-in forwards;
}

@keyframes slideOut {
    to { transform: translateX(120%); opacity: 0; }
}

@media (min-width: 1025px) {
    :root {
        --hero-bg: url("../Imagens/Group 2.png"); /* Sua imagem original */
        
    }
}


/* ========== AJUSTE ESPECÍFICO PARA NEXT HUB (TELAS LARGAS E BAIXAS) ========== */
@media (min-width: 1000px) and (max-height: 610px) {
    
    .hero-section {
        /* 1. Ajustamos o fundo para focar na parte de baixo da imagem (onde estão os suplementos) */
        background-position: center 85% !important; 
        
        /* 2. Reduzimos o padding para o conteúdo subir */
        padding-top: 20px !important;
        padding-bottom: 20px !important;
        
        /* 3. Garantimos que a seção não ultrapasse a tela */
        height: calc(100vh - 70px) !important; 
        align-items: center !important;
    }

    .hero-content {
        /* 4. Diminuímos a largura máxima para o texto não espalhar tanto */
        max-width: 450px !important;
        /* 5. Subimos um pouco o bloco de texto */
        transform: translateY(-20px);
    }

    .hero-content h1 {
        /* 6. Reduzimos o título para ganhar espaço vertical */
        font-size: 2rem !important;
        line-height: 1.1 !important;
        margin-bottom: 10px !important;
    }

    .hero-content p {
        /* 7. Texto menor e com menos margem */
        font-size: 0.9rem !important;
        margin-bottom: 15px !important;
        line-height: 1.3 !important;
    }

    .btn-comprar {
        /* 8. Botão um pouco mais compacto */
        padding: 10px 25px !important;
        font-size: 0.85rem !important;
    }
}


/* Ajustes para os novos preços no card da Index */
.price-pix-row {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.pix-label {
    color: #27ae60;
    font-weight: bold;
    font-size: 0.75rem;
    text-transform: uppercase;
}

.price-card-row {
    margin-top: 2px;
}

.card-details {
    color: #666;
    font-size: 0.7rem;
    display: block;
}

/* Garante que o container de preços tenha espaço */
.product-price-container {
    flex-direction: row !important;
    justify-content: space-between;
    align-items: flex-end;
}

/* Container do botão */
.ver-todos-container {
    padding: 20px 0;
    margin-top: 40px;
}

/* O Botão de Promoções */
.btn-ver-promocoes {
    display: inline-block;
    padding: 15px 40px;
    background-color: #00FF88; /* Verde destaque da sua paleta */
    color: #000000;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px; /* Estilo pílula, muito moderno */
    box-shadow: 0 4px 15px rgba(0, 255, 136, 0.3);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

/* Efeito ao passar o mouse */
.btn-ver-promocoes:hover {
    background-color: #000000;
    color: #00FF88;
    border-color: #00FF88;
    transform: translateY(-3px); /* Eleva o botão levemente */
    box-shadow: 0 8px 25px rgba(0, 255, 136, 0.5);
}

/* Efeito ao clicar */
.btn-ver-promocoes:active {
    transform: translateY(-1px);
}

/* Responsividade para celular */
@media (max-width: 480px) {
    .btn-ver-promocoes {
        width: 80%;
        padding: 12px 20px;
        font-size: 0.9rem;
    }
}


.marquee-container {
    background-color: #000000;
    overflow: hidden;
    width: 100%;
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
    padding: 15px 0;
    display: flex;
    position: relative;
}

.marquee-content {
    display: flex;
    white-space: nowrap;
    /* A mágica do loop infinito sem buracos está aqui */
    animation: marquee-animation 30s linear infinite;
    width: max-content;
}

.marquee-content span {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding-right: 50px; /* Espaço entre o fim de uma frase e o início da outra */
}

.marquee-content .highlight {
    color: #00FF88;
}

/* Removido o seletor de :hover para não parar o letreiro */

@keyframes marquee-animation {
    0% {
        transform: translateX(0);
    }
    100% {
        /* Move exatamente metade do conteúdo duplicado para o loop ser perfeito */
        transform: translateX(-50%);
    }
}

.diferenciais-container {
    display: flex;
    justify-content: space-between; /* Distribui os itens igualmente */
    align-items: center;
    gap: 20px;
    padding: 30px 5%; /* Espaçamento nas laterais para não encostar na borda da tela */
    background-color: #ffffff; /* Fundo totalmente branco */
    width: 100%;
    box-sizing: border-box;
}

.diferencial-item {
    background: #ffffff;
    display: flex;
    align-items: center;
    padding: 15px 25px; /* Aumentado para dar mais "corpo" */
    border-radius: 50px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08); /* Sombra um pouco mais visível */
    flex: 1; /* Faz todos os itens terem o mesmo tamanho e ocuparem o espaço disponível */
    min-width: 200px; /* Impede que fiquem espremidos demais */
    border: 1px solid #eee; /* Uma borda fina para destacar no fundo branco */
    transition: all 0.3s ease;
}


.diferencial-icon {
    background-color: #00FF88;
    width: 60px;  /* Ícone maior */
    height: 60px; /* Ícone maior */
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 20px;
    flex-shrink: 0; /* Impede o círculo de amassar */
}

.diferencial-icon i {
    color: #000;
    font-size: 1.5rem; /* Ícone interno maior */
}

.diferencial-text strong {
    display: block;
    font-size: 1.1rem; /* Texto maior */
    color: #000;
    text-transform: uppercase;
}

.diferencial-text p {
    font-size: 0.9rem; /* Subtexto maior */
    color: #666;
    margin: 0;
}

/* Responsividade para Celular */
@media (max-width: 1024px) {
    .diferenciais-container {
        flex-wrap: nowrap; /* Impede terminantemente a quebra de linha */
        justify-content: space-between;
        gap: 3px; /* Espaço mínimo entre os itens */
        padding: 25px 25px;
    }
    
    .diferencial-item {
        flex: 1;
        flex-direction: column;
        text-align: center;
        background: transparent;
        box-shadow: none;
        border: none;
        padding: 0;
        min-width: 0; /* Permite que o item encolha para caber */
    }

    .diferencial-icon {
        margin-right: 0;
        margin-bottom: 8px;
        width: 70px; /* Círculo reduzido para caber lado a lado */
        height: 70px;
    }

    .diferencial-icon i {
        font-size: 1.1rem; /* Ícone menor */
    }

    .diferencial-text strong {
        font-size: 0.65rem; /* Fonte pequena para evitar quebra de palavras */
        white-space: normal;
        line-height: 1.1;
        display: block;
    }

    /* Esconde a descrição no mobile para ganhar espaço vertical e manter a linha limpa */
    .diferencial-text p {
        font-size: 0.65rem; /* Fonte pequena para evitar quebra de palavras */
        white-space: normal;
        line-height: 1.1;
        display: block;
    }
}

@media (max-width: 600px) {
    .diferenciais-container {
        padding: 10px 2px;
    }

    .diferencial-icon {
        width: 45px;
        height: 45px;
    }

    .diferencial-text strong {
        font-size: 0.6rem;
        letter-spacing: 0; /* Remove espaçamento entre letras para ganhar espaço */
    }
}

.insta-vitrine-full {
    width: 100%;
    background-color: #fff;
    line-height: 0; /* Remove espaços brancos entre as linhas de fotos */
}

.insta-grid-double {
    display: grid;
    /* Desktop: 6 colunas iguais */
    grid-template-columns: repeat(6, 1fr); 
    width: 100%;
}

.insta-item-full {
    position: relative;
    aspect-ratio: 1 / 1; /* Garante que seja sempre um quadrado perfeito */
    overflow: hidden;
    display: block;
}

.insta-item-full img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.insta-overlay-full {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 255, 136, 0.3); /* Overlay verde neon transparente */
    display: flex;
    justify-content: center;
    align-items: center;
    color: #000;
    font-size: 1.5rem;
    opacity: 0;
    transition: 0.3s;
}

.insta-item-full:hover img { transform: scale(1.1); }
.insta-item-full:hover .insta-overlay-full { opacity: 1; }

/* --- Ajuste de Responsividade --- */

@media (max-width: 1024px) {
    .insta-grid-double {
        /* Tablet: 4 colunas (3 linhas) */
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 600px) {
    .insta-grid-double {
        /* Celular: 3 colunas (4 linhas) - Fica igual ao feed do Insta real */
        grid-template-columns: repeat(3, 1fr);
    }
}

.insta-titulo-topo {
    text-align: center;
    padding: 40px 20px;
    background-color: #ffffff;
}

.insta-titulo-topo i {
    font-size: 2.5rem;
    color: #E1306C; /* Cor do Instagram para dar destaque */
    margin-bottom: 10px;
}

.insta-titulo-topo h1 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

.insta-titulo-topo p {
    font-size: 1rem;
    color: #666;
    margin-top: 5px;
}

/* Ajuste Mobile para o Título */
@media (max-width: 600px) {
    .insta-titulo-topo {
        padding: 30px 15px;
    }
    .insta-titulo-topo h1 {
        font-size: 1.4rem;
    }
    .insta-titulo-topo p {
        font-size: 0.85rem;
    }
}