/* ============================================================
   CSS É NOIS STORE - LANDING PAGE PREMIUM
   Autor: É Nois Store
   Cores: Preto (#000000), Laranja (#FF6600), Branco (#FFFFFF)
   Estrutura: Responsivo, Moderno, Profissional
   ============================================================ */

/* ============================================================
   RESET E CONFIGURAÇÕES BASE
   ============================================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #FFFFFF;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================================
   CORES PRINCIPAIS - EDITÁVEIS
   ============================================================ */
:root {
    --cor-preta: #000000;
    --cor-laranja: #FF6600;
    --cor-branca: #FFFFFF;
    --cor-cinza-claro: #f8f9fa;
    --cor-cinza-medio: #6c757d;
    --cor-cinza-escuro: #343a40;
    --cor-texto: #333333;
    --cor-sombra: rgba(0, 0, 0, 0.1);
}

/* ============================================================
   HEADER FIXO COM NAVEGAÇÃO
   ============================================================ */
.header-fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--cor-branca);
    box-shadow: 0 2px 10px var(--cor-sombra);
    z-index: 1000;
    transition: all 0.3s ease;
}

.header-fixed.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

/* Logo - EDITÁVEL */
.logo h1 {
    color: var(--cor-preta);
    font-size: 28px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -1px;
    margin: 0;
    display: flex;
    align-items: center;
}

.logo h1 span {
    color: var(--cor-laranja);
    font-size: 32px;
    margin-right: 2px;
}

/* Logo em imagem */
.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

/* Menu de Navegação */
.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    color: var(--cor-texto);
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: var(--cor-laranja);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--cor-laranja);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

/* Ícones Sociais no Header */
.header-social {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cor-branca);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon.whatsapp {
    background: #25D366;
}

.social-icon.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Menu Mobile */
.menu-toggle {
    display: none;
    font-size: 24px;
    color: var(--cor-preta);
    cursor: pointer;
}

/* ============================================================
   BANNER PRINCIPAL
   ============================================================ */
.banner {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.banner-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2;
}

.banner-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--cor-branca);
}

.banner-content h2 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: fadeInUp 1s ease;
}

.banner-content p {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.9;
    animation: fadeInUp 1s ease 0.2s;
    animation-fill-mode: both;
}

/* Botões Principais */
.btn-primary {
    display: inline-block;
    padding: 15px 35px;
    background: var(--cor-laranja);
    color: var(--cor-branca);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease 0.4s;
    animation-fill-mode: both;
}

.btn-primary:hover {
    background: var(--cor-preta);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* ============================================================
   SEÇÕES GENÉRICAS
   ============================================================ */
section {
    padding: 80px 0;
}

/* ============================================================
   CATEGORIAS DA SEÇÃO MASCULINA
   ============================================================ */
.categoria-section {
    margin-bottom: 60px;
    padding-bottom: 40px;
}

.categoria-section:last-child {
    margin-bottom: 0;
}

.bg-light {
    background-color: var(--cor-cinza-claro);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 800;
    color: var(--cor-preta);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-header p {
    font-size: 18px;
    color: var(--cor-cinza-medio);
    max-width: 600px;
    margin: 0 auto;
}

.divider {
    width: 80px;
    height: 4px;
    background: var(--cor-laranja);
    margin: 0 auto 20px;
    border-radius: 2px;
}

/* ============================================================
   SEÇÃO SOBRE
   ============================================================ */
.sobre-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.sobre-text h3 {
    font-size: 28px;
    color: var(--cor-preta);
    margin-bottom: 20px;
    font-weight: 700;
}

.sobre-text p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--cor-texto);
    margin-bottom: 20px;
}

.sobre-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 36px;
    font-weight: 800;
    color: var(--cor-laranja);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 14px;
    color: var(--cor-cinza-medio);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.sobre-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* ============================================================
   SEÇÃO DE PRODUTOS
   ============================================================ */
