* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Times New Roman', serif; background: #000; color: #e0e0e0; line-height: 1.8; overflow-x: hidden; }
.header { position: fixed; top: 0; width: 100%; padding: 20px 5%; display: flex; justify-content: space-between; align-items: center; background: rgba(0,0,0,0.95); backdrop-filter: blur(10px); border-bottom: 3px solid #9d4edd; z-index: 1000; }
.logo-text { font-size: 2.6rem; font-weight: bold; color: #fff; }
.header-logo { height: 75px; }
nav a { color: #ccc; margin: 0 25px; font-size: 1.3rem; text-decoration: none; position: relative; transition: .3s; }
nav a:hover { color: #ff69b4; }
nav a::after { content: ''; position: absolute; bottom: -10px; left: 50%; width: 0; height: 3px; background: #ff69b4; transition: .4s; transform: translateX(-50%); }
nav a:hover::after { width: 100%; }
.hero img { width: 100%; height: 100vh; object-fit: cover; display: block; }
.slider { overflow: hidden; padding: 100px 0; background: #000; }
.slides { display: flex; animation: defile 15s linear infinite; }
.slides img { width: 70%; flex-shrink: 0; }
@keyframes defile { 0% { transform: translateX(0); } 100% { transform: translateX(-100%); } }
.section { padding: 130px 5%; background: #000; }
h2 { font-size: 4rem; margin-bottom: 90px; text-align: center; background: linear-gradient(90deg, #9d4edd, #ff69b4); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.text-just { max-width: 1000px; margin: 0 auto 70px; text-align: justify; color: #ddd; background: rgba(255,255,255,0.02); padding: 45px; border-radius: 20px; box-shadow: 0 15px 50px rgba(157,78,221,0.15); }
.products { display: grid; grid-template-columns: repeat(auto-fit, minmax(400px, 1fr)); gap: 60px; margin-top: 60px; }
.card { background: rgba(255,255,255,0.02); padding: 35px; border-radius: 20px; box-shadow: 0 10px 40px rgba(157,78,221,0.2); }
.card img { width: 100%; border-radius: 15px; margin-bottom: 20px; }
.gallery { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin-top: 60px; }
.gallery img { width: 100%; border-radius: 15px; cursor: pointer; transition: .4s; box-shadow: 0 15px 40px rgba(157,78,221,0.4); border: 2px solid rgba(157,78,221,0.3); }
.gallery img:hover { border-color: #ff69b4; transform: scale(1.03); }
.addresses { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 50px; margin-top: 60px; }
.addr { background: rgba(255,255,255,0.02); padding: 35px; border-radius: 20px; text-align: center; }
.wa { position: fixed; bottom: 30px; background: #25D366; color: #fff; padding: 18px 35px; border-radius: 50px; z-index: 999; box-shadow: 0 10px 35px rgba(37,211,102,0.6); font-weight: bold; font-size: 1.1rem; transition: .3s; text-decoration: none; }
.wa:hover { transform: scale(1.1); }
.wa.ci { right: 120px; }
.lightbox { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.9); justify-content: center; align-items: center; z-index: 200; }
.lightbox img { max-width: 90%; max-height: 90%; border-radius: 10px; }
.close { position: absolute; top: 20px; right: 30px; color: #fff; font-size: 40px; cursor: pointer; }
@media (max-width: 768px) { 
    .logo-text { font-size: 2.2rem; } 
    nav a { margin: 0 12px; font-size: 1.1rem; } 
    h2 { font-size: 3rem; } 
}
