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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
}

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

/* ============================================
   HEADER TOP
   ============================================ */
.header-top {
    background-color: #2c3e50;
    color: white;
    padding: 10px 0;
    font-size: 14px;
}

.header-top .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info a,
.contact-info span {
    color: white;
    text-decoration: none;
    margin-right: 20px;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #3498db;
}

.user-actions a {
    color: white;
    text-decoration: none;
    margin-left: 20px;
    transition: color 0.3s ease;
}

.user-actions a:hover {
    color: #3498db;
}

/* ============================================
   NAVEGAÇÃO PRINCIPAL
   ============================================ */
.nav-menu {
    background-color: #ffffff;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

/* LOGO - TAMANHO CORRIGIDO */
.nav-logo {
    flex-shrink: 0;
}

.nav-logo-img {
    max-height: 35px;
    width: auto;
    height: auto;
    display: block;
}


/* LINKS CENTRALIZADOS */
.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin: 0;
    padding: 0;
    flex: 1;
}

.nav-links li a {
    color: rgb(0, 0, 0);
    text-decoration: none;
    padding: 15px 18px;
    display: block;
    transition: background-color 0.3s;
    font-size: 14px;
}

.nav-links li a:hover {
    background-color: #2c3e50;
}

/* CARRINHO - CORRIGIDO */
.nav-cart {
    flex-shrink: 0;
    position: relative;
    border-radius: 15px;
}

/* Carrinho - ícone vermelho */
.nav-cart a {
    color: #2b3243;  /* Vermelho */
    font-size: 22px;
    padding: 12px 15px;
    display: inline-block;
    transition: color 0.3s;
    text-decoration: none;
}

.nav-cart a:hover {
    color: #c0392b;  /* Vermelho mais escuro no hover */
}

.nav-cart .cart-count {
    position: absolute;
    top: 2px;
    right: 2px;
    background-color: #e74c3c;
    color: white;
    border-radius: 50%;
    padding: 2px 6px;
    font-size: 11px;
    min-width: 18px;
    text-align: center;
    font-weight: bold;
}

/* Responsivo */
@media (max-width: 768px) {
    .nav-wrapper {
        flex-direction: column;
        gap: 10px;
        padding: 10px 0;
    }
    
    .nav-logo {
        width: auto;
        text-align: center;
    }
    
    .nav-logo-img {
        max-height: 50px;
        margin: 0 auto;
    }
    
    .nav-links {
        flex-direction: column;
        width: 100%;
    }
    
    .nav-links li {
        width: 100%;
        text-align: center;
    }
    
    .nav-links li a {
        padding: 10px 20px;
    }
    
    .nav-cart {
        width: 100%;
        text-align: center;
        border-top: 1px solid rgba(255,255,255,0.1);
        padding-top: 10px;
    }
    
    .nav-cart a {
        display: inline-block;
        padding: 8px 20px;
    }
}
/* ============================================
   MANIFESTO MODERNO - LARGURA TOTAL
   ============================================ */
.manifesto-moderno {
    position: relative;
    width: 100%;
    padding: 100px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
    color: white;
    overflow: hidden;
}

.manifesto-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 2000 2000"><path fill="rgba(52,152,219,0.03)" d="M0,0 L2000,0 L2000,2000 L0,2000 Z M1000,500 L1200,800 L800,800 Z"/></svg>');
    background-size: cover;
    pointer-events: none;
}

.manifesto-header {
    text-align: center;
    margin-bottom: 60px;
}

.manifesto-badge {
    display: inline-block;
    background: rgba(52, 152, 219, 0.2);
    color: #3498db;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.manifesto-header h2 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #fff 0%, #3498db 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.manifesto-header p {
    font-size: 1.2rem;
    color: #bdc3c7;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.manifesto-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto 80px;
}