.produtos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 15px;
    align-items: stretch;
}

.produto-card {
    background: var(--cor-branca);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    max-width: 240px;
    margin: 0 auto;
}

.produto-card:hover {
transform: translateY(-10px);
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.produto-image {
position: relative;
height: 200px;
overflow: hidden;
}

.produto-image img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.3s ease;
}

.produto-card:hover .produto-image img {
transform: scale(1.05);
}

.produto-badge {
position: absolute;
top: 10px;
right: 10px;
background: var(--cor-laranja);
color: var(--cor-branca);
padding: 4px 12px;
border-radius: 20px;
font-size: 11px;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 1px;
}

.produto-info {
padding: 18px;
flex: 1;
display: flex;
flex-direction: column;
}

.produto-info h3 {
font-size: 16px;
font-weight: 700;
color: var(--cor-preta);
margin-bottom: 8px;
line-height: 1.2;
min-height: 38px;
display: flex;
align-items: center;
}

.produto-descricao {
font-size: 12px;
color: var(--cor-cinza-medio);
margin-bottom: 12px;
line-height: 1.4;
flex: 1;
min-height: 34px;
}

.produto-preco {
display: flex;
align-items: center;
gap: 8px;
margin-bottom: 12px;
}

.preco-antigo {
font-size: 14px;
color: var(--cor-cinza-medio);
text-decoration: line-through;
}

.preco-atual {
font-size: 18px;
font-weight: 700;
color: var(--cor-laranja);
}

.btn-comprar {
width: 100%;
padding: 10px;
background: var(--cor-preta);
color: var(--cor-branca);
border: none;
border-radius: 6px;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 0.5px;
font-size: 12px;
cursor: pointer;
transition: all 0.3s ease;
}

.btn-comprar:hover {
background: var(--cor-laranja);
transform: translateY(-2px);
}

/* ============================================================
   SEÇÃO GALERIA
   ============================================================ */
.galeria-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
}

.galeria-item {
    position: relative;
    height: 300px;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.galeria-item:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.galeria-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.galeria-item:hover img {
    transform: scale(1.1);
}

.galeria-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: var(--cor-branca);
    padding: 30px 20px 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.galeria-item:hover .galeria-overlay {
    transform: translateY(0);
}

.galeria-overlay h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
}

.galeria-overlay p {
    font-size: 14px;
    opacity: 0.9;
}

/* ============================================================
   SEÇÃO CONTATO
   ============================================================ */
.contato-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contato-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-item {
    display: flex;
    gap: 20px;
    align-items: start;
}

.info-item i {
    width: 40px;
    height: 40px;
    background: var(--cor-laranja);
    color: var(--cor-branca);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.info-item h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--cor-preta);
    margin-bottom: 5px;
}

.info-item p {
    color: var(--cor-texto);
    line-height: 1.6;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: #25D366;
    color: var(--cor-branca);
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    margin-top: 10px;
    transition: all 0.3s ease;
}

.btn-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-2px);
}

.btn-instagram {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: var(--cor-branca);
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    margin-top: 10px;
    transition: all 0.3s ease;
}

.btn-instagram:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.mapa-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.mapa-container iframe {
    width: 100%;
    height: 400px;
    border: none;
}

/* ============================================================
   RODAPÉ
   ============================================================ */
.footer {
    background: var(--cor-preta);
    color: var(--cor-branca);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--cor-laranja);
}

.footer-section p {
    color: var(--cor-branca);
    opacity: 0.8;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: var(--cor-branca);
    opacity: 0.8;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--cor-laranja);
    opacity: 1;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social .social-icon {
    background: var(--cor-laranja);
    width: 40px;
    height: 40px;
}

.footer-social .social-icon:hover {
    background: var(--cor-branca);
    color: var(--cor-laranja);
}

.newsletter-form {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
    color: var(--cor-branca);
    border-radius: 5px;
    font-size: 14px;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-form button {
    padding: 12px 20px;
    background: var(--cor-laranja);
    color: var(--cor-branca);
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background: var(--cor-preta);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--cor-branca);
    opacity: 0.6;
}

