/* Start custom CSS for html, class: .elementor-element-6aa6ee6 *//* ============================================
   THEME COLORS & VARIABLES
   ============================================ */
  
:root {
    --primary-color: #e74c3c;
    --accent-color: #27ae60;
    --bg-white: #ffffff;
    --bg-light-gray: #f5f5f5;
    --bg-muted: #ececec;
    --text-dark: #333333;
    --text-gray: #888888;
    --text-light-gray: #999999;
    --border-color: #e8e8e8;
    --blue-accent: #3498db;
    --green-accent: #27ae60;
    --success-color: #2ecc71;
    --red-warning: #c0392b;
    
    /* Radius */
    --border-radius: 10px;
    --border-radius-lg: 16px;
}

/* --- INÍCIO DO CÓDIGO DO CABEÇALHO COPIADO DA HOME --- */

/* TOP BAR */
.top-bar { background-color: #006241; padding: 8px 0; }
.top-nav { display: flex; justify-content: center; align-items: center; gap: 12px; flex-wrap: wrap; }
.top-nav a { color: white; font-size: 12px; font-weight: 400; transition: opacity 0.2s; }
.top-nav a:hover { opacity: 0.8; }
.top-nav .separator { color: rgba(255, 255, 255, 0.5); font-size: 12px; }

/* HEADER */
.header { background-color: white; padding: 4px 0; border-bottom: 1px solid #e5e5e5; }
.header-content { display: flex; align-items: center; justify-content: space-between; gap: 30px; }

/* Logo */
.logo { display: flex; align-items: center; flex-shrink: 0; }
.logo a { display: block; line-height: 0; }
.logo-image { height: 80px !important; width: auto !important; }

/* Search */
.search-container { flex: 1; max-width: 550px; min-width: 300px; display: flex; flex-direction: column; gap: 6px; }
.search-box { display: flex; border: 2px solid #006241; border-radius: 8px; overflow: hidden; }
.search-input { flex: 1; padding: 12px 16px; border: none; outline: none; font-size: 14px; }
.search-input::placeholder { color: #999; }
.search-button { background-color: #006241; color: white; border: none; padding: 12px 20px; cursor: pointer; transition: background-color 0.3s ease; }
.search-button:hover { background-color: #004d33; }
.schedule { display: flex; align-items: center; gap: 6px; font-size: 12px; color: #666; }
.schedule svg { color: #006241; }

/* Offers Button */
.offers-button { display: flex; align-items: center; gap: 8px; background-color: #D4AF37; color: white; padding: 12px 24px; border-radius: 8px; font-weight: 600; font-size: 14px; transition: background-color 0.3s ease; box-shadow: 0 2px 8px rgba(212, 175, 55, 0.3); }
.offers-button:hover { background-color: #b8982e; }

/* Mobile Top Bar */
.top-bar-mobile { background-color: #006241; padding: 8px 0; display: block; }
.mobile-topbar-content { display: flex; align-items: center; justify-content: space-between; height: 44px; margin-bottom: 10px; }
.hamburger-menu { display: flex; flex-direction: column; align-items: center; gap: 1px; background: none; border: none; color: white; cursor: pointer; padding: 2px; width: 44px; flex-shrink: 0; }
.hamburger-menu span { font-size: 9px; font-weight: 600; text-transform: uppercase; }
.mobile-logo { flex: 1; display: flex; justify-content: center; align-items: center; height: 44px; padding: 0 8px; }
.mobile-logo-image { height: 40px; width: auto; max-width: 50%; object-fit: contain; }
.mobile-offers-btn { display: flex; align-items: center; justify-content: center; background-color: #D4AF37; color: white; width: 38px; height: 38px; padding: 0; border-radius: 50%; transition: background-color 0.3s ease; flex-shrink: 0; }
.mobile-search { width: 100%; display: block; }
.mobile-search .search-box { border: none; border-radius: 25px; overflow: hidden; background: white; }
.mobile-search .search-input { padding: 10px 16px; font-size: 14px; }
.mobile-search .search-button { padding: 10px 14px; border-radius: 0 25px 25px 0; }

/* Ajustes Responsivos */
@media (max-width: 768px) {
  .header-content { flex-direction: column; }
  .top-bar-desktop { display: none; }
  .header-desktop { display: none; }
}

@media (min-width: 769px) {
  .top-bar-mobile { display: none; }
}
/* --- FIM DO CÓDIGO DO CABEÇALHO --- */

/* ============================================
   RESET & BASE STYLES
   ============================================ */
   
   html {
    scroll-behavior: smooth;
}
   
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
}

body.bg-background {
    background-color: var(--bg-white);
}

/* ============================================
   CONTAINER & LAYOUT
   ============================================ */
.container {
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
}

.py-3 {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}

.py-4 {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.py-8 {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.py-12 {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.mt-12 {
    margin-top: 3rem;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

.mb-3 {
    margin-bottom: 0.75rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

/* ============================================
   HEADER
   ============================================ */
.header {
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
}

.sticky-header {
    position: sticky;
    top: 0;
    z-index: 50;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
}

.logo-box {
    width: 40px;
    height: 40px;
    border-radius: var(--border-radius);
    background-color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.125rem;
}

.logo-text {
    display: none;
    font-size: 1.125rem;
    font-weight: bold;
    color: var(--text-dark);
}

/* Search Bar */
.search-bar {
    display: none;
    flex: 1;
    max-width: 448px;
}

@media (min-width: 768px) {
    .logo-text {
        display: inline;
    }

    .search-bar {
        display: flex;
    }
}

.search-input-wrapper {
    position: relative;
    width: 100%;
}

.search-icon {
    position: absolute;
    left: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1rem;
    height: 1rem;
    color: var(--text-light-gray);
    stroke-width: 2;
}

.search-input {
    width: 100%;
    padding: 0.5rem 0 0.5rem 2.5rem;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    background-color: var(--bg-muted);
    font-size: 0.875rem;
    color: var(--text-dark);
}

.search-input::placeholder {
    color: var(--text-light-gray);
}

.search-input:focus {
    outline: none;
    border-color: var(--accent-color);
    background-color: var(--bg-white);
}

/* Header Icons */
.header-icons {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.icon-button {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 0.75rem;
    color: var(--text-dark);
    transition: color 0.2s;
}

@media (min-width: 640px) {
    .icon-button {
        display: flex;
    }
}

.icon-button:hover {
    color: var(--primary-color);
}

.icon {
    width: 1.25rem;
    height: 1.25rem;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
}

.icon-label {
    display: none;
    font-size: 0.75rem;
    font-weight: 500;
}

@media (min-width: 1024px) {
    .icon-label {
        display: inline;
    }
}

.cart-button {
    position: relative;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-dark);
    transition: color 0.2s;
}

.cart-button:hover {
    color: var(--primary-color);
}

.cart-badge {
    position: absolute;
    top: -0.5rem;
    right: -0.5rem;
    width: 1.25rem;
    height: 1.25rem;
    background-color: var(--primary-color);
    border-radius: 50%;
    color: white;
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

/* Mobile Search */
.mobile-search {
    display: block;
    margin-top: 0.75rem;
}

@media (min-width: 768px) {
    .mobile-search {
        display: none;
    }
}

/* ============================================
   BREADCRUMBS
   ============================================ */
.breadcrumbs {
    border-bottom: 1px solid var(--border-color);
    background-color: var(--bg-white);
}

.breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-light-gray);
}

.breadcrumb-link {
    color: var(--text-light-gray);
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumb-link:hover {
    color: var(--primary-color);
}

.breadcrumb-current {
    color: var(--text-dark);
    font-weight: 500;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
    background-color: var(--bg-white);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .hero-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

/* Product Image */
.hero-image-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.product-image-box {
    position: relative;
    background: linear-gradient(135deg, var(--bg-muted) 0%, var(--bg-light-gray) 100%);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (min-width: 768px) {
    .product-image-box {
        aspect-ratio: auto;
        height: 500px;
    }
}

.image-placeholder {
    text-align: center;
    color: var(--text-light-gray);
    font-size: 0.875rem;
    width: 192px;
    height: 192px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (min-width: 768px) {
    .image-placeholder {
        width: 256px;
        height: 256px;
    }
}

/* Badges */
.badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.375rem 0.75rem;
    border-radius: var(--border-radius);
    color: white;
    border: none;
    font-size: 0.75rem;
    font-weight: 500;
}

.badge-accent {
    top: 1rem;
    left: 1rem;
    background-color: var(--primary-color);
}

.badge-blue {
    top: 1rem;
    right: 1rem;
    background-color: var(--blue-accent);
}

.badge-icon {
    width: 0.75rem;
    height: 0.75rem;
}

/* Hero Content */
.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.5rem;
}

/* Product Title */
.product-title-section {
    border-bottom: none;
}

.product-title {
    font-size: 2rem;
    font-weight: bold;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .product-title {
        font-size: 2.25rem;
    }
}

@media (min-width: 1024px) {
    .product-title {
        font-size: 3rem;
    }
}

.product-meta {
    font-size: 0.875rem;
    color: var(--text-light-gray);
    space-y: 0.25rem;
}

.product-meta p {
    margin-bottom: 0.25rem;
}

.product-meta strong {
    color: var(--text-dark);
    font-weight: 600;
}

/* Price */
.price-section {
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 1rem 0;
}

.price-display {
    font-size: 2.25rem;
    font-weight: bold;
    color: var(--primary-color);
}

.currency {
    font-size: 1.25rem;
}

/* Rating */
.rating-section {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.stars {
    display: flex;
    gap: 0.25rem;
}

.star {
    font-size: 1rem;
    color: #fbc02d;
}

.rating-text {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-dark);
}

/* Stock Status */
.stock-status {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    width: fit-content;
    padding: 0.5rem 0.75rem;
    background-color: #f0fdf4;
    border: 1px solid #dcfce7;
    border-radius: var(--border-radius);
}

.stock-indicator {
    width: 0.5rem;
    height: 0.5rem;
    background-color: var(--success-color);
    border-radius: 50%;
}

.stock-text {
    font-size: 0.875rem;
    font-weight: 600;
    color: #166534;
}

/* Quantity Control */
.quantity-section {
    display: flex;
    gap: 0.75rem;
    flex-direction: column;
}

@media (min-width: 640px) {
    .quantity-section {
        flex-direction: row;
    }
}

.quantity-control {
    display: flex;
    align-items: center;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    background-color: var(--bg-white);
}

.qty-btn {
    padding: 0.5rem 1rem;
    color: var(--text-dark);
    background: none;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s;
    font-weight: 600;
}

.qty-btn:hover {
    background-color: var(--bg-muted);
}

.qty-display {
    padding: 0.5rem 1rem;
    color: var(--text-dark);
    font-weight: 600;
    min-width: 48px;
    text-align: center;
    border-left: 1px solid var(--border-color);
    border-right: 1px solid var(--border-color);
}

/* Add to Cart Button */
.btn-add-cart {
    padding: 0.75rem 1.5rem;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    flex: 1;
    transition: background-color 0.2s;
}

.btn-add-cart:hover {
    background-color: #c0392b;
}

.btn-icon {
    width: 1.25rem;
    height: 1.25rem;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
}

/* Bundle Card */
.bundle-card {
    padding: 1rem;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    background-color: rgba(231, 76, 60, 0.05);
}

.bundle-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.bundle-text {
    font-size: 0.875rem;
    color: var(--text-light-gray);
}

/* Delivery Info */
.delivery-info {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.delivery-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary-color);
}

.delivery-icon {
    width: 1.25rem;
    height: 1.25rem;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
}

.courier-logos {
    display: flex;
    gap: 1rem;
}

.courier-badge {
    width: 40px;
    height: 40px;
    background-color: var(--bg-muted);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: bold;
    color: var(--text-dark);
}

/* ============================================
   TRUST SECTION
   ============================================ */
.trust-section {
    background-color: rgba(236, 236, 236, 0.3);
    padding: 2rem 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .trust-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
}

.trust-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--primary-color);
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
    flex-shrink: 0;
}

.trust-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0;
}

.trust-subtitle {
    font-size: 0.75rem;
    color: var(--text-light-gray);
    margin-bottom: 0;
}

/* ============================================
   PROMOTIONAL SECTION
   ============================================ */
.promo-section {
    background-color: var(--bg-white);
}

.promo-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .promo-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.promo-card {
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    border: none;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 200px;
    color: white;
}

.promo-orange {
    background: linear-gradient(135deg, var(--primary-color) 0%, rgba(231, 76, 60, 0.7) 100%);
}

.promo-green {
    background: linear-gradient(135deg, #27ae60 0%, rgba(39, 174, 96, 0.7) 100%);
}

.promo-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.promo-subtitle {
    font-size: 0.875rem;
    opacity: 0.9;
}

.btn-promo {
    width: fit-content;
    padding: 0.5rem 1rem;
    background-color: white;
    color: var(--primary-color);
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
    font-size: 0.875rem;
}

.promo-green .btn-promo {
    color: #27ae60;
}

.btn-promo:hover {
    background-color: rgba(255, 255, 255, 0.9);
}

/* ============================================
   INFO SECTION
   ============================================ */
.info-section {
    background-color: var(--bg-white);
}

.info-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-block {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.info-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--text-dark);
}

.info-text {
    color: var(--text-dark);
    line-height: 1.6;
}

/* Benefits */
.benefits-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.benefit-item {
    display: flex;
    gap: 0.75rem;
    color: var(--text-dark);
}

.benefit-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--primary-color);
    flex-shrink: 0;
    margin-top: 0.125rem;
}

/* Ingredients */
.ingredients-box {
    background-color: var(--bg-muted);
    padding: 1rem;
    border-radius: var(--border-radius);
    font-size: 0.875rem;
    color: var(--text-dark);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.complete-ingredients {
    background-color: var(--bg-light-gray);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    font-size: 0.875rem;
    color: var(--text-dark);
}

/* Dosage */
.dosage-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.dosage-item {
    border-left: 4px solid var(--primary-color);
    padding-left: 1rem;
}

.dosage-title {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.dosage-text {
    color: var(--text-dark);
    line-height: 1.6;
}

/* Warnings */
.warnings-section {
    background-color: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: var(--border-radius);
    padding: 1.5rem;
}

.warnings-title {
    font-weight: bold;
    color: #7f1d1d;
    margin-bottom: 0.75rem;
}

.warnings-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #991b1b;
}

.warnings-list li {
    margin-left: 0;
    padding-left: 0;
}

/* ============================================
   FOOTER NOTE
   ============================================ */
.footer-note {
    background-color: rgba(236, 236, 236, 0.3);
    padding: 2rem 0;
    margin-top: 3rem;
    border-top: 1px solid var(--border-color);
}

.footer-text {
    font-size: 0.875rem;
    color: var(--text-light-gray);
    text-align: center;
}

/* ============================================
   RESPONSIVE UTILITIES
   ============================================ */
@media (max-width: 640px) {
    .quantity-section {
        flex-direction: column;
    }

    .btn-add-cart {
        width: 100%;
    }
}

/* ============================================
   TRANSITIONS & HOVER STATES
   ============================================ */
a, button {
    transition: all 0.2s ease;
}

button:active {
    opacity: 0.9;
}
/* Reset e Base */
/* Desabilita highlight no toque - Mobile */
* {
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  user-select: none;
  -webkit-user-select: none;
}

/* Permite seleção de texto normalmente */
p, span, a:not(button), button span {
  -webkit-user-select: text;
  user-select: text;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: #1a1a1a;
  background-color: #F9FBF9;
  line-height: 1.5;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

/* TOP BAR */
.top-bar {
  background-color: #006241;
  padding: 8px 0;
}

.top-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.top-nav a {
  color: white;
  font-size: 12px;
  font-weight: 400;
  transition: opacity 0.2s;
}

.top-nav a:hover {
  opacity: 0.8;
}

.top-nav .separator {
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
}

/* HEADER */
.header {
  background-color: white;
  padding: 4px 0;
  border-bottom: 1px solid #e5e5e5;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo a {
  display: block;
  line-height: 0;
}

.logo-image {
  height: 80px !important; /* Logo mais baixa */
  width: auto !important;
}

.footer-logo-image {
  height: 90px;
  width: auto;
  object-fit: contain;
}

/* Search */
.search-container {
  flex: 1;
  max-width: 550px;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.search-box {
  display: flex;
  border: 2px solid #006241;
  border-radius: 8px;
  overflow: hidden;
}

.search-input {
  flex: 1;
  padding: 12px 16px;
  border: none;
  outline: none;
  font-size: 14px;
}

.search-input::placeholder {
  color: #999;
}

.search-button {
  background-color: #006241;
  color: white;
  border: none;
  padding: 12px 20px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.search-button:hover {
  background-color: #004d33;
}

.schedule {
  display: flex;
  align-items: center;
  justify-content: center; /* Centraliza o conteúdo horizontalmente */
  gap: 6px;
  font-size: 12px;
  color: #666;
  width: 100%; /* Garante que ele ocupe toda a largura da caixa para centralizar correto */
  text-align: center;
}

.schedule svg {
  color: #006241;
}


/* Offers Button - CORRIGIDO */
.offers-button {
  display: flex;
  align-items: center;
  gap: 8px;
  background-color: #D4AF37; /* Adicionada a cor dourada definitiva */
  color: white;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  transition: background-color 0.3s ease;
  box-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
}

.offers-button:hover {
  background-color: #b8982e; /* Cor ligeiramente mais escura ao passar o rato */
}

/* CATEGORIES NAV */
.categories-nav {
  background-color: #1B4F72;
  padding: 0;
}

.categories-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.categories-list li a {
  display: block;
  color: white;
  padding: 8px 15px;
  font-size: 13px;
  font-weight: 500;
  transition: background-color 0.2s;
}

.categories-list li a:hover {
  background-color: rgba(0, 0, 0, 0.1);
}

/* PRODUCTS SECTION */
.products-section {
  padding: 48px 0;
}

.products-section:nth-child(even) {
  background-color: #f9fafb;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 16px;
}

.section-title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 24px;
  font-weight: 700;
  color: #1B4F72;
}

.title-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: white;
}

.title-icon-red {
  background-color: #ffffff;
}
.title-icon-red svg {
  display: none;
}

.title-icon-red {
  background-image: url('http://armazemclick.ro/wp-content/uploads/2026/03/icone-de-medalha.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.title-icon-green {
  background-color: #D4AF37;
}
.title-icon-green svg {
  display: none;
}

.title-icon-green {
  background-image: url('http://armazemclick.ro/wp-content/uploads/2026/03/Gemini_Generated_Image_7v7nej7v7nej7v7n.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.title-icon-blue {
  background-color: #006241;
}
.title-icon-blue svg {
  display: none;
}

.title-icon-blue {
  background-image: url('http://armazemclick.ro/wp-content/uploads/2026/03/relampago-minimalista-simples-do-raio-113274521.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.view-all {
  color: #1B4F72;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.3s ease;
}

.view-all:hover {
  color: #006241;
}

.products-grid {
  display: flex;             /* Mudamos de grid para flex para criar uma linha única */
  flex-wrap: nowrap;         /* Impede que os produtos desçam para a linha de baixo */
  overflow-x: auto;          /* Ativa a rolagem horizontal se não couberem todos */
  gap: 15px;                 /* Espaço entre os produtos */
  padding: 10px 5px;         /* Espaço para não cortar a sombra do card */
  scrollbar-width: thin;     /* Deixa a barra de rolagem discreta (Firefox) */
}

/* Estilização da barra de rolagem para Chrome/Edge/Safari */
.products-grid::-webkit-scrollbar {
  height: 6px;
}
.products-grid::-webkit-scrollbar-thumb {
  background: #e0e0e0;
  border-radius: 10px;
}

@media (max-width: 992px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .products-grid {
    grid-template-columns: 1fr;
  }
}

.product-card {
  position: relative; /* ESTA LINHA CORRIGE A DUPLICAÇÃO E O POSICIONAMENTO */
  flex: 0 0 180px;
  background-color: white;
  border-radius: 8px;
  padding: 10px;
  border: 1px solid #e5e5e5;
  transition: all 0.3s ease;
}

.product-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}

.badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  color: white;
  z-index: 1;
}

.badge-red {
  background-color: transparent;
  background-image: url('http://armazemclick.ro/wp-content/uploads/2026/03/Gemini_Generated_Image_fa0x4ofa0x4ofa0x.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 0;
  font-size: 0;
  color: transparent;
}

.badge-green {
  background-color: #006241;
}

.product-image {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 12px;
  background-color: #f5f5f5;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.product-card:hover .product-image img {
  transform: scale(1.05);
}

.product-name {
  font-size: 13px; /* Reduzido de 14px */
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 6px;
  line-height: 1.3;
  min-height: 34px; /* Ajustado para manter o alinhamento */
}

.product-prices {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.price-old {
  font-size: 13px;
  color: #999;
  text-decoration: line-through;
}

.price-new {
  font-size: 15px; /* Reduzido de 16px */
  font-weight: 700;
  color: #006241;
}

.add-to-cart {
  width: 100%;
  background-color: #E67E22;
  color: white;
  border: none;
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
  box-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
  /* ADICIONE ESTAS 4 LINHAS ABAIXO: */
  display: block;
  text-align: center;
  text-decoration: none;
  box-sizing: border-box;
}

/* ADICIONE ESTE BLOCO NOVO PARA OS LINKS DA IMAGEM/TÍTULO NÃO FICAREM AZUIS */
.product-card a {
  text-decoration: none;
  color: inherit;
}

.add-to-cart:hover {
  background-color: #b8982e;
}

/* FAQ SECTION */
.faq-section {
  padding: 64px 0;
  background-color: #F9FBF9;
}

.faq-title {
  text-align: center;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 32px;
  font-weight: 700;
  color: #1B4F72;
  margin-bottom: 12px;
}

.faq-subtitle {
  text-align: center;
  color: #666;
  margin-bottom: 40px;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background-color: white;
  border-radius: 8px;
  border: 1px solid #e5e5e5;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 15px;
  font-weight: 500;
  color: #1a1a1a;
  text-align: left;
  transition: background-color 0.2s;
}

.faq-question:hover {
  background-color: #f9fafb;
}

.faq-icon {
  transition: transform 0.3s;
  color: #666;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.faq-item.active .faq-answer {
  max-height: 200px;
}

.faq-answer p {
  padding: 0 20px 16px;
  color: #666;
  font-size: 14px;
  line-height: 1.6;
}

/* FOOTER */
.footer {
  background-color: #1a1a1a;
  color: white;
}

.footer-benefits {
  background-color: #006241;
  padding: 24px 0;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

@media (max-width: 768px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .benefits-grid {
    grid-template-columns: 1fr;
  }
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: white;
}

.benefit-item strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
}

.benefit-item span {
  display: block;
  font-size: 12px;
  opacity: 0.9;
}

/* Footer Main */
.footer-main {
  padding: 48px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 40px;
}

@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

.footer-column h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 20px;
  color: white;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  color: #999;
  font-size: 14px;
  transition: color 0.2s;
}

.footer-column ul li a:hover {
  color: #D4AF37;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-logo span {
  font-size: 24px;
  font-weight: 700;
  color: #D4AF37;
}

.footer-description {
  color: #999;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: #333;
  border-radius: 50%;
  color: white;
  transition: background-color 0.2s;
}

.social-links a:hover {
  background-color: #006241;
}

.contact-info p {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #999;
  font-size: 14px;
  margin-bottom: 12px;
}

.contact-info svg {
  color: #D4AF37;
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid #333;
  padding: 20px 0;
}

.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  color: #666;
  font-size: 13px;
}

.payment-methods {
  display: flex;
  align-items: center;
  gap: 12px;
}

.payment-methods span {
  color: #666;
  font-size: 13px;
}

.payment-icons {
  display: flex;
  gap: 8px;
}

.payment-icon {
  background-color: #333;
  color: white;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
}

/* =============================================
   MOBILE-ONLY ELEMENTS (Hidden on Desktop)
   ============================================= */

/* Hide mobile elements on desktop */
.top-bar-mobile,
.mobile-schedule,
.categories-nav-mobile,
.products-carousel-mobile {
  display: none;
}

/* Mobile Top Bar - ALTURA FIXA como Vegis */
.top-bar-mobile {
  background-color: #006241;
  padding: 8px 0;
}

.mobile-topbar-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 44px; /* Altura fixa para a linha de menu/logo/ofertas */
  margin-bottom: 10px;
}

.hamburger-menu {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1px;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  padding: 2px;
  width: 44px;
  flex-shrink: 0;
}

.hamburger-menu span {
  font-size: 9px;
  font-weight: 600;
  text-transform: uppercase;
}

/* Logo Mobile - Tamanho controlado dentro do espaco fixo */
.mobile-logo {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 44px;
  padding: 0 8px;
}

.mobile-logo-image {
  height: 40px;
  width: auto;
  max-width: 50%;
  object-fit: contain;
}

.mobile-offers-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #D4AF37;
  color: white;
  width: 38px;
  height: 38px;
  padding: 0;
  border-radius: 50%;
  transition: background-color 0.3s ease;
  flex-shrink: 0;
}

.mobile-offers-btn:hover {
  background-color: #b8982e;
}

.mobile-search {
  width: 100%;
}

.mobile-search .search-box {
  border: none;
  border-radius: 25px;
  overflow: hidden;
  background: white;
}

.mobile-search .search-input {
  padding: 10px 16px;
  font-size: 14px;
}

.mobile-search .search-button {
  padding: 10px 14px;
  border-radius: 0 25px 25px 0;
}

/* Mobile Schedule */
.mobile-schedule {
  background-color: white;
  padding: 8px 0;
  border-bottom: 1px solid #e5e5e5;
}

.mobile-schedule .schedule {
  justify-content: center;
  font-size: 11px;
}

/* Mobile Menu Sidebar */
.mobile-menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 998;
  opacity: 0;
  transition: opacity 0.3s;
}

.mobile-menu-overlay.active {
  display: block;
  opacity: 1;
}

.mobile-menu-sidebar {
  position: fixed;
  top: 0;
  left: -280px;
  width: 280px;
  height: 100%;
  background-color: white;
  z-index: 999;
  overflow-y: auto;
  transition: left 0.3s ease;
  box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
}

.mobile-menu-sidebar.active {
  left: 0;
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  background-color: #006241;
  color: white;
  font-weight: 600;
  font-size: 16px;
}

.close-menu {
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  padding: 4px;
}

.mobile-menu-list {
  padding: 16px 0;
}

.mobile-menu-list li a {
  display: block;
  padding: 14px 20px;
  font-size: 15px;
  font-weight: 500;
  color: #1a1a1a;
  border-bottom: 1px solid #f0f0f0;
  transition: background-color 0.2s;
}

.mobile-menu-list li a:hover {
  background-color: #f5f5f5;
}

.mobile-menu-divider {
  height: 8px;
  background-color: #f5f5f5;
}

.mobile-menu-links {
  padding: 16px 0;
}

.mobile-menu-links li a {
  display: block;
  padding: 12px 20px;
  font-size: 14px;
  color: #666;
  transition: color 0.2s;
}

.mobile-menu-links li a:hover {
  color: #006241;
}

body.menu-open {
  overflow: hidden;
}

/* Categories Carousel Mobile */
.categories-nav-mobile {
  background-color: #1B4F72;
  padding: 0;
}

.categories-carousel-wrapper {
  display: flex;
  align-items: center;
  position: relative;
}

/* --- SUBSTITUIR NO FINAL DO CSS (APÓS LINHA 944) --- */

/* Container do carrossel - LIMITADO E CENTRALIZADO */
.products-carousel-desktop {
  display: block !important;
  position: relative;
  max-width: 1000px; /* Reduzimos de 100% para 1000px para ficar compacto */
  margin: 30px auto; /* Centraliza o carrossel no ecrã */
}

/* Grelha interna compacta */
.products-grid-desktop {
  display: flex !important;
  flex-wrap: nowrap !important;
  overflow-x: hidden; 
  scroll-behavior: smooth;
  gap: 15px; /* Espaço mais apertado entre produtos */
  padding: 15px 5px;
}

/* Cartões de produto em tamanho normal */
.products-grid-desktop .product-card {
  flex: 0 0 calc((100% / 3) - 10px) !important; 
  min-width: calc((100% / 3) - 10px) !important;
  max-width: 320px; /* Garante que o cartão não cresça demais */
  height: auto;
}

/* Ajuste das imagens para não ficarem gigantes */
.products-grid-desktop .product-image {
  height: 200px; /* Altura fixa para a imagem no desktop */
  background-color: #f9f9f9;
  display: flex;
  align-items: center;
  justify-content: center;
}

.products-grid-desktop .product-image img {
  max-height: 180px; /* Mantém o produto pequeno dentro do quadro */
  width: auto;
  object-fit: contain;
}

/* Setas posicionadas nas extremidades do container limitado */
.products-carousel-desktop .products-arrow {
  display: flex !important;
  background-color: white;
  border: 1px solid #ddd;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.products-carousel-desktop .products-arrow-left { left: -45px; } /* Setas para fora do conteúdo */
.products-carousel-desktop .products-arrow-right { right: -45px; }

.carousel-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.2);
  border: none;
  color: white;
  padding: 12px 8px;
  cursor: pointer;
  transition: background-color 0.2s;
  flex-shrink: 0;
}

.carousel-arrow:hover {
  background-color: rgba(255, 255, 255, 0.3);
}

.categories-carousel {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 10px 8px;
  flex: 1;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.categories-carousel::-webkit-scrollbar {
  display: none;
}

.category-chip {
  display: inline-block;
  padding: 8px 16px;
  background-color: rgba(255, 255, 255, 0.15);
  color: white;
  font-size: 12px;
  font-weight: 500;
  border-radius: 20px;
  white-space: nowrap;
  transition: background-color 0.2s;
}

.category-chip:hover {
  background-color: rgba(255, 255, 255, 0.25);
}

/* Products Carousel Mobile */
.products-carousel-wrapper {
  position: relative;
  display: none;
}

.products-carousel {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 4px 0 16px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  cursor: grab;
  flex: 1;
}

.products-carousel::-webkit-scrollbar {
  display: none;
}

.products-carousel.grabbing {
  cursor: grabbing;
}

.products-carousel .product-card {
  flex-shrink: 0;
  width: 160px;
}

/* Setas de navegacao do carrossel de produtos */
.products-arrow {
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  min-width: 32px;
  background-color: rgba(255, 255, 255, 0.9);
  border: 1px solid #e0e0e0;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  transition: all 0.2s;
  padding: 0;
  margin: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.products-arrow:hover {
  opacity: 0.7;
}

.products-arrow svg {
  display: block !important;
  color: #1a1a1a;
  stroke: #1a1a1a;
  width: 20px;
  height: 20px;
}

.products-arrow-left {
  left: 0;
}

.products-arrow-right {
  right: 0;
}

/* Mobile Promo Banner */
.mobile-promo-banner {
  display: none;
  background: linear-gradient(135deg, #E67E22 0%, #D4AF37 100%);
  padding: 12px 0;
}

.promo-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: white;
}

.promo-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.promo-tag {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}

.promo-text {
  font-size: 12px;
  opacity: 0.9;
}


.mobile-quick-nav {
  display: block;
  background-color: white;
  padding: 2px 0; /* Reduz drasticamente o espaço branco */
  border-bottom: 1px solid #e5e5e5;
}

.quick-nav-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.quick-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 8px 4px;
  border-radius: 8px;
  transition: background-color 0.2s;
}

.quick-nav-item:hover {
  background-color: #e1dacb;
}

.quick-nav-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}
.quick-nav-icon-green {
  background-image: url('http://armazemclick.ro/wp-content/uploads/2026/03/bannerHero_Exurol-1.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.quick-nav-icon-blue {
  background-image: url('http://armazemclick.ro/wp-content/uploads/2026/03/bannerHero_Exurol-2.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.quick-nav-icon-orange {
  background-image: url('http://armazemclick.ro/wp-content/uploads/2026/03/bannerHero_Exurol-3.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.quick-nav-icon-purple {
  background-image: url('http://armazemclick.ro/wp-content/uploads/2026/03/bannerHero_Exurol-4.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.quick-nav-icon svg {
  display: none;
}
.quick-nav-item span {
  font-size: 10px;
  font-weight: 600;
  color: #1a1a1a;
  text-transform: uppercase;
}

/* =============================================
   PROMO CAROUSEL / CARROSSEL DE BANNERS
   ============================================= */
.promo-carousel-section {
  display: block;
  padding: 0 16px;
  background-color: #fff;
}


.promo-carousel-container {
  position: relative;
  max-width: 1100px; /* Reduzimos de 100% para 1100px para não ficar gigante */
  height: 100%;
  margin: 5px auto; /* Adicionamos 20px de margem superior/inferior e centralizamos */
  overflow: hidden;
  border-radius: 12px; /* Aumentamos um pouco o arredondamento para ficar mais moderno */
  box-shadow: 0 4px 15px rgba(0,0,0,0.1); /* Um leve sombreado para dar profundidade */
}

.promo-carousel {
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 3.5 / 1; /* Proporção exata do Vegis que pediste */
}

.promo-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.promo-slide.active {
  opacity: 1;
}

.promo-slide a {
  display: block;
  width: 100%;
  height: 100%;
}

.promo-slide-img {
  width: 100%;
  height: 100%;
  object-fit: fill; /* Como a imagem já terá o tamanho certo, o fill garante que ela encaixe perfeitamente */
  border-radius: 8px;
}

.promo-banner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #006241;
  color: white;
  font-size: 24px;
  font-weight: bold;
  font-style: italic;
  border-radius: 8px;
}

/* Setas de navegacao minimalistas - sem circulo */
.promo-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: transparent;
  border: none;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: opacity 0.2s;
  z-index: 10;
  opacity: 0.7;
}

.promo-arrow:hover {
  opacity: 1;
}

.promo-arrow-left {
  left: 4px;
}

.promo-arrow-right {
  right: 4px;
}

.promo-arrow svg {
  color: #000000;
  stroke: #000000;
  width: 16px;
  height: 16px;
}

/* Mobile Benefits Row */
.mobile-benefits {
  display: none;
  background-color: #F9FBF9;
  padding: 12px 0;
  border-bottom: 1px solid #e5e5e5;
}

.mobile-benefits-row {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.mobile-benefit {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #006241;
  font-size: 11px;
  font-weight: 500;
}

.mobile-benefit svg {
  color: #006241;
  flex-shrink: 0;
}

/* =============================================
   RESPONSIVE MOBILE - ESTILO VEGIS.RO
   ============================================= */

/* TABLET */
@media (max-width: 992px) {
  .header-content {
    flex-wrap: wrap;
  }
  
  .logo-image {
    height: 90px !important;
    width: 180px !important;
  }
  
  .search-container {
    min-width: 250px;
  }
  
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
  
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ========================================
   CUM SA COMANZI - How to Order Section
======================================== */
.how-to-order-section {
  padding: 60px 16px;
  background: linear-gradient(180deg, #F9FBF9 0%, #ffffff 100%);
}

.how-to-order-title {
  text-align: center;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 42px; /* Estava 28px, agora tem destaque total */
  font-weight: 700;
  color: #1B4F72;
  margin-bottom: 12px;
}

.how-to-order-subtitle {
  text-align: center;
  font-size: 22px; /* Estava 16px, agora é bem legível */
  color: #666;
  margin-bottom: 50px;
}

.order-steps {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}


.order-step {
  flex: 0 1 300px; /* Não deixa esticar mais que 300px */
  background: #fff;
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.order-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.step-number {
  position: absolute;
  top: -16px;
  left: 24px;
  width: 40px;
  height: 40px;
  background: #006241;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 98, 65, 0.4);
}

.step-image {
  width: 100%;
  height: auto; /* Deixa a altura livre */
  aspect-ratio: 16 / 9; /* Mantém sempre o formato de "TV" (retangular bonito) */
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 20px;
}

.step-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.step-title {
  font-size: 26px; /* Estava 18px, agora o título do passo brilha */
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 15px;
}

.step-description {
  font-size: 18px; /* Estava 14px, agora é leitura confortável no monitor */
  color: #555;
  line-height: 1.6;
  margin-bottom: 20px;
}

.step-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: #F9FBF9;
  border-radius: 20px;
  font-size: 13px;
  color: #006241;
  font-weight: 500;
}

.step-badge svg {
  stroke: #006241;
}

.order-cta {
  text-align: center;
  margin-top: 40px;
}

.order-cta-button {
  display: inline-block;
  padding: 16px 40px;
  background: #D4AF37;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 16px rgba(212, 175, 55, 0.4);
}

.order-cta-button:hover {
  background: #b8982e;
  transform: scale(1.02);
}

/* MOBILE */
@media (max-width: 768px) {
  /* Hide Desktop Elements */
  .top-bar-desktop,
  .header-desktop,
  .categories-nav-desktop,
  .products-grid-desktop {
    display: none !important;
  }
  
  /* Show Mobile Elements */
  .top-bar-mobile,
  .mobile-schedule,
  .mobile-promo-banner,
  .mobile-quick-nav,
  .mobile-benefits,
  .categories-nav-mobile,
  .promo-carousel-section {
    display: block;
  }
   @media (max-width: 768px) {
  .promo-carousel {
    aspect-ratio: 2 / 1; /* Mantém o formato mobile que já estava bom */
  }
}
  .promo-carousel-section {
    padding: 8px 12px;
  }
  /* Show Mobile Carrossel */
  .products-carousel-mobile {
    display: flex !important;
    flex-direction: row;
    align-items: center;
  }

  /* Container Mobile */
  .container {
    padding: 0 12px;
  }

  /* PRODUCTS SECTION Mobile */
  .products-section {
    padding: 24px 0;
  }
  
  .section-header {
    margin-bottom: 16px;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  
  .section-title {
    font-size: 18px;
    gap: 8px;
  }
  
  .title-icon {
    width: 32px;
    height: 32px;
  }
  
  .title-icon svg {
    width: 18px;
    height: 18px;
  }
  
  .view-all {
    font-size: 13px;
  }

  /* Products Grid Mobile - 2 Colunas como Vegis */
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  
  .product-card {
    padding: 10px;
    border-radius: 8px;
  }
  
  .badge {
    top: 8px;
    left: 8px;
    padding: 3px 8px;
    font-size: 10px;
  }
  
  .product-image {
    margin-bottom: 8px;
    border-radius: 6px;
  }
  
  .product-name {
    font-size: 12px;
    min-height: 32px;
    margin-bottom: 6px;
    line-height: 1.3;
  }
  
  .product-prices {
    margin-bottom: 8px;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
  }
  
  .price-old {
    font-size: 11px;
  }
  
  .price-new {
    font-size: 14px;
  }
  
  .add-to-cart {
    padding: 8px 10px;
    font-size: 11px;
    border-radius: 20px;
  }

  /* FAQ Mobile */
  .faq-section {
    padding: 32px 0;
  }
  
  .faq-title {
    font-size: 22px;
    margin-bottom: 8px;
  }
  
  .faq-subtitle {
    font-size: 13px;
    margin-bottom: 24px;
  }
  
  .faq-question {
    padding: 14px 16px;
    font-size: 14px;
  }
  
  .faq-answer p {
    padding: 0 16px 14px;
    font-size: 13px;
  }

  /* FOOTER Mobile */
  .footer-benefits {
    padding: 16px 0;
  }
  
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  
  .benefit-item {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }
  
  .benefit-item svg {
    width: 28px;
    height: 28px;
  }
  
  .benefit-item strong {
    font-size: 12px;
  }
  
  .benefit-item span {
    font-size: 10px;
  }
  
  .footer-main {
    padding: 32px 0;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }
  
  .footer-logo {
    justify-content: center;
  }
  
  .footer-logo-image {
    height: 60px !important;
  }
  
  .footer-description {
    font-size: 13px;
  }
  
  .footer-column h4 {
    font-size: 15px;
    margin-bottom: 16px;
  }
  
  .footer-column ul li a {
    font-size: 13px;
  }
  
  .social-links {
    justify-content: center;
  }
  
  .contact-info {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .footer-bottom {
    padding: 16px 0;
  }
  
  .footer-bottom .container {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
  
  .payment-methods {
    flex-direction: column;
    gap: 8px;
  }
}
      /* How to Order - Mobile COMPACTO */
  .how-to-order-section {
    padding: 20px 12px;
  }
  
  .how-to-order-title {
    font-size: 16px;
    margin-bottom: 4px;
  }
  
  .how-to-order-subtitle {
    font-size: 12px;
    margin-bottom: 16px;
  }
  
  .order-steps {
    display: flex;
    flex-direction: row;
    gap: 8px;
    overflow: visible;
  }
  
  .order-step {
    flex: 1;
    min-width: 0;
    max-width: none;
    padding: 10px 8px;
  }
  
  .step-number {
    width: 24px;
    height: 24px;
    font-size: 12px;
    top: -8px;
    left: 8px;
  }
  
  .step-image {
    height: 60px;
    margin-bottom: 8px;
  }
  
  .step-title {
    font-size: 11px;
    margin-bottom: 4px;
    line-height: 1.2;
  }
  
  .step-description {
    display: none;
  }
  
  .step-badge {
    padding: 3px 6px;
    font-size: 9px;
  }
  
  .step-badge svg {
    width: 10px;
    height: 10px;
  }
  
  .order-cta {
    margin-top: 16px;
  }
  
  .order-cta-button {
    padding: 12px 24px;
    font-size: 14px;
    width: 100%;
  }

/* MOBILE PEQUENO */
@media (max-width: 480px) {
  .top-nav {
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .top-nav a {
    font-size: 10px;
  }
  
  .logo-image {
    height: 50px !important;
    width: 110px !important;
  }
  
  .offers-button {
    padding: 6px 10px;
    font-size: 11px;
  }
  
  .offers-button span {
    display: none;
  }
  
  .section-title {
    font-size: 16px;
  }
  
  .products-grid {
    gap: 8px;
  }
  
  .product-card {
    padding: 8px;
  }
  
  .product-name {
    font-size: 11px;
    min-height: 28px;
  }
  
  .price-new {
    font-size: 13px;
  }
  
  .add-to-cart {
    padding: 7px 8px;
    font-size: 10px;
  }
  
  .benefits-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  
  .benefit-item strong {
    font-size: 11px;
  }
  
  .benefit-item span {
    font-size: 9px;
  }
}
/* Adicionar ao final do style.css para melhorar o aspeto no Desktop */

@media (min-width: 769px) {
  .quick-nav-grid {
    max-width: 700px; /* Evita que os botões fiquem demasiado espalhados */
    margin: 0 auto;
    gap: 20px; /* Aumenta o espaço entre eles no PC */
  }

  .quick-nav-icon {
    width: 40px; /* Ícones ligeiramente maiores no desktop */
    height: 40px;
  }

  .quick-nav-item span {
    font-size: 12px; /* Texto um pouco maior para leitura fácil no monitor */
  }
}
/* --- VERSÃO EXCLUSIVA PARA DESKTOP --- */
@media (min-width: 769px) {
  .order-steps {
    display: flex;
    flex-wrap: nowrap; /* Coloca um ao lado do outro no PC */
    gap: 30px;
    justify-content: center;
  }

  .order-step {
    flex: 1;
    max-width: 380px; /* Largura ideal para não ficar achatado */
    margin-bottom: 0;
  }

  .step-image {
    height: 250px !important; /* Imagem maior apenas no Desktop */
  }
}
/* --- AJUSTE DO LOGÓTIPO DO RODAPÉ APENAS NO DESKTOP --- */
@media (min-width: 769px) {
  .footer-logo-image {
    height: 50px !important; /* Ajuste este valor (ex: 40px, 55px) até achar que ficou perfeito */
    width: auto;
  }
}
/* Reset e Base */
/* Desabilita highlight no toque - Mobile */
* {
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  user-select: none;
  -webkit-user-select: none;
}

/* Permite seleção de texto normalmente */
p, span, a:not(button), button span {
  -webkit-user-select: text;
  user-select: text;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: #1a1a1a;
  background-color: #F9FBF9;
  line-height: 1.5;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

/* TOP BAR */
.top-bar {
  background-color: #006241;
  padding: 8px 0;
}

.top-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.top-nav a {
  color: white;
  font-size: 12px;
  font-weight: 400;
  transition: opacity 0.2s;
}

.top-nav a:hover {
  opacity: 0.8;
}

.top-nav .separator {
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
}

/* HEADER */
.header {
  background-color: white;
  padding: 4px 0;
  border-bottom: 1px solid #e5e5e5;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo a {
  display: block;
  line-height: 0;
}

.logo-image {
  height: 80px !important; /* Logo mais baixa */
  width: auto !important;
}

.footer-logo-image {
  height: 90px;
  width: auto;
  object-fit: contain;
}

/* Search */
.search-container {
  flex: 1;
  max-width: 550px;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.search-box {
  display: flex;
  border: 2px solid #006241;
  border-radius: 8px;
  overflow: hidden;
}

.search-input {
  flex: 1;
  padding: 12px 16px;
  border: none;
  outline: none;
  font-size: 14px;
}

.search-input::placeholder {
  color: #999;
}

.search-button {
  background-color: #006241;
  color: white;
  border: none;
  padding: 12px 20px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.search-button:hover {
  background-color: #004d33;
}

.schedule {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: #666;
}

.schedule svg {
  color: #006241;
}


/* Offers Button - CORRIGIDO */
.offers-button {
  display: flex;
  align-items: center;
  gap: 8px;
  background-color: #D4AF37; /* Adicionada a cor dourada definitiva */
  color: white;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  transition: background-color 0.3s ease;
  box-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
}

.offers-button:hover {
  background-color: #b8982e; /* Cor ligeiramente mais escura ao passar o rato */
}

/* CATEGORIES NAV */
.categories-nav {
  background-color: #1B4F72;
  padding: 0;
}

.categories-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.categories-list li a {
  display: block;
  color: white;
  padding: 8px 15px;
  font-size: 13px;
  font-weight: 500;
  transition: background-color 0.2s;
}

.categories-list li a:hover {
  background-color: rgba(0, 0, 0, 0.1);
}

/* PRODUCTS SECTION */
.products-section {
  padding: 48px 0;
}

.products-section:nth-child(even) {
  background-color: #f9fafb;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 16px;
}

.section-title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 24px;
  font-weight: 700;
  color: #1B4F72;
}

.title-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: white;
}

.title-icon-red {
  background-color: #ffffff;
}
.title-icon-red svg {
  display: none;
}

.title-icon-red {
  background-image: url('http://armazemclick.ro/wp-content/uploads/2026/03/icone-de-medalha.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.title-icon-green {
  background-color: #D4AF37;
}
.title-icon-green svg {
  display: none;
}

.title-icon-green {
  background-image: url('http://armazemclick.ro/wp-content/uploads/2026/03/Gemini_Generated_Image_7v7nej7v7nej7v7n.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.title-icon-blue {
  background-color: #006241;
}
.title-icon-blue svg {
  display: none;
}

.title-icon-blue {
  background-image: url('http://armazemclick.ro/wp-content/uploads/2026/03/relampago-minimalista-simples-do-raio-113274521.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.view-all {
  color: #1B4F72;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.3s ease;
}

.view-all:hover {
  color: #006241;
}

.products-grid {
  display: flex;             /* Mudamos de grid para flex para criar uma linha única */
  flex-wrap: nowrap;         /* Impede que os produtos desçam para a linha de baixo */
  overflow-x: auto;          /* Ativa a rolagem horizontal se não couberem todos */
  gap: 15px;                 /* Espaço entre os produtos */
  padding: 10px 5px;         /* Espaço para não cortar a sombra do card */
  scrollbar-width: thin;     /* Deixa a barra de rolagem discreta (Firefox) */
}

/* Estilização da barra de rolagem para Chrome/Edge/Safari */
.products-grid::-webkit-scrollbar {
  height: 6px;
}
.products-grid::-webkit-scrollbar-thumb {
  background: #e0e0e0;
  border-radius: 10px;
}

@media (max-width: 992px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .products-grid {
    grid-template-columns: 1fr;
  }
}

.product-card {
  position: relative; /* ESTA LINHA CORRIGE A DUPLICAÇÃO E O POSICIONAMENTO */
  flex: 0 0 180px;
  background-color: white;
  border-radius: 8px;
  padding: 10px;
  border: 1px solid #e5e5e5;
  transition: all 0.3s ease;
}

.product-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}

.badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  color: white;
  z-index: 1;
}

.badge-red {
  background-color: transparent;
  background-image: url('http://armazemclick.ro/wp-content/uploads/2026/03/Gemini_Generated_Image_fa0x4ofa0x4ofa0x.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 0;
  font-size: 0;
  color: transparent;
}

.badge-green {
  background-color: #006241;
}

.product-image {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 12px;
  background-color: #f5f5f5;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.product-card:hover .product-image img {
  transform: scale(1.05);
}

.product-name {
  font-size: 13px; /* Reduzido de 14px */
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 6px;
  line-height: 1.3;
  min-height: 34px; /* Ajustado para manter o alinhamento */
}

.product-prices {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.price-old {
  font-size: 13px;
  color: #999;
  text-decoration: line-through;
}

.price-new {
  font-size: 15px; /* Reduzido de 16px */
  font-weight: 700;
  color: #006241;
}

.add-to-cart {
  width: 100%;
  background-color: #E67E22;
  color: white;
  border: none;
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
  box-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
}

.add-to-cart:hover {
  background-color: #b8982e;
}

/* FAQ SECTION */
.faq-section {
  padding: 64px 0;
  background-color: #F9FBF9;
}

.faq-title {
  text-align: center;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 32px;
  font-weight: 700;
  color: #1B4F72;
  margin-bottom: 12px;
}

.faq-subtitle {
  text-align: center;
  color: #666;
  margin-bottom: 40px;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background-color: white;
  border-radius: 8px;
  border: 1px solid #e5e5e5;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 15px;
  font-weight: 500;
  color: #1a1a1a;
  text-align: left;
  transition: background-color 0.2s;
}

.faq-question:hover {
  background-color: #f9fafb;
}

.faq-icon {
  transition: transform 0.3s;
  color: #666;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.faq-item.active .faq-answer {
  max-height: 200px;
}

.faq-answer p {
  padding: 0 20px 16px;
  color: #666;
  font-size: 14px;
  line-height: 1.6;
}

/* FOOTER */
.footer {
  background-color: #1a1a1a;
  color: white;
}

.footer-benefits {
  background-color: #006241;
  padding: 24px 0;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

@media (max-width: 768px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .benefits-grid {
    grid-template-columns: 1fr;
  }
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: white;
}

.benefit-item strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
}

.benefit-item span {
  display: block;
  font-size: 12px;
  opacity: 0.9;
}

/* Footer Main */
.footer-main {
  padding: 48px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 40px;
}

@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

.footer-column h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 20px;
  color: white;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  color: #999;
  font-size: 14px;
  transition: color 0.2s;
}

.footer-column ul li a:hover {
  color: #D4AF37;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-logo span {
  font-size: 24px;
  font-weight: 700;
  color: #D4AF37;
}

.footer-description {
  color: #999;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: #333;
  border-radius: 50%;
  color: white;
  transition: background-color 0.2s;
}

.social-links a:hover {
  background-color: #006241;
}

.contact-info p {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #999;
  font-size: 14px;
  margin-bottom: 12px;
}

.contact-info svg {
  color: #D4AF37;
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid #333;
  padding: 20px 0;
}

.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  color: #666;
  font-size: 13px;
}

.payment-methods {
  display: flex;
  align-items: center;
  gap: 12px;
}

.payment-methods span {
  color: #666;
  font-size: 13px;
}

.payment-icons {
  display: flex;
  gap: 8px;
}

.payment-icon {
  background-color: #333;
  color: white;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
}

/* =============================================
   MOBILE-ONLY ELEMENTS (Hidden on Desktop)
   ============================================= */

/* Hide mobile elements on desktop */
.top-bar-mobile,
.mobile-schedule,
.categories-nav-mobile,
.products-carousel-mobile {
  display: none;
}

/* Mobile Top Bar - ALTURA FIXA como Vegis */
.top-bar-mobile {
  background-color: #006241;
  padding: 8px 0;
}

.mobile-topbar-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 44px; /* Altura fixa para a linha de menu/logo/ofertas */
  margin-bottom: 10px;
}

.hamburger-menu {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1px;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  padding: 2px;
  width: 44px;
  flex-shrink: 0;
}

.hamburger-menu span {
  font-size: 9px;
  font-weight: 600;
  text-transform: uppercase;
}

/* Logo Mobile - Tamanho controlado dentro do espaco fixo */
.mobile-logo {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 44px;
  padding: 0 8px;
}

.mobile-logo-image {
  height: 40px;
  width: auto;
  max-width: 50%;
  object-fit: contain;
}

.mobile-offers-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #D4AF37;
  color: white;
  width: 38px;
  height: 38px;
  padding: 0;
  border-radius: 50%;
  transition: background-color 0.3s ease;
  flex-shrink: 0;
}

.mobile-offers-btn:hover {
  background-color: #b8982e;
}

.mobile-search {
  width: 100%;
}

.mobile-search .search-box {
  border: none;
  border-radius: 25px;
  overflow: hidden;
  background: white;
}

.mobile-search .search-input {
  padding: 10px 16px;
  font-size: 14px;
}

.mobile-search .search-button {
  padding: 10px 14px;
  border-radius: 0 25px 25px 0;
}

/* Mobile Schedule */
.mobile-schedule {
  background-color: white;
  padding: 8px 0;
  border-bottom: 1px solid #e5e5e5;
}

.mobile-schedule .schedule {
  justify-content: center;
  font-size: 11px;
}

/* Mobile Menu Sidebar */
.mobile-menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 998;
  opacity: 0;
  transition: opacity 0.3s;
}

.mobile-menu-overlay.active {
  display: block;
  opacity: 1;
}

.mobile-menu-sidebar {
  position: fixed;
  top: 0;
  left: -280px;
  width: 280px;
  height: 100%;
  background-color: white;
  z-index: 999;
  overflow-y: auto;
  transition: left 0.3s ease;
  box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
}

.mobile-menu-sidebar.active {
  left: 0;
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  background-color: #006241;
  color: white;
  font-weight: 600;
  font-size: 16px;
}

.close-menu {
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  padding: 4px;
}

.mobile-menu-list {
  padding: 16px 0;
}

.mobile-menu-list li a {
  display: block;
  padding: 14px 20px;
  font-size: 15px;
  font-weight: 500;
  color: #1a1a1a;
  border-bottom: 1px solid #f0f0f0;
  transition: background-color 0.2s;
}

.mobile-menu-list li a:hover {
  background-color: #f5f5f5;
}

.mobile-menu-divider {
  height: 8px;
  background-color: #f5f5f5;
}

.mobile-menu-links {
  padding: 16px 0;
}

.mobile-menu-links li a {
  display: block;
  padding: 12px 20px;
  font-size: 14px;
  color: #666;
  transition: color 0.2s;
}

.mobile-menu-links li a:hover {
  color: #006241;
}

body.menu-open {
  overflow: hidden;
}

/* Categories Carousel Mobile */
.categories-nav-mobile {
  background-color: #1B4F72;
  padding: 0;
}

.categories-carousel-wrapper {
  display: flex;
  align-items: center;
  position: relative;
}

/* --- SUBSTITUIR NO FINAL DO CSS (APÓS LINHA 944) --- */

/* Container do carrossel - LIMITADO E CENTRALIZADO */
.products-carousel-desktop {
  display: block !important;
  position: relative;
  max-width: 1000px; /* Reduzimos de 100% para 1000px para ficar compacto */
  margin: 30px auto; /* Centraliza o carrossel no ecrã */
}

/* Grelha interna compacta */
.products-grid-desktop {
  display: flex !important;
  flex-wrap: nowrap !important;
  overflow-x: hidden; 
  scroll-behavior: smooth;
  gap: 15px; /* Espaço mais apertado entre produtos */
  padding: 15px 5px;
}

/* Cartões de produto em tamanho normal */
.products-grid-desktop .product-card {
  flex: 0 0 calc((100% / 3) - 10px) !important; 
  min-width: calc((100% / 3) - 10px) !important;
  max-width: 320px; /* Garante que o cartão não cresça demais */
  height: auto;
}

/* Ajuste das imagens para não ficarem gigantes */
.products-grid-desktop .product-image {
  height: 200px; /* Altura fixa para a imagem no desktop */
  background-color: #f9f9f9;
  display: flex;
  align-items: center;
  justify-content: center;
}

.products-grid-desktop .product-image img {
  max-height: 180px; /* Mantém o produto pequeno dentro do quadro */
  width: auto;
  object-fit: contain;
}

/* Setas posicionadas nas extremidades do container limitado */
.products-carousel-desktop .products-arrow {
  display: flex !important;
  background-color: white;
  border: 1px solid #ddd;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.products-carousel-desktop .products-arrow-left { left: -45px; } /* Setas para fora do conteúdo */
.products-carousel-desktop .products-arrow-right { right: -45px; }

.carousel-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.2);
  border: none;
  color: white;
  padding: 12px 8px;
  cursor: pointer;
  transition: background-color 0.2s;
  flex-shrink: 0;
}

.carousel-arrow:hover {
  background-color: rgba(255, 255, 255, 0.3);
}

.categories-carousel {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 10px 8px;
  flex: 1;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.categories-carousel::-webkit-scrollbar {
  display: none;
}

.category-chip {
  display: inline-block;
  padding: 8px 16px;
  background-color: rgba(255, 255, 255, 0.15);
  color: white;
  font-size: 12px;
  font-weight: 500;
  border-radius: 20px;
  white-space: nowrap;
  transition: background-color 0.2s;
}

.category-chip:hover {
  background-color: rgba(255, 255, 255, 0.25);
}

/* Products Carousel Mobile */
.products-carousel-wrapper {
  position: relative;
  display: none;
}

.products-carousel {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 4px 0 16px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  cursor: grab;
  flex: 1;
}

.products-carousel::-webkit-scrollbar {
  display: none;
}

.products-carousel.grabbing {
  cursor: grabbing;
}

.products-carousel .product-card {
  flex-shrink: 0;
  width: 160px;
}

/* Setas de navegacao do carrossel de produtos */
.products-arrow {
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  min-width: 32px;
  background-color: rgba(255, 255, 255, 0.9);
  border: 1px solid #e0e0e0;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  transition: all 0.2s;
  padding: 0;
  margin: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.products-arrow:hover {
  opacity: 0.7;
}

.products-arrow svg {
  display: block !important;
  color: #1a1a1a;
  stroke: #1a1a1a;
  width: 20px;
  height: 20px;
}

.products-arrow-left {
  left: 0;
}

.products-arrow-right {
  right: 0;
}

/* Mobile Promo Banner */
.mobile-promo-banner {
  display: none;
  background: linear-gradient(135deg, #E67E22 0%, #D4AF37 100%);
  padding: 12px 0;
}

.promo-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: white;
}

.promo-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.promo-tag {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}

.promo-text {
  font-size: 12px;
  opacity: 0.9;
}


.mobile-quick-nav {
  display: block;
  background-color: white;
  padding: 2px 0; /* Reduz drasticamente o espaço branco */
  border-bottom: 1px solid #e5e5e5;
}

.quick-nav-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.quick-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 8px 4px;
  border-radius: 8px;
  transition: background-color 0.2s;
}

.quick-nav-item:hover {
  background-color: #e1dacb;
}

.quick-nav-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}
.quick-nav-icon-green {
  background-image: url('http://armazemclick.ro/wp-content/uploads/2026/03/bannerHero_Exurol-1.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.quick-nav-icon-blue {
  background-image: url('http://armazemclick.ro/wp-content/uploads/2026/03/bannerHero_Exurol-2.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.quick-nav-icon-orange {
  background-image: url('http://armazemclick.ro/wp-content/uploads/2026/03/bannerHero_Exurol-3.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.quick-nav-icon-purple {
  background-image: url('http://armazemclick.ro/wp-content/uploads/2026/03/bannerHero_Exurol-4.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.quick-nav-icon svg {
  display: none;
}
.quick-nav-item span {
  font-size: 10px;
  font-weight: 600;
  color: #1a1a1a;
  text-transform: uppercase;
}

/* =============================================
   PROMO CAROUSEL / CARROSSEL DE BANNERS
   ============================================= */
.promo-carousel-section {
  display: block;
  padding: 0 16px;
  background-color: #fff;
}


.promo-carousel-container {
  position: relative;
  max-width: 1100px; /* Reduzimos de 100% para 1100px para não ficar gigante */
  height: 100%;
  margin: 5px auto; /* Adicionamos 20px de margem superior/inferior e centralizamos */
  overflow: hidden;
  border-radius: 12px; /* Aumentamos um pouco o arredondamento para ficar mais moderno */
  box-shadow: 0 4px 15px rgba(0,0,0,0.1); /* Um leve sombreado para dar profundidade */
}

.promo-carousel {
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 3.5 / 1; /* Proporção exata do Vegis que pediste */
}

.promo-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.promo-slide.active {
  opacity: 1;
}

.promo-slide a {
  display: block;
  width: 100%;
  height: 100%;
}

.promo-slide-img {
  width: 100%;
  height: 100%;
  object-fit: fill; /* Como a imagem já terá o tamanho certo, o fill garante que ela encaixe perfeitamente */
  border-radius: 8px;
}

.promo-banner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #006241;
  color: white;
  font-size: 24px;
  font-weight: bold;
  font-style: italic;
  border-radius: 8px;
}

/* Setas de navegacao minimalistas - sem circulo */
.promo-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: transparent;
  border: none;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: opacity 0.2s;
  z-index: 10;
  opacity: 0.7;
}

.promo-arrow:hover {
  opacity: 1;
}

.promo-arrow-left {
  left: 4px;
}

.promo-arrow-right {
  right: 4px;
}

.promo-arrow svg {
  color: #000000;
  stroke: #000000;
  width: 16px;
  height: 16px;
}

/* Mobile Benefits Row */
.mobile-benefits {
  display: none;
  background-color: #F9FBF9;
  padding: 12px 0;
  border-bottom: 1px solid #e5e5e5;
}

.mobile-benefits-row {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.mobile-benefit {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #006241;
  font-size: 11px;
  font-weight: 500;
}

.mobile-benefit svg {
  color: #006241;
  flex-shrink: 0;
}

/* =============================================
   RESPONSIVE MOBILE - ESTILO VEGIS.RO
   ============================================= */

/* TABLET */
@media (max-width: 992px) {
  .header-content {
    flex-wrap: wrap;
  }
  
  .logo-image {
    height: 90px !important;
    width: 180px !important;
  }
  
  .search-container {
    min-width: 250px;
  }
  
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
  
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ========================================
   CUM SA COMANZI - How to Order Section
======================================== */
.how-to-order-section {
  padding: 60px 16px;
  background: linear-gradient(180deg, #F9FBF9 0%, #ffffff 100%);
}

.how-to-order-title {
  text-align: center;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 42px; /* Estava 28px, agora tem destaque total */
  font-weight: 700;
  color: #1B4F72;
  margin-bottom: 12px;
}

.how-to-order-subtitle {
  text-align: center;
  font-size: 22px; /* Estava 16px, agora é bem legível */
  color: #666;
  margin-bottom: 50px;
}

.order-steps {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}


.order-step {
  flex: 0 1 300px; /* Não deixa esticar mais que 300px */
  background: #fff;
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.order-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.step-number {
  position: absolute;
  top: -16px;
  left: 24px;
  width: 40px;
  height: 40px;
  background: #006241;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 98, 65, 0.4);
}

.step-image {
  width: 100%;
  height: auto; /* Deixa a altura livre */
  aspect-ratio: 16 / 9; /* Mantém sempre o formato de "TV" (retangular bonito) */
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 20px;
}

.step-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.step-title {
  font-size: 26px; /* Estava 18px, agora o título do passo brilha */
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 15px;
}

.step-description {
  font-size: 18px; /* Estava 14px, agora é leitura confortável no monitor */
  color: #555;
  line-height: 1.6;
  margin-bottom: 20px;
}

.step-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: #F9FBF9;
  border-radius: 20px;
  font-size: 13px;
  color: #006241;
  font-weight: 500;
}

.step-badge svg {
  stroke: #006241;
}

.order-cta {
  text-align: center;
  margin-top: 40px;
}

.order-cta-button {
  display: inline-block;
  padding: 16px 40px;
  background: #D4AF37;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 16px rgba(212, 175, 55, 0.4);
}

.order-cta-button:hover {
  background: #b8982e;
  transform: scale(1.02);
}

/* MOBILE */
@media (max-width: 768px) {
  /* Hide Desktop Elements */
  .top-bar-desktop,
  .header-desktop,
  .categories-nav-desktop,
  .products-grid-desktop {
    display: none !important;
  }
  
  /* Show Mobile Elements */
  .top-bar-mobile,
  .mobile-schedule,
  .mobile-promo-banner,
  .mobile-quick-nav,
  .mobile-benefits,
  .categories-nav-mobile,
  .promo-carousel-section {
    display: block;
  }
   @media (max-width: 768px) {
  .promo-carousel {
    aspect-ratio: 2 / 1; /* Mantém o formato mobile que já estava bom */
  }
}
  .promo-carousel-section {
    padding: 8px 12px;
  }
  /* Show Mobile Carrossel */
  .products-carousel-mobile {
    display: flex !important;
    flex-direction: row;
    align-items: center;
  }

  /* Container Mobile */
  .container {
    padding: 0 12px;
  }

  /* PRODUCTS SECTION Mobile */
  .products-section {
    padding: 24px 0;
  }
  
  .section-header {
    margin-bottom: 16px;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  
  .section-title {
    font-size: 18px;
    gap: 8px;
  }
  
  .title-icon {
    width: 32px;
    height: 32px;
  }
  
  .title-icon svg {
    width: 18px;
    height: 18px;
  }
  
  .view-all {
    font-size: 13px;
  }

  /* Products Grid Mobile - 2 Colunas como Vegis */
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  
  .product-card {
    padding: 10px;
    border-radius: 8px;
  }
  
  .badge {
    top: 8px;
    left: 8px;
    padding: 3px 8px;
    font-size: 10px;
  }
  
  .product-image {
    margin-bottom: 8px;
    border-radius: 6px;
  }
  
  .product-name {
    font-size: 12px;
    min-height: 32px;
    margin-bottom: 6px;
    line-height: 1.3;
  }
  
  .product-prices {
    margin-bottom: 8px;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
  }
  
  .price-old {
    font-size: 11px;
  }
  
  .price-new {
    font-size: 14px;
  }
  
  .add-to-cart {
    padding: 8px 10px;
    font-size: 11px;
    border-radius: 20px;
  }

  /* FAQ Mobile */
  .faq-section {
    padding: 32px 0;
  }
  
  .faq-title {
    font-size: 22px;
    margin-bottom: 8px;
  }
  
  .faq-subtitle {
    font-size: 13px;
    margin-bottom: 24px;
  }
  
  .faq-question {
    padding: 14px 16px;
    font-size: 14px;
  }
  
  .faq-answer p {
    padding: 0 16px 14px;
    font-size: 13px;
  }

  /* FOOTER Mobile */
  .footer-benefits {
    padding: 16px 0;
  }
  
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  
  .benefit-item {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }
  
  .benefit-item svg {
    width: 28px;
    height: 28px;
  }
  
  .benefit-item strong {
    font-size: 12px;
  }
  
  .benefit-item span {
    font-size: 10px;
  }
  
  .footer-main {
    padding: 32px 0;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }
  
  .footer-logo {
    justify-content: center;
  }
  
  .footer-logo-image {
    height: 60px !important;
  }
  
  .footer-description {
    font-size: 13px;
  }
  
  .footer-column h4 {
    font-size: 15px;
    margin-bottom: 16px;
  }
  
  .footer-column ul li a {
    font-size: 13px;
  }
  
  .social-links {
    justify-content: center;
  }
  
  .contact-info {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .footer-bottom {
    padding: 16px 0;
  }
  
  .footer-bottom .container {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
  
  .payment-methods {
    flex-direction: column;
    gap: 8px;
  }
}
      /* How to Order - Mobile COMPACTO */
  .how-to-order-section {
    padding: 20px 12px;
  }
  
  .how-to-order-title {
    font-size: 16px;
    margin-bottom: 4px;
  }
  
  .how-to-order-subtitle {
    font-size: 12px;
    margin-bottom: 16px;
  }
  
  .order-steps {
    display: flex;
    flex-direction: row;
    gap: 8px;
    overflow: visible;
  }
  
  .order-step {
    flex: 1;
    min-width: 0;
    max-width: none;
    padding: 10px 8px;
  }
  
  .step-number {
    width: 24px;
    height: 24px;
    font-size: 12px;
    top: -8px;
    left: 8px;
  }
  
  .step-image {
    height: 60px;
    margin-bottom: 8px;
  }
  
  .step-title {
    font-size: 11px;
    margin-bottom: 4px;
    line-height: 1.2;
  }
  
  .step-description {
    display: none;
  }
  
  .step-badge {
    padding: 3px 6px;
    font-size: 9px;
  }
  
  .step-badge svg {
    width: 10px;
    height: 10px;
  }
  
  .order-cta {
    margin-top: 16px;
  }
  
  .order-cta-button {
    padding: 12px 24px;
    font-size: 14px;
    width: 100%;
  }

/* MOBILE PEQUENO */
@media (max-width: 480px) {
  .top-nav {
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .top-nav a {
    font-size: 10px;
  }
  
  .logo-image {
    height: 50px !important;
    width: 110px !important;
  }
  
  .offers-button {
    padding: 6px 10px;
    font-size: 11px;
  }
  
  .offers-button span {
    display: none;
  }
  
  .section-title {
    font-size: 16px;
  }
  
  .products-grid {
    gap: 8px;
  }
  
  .product-card {
    padding: 8px;
  }
  
  .product-name {
    font-size: 11px;
    min-height: 28px;
  }
  
  .price-new {
    font-size: 13px;
  }
  
  .add-to-cart {
    padding: 7px 8px;
    font-size: 10px;
  }
  
  .benefits-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  
  .benefit-item strong {
    font-size: 11px;
  }
  
  .benefit-item span {
    font-size: 9px;
  }
}
/* Adicionar ao final do style.css para melhorar o aspeto no Desktop */

@media (min-width: 769px) {
  .quick-nav-grid {
    max-width: 700px; /* Evita que os botões fiquem demasiado espalhados */
    margin: 0 auto;
    gap: 20px; /* Aumenta o espaço entre eles no PC */
  }

  .quick-nav-icon {
    width: 40px; /* Ícones ligeiramente maiores no desktop */
    height: 40px;
  }

  .quick-nav-item span {
    font-size: 12px; /* Texto um pouco maior para leitura fácil no monitor */
  }
}
/* --- VERSÃO EXCLUSIVA PARA DESKTOP --- */
@media (min-width: 769px) {
  .order-steps {
    display: flex;
    flex-wrap: nowrap; /* Coloca um ao lado do outro no PC */
    gap: 30px;
    justify-content: center;
  }

  .order-step {
    flex: 1;
    max-width: 380px; /* Largura ideal para não ficar achatado */
    margin-bottom: 0;
  }

  .step-image {
    height: 250px !important; /* Imagem maior apenas no Desktop */
  }
}
/* --- AJUSTE DO LOGÓTIPO DO RODAPÉ APENAS NO DESKTOP --- */
@media (min-width: 769px) {
  .footer-logo-image {
    height: 50px !important; /* Ajuste este valor (ex: 40px, 55px) até achar que ficou perfeito */
    width: auto;
  }
}
/* =======================================================
   CORREÇÃO DEFINITIVA: CARTÕES E TÍTULOS (MOBILE)
   ======================================================= */
@media (max-width: 768px) {
  /* 1. Impede os cartões de se esmagarem e ativa o arrastar para o lado */
  .order-steps {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    gap: 16px !important;
    padding-bottom: 15px !important;
    /* Esconde a barra de rolagem mas mantém a função de deslizar */
    scrollbar-width: none; 
  }
  
  .order-steps::-webkit-scrollbar {
    display: none;
  }

  /* 2. Dá uma largura decente a cada cartão (não cabem todos, o cliente tem de deslizar) */
  .order-step {
    flex: 0 0 250px !important; 
    max-width: 250px !important;
    padding: 16px 12px !important;
  }

  /* 3. Combate a fonte gigante: força o título a ficar pequeno no mobile */
  .step-title {
    font-size: 15px !important; 
    margin-bottom: 8px !important;
    line-height: 1.3 !important;
  }

  /* 4. Ajusta a imagem do cartão para não ficar gigante no mobile */
  .step-image {
    height: 130px !important;
    margin-bottom: 12px !important;
  }
}

/* =======================================================
   CORREÇÃO ABSOLUTA E FINAL: SECÇÃO COMO ENCOMENDAR
   (Este bloco substitui qualquer conflito anterior)
   ======================================================= */

/* 1. DESKTOP (Ecrãs grandes - Mantém os cartões lado a lado e letras imponentes) */
@media (min-width: 769px) {
  .how-to-order-section .how-to-order-title { font-size: 48px !important; margin-bottom: 12px !important; line-height: 1.2 !important; }
  .how-to-order-section .how-to-order-subtitle { font-size: 24px !important; margin-bottom: 50px !important; }
  .how-to-order-section .order-steps { display: flex !important; flex-direction: row !important; flex-wrap: nowrap !important; justify-content: center !important; gap: 40px !important; }
  .how-to-order-section .order-step { flex: 1 !important; max-width: 350px !important; padding: 32px 24px !important; }
  .how-to-order-section .step-image { height: 220px !important; margin-bottom: 20px !important; }
  .how-to-order-section .step-title { font-size: 26px !important; margin-bottom: 15px !important; }
  .how-to-order-section .step-description { display: block !important; font-size: 16px !important; }
}

/* 2. MOBILE (Ecrãs pequenos - Força os cartões a ficarem pequenos e com scroll horizontal) */
@media (max-width: 768px) {
  .how-to-order-section { padding: 24px 16px !important; }
  .how-to-order-section .how-to-order-title { font-size: 22px !important; margin-bottom: 8px !important; line-height: 1.3 !important; }
  .how-to-order-section .how-to-order-subtitle { font-size: 14px !important; margin-bottom: 24px !important; }
  
  /* Ativa o scroll horizontal dos cartões */
  .how-to-order-section .order-steps { 
    display: flex !important; 
    flex-direction: row !important; 
    flex-wrap: nowrap !important; 
    overflow-x: auto !important; 
    gap: 16px !important; 
    padding-bottom: 16px !important;
    justify-content: flex-start !important;
    scrollbar-width: none !important;
  }
  .how-to-order-section .order-steps::-webkit-scrollbar { display: none !important; }
  
  /* Impede os cartões de se esmagarem */
  .how-to-order-section .order-step { 
    flex: 0 0 260px !important; 
    max-width: 260px !important; 
    padding: 20px 16px !important; 
    margin-bottom: 0 !important;
  }
  
  /* Mantém as imagens e letras pequenas dentro dos cartões */
  .how-to-order-section .step-image { height: 140px !important; margin-bottom: 12px !important; }
  .how-to-order-section .step-title { font-size: 18px !important; margin-bottom: 8px !important; line-height: 1.2 !important; }
  .how-to-order-section .step-description { display: none !important; } /* Escondido para poupar espaço no mobile */
  .how-to-order-section .step-badge { font-size: 11px !important; padding: 4px 8px !important; }
}

/* FORMULÁRIO NANO SLIM - DESIGN ADAPTADO */
.form-container {
    max-width: 380px;
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    padding: 28px 30px;
    font-family: 'Montserrat', Arial, sans-serif;
    margin: 0; /* Ajustado para alinhar no Hero */
    color: #1b1b1b;
    border: 1px solid #e5e5e5;
}

.form-title { font-size: 22px; font-weight: 700; text-align: center; color: #204b2b; margin-bottom: 12px; }

.discount-badge { display: inline-block; background-color: #ffd700; color: #111; font-weight: 600; border-radius: 8px; padding: 6px 12px; font-size: 14px; margin-bottom: 10px; width: 100%; text-align: center; }

.form-subtitle { text-align: center; color: #666; font-size: 14px; margin-bottom: 15px; }

.form-input { width: 100%; padding: 14px; border: 1px solid #ccc; border-radius: 8px; font-size: 16px; margin-bottom: 12px; background-color: #fdfdfd; transition: all 0.3s ease; }
.form-input:focus { border-color: #4caf50; outline: none; }

.price-container { text-align: center; margin: 15px 0; }
.old-price { text-decoration: line-through; font-size: 18px; color: #888; }
.new-price { font-size: 30px; font-weight: bold; color: #d62828; margin-top: 5px; }

.submit-button { width: 100%; background-color: #d62828; color: white; border: none; padding: 16px; border-radius: 10px; font-size: 18px; font-weight: 600; cursor: pointer; transition: all 0.3s ease; text-transform: uppercase; }
.submit-button:hover { background-color: #b71c1c; transform: scale(1.03); }

.asterisk { font-size: 13px; }
.product-main-image {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Isso garante que a imagem apareça inteira sem cortar */
    padding: 20px; /* Um pequeno respiro nas bordas para ficar elegante */
}

/* --- AJUSTE DE ESPAÇAMENTO DESKTOP (SOMENTE PARA DESKTOP) --- */
@media (min-width: 769px) {
    .hero-grid {
        display: grid;
        grid-template-columns: 1fr 1fr; /* Mantém as duas colunas */
        gap: 210px !important; /* Aumente este valor para dar mais espaço branco */
        align-items: center;
        max-width: 1100px;
        margin: 0 auto;
    }
}

/* =======================================================
   OVERRIDES DA LANDING PAGE NANO SLIM (CONVERSÃO & EFSA)
   ======================================================= */

/* 1. COMPONENTE: FORMULÁRIO DE CAPTURA & CoD (Psicologia Eva Heller) */
.form-container {
    max-width: 380px;
    background: #f4f7f4; /* Fundo suave para separar e criar bloco de conforto */
    border-radius: 14px;
    box-shadow: 0 8px 24px rgba(0, 98, 65, 0.08); /* Sombra em tom de verde */
    padding: 28px 30px;
    font-family: 'Montserrat', Arial, sans-serif;
    margin: 0;
    color: #1b1b1b;
    border: 1px solid #d1e2d6; /* Borda orgânica */
}

.cod-lock-message {
    font-size: 12.5px;
    color: #006241; /* Verde institucional ArmazemClick */
    text-align: center;
    margin-top: 16px;
    font-weight: 600;
    line-height: 1.4;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    background-color: rgba(0, 98, 65, 0.05);
    border-radius: 8px;
    border: 1px dashed #006241;
}

/* 2. COMPONENTE: BOX DE CONFIANÇA (Verde Institucional) */
.trust-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: #006241 !important; /* Força a cor principal da marca */
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
    flex-shrink: 0;
}

/* 3. COMPONENTE: GRADE DE BENEFÍCIOS (Alinhamento Correto Mobile) */
.benefit-item {
    display: flex;
    align-items: flex-start; /* Alinhamento ao topo para não quebrar em textos longos */
    gap: 12px;
    color: var(--text-dark);
    margin-bottom: 8px;
    line-height: 1.5;
}

.benefit-icon {
    width: 20px !important;
    height: 20px !important;
    color: #006241 !important;
    flex-shrink: 0;
    margin-top: 2px; /* Ajuste óptico vertical */
}

/* 4. COMPONENTE: BANNERS PROMOCIONAIS (Lifestyle em vez de Gradientes) */
.promo-card {
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    border: none;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 220px;
    color: white;
    position: relative;
    overflow: hidden;
    background-color: #f5f5f5; /* Fallback */
    background-size: cover;
    background-position: center;
}

/* Imagens de fundo ricas (Substitua as URLs pelas imagens finais do WordPress) */
.promo-image-1 {
    background-image: url('http://armazemclick.ro/wp-content/uploads/2026/03/placeholder-lifestyle-1.jpg');
}

.promo-image-2 {
    background-image: url('http://armazemclick.ro/wp-content/uploads/2026/03/placeholder-lifestyle-2.jpg');
}

/* Overlay escuro para garantir leitura do texto (Aprovado Acessibilidade) */
.promo-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.3) 100%);
    z-index: 1;
}

.promo-content-wrap, .promo-card .btn-promo {
    position: relative;
    z-index: 2;
}

.promo-card .btn-promo {
    background-color: #006241;
    color: white;
    border: none;
}

.promo-card .btn-promo:hover {
    background-color: #D4AF37; /* Dourado da CTA */
    color: white;
}

/* 5. COMPONENTE: DISCLAIMER LEGAL (Rodapé) */
.footer-disclaimer {
    font-size: 11px;
    color: #888888;
    margin-top: 16px;
    line-height: 1.5;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 16px;
}
/* =============================================
   COMPONENTE: PROMO CAROUSEL (Herdado da Home)
   ============================================= */
.promo-carousel-section {
  display: block;
  padding: 0 16px;
  background-color: #fff;
}

.promo-carousel-container {
  position: relative;
  max-width: 1100px; /* Alinhado para não esticar demais no desktop */
  height: 100%;
  margin: 5px auto;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.promo-carousel {
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 3.5 / 1; /* Proporção padrão Desktop para imagens escaladas */
}

.promo-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  z-index: 1;
}

.promo-slide.active {
  opacity: 1;
  z-index: 2; /* Joga o banner ativo para a frente */
}

.promo-slide a {
  display: block;
  width: 100%;
  height: 100%;
}

.promo-slide-img {
  width: 100%;
  height: 100%;
  object-fit: fill;
  border-radius: 8px;
}

/* Setas de navegação minimalistas */
.promo-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: transparent;
  border: none;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: opacity 0.2s;
  z-index: 10;
  opacity: 0.7;
}

.promo-arrow:hover {
  opacity: 1;
}

.promo-arrow-left { left: 4px; }
.promo-arrow-right { right: 4px; }

.promo-arrow svg {
  color: #000000;
  stroke: #000000;
  width: 16px;
  height: 16px;
}

/* RESPONSIVO MOBILE (Media Query Integrada) */
@media (max-width: 768px) {
  .promo-carousel {
    aspect-ratio: 2 / 1; /* Proporção otimizada para telas verticais de smartphone */
  }
  .promo-carousel-section {
    padding: 8px 12px;
  }
}

/* Seção Simplificada para Imagem Única */
.how-to-order-simple {
    width: 100%;
    padding: 40px 0;
    background: #ffffff; /* Ajuste a cor de fundo se precisar */
}

.how-to-order-simple .container {
    padding: 0 16px;
    max-width: 1200px;
    margin: 0 auto;
}

.full-width-image {
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 12px; /* Opcional: mantém as bordas arredondadas que você gosta */
    box-shadow: none;    /* Remova a sombra se quiser que fique totalmente plana como na home */
}

.banner-hero {
    width: 100%;
    padding: 20px 0;
    text-align: center;
}

.responsive-banner {
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 8px; /* Opcional: mantém um aspecto limpo */
}

/* =======================================================
   CENTRALIZAR FORMULÁRIO NANO SLIM (MOBILE)
   ======================================================= */
@media (max-width: 768px) {
    .form-container {
        margin: 0 auto !important;
    }
}
.banner-hero {
    width: 100%;
    padding: 20px 0;
    text-align: center;
}

.responsive-banner {
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 8px; /* Opcional: mantém um aspecto limpo */
}

/* =============================================
   SEÇÃO: INFORMAÇÕES DO PRODUTO (MOBILE-FIRST)
   ============================================= */
.product-info-section {
    padding: 40px 16px;
    background-color: #ffffff;
}
.product-info-section .container {
    max-width: 800px; /* Largura focada para melhor leitura de textos longos */
    margin: 0 auto;
}
.info-block {
    margin-bottom: 35px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e8e8e8;
}
.info-block:last-child {
    border-bottom: none;
    margin-bottom: 0;
}
.info-block h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
}
/* Lista de Benefícios */
.info-list {
    list-style: none;
    padding: 0;
}
.info-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-family: 'Inter', 'Roboto', sans-serif;
    font-size: 15px;
    line-height: 1.5;
    color: #4a4a4a;
    margin-bottom: 12px;
}
.check-icon {
    color: #006241; /* Verde institucional */
    font-weight: bold;
    font-size: 16px;
}
/* Grid de Ingredientes Atômicos */
.block-intro {
    font-family: 'Inter', 'Roboto', sans-serif;
    font-size: 15px;
    line-height: 1.5;
    color: #666;
    margin-bottom: 15px;
}
.ingredients-grid {
    display: grid;
    grid-template-columns: 1fr; /* 1 coluna no mobile */
    gap: 16px;
}
.ingredient-card {
    background-color: #F9FBF9; /* Fundo off-white suave */
    padding: 16px;
    border-radius: 8px;
    border-left: 4px solid #006241; /* Detalhe verde lateral */
}
.ingredient-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 6px;
}
.ingredient-card p {
    font-family: 'Inter', 'Roboto', sans-serif;
    font-size: 14px;
    line-height: 1.4;
    color: #4a4a4a;
}
/* Estilo Bula / Lista Geral */
.ingredients-bula {
    font-family: 'Inter', 'Roboto', sans-serif;
    font-size: 13px;
    line-height: 1.6;
    color: #777;
    background: #f5f5f5;
    padding: 12px;
    border-radius: 6px;
    text-align: justify;
}
/* Bloco de Administração (Como usar) */
.admin-box {
    background: #f4f7f4;
    padding: 20px;
    border-radius: 10px;
    border: 1px dashed #006241;
}
.admin-box h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    color: #1a1a1a;
    margin-bottom: 10px;
}
.admin-box p {
    font-family: 'Inter', 'Roboto', sans-serif;
    font-size: 14px;
    line-height: 1.5;
    color: #4a4a4a;
    margin-bottom: 8px;
}
.admin-box p:last-child {
    margin-bottom: 0;
}
.admin-note {
    font-style: italic;
    color: #555;
    margin-top: 10px;
}
/* MEDIA QUERY PARA DESKTOP */
@media (min-width: 769px) {
    .ingredients-grid {
        grid-template-columns: 1fr 1fr; /* Divide em 2 colunas no PC */
    }
    .info-block h2 {
        font-size: 24px;
    }
}

/* =======================================================
   CORREÇÃO: EXIBIR CARROSSEL DE PRODUTOS NO MOBILE
   ======================================================= */
@media (max-width: 768px) {
    /* Força a exibição da grid que estava oculta no mobile */
    .products-carousel-section .products-grid-desktop {
        display: flex !important;
        overflow-x: auto !important; /* Ativa a rolagem horizontal */
        gap: 12px !important;
        padding: 10px 5px 20px 5px !important;
        -webkit-overflow-scrolling: touch; /* Deixa o deslize suave no iPhone/Android */
        scrollbar-width: none; /* Esconde a barra de rolagem no Firefox */
    }
    
    /* Esconde a barra de rolagem visual no Chrome/Safari (deixa mais limpo) */
    .products-carousel-section .products-grid-desktop::-webkit-scrollbar {
        display: none;
    }
    
    /* Ajusta o tamanho dos cartões para não ficarem esmagados e indicar que tem mais para o lado */
    .products-carousel-section .products-grid-desktop .product-card {
        flex: 0 0 180px !important;
        min-width: 180px !important;
        max-width: 180px !important;
    }
}
/* =======================================================
   OTIMIZAÇÃO DO CARROSSEL DE PRODUTOS RELACIONADOS
   ======================================================= */
#relatedProductsGrid {
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Oculta barra no Firefox */
    -ms-overflow-style: none; /* Oculta barra no IE/Edge */
}

#relatedProductsGrid::-webkit-scrollbar {
    display: none; /* Oculta barra no Chrome/Safari */
}

@media (max-width: 768px) {
    /* Descola levemente as setas das bordas da tela no Mobile */
    .products-carousel-desktop .products-arrow-left { left: 5px; }
    .products-carousel-desktop .products-arrow-right { right: 5px; }
}
/* =============================================
   COMPONENTE: QUICK SPECS (OCULTO NO MOBILE)
   ============================================= */
.product-quick-specs {
    display: none; /* Padrão Mobile-First: Oculto no celular */
}

/* =======================================================
   ESTILIZAÇÃO DA DOBRA PRINCIPAL EM 3 COLUNAS (DESKTOP)
   ======================================================= */
@media (min-width: 769px) {
    .hero-grid {
        display: grid;
        /* Define as 3 colunas: Imagem fluida, Meio fixo em 300px, Formulário fixo em 380px */
        grid-template-columns: 1fr 300px 380px; 
        /* Diminuímos o gap para 40px para os blocos conversarem entre si elegantemente */
        gap: 40px !important; 
        align-items: center;
        max-width: 1200px;
        margin: 0 auto;
    }

    .product-quick-specs {
        display: block; /* Ativa exclusivamente no PC */
        background-color: #F9FBF9;
        border: 1px solid #e8e8e8;
        border-radius: 8px;
        padding: 16px;
        width: 100%;
        margin-top: 0 !important; /* Reseta a margem antiga pois agora estão lado a lado */
    }
}
/* =======================================================
   EXPANSÃO DO CARROSSEL DE PROMOÇÕES (APENAS DESKTOP)
   ======================================================= */
@media (min-width: 769px) {
    /* Remove o preenchimento lateral que impedia o banner de encostar nas bordas */
    .promo-section .promo-carousel-section {
        padding: 0 !important; 
    }
    
    /* Libera a largura máxima para 100% e remove as bordas arredondadas */
    .promo-section .promo-carousel-container {
        max-width: 100% !important; 
        margin: 0 !important; 
        border-radius: 0 !important; 
        box-shadow: none !important; /* Opcional: remove a sombra pois o banner ocupará a tela toda */
    }

    /* Garante que a imagem preencha perfeitamente o novo espaço */
    .promo-section .promo-slide-img {
        width: 100% !important;
        height: auto !important;
        object-fit: cover; 
        border-radius: 0 !important;
    }
}
/* =======================================================
   CORREÇÃO DEFINITIVA DO RODAPÉ (NANO SLIM RESPONSIVO)
   ======================================================= */
/* Versão Desktop: Organiza em 4 colunas limpas */
@media (min-width: 769px) {
    .nano-footer-grid {
        display: grid !important;
        grid-template-columns: 2fr 1fr 1fr 1fr !important;
        gap: 40px !important;
        text-align: left !important;
    }
}

/* Versão Mobile: Empilha tudo em 1 coluna vertical e centraliza */
@media (max-width: 768px) {
    .footer-main {
        padding: 32px 16px !important;
    }
    
    .nano-footer-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 35px !important;
        text-align: center !important;
        width: 100% !important;
    }

    .nano-footer-grid .footer-column {
        width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
    }

    .nano-footer-grid .footer-column h4 {
        text-align: center !important;
        margin-bottom: 12px !important;
        width: 100% !important;
    }

    .nano-footer-grid .footer-column ul {
        padding: 0 !important;
        margin: 0 !important;
        text-align: center !important;
    }

    .footer-logo {
        justify-content: center !important;
        margin-bottom: 16px !important;
    }

    .contact-info {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 10px !important;
    }
}
/* =======================================================
   REGRAS COMPLEMENTARES DE ALINHAMENTO DO RODAPÉ
   ======================================================= */
/* Ajuste Desktop */
@media (min-width: 769px) {
    .nano-footer-bottom-row {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        width: 100% !important;
        margin-bottom: 20px !important;
    }
}

/* Ajuste Mobile Completo (Campo Verde + Copyright) */
@media (max-width: 768px) {
    /* 1. Forçar ícones e textos da faixa verde a ficarem centralizados e brancos puros */
    .footer-benefits .benefit-item {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important; /* Move o ícone SVG para o centro */
        text-align: center !important;  /* Centraliza as linhas de texto */
        color: #ffffff !important;
    }

    .footer-benefits .benefit-item svg {
        color: #ffffff !important;
        stroke: #ffffff !important;    /* Altera as linhas do contorno para branco */
        margin-bottom: 4px !important;
    }

    .footer-benefits .benefit-item strong,
    .footer-benefits .benefit-item span {
        color: #ffffff !important;      /* Protege contra heranças escuras */
    }

    /* 2. Centralizar totalmente os textos de Copyright e Termos na base */
    .nano-footer-bottom-row {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        gap: 12px !important;
        margin-bottom: 20px !important;
        width: 100% !important;
    }

    .nano-footer-bottom-row p {
        text-align: center !important;
        margin: 0 !important;
        color: #666666 !important;
    }

    .payment-methods {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 6px !important;
    }
}
/* =========================================
   FORMULÁRIO NANO SLIM (NETVORK API)
   ========================================= */
.ns-form-card {
  background-color: #f6fbf7;
  border-radius: 12px;
  padding: 25px 20px;
  max-width: 340px;
  margin: 0 auto;
  font-family: Arial, sans-serif;
  border: 1px solid #e8f0e9;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.ns-badge {
  background-color: #ffcd00;
  color: #000;
  font-weight: 700;
  padding: 6px 20px;
  border-radius: 8px;
  display: inline-block;
  margin-bottom: 20px;
  font-size: 14px;
}

.ns-title {
  color: #0d5440;
  font-weight: 800;
  font-size: 24px;
  margin: 0 0 15px 0;
}

.ns-desc {
  font-size: 13px;
  color: #555;
  margin-bottom: 20px;
  line-height: 1.5;
}

.ns-input {
  width: 100%;
  padding: 14px;
  margin-bottom: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 15px;
  box-sizing: border-box;
  outline: none;
  transition: border-color 0.3s;
}

.ns-input:focus {
  border-color: #0d5440;
}

.ns-price-old {
  text-decoration: line-through;
  color: #888;
  font-size: 18px;
  margin-top: 10px;
  margin-bottom: 5px;
}

.ns-price-new {
  color: #d32f2f;
  font-weight: 900;
  font-size: 32px;
  margin-bottom: 20px;
}

.ns-btn {
  background-color: #d32f2f;
  color: white;
  border: none;
  border-radius: 6px;
  padding: 16px;
  width: 100%;
  font-weight: 900;
  font-size: 18px;
  cursor: pointer;
  margin-bottom: 20px;
  transition: background-color 0.3s;
}

.ns-btn:hover {
  background-color: #b71c1c;
}

.ns-footer {
  border: 1px dashed #0d5440;
  border-radius: 8px;
  padding: 12px;
  font-size: 12px;
  color: #0d5440;
  font-weight: 700;
  background-color: transparent;
  line-height: 1.4;
}
tant;
}

/* =======================================================
   CORREÇÃO DEFINITIVA: LOGO MOBILE CONTROLADA
   ======================================================= */
.mobile-topbar-content {
    height: 60px !important; /* Altura da barra otimizada */
}

.mobile-logo {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex: 1 !important;
}

/* Alterado de flex para inline-flex para não esticar infinitamente no Elementor */
.mobile-logo a {
    display: inline-flex !important; 
    align-items: center !important;
    justify-content: center !important;
}

.mobile-logo-image {
    height: 45px !important; /* Altura segura para a logo não cortar */
    width: auto !important;
    max-width: 180px !important; /* TRAVA ABSOLUTA: Impede que a logo fique gigante */
    object-fit: contain !important;
}
/* =======================================================
   ESTILO DO AUTO-COMPLETAR DA PESQUISA (NOVO)
   ======================================================= */
.search-results-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    z-index: 99999;
    max-height: 350px;
    overflow-y: auto;
    display: none;
    margin-top: 5px; /* Leve espaço entre a barra e a caixa */
}

.search-results-dropdown.active {
    display: block;
}

.search-result-item {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    text-decoration: none;
    color: #333333;
    border-bottom: 1px solid #f0f0f0;
    transition: background-color 0.2s ease;
}

.search-result-item:last-child {
    border-bottom: none;
}

.search-result-item:hover {
    background-color: #f9fbf9;
}

.search-result-image {
    width: 40px;
    height: 40px;
    object-fit: contain;
    margin-right: 12px;
    border-radius: 4px;
    background: #f5f5f5;
    padding: 2px;
}

.search-result-info {
    display: flex;
    flex-direction: column;
}

.search-result-name {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 2px;
    line-height: 1.2;
}

.search-result-price {
    font-size: 13px;
    color: #006241; /* Verde do seu tema */
    font-weight: 700;
}

.search-no-results {
    padding: 16px;
    text-align: center;
    font-size: 14px;
    color: #777;
    font-style: italic;
}
/* =======================================================
   ESTILO DO AUTO-COMPLETAR DA PESQUISA
   ======================================================= */
.search-results-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    z-index: 99999;
    max-height: 350px;
    overflow-y: auto;
    display: none;
    margin-top: 5px;
}

.search-results-dropdown.active {
    display: block;
}

.search-result-item {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    text-decoration: none;
    color: #333333;
    border-bottom: 1px solid #f0f0f0;
    transition: background-color 0.2s ease;
}

.search-result-item:last-child { border-bottom: none; }
.search-result-item:hover { background-color: #f9fbf9; }

.search-result-image {
    width: 40px; height: 40px;
    object-fit: contain; margin-right: 12px;
    border-radius: 4px; background: #f5f5f5; padding: 2px;
}

.search-result-info { display: flex; flex-direction: column; }
.search-result-name { font-size: 14px; font-weight: 600; margin-bottom: 2px; line-height: 1.2; }
.search-result-price { font-size: 13px; color: #006241; font-weight: 700; }
.search-no-results { padding: 16px; text-align: center; font-size: 14px; color: #777; font-style: italic; }

/* =======================================================
   RODAPÉ ACORDEÃO (MOBILE)
   ======================================================= */
/* Configuração Padrão (Desktop) */
.footer-accordion-header {
    display: none; /* Esconde o botão no PC */
}
.footer-accordion-content {
    display: block; /* Mantém os links sempre visíveis no PC */
}

/* Configuração Mobile */
@media (max-width: 768px) {
    .desktop-footer-title {
        display: none; /* Esconde o título estático no mobile */
    }
    
    .footer-grid {
        gap: 16px !important; /* Diminui o buraco entre as colunas no mobile */
        text-align: left !important; /* Alinha os textos à esquerda para melhor leitura do acordeão */
    }
    
    .footer-logo, .footer-description, .social-links {
        justify-content: center;
        text-align: center;
    }

    .footer-accordion-header {
        display: flex;
        width: 100%;
        justify-content: space-between;
        align-items: center;
        background: none;
        border: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding: 16px 0;
        color: white;
        cursor: pointer;
        text-align: left;
    }

    .footer-accordion-header h4 {
        margin-bottom: 0 !important;
        font-size: 16px;
    }

    .footer-icon {
        transition: transform 0.3s ease;
        color: #999;
    }

    .footer-accordion.active .footer-icon {
        transform: rotate(180deg);
    }

    .footer-accordion-content {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-out;
    }

    .footer-accordion.active .footer-accordion-content {
        max-height: 400px;
    }

    .footer-accordion-content ul {
        padding-top: 16px;
        padding-bottom: 8px;
    }
}

/* =======================================================
   ESPAÇO RESERVADO: SELOS DE SEGURANÇA NO RODAPÉ
   ======================================================= */
.footer-trust-seals {
    width: 100%;
    min-height: 60px; /* Define o tamanho do buraco invisível (pode aumentar se achar pouco) */
    margin-bottom: 24px; /* Empurra o menu "Ghidul Cumpărătorului" mais para baixo */
    
    /* As regras abaixo já estão prontas para organizar as futuras imagens: */
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

/* =======================================================
   SELOS DE CONFIANÇA - LAYOUT EXCLUSIVO MOBILE
   ======================================================= */

/* 1. Esconde os selos completamente no Desktop */
@media (min-width: 769px) {
    .mobile-seals-block {
        display: none !important;
    }
}

/* 2. Organiza os selos no Telemóvel */
@media (max-width: 768px) {
    /* Bloco dos 6 primeiros selos */
    .footer-trust-seals.mobile-seals-block {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap; /* Evita quebra de layout se a tela for muito pequena */
        gap: 12px;
        margin-bottom: 32px;
        width: 100%;
    }
    
    .seal-img {
        object-fit: contain;
        border-radius: 4px;
    }

    /* NOVOS TAMANHOS (Compensando as bordas transparentes do Canva) */
    .seal-1, .seal-2 { 
        width: 75px; 
        height: auto; 
    }
    
    .seal-5 { 
        width: 85px; 
        height: auto; 
    }

    /* Coluna que empilha o selo 3 e 4 */
    .seal-col-3-4 {
        display: flex;
        flex-direction: column;
        gap: 8px;
        align-items: center;
        justify-content: center;
    }
    
    .seal-3, .seal-4 { 
        width: 95px; 
        height: auto; 
    }

    .seal-6 { 
        width: 50px; 
        height: auto; 
    }

    /* =======================================
       ORGANIZAÇÃO DO SELO 7 NO CENTRO EXATO
       ======================================= */
    /* A regra 'grid' força 3 colunas perfeitas: Texto | Imagem | Texto */
    .payment-icons {
        display: grid !important; /* O !important sobrepõe a configuração original do HTML */
        grid-template-columns: 1fr auto 1fr; 
        align-items: center;
        gap: 8px;
        width: 100%;
    }
    
    .payment-icon {
        font-size: 10px !important; /* Reduz a fonte levemente para tudo caber na mesma linha */
        padding: 6px; /* Aumentei levemente o respiro interno para ficar mais elegante */
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .seal-7 {
        width: 70px; /* Tamanho ajustado do selo de pagamento */
        height: auto;
    }
}

/* =======================================================
   SELOS DE CONFIANÇA - LAYOUT EXCLUSIVO DESKTOP
   ======================================================= */

/* 1. Esconde os selos desktop no telemóvel para não bagunçar */
@media (max-width: 768px) {
    .desktop-seals-col-1, 
    .desktop-seals-col-5, 
    .d-seal-6 {
        display: none !important;
    }
}

/* 2. Estiliza e organiza no PC */
@media (min-width: 769px) {
    /* Coluna 1: Selos abaixo da descrição */
    .desktop-seals-col-1 {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 16px;
        margin-top: 24px;
    }

    .d-seal-1, .d-seal-2 { width: 65px; height: auto; object-fit: contain; }
    .d-seal-3 { width: 130px; height: auto; object-fit: contain; }

    /* Coluna 5: Selos na lateral direita */
    .desktop-seals-col-5 {
        display: flex;
        flex-direction: column;
        align-items: flex-end; /* Encosta os selos na direita da tela */
        gap: 24px;
    }

    .d-seal-4 { width: 110px; height: auto; object-fit: contain; }
    .d-seal-5 { width: 80px; height: auto; object-fit: contain; }

    /* Selo central do pagamento */
    .d-seal-6 {
        width: 70px;
        height: auto;
        object-fit: contain;
    }
}/* End custom CSS */