.manifesto-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 40px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.manifesto-card:hover {
    transform: translateY(-10px);
    border-color: rgba(52, 152, 219, 0.5);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.manifesto-card.caos:hover {
    border-color: rgba(231, 76, 60, 0.5);
}

.manifesto-card.organizado:hover {
    border-color: rgba(46, 204, 113, 0.5);
}

.manifesto-card-icon {
    width: 60px;
    height: 60px;
    background: rgba(52, 152, 219, 0.15);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.manifesto-card.caos .manifesto-card-icon {
    background: rgba(231, 76, 60, 0.15);
}

.manifesto-card.organizado .manifesto-card-icon {
    background: rgba(46, 204, 113, 0.15);
}

.manifesto-card-icon i {
    font-size: 28px;
    color: #3498db;
}

.manifesto-card.caos .manifesto-card-icon i {
    color: #e74c3c;
}

.manifesto-card.organizado .manifesto-card-icon i {
    color: #2ecc71;
}

.manifesto-card h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.manifesto-card ul {
    list-style: none;
}

.manifesto-card ul li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #bdc3c7;
}

.manifesto-card ul li i {
    width: 20px;
    font-size: 16px;
}

.manifesto-card.caos ul li i {
    color: #e74c3c;
}

.manifesto-card.organizado ul li i {
    color: #2ecc71;
}

.manifesto-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #3498db, #2ecc71);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.9rem;
    color: #bdc3c7;
    letter-spacing: 1px;
}

/* Responsivo */
@media (max-width: 768px) {
    .manifesto-moderno {
        padding: 60px 0;
    }
    
    .manifesto-header h2 {
        font-size: 2rem;
    }
    
    .manifesto-header p {
        font-size: 1rem;
        padding: 0 20px;
    }
    
    .manifesto-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 20px;
    }
    
    .manifesto-card {
        padding: 30px;
    }
    
    .manifesto-stats {
        gap: 30px;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
}
/* ============================================
   HERO SECTION
   ============================================ */


.hero-content h2 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 30px;
}

.btn-primary {
    background-color: #e74c3c;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 18px;
    transition: background-color 0.3s;
    display: inline-block;
}

.btn-primary:hover {
    background-color: #c0392b;
}

/* ============================================
   PRODUTOS
   ============================================ */
.section-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 40px;
    color: #2c3e50;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.product-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.discount-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #e74c3c;
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 12px;
}

.product-info {
    padding: 20px;
}

.product-info h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.price {
    margin-bottom: 15px;
}

.current-price {
    font-size: 24px;
    color: #e74c3c;
    font-weight: bold;
}

.old-price {
    text-decoration: line-through;
    color: #999;
    margin-right: 10px;
}

.btn-add-cart, 
.btn-details {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s;
}

.btn-add-cart {
    background-color: #3498db;
    color: white;
}

.btn-add-cart:hover {
    background-color: #2980b9;
}

.btn-details {
    background-color: #ecf0f1;
    color: #333;
    text-align: center;
    display: inline-block;
    text-decoration: none;
}

.btn-details:hover {
    background-color: #bdc3c7;
}

/* ============================================
   CATEGORIAS
   ============================================ */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 30px;
}