/* ============================================================
   BOTÕES FLUTUANTES
   ============================================================ */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: var(--cor-branca);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
    z-index: 999;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.4);
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: var(--cor-laranja);
    color: var(--cor-branca);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--cor-preta);
    transform: translateY(-3px);
}

/* ============================================================
   ANIMAÇÕES
   ============================================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================================
   RESPONSIVIDADE - MOBILE FIRST
   ============================================================ */

/* Tablets (768px para baixo) */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .header-content {
        padding: 10px 0;
    }
    
    .logo h1 {
        font-size: 24px;
    }
    
    .logo h1 span {
        font-size: 28px;
    }
    
    .logo-img {
        height: 45px;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--cor-branca);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    .nav-menu.active {
        max-height: 400px;
    }
    
    .nav-menu ul {
        flex-direction: column;
        padding: 20px;
        gap: 15px;
    }
    
    .header-social {
        display: none;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .banner {
        height: 80vh;
        min-height: 500px;
    }
    
    .banner-content h2 {
        font-size: 36px;
    }
    
    .banner-content p {
        font-size: 18px;
    }
    
    section {
        padding: 60px 0;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    .sobre-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .sobre-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    
    .produtos-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .galeria-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contato-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .mapa-container iframe {
        height: 300px;
    }
    
    .footer-content {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 30px;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 20px;
    }
    
    .back-to-top {
        width: 45px;
        height: 45px;
        bottom: 20px;
        left: 20px;
    }
}

/* Smartphones (480px para baixo) */
@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    
    .logo h1 {
        font-size: 20px;
    }
    
    .logo h1 span {
        font-size: 24px;
    }
    
    .logo-img {
        height: 40px;
    }
    
    .banner {
        height: 70vh;
        min-height: 450px;
    }
    
    .banner-content h2 {
        font-size: 28px;
        letter-spacing: 1px;
    }
    
    .banner-content p {
        font-size: 16px;
    }
    
    .btn-primary {
        padding: 12px 25px;
        font-size: 14px;
    }
    
    section {
        padding: 40px 0;
    }
    
    .section-header h2 {
        font-size: 24px;
    }
    
    .section-header p {
        font-size: 16px;
    }
    
    .sobre-text h3 {
        font-size: 24px;
    }
    
    .sobre-stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .stat-number {
        font-size: 28px;
    }
    
    .produtos-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .produto-image {
        height: 300px;
    }
    
    .produto-info {
        padding: 20px;
    }
    
    .produto-info h3 {
        font-size: 18px;
    }
    
    .preco-atual {
        font-size: 20px;
    }
    
    .galeria-item {
        height: 250px;
    }
    
    .info-item {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .info-item i {
        margin: 0 auto;
    }
    
    .mapa-container iframe {
        height: 250px;
    }
    
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form button {
        padding: 15px;
    }
}

/* ============================================================
   IMPRESSÃO E ACESSIBILIDADE
   ============================================================ */
@media print {
    .header-fixed,
    .whatsapp-float,
    .back-to-top,
    .menu-toggle {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    .banner {
        height: auto;
        min-height: 200px;
    }
    
    section {
        padding: 20px 0;
    }
}

/* High contrast mode */
@media (prefers-contrast: high) {
    :root {
        --cor-sombra: rgba(0, 0, 0, 0.3);
    }
    
    .produto-card,
    .galeria-item {
        border: 2px solid var(--cor-preta);
    }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ============================================================
   UTILITÁRIOS E CLASSES AUXILIARES
   ============================================================ */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.mb-20 {
    margin-bottom: 20px;
}

.mt-20 {
    margin-top: 20px;
}

.hidden {
    display: none;
}

.visible {
    display: block;
}

/* ============================================================
   FIM DO ARQUIVO CSS
   ============================================================ */