.category-card {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.category-card:hover {
    transform: translateY(-5px);
}

.category-card a {
    text-decoration: none;
    color: #333;
}

.category-icon {
    font-size: 48px;
    color: #3498db;
    margin-bottom: 15px;
}

.category-card h3 {
    margin-bottom: 10px;
}

/* ============================================
   BLOG
   ============================================ */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.blog-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.blog-image {
    height: 200px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-info {
    padding: 20px;
}

.blog-meta {
    color: #666;
    font-size: 14px;
    margin: 10px 0;
}

.read-more {
    color: #3498db;
    text-decoration: none;
    display: inline-block;
    margin-top: 10px;
    transition: color 0.3s;
}

.read-more:hover {
    color: #2980b9;
    text-decoration: underline;
}
/* ============================================
   PRODUTOS EM DESTAQUE - DESIGN MODERNO
   ============================================ */
.featured-products-moderno {
    padding: 80px 0;
    background: var(--gray-light);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-badge {
    display: inline-block;
    background: rgba(37, 99, 235, 0.1);
    color: var(--primary);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.section-header h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: var(--secondary);
}

.section-header h2 .highlight {
    color: var(--primary);
    position: relative;
}

.section-header p {
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

/* GRID: 4 COLUNAS FIXAS */
.products-grid-moderno {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}

/* Card do produto */
.product-card-moderno {
    background: white;
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.product-card-moderno:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 30px -12px rgba(0,0,0,0.15);
}

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

.product-badge {
    position: absolute;
    top: -12px;
    left: 20px;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
    font-size: 0.7rem;
    font-weight: bold;
    padding: 5px 12px;
    border-radius: 20px;
    text-transform: uppercase;
}

.product-icon {
    width: 60px;
    height: 60px;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.product-icon i {
    font-size: 28px;
    color: var(--primary);
}

.product-card-moderno h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--secondary);
}

.product-price {
    margin-bottom: 15px;
}

.price-value {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
}

.price-period {
    font-size: 0.85rem;
    color: var(--gray);
}

.product-description {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 20px;
}

.product-features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    text-align: left;
}

.product-features li {
    padding: 5px 0;
    font-size: 0.85rem;
    color: var(--gray);
}

.product-features li i {
    color: #10b981;
    margin-right: 8px;
    width: 18px;
}

.product-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.btn-add-cart-moderno {
    background: var(--primary);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
}

.btn-add-cart-moderno:hover {
    background: var(--primary-dark);
    transform: scale(1.02);
}

.btn-details-moderno {
    color: var(--gray);
    text-decoration: none;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    transition: all 0.3s;
}

.btn-details-moderno:hover {
    color: var(--primary);
    gap: 8px;
}

/* Responsivo */
@media (max-width: 1200px) {
    .products-grid-moderno {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
}

@media (max-width: 900px) {
    .products-grid-moderno {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .products-grid-moderno {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .section-header h2 {
        font-size: 1.6rem;
    }
}

/* ============================================
   NEWSLETTER
   ============================================ */
.newsletter {
    background-color: #1a252f;
    color: white;
    padding: 60px 0;
    text-align: center;
}

.newsletter h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

.newsletter p {
    margin-bottom: 30px;
}

#newsletter-form {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
}

#newsletter-form input {
    flex: 1;
    padding: 15px;
    border: none;
    border-radius: 5px 0 0 5px;
}

#newsletter-form button {
    padding: 15px 30px;
    background-color: #e74c3c;
    color: white;
    border: none;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    transition: background-color 0.3s;
}

#newsletter-form button:hover {
    background-color: #c0392b;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background-color: #1a252f;
    color: white;
    padding: 60px 0 20px;
}

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

.footer h3 {
    margin-bottom: 20px;
    font-size: 18px;
    color: white;
}

.footer ul {
    list-style: none;
}

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

.footer a {
    color: #ecf0f1;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links ul li a:hover {
    color: #3498db !important;
    text-decoration: underline !important;
}

.footer-contact ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-contact ul li a:hover {
    color: #3498db !important;
    text-decoration: underline !important;
    transform: translateX(3px);
}

.footer-contact ul li a[href^="tel:"]:hover,
.footer-contact ul li a[href^="mailto:"]:hover,
.footer-contact ul li a[href^="https://wa.me"]:hover,
.footer-contact ul li a[href*="maps.google"]:hover {
    color: #3498db !important;
}

.footer-contact ul li i {
    width: 25px;
    color: #3498db;
    margin-right: 8px;
    transition: color 0.3s;
}

.footer-contact ul li a:hover i {
    color: #3498db;
    transform: scale(1.1);
}

.social-icons a {
    display: inline-block;
    margin-right: 15px;
    font-size: 24px;
    color: #bdc3c7;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    color: #3498db !important;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #34495e;
    color: #7f8c8d;
}

.footer-bottom a {
    color: #7f8c8d;
}

.footer-bottom a:hover {
    color: #3498db;
}

/* ============================================
   NOTIFICAÇÕES
   ============================================ */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 15px 20px;
    border-radius: 5px;
    color: white;
    z-index: 1000;
    animation: slideIn 0.3s ease-out;
}

.notification.success {
    background-color: #27ae60;
}

.notification.error {
    background-color: #e74c3c;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* ============================================
   LANGUAGE SWITCHER
   ============================================ */
.language-switcher {
    position: relative;
    display: inline-block;
    margin-left: 15px;
}

.current-language {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 5px 10px;
    background: rgba(255,255,255,0.1);
    border-radius: 5px;
    transition: background 0.3s;
}

.current-language:hover {
    background: rgba(255,255,255,0.2);
}

.current-language img {
    width: 20px;
    margin-right: 8px;
}

.current-language i {
    margin-left: 8px;
    font-size: 12px;
}

.language-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
    display: none;
    z-index: 1000;
    min-width: 180px;
    list-style: none;
    padding: 5px 0;
    margin: 5px 0 0;
}

.language-switcher:hover .language-dropdown {
    display: block;
}

.language-dropdown li a {
    display: flex;
    align-items: center;
    padding: 8px 15px;
    text-decoration: none;
    color: #333;
    transition: background 0.3s;
    font-size: 14px;
}

.language-dropdown li a:hover {
    background: #f5f5f5;
}

.language-dropdown img {
    width: 20px;
    margin-right: 10px;
}

.flag-icon {
    width: 20px;
    height: auto;
    border-radius: 2px;
}

.welcome-text {
    margin-right: 15px;
    color: #ecf0f1;
}

/* ============================================
   GALERIA
   ============================================ */
.galeria-container {
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 10px;
}

.galeria-preview {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 10px;
}

.galeria-item {
    position: relative;
    width: 100%;
    height: 100px;
}

.galeria-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
}

.btn-remove-galeria {
    position: absolute;
    top: 5px;
    right: 5px;
    background: rgba(255, 0, 0, 0.8);
    border: none;
    color: white;
    border-radius: 50%;
    cursor: pointer;
}

.btn-galeria {
    background: #3498db;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-galeria:hover {
    background: #2980b9;
}

/* ============================================
   UTILITÁRIOS
   ============================================ */
.currency-conversion-message {
    background: #fff3cd;
    border: 1px solid #ffeeba;
    color: #856404;
    padding: 12px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.currency-conversion-message i {
    font-size: 16px;
    color: #f39c12;
}

.price .current-price {
    font-size: 24px;
    font-weight: bold;
    color: #e74c3c;
}

.price small {
    font-size: 14px;
    color: #7f8c8d;
    margin-left: 5px;
}

/* ============================================
   RESPONSIVO
   ============================================ */
@media (max-width: 768px) {
    .nav-wrapper {
        flex-direction: column;
        gap: 10px;
        padding: 10px 0;
    }
    
    .nav-logo {
        order: 1;
    }
    
    .nav-links {
        flex-direction: column;
        width: 100%;
        order: 2;
    }
    
    .nav-links li {
        width: 100%;
        text-align: center;
    }
    
    .nav-links li a {
        padding: 10px 20px;
    }
    
    .nav-cart {
        order: 3;
        width: 100%;
        text-align: center;
        border-top: 1px solid rgba(255,255,255,0.1);
        padding-top: 10px;
    }
    
    .nav-cart a {
        display: inline-block;
        padding: 8px 20px;
    }
    
    .products-grid,
    .blog-grid,
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-content h2 {
        font-size: 28px;
    }
    
    .language-switcher {
        margin-left: 10px;
    }
    
    .current-language span {
        display: none;
    }
    
    .language-dropdown {
        right: -10px;
    }
}
