/* ============================================
   RESET E CONFIGURAÇÕES GLOBAIS
   ============================================ */
*{margin:0;padding:0;box-sizing:border-box;font-family:'Segoe UI',Tahoma,Geneva,Verdana,sans-serif}
::-webkit-scrollbar{width:10px}
::-webkit-scrollbar-track{background:#f1f1f1}
::-webkit-scrollbar-thumb{background:#f6df57;border-radius:10px}
::-webkit-scrollbar-thumb:hover{background:#e5cc40}
body{background-color:#fff;color:#1a1a1a;overflow-x:hidden}
body.no-scroll{overflow:hidden!important}
a{text-decoration:none;color:inherit}
ul{list-style:none}
img{max-width:100%;display:block}
button{cursor:pointer;border:none;outline:none}
.container{max-width:1200px;margin:0 auto;padding:0 20px;width:100%}

/* ============================================
   TÍTULOS E BOTÕES
   ============================================ */
.section-title{font-size:clamp(24px,4vw,34px);font-weight:800;margin:40px 0 20px;opacity:0;transform:translateY(30px);transition:all .8s ease}
.section-title.visible{opacity:1;transform:translateY(0)}
.section-title span{background:#f6df57;padding:0 10px}
.black-btn{background:#000;color:#fff;padding:12px 24px;font-weight:700;border-radius:4px;transition:all .3s ease;display:inline-block;font-size:14px;position:relative;overflow:hidden}
.black-btn:hover{transform:scale(1.05);box-shadow:0 5px 15px rgba(0,0,0,.3)}
.black-btn:active{transform:scale(.95)}

/* ============================================
   ANIMAÇÕES
   ============================================ */
@keyframes fadeInUp{from{opacity:0;transform:translateY(40px)}to{opacity:1;transform:translateY(0)}}
.fade-in-up{animation:fadeInUp .8s ease forwards}
.delay-1{animation-delay:.2s;opacity:0}
.delay-2{animation-delay:.4s;opacity:0}

/* ============================================
   HEADER - VISUAL MODERNIZADO
   ============================================ */
header{padding:16px 0;background:#fff;position:sticky;top:0;z-index:1000;border-bottom:2px solid rgba(246,223,87,.15);box-shadow:0 4px 30px rgba(0,0,0,.04);transition:all .3s ease}
header.scrolled{padding:10px 0;box-shadow:0 8px 40px rgba(0,0,0,.08);border-bottom-color:#f6df57}
.nav-container{display:flex;justify-content:space-between;align-items:center}
.logo{font-size:28px;font-weight:900;letter-spacing:2px;display:flex;align-items:center;gap:10px;cursor:pointer;color:#1a1a1a;transition:all .3s ease;text-decoration:none}
.logo i{font-size:28px;color:#f6df57;text-shadow:0 0 20px rgba(246,223,87,.3);transition:all .4s ease}
.logo:hover i{text-shadow:0 0 30px rgba(246,223,87,.6),0 0 60px rgba(246,223,87,.3);transform:scale(1.1) rotate(-10deg)}
.logo:hover span{color:#f6df57;letter-spacing:4px}
.logo span{transition:all .3s ease}
.logo .logo-dot{width:8px;height:8px;background:#f6df57;border-radius:50%;display:inline-block;margin-left:-2px;animation:dotPulse 2s ease-in-out infinite}
@keyframes dotPulse{0%,100%{opacity:1;transform:scale(1)}50%{opacity:.3;transform:scale(.6)}}
.nav-links{display:flex;gap:30px;font-size:13px;font-weight:700;text-transform:uppercase;align-items:center;letter-spacing:.5px}
.nav-links a{transition:color .3s;position:relative;color:#1a1a1a}
.nav-links a:hover{color:#f6df57}
.nav-links a::after{content:'';position:absolute;width:0;height:2px;bottom:-5px;left:0;background:linear-gradient(90deg,#f6df57,#f4d94a);transition:width .3s ease}
.nav-links a:hover::after{width:100%}
.header-actions{display:flex;align-items:center;gap:18px}
.lang-selector{display:flex;align-items:center;gap:6px}
.lang-selector .flag-icon{font-size:18px;cursor:pointer;transition:all .3s ease;opacity:.4;line-height:1}
.lang-selector .flag-icon:hover{transform:scale(1.2);opacity:1}
.lang-selector .flag-icon.active{opacity:1;transform:scale(1.1)}
.cart-icon{position:relative;font-size:20px;cursor:pointer;transition:transform .2s;color:#1a1a1a}
.cart-icon:hover{transform:scale(1.1)}
.cart-count{position:absolute;top:-8px;right:-8px;background:#f6df57;color:#000;border-radius:50%;padding:2px 6px;font-size:10px;font-weight:800;min-width:18px;text-align:center;border:2px solid #fff;box-shadow:0 2px 8px rgba(0,0,0,.15)}
.signup-btn{background:#000;color:#fff;padding:10px 22px;font-weight:700;border-radius:8px;font-size:12px;text-transform:uppercase;letter-spacing:.5px;transition:all .3s cubic-bezier(.175,.885,.32,1.275);border:2px solid #000;text-decoration:none}
.signup-btn:hover{background:#f6df57;color:#000;border-color:#f6df57;transform:translateY(-2px);box-shadow:0 8px 25px rgba(246,223,87,.3)}
.menu-toggle{display:none;font-size:24px;cursor:pointer}
.mobile-flags{display:none}

/* ============================================
   HEADER - RESPONSIVO
   ============================================ */
@media (max-width:768px){.nav-links{display:none;flex-direction:column;position:absolute;top:100%;left:0;width:100%;background:#fff;padding:24px 30px;box-shadow:0 20px 40px rgba(0,0,0,.1);gap:18px;border-top:2px solid #f6df57}
.nav-links.active{display:flex;animation:slideDown .3s ease}
@keyframes slideDown{0%{opacity:0;transform:translateY(-10px)}100%{opacity:1;transform:translateY(0)}}
.menu-toggle{display:block}
.lang-selector{display:none!important}
.signup-btn{padding:8px 16px;font-size:11px}
.logo{font-size:22px}
.logo i{font-size:22px}
.nav-links .mobile-flags{display:flex!important;justify-content:center;align-items:center;gap:16px;width:100%;padding:0 0 14px;margin:0 0 6px;border-bottom:1px solid #eee;order:-1}
.nav-links .mobile-flags .flag-icon{display:inline-flex;font-size:24px;cursor:pointer;opacity:.5;transition:transform .3s ease,opacity .3s ease}
.nav-links .mobile-flags .flag-icon.active{opacity:1;transform:scale(1.12)}}
@media (max-width:480px){header{padding:12px 0}
.logo{font-size:18px;gap:6px}
.logo i{font-size:18px}
.signup-btn{font-size:10px;padding:6px 12px}
.cart-icon{font-size:17px}
.cart-count{font-size:8px;min-width:16px;padding:1px 5px;top:-6px;right:-6px}
.header-actions{gap:12px}}

/* ============================================
   HERO SECTION - VISUAL MODERNIZADO
   ============================================ */
.hero{background:radial-gradient(ellipse at center,#e9ecef 0%,#f5f6f8 40%,#fff 100%);border-radius:24px;padding:50px 60px;display:flex;justify-content:space-between;align-items:center;margin-bottom:30px;overflow:hidden;position:relative;gap:30px;min-height:460px;box-shadow:0 4px 30px rgba(0,0,0,.04)}
.hero::before{content:'';position:absolute;right:80px;top:50%;transform:translateY(-50%);width:600px;height:600px;border-radius:50%;background:radial-gradient(circle,rgba(246,223,87,.25) 0%,rgba(246,223,87,.12) 35%,rgba(246,223,87,.04) 55%,transparent 75%);filter:blur(50px);animation:heroGlow 6s ease-in-out infinite;pointer-events:none}
.hero::after{content:'';position:absolute;right:180px;top:50%;transform:translateY(-50%);width:450px;height:450px;border:1.5px solid rgba(246,223,87,.15);border-radius:50%;animation:rotateCircle 25s linear infinite;pointer-events:none}
.hero .hero-ring{position:absolute;right:280px;top:50%;transform:translateY(-50%);width:300px;height:300px;border:1px solid rgba(246,223,87,.08);border-radius:50%;animation:rotateCircle 15s linear infinite reverse;pointer-events:none;z-index:1}
@keyframes heroGlow{0%,100%{transform:translateY(-50%) scale(1);opacity:.8}50%{transform:translateY(-50%) scale(1.1);opacity:1}}
@keyframes rotateCircle{from{transform:translateY(-50%) rotate(0)}to{transform:translateY(-50%) rotate(360deg)}}
.hero-content{flex:1;max-width:50%;z-index:2;position:relative}
.hero-content .hero-label{display:inline-flex;align-items:center;gap:12px;font-size:11px;font-weight:700;text-transform:uppercase;letter-spacing:2px;color:#888;margin-bottom:12px}
.hero-content .hero-label .label-line{width:30px;height:1.5px;background:#f6df57}
.hero-content h1{font-size:clamp(34px,5.5vw,56px);font-weight:900;line-height:1.08;margin-bottom:18px;text-transform:uppercase;color:#0a0a0a;letter-spacing:-1.5px}
.hero-content h1 span{background:linear-gradient(135deg,#f6df57 0%,#f4d94a 100%);padding:0 12px;display:inline-block;-webkit-box-decoration-break:clone;box-decoration-break:clone;color:#0a0a0a;box-shadow:0 4px 20px rgba(246,223,87,.2)}
.hero-content p{font-size:17px;line-height:1.7;margin-bottom:28px;color:#666;max-width:420px}
.hero-content .hero-actions{display:flex;gap:14px;flex-wrap:wrap;align-items:center}
.hero-content .black-btn{background:#0a0a0a;color:#fff;padding:14px 34px;border-radius:8px;font-weight:700;font-size:13px;text-transform:uppercase;letter-spacing:.5px;transition:all .3s cubic-bezier(.175,.885,.32,1.275);display:inline-flex;align-items:center;gap:10px;border:none;cursor:pointer}
.hero-content .black-btn i{font-size:14px;transition:transform .3s ease}
.hero-content .black-btn:hover{background:#f6df57;color:#0a0a0a;transform:translateY(-3px) scale(1.02);box-shadow:0 15px 35px rgba(246,223,87,.25)}
.hero-content .black-btn:hover i{transform:translateX(4px)}
.hero-content .btn-outline{background:transparent;color:#0a0a0a;padding:14px 28px;border-radius:8px;font-weight:600;font-size:13px;text-transform:uppercase;letter-spacing:.5px;transition:all .3s ease;display:inline-flex;align-items:center;gap:8px;border:1.5px solid rgba(0,0,0,.08);cursor:pointer}
.hero-content .btn-outline:hover{border-color:#f6df57;background:rgba(246,223,87,.05);transform:translateY(-3px)}
.hero-content .hero-badge{display:inline-flex;align-items:center;gap:8px;background:rgba(246,223,87,.12);padding:5px 14px 5px 10px;border-radius:50px;font-size:10px;font-weight:700;text-transform:uppercase;letter-spacing:.5px;color:#0a0a0a;margin-top:20px;border:1px solid rgba(246,223,87,.1)}
.hero-content .hero-badge .badge-dot{width:6px;height:6px;border-radius:50%;background:#f6df57;animation:dotPulse 2s ease-in-out infinite}
@keyframes dotPulse{0%,100%{opacity:1;transform:scale(1)}50%{opacity:.2;transform:scale(.6)}}
.hero-image{flex:1;display:flex;justify-content:flex-end;position:relative;z-index:2;pointer-events:none}
.hero-image img{max-width:100%;width:100%;border-radius:20px;object-fit:cover;transform-style:flat!important;animation:none!important;transition:transform .5s cubic-bezier(.175,.885,.32,1.275);box-shadow:0 25px 50px rgba(0,0,0,.06);pointer-events:none;aspect-ratio:4/3}
.hero-image:hover img{transform:scale(1.03)}
.hero-image .float-card{position:absolute;bottom:20px;left:-10px;background:rgba(255,255,255,.92);backdrop-filter:blur(16px);border-radius:12px;padding:12px 18px;display:flex;align-items:center;gap:12px;z-index:3;animation:floatCard 4s ease-in-out infinite;box-shadow:0 8px 30px rgba(0,0,0,.06);border:1px solid rgba(0,0,0,.03);pointer-events:none}
@keyframes floatCard{0%,100%{transform:translateY(0)}50%{transform:translateY(-8px)}}
.hero-image .float-card .fc-icon{width:36px;height:36px;border-radius:50%;background:#f6df57;display:flex;align-items:center;justify-content:center;color:#0a0a0a;font-size:14px;flex-shrink:0}
.hero-image .float-card .fc-content{display:flex;flex-direction:column}
.hero-image .float-card .fc-content strong{font-size:13px;font-weight:700;color:#0a0a0a}
.hero-image .float-card .fc-content span{font-size:11px;color:#999}

/* ============================================
   HERO - RESPONSIVO
   ============================================ */
@media (max-width:992px){.hero{padding:40px;min-height:400px}
.hero-content h1{font-size:clamp(30px,4.5vw,44px)}
.hero::before{width:450px;height:450px;right:40px}
.hero::after{width:350px;height:350px;right:120px}
.hero .hero-ring{width:250px;height:250px;right:200px}}
@media (max-width:768px){.hero{flex-direction:column;text-align:center;padding:35px 24px 30px;min-height:auto;border-radius:20px;gap:25px}
.hero-content{max-width:100%;margin-bottom:0}
.hero-content .hero-label{justify-content:center}
.hero-content h1{font-size:clamp(28px,6vw,38px);letter-spacing:-1px}
.hero-content p{max-width:100%;margin-left:auto;margin-right:auto;font-size:15px}
.hero-content .hero-actions{justify-content:center}
.hero-content .black-btn{padding:12px 28px;font-size:12px}
.hero-content .btn-outline{padding:12px 22px;font-size:12px}
.hero-content .hero-badge{margin:16px auto 0}
.hero-image{width:100%;justify-content:center;pointer-events:none}
.hero-image img{max-width:100%;animation:none!important;transform-style:flat!important;aspect-ratio:4/3}
.hero-image .float-card{bottom:15px;left:10px;padding:10px 14px;border-radius:10px;gap:10px}
.hero-image .float-card .fc-icon{width:30px;height:30px;font-size:12px}
.hero-image .float-card .fc-content strong{font-size:12px}
.hero-image .float-card .fc-content span{font-size:10px}
.hero::before{right:50%;transform:translate(50%,-50%);width:400px;height:400px;pointer-events:none}
.hero::after{right:50%;transform:translate(50%,-50%);width:300px;height:300px;pointer-events:none}
.hero .hero-ring{display:none}
@keyframes heroGlow{0%,100%{transform:translate(50%,-50%) scale(1)}50%{transform:translate(50%,-50%) scale(1.08)}}
@keyframes rotateCircle{from{transform:translate(50%,-50%) rotate(0)}to{transform:translate(50%,-50%) rotate(360deg)}}}
@media (max-width:480px){.hero{padding:24px 16px 20px;border-radius:16px;gap:20px}
.hero-content .hero-label{font-size:10px;letter-spacing:1.5px}
.hero-content .hero-label .label-line{width:20px}
.hero-content h1{font-size:clamp(22px,7vw,28px);letter-spacing:-.5px}
.hero-content h1 span{padding:0 8px}
.hero-content p{font-size:14px;margin-bottom:20px}
.hero-content .hero-actions{flex-direction:column;width:100%;gap:10px}
.hero-content .black-btn{width:100%;justify-content:center;padding:12px 20px;font-size:12px;border-radius:6px}
.hero-content .btn-outline{width:100%;justify-content:center;padding:12px 20px;font-size:12px;border-radius:6px}
.hero-content .hero-badge{font-size:9px;padding:4px 12px 4px 8px}
.hero-image img{border-radius:14px;aspect-ratio:4/3}
.hero-image .float-card{bottom:10px;left:8px;padding:8px 12px;border-radius:8px;gap:8px}
.hero-image .float-card .fc-icon{width:26px;height:26px;font-size:11px}
.hero-image .float-card .fc-content strong{font-size:11px}
.hero-image .float-card .fc-content span{font-size:9px}
.hero::before{width:250px;height:250px;pointer-events:none}
.hero::after{width:180px;height:180px;pointer-events:none}}

/* ============================================
   BRAND STRIP
   ============================================ */
.brand-strip{background:linear-gradient(90deg,#f6df57,#f4d94a,#f6df57);padding:30px 0;margin-bottom:40px;width:100%;overflow:hidden;white-space:nowrap;position:relative;box-shadow:0 4px 20px rgba(246,223,87,.3)}
.brand-track{display:inline-block;animation:scrollBrands 20s linear infinite}
.brand-strip:hover .brand-track{animation-play-state:paused}
.brand-item{display:inline-block;font-weight:800;font-size:clamp(16px,2vw,22px);color:#000;margin:0 40px;transition:color .3s,transform .3s;vertical-align:middle}
.brand-item:hover{color:#fff;transform:scale(1.1)}
.brand-item i{font-size:24px;margin-right:5px}
@keyframes scrollBrands{0%{transform:translateX(0)}100%{transform:translateX(-50%)}}

/* ============================================
   BRAND STRIP - RESPONSIVO
   ============================================ */
@media (max-width:768px){.brand-item{margin:0 20px;font-size:14px}
.brand-item i{font-size:18px}}

/* ============================================
   LANÇAMENTOS
   ============================================ */
.products-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(280px,1fr));gap:30px;margin-bottom:50px}
.product-card{background:#f3f4f6;border-radius:16px;overflow:hidden;transition:all .4s cubic-bezier(.175,.885,.32,1.275);position:relative;opacity:0;transform:translateY(30px) scale(.95);box-shadow:0 4px 6px rgba(0,0,0,.05)}
.product-card.visible{opacity:1;transform:translateY(0) scale(1);transition:all .6s cubic-bezier(.175,.885,.32,1.275)}
.product-card:hover{transform:translateY(-12px) scale(1.02);box-shadow:0 20px 40px rgba(0,0,0,.15)}
.product-card .product-img-wrapper{position:relative;overflow:hidden;height:300px}
.product-card .product-img{width:100%;height:100%;object-fit:cover;transition:transform .6s cubic-bezier(.175,.885,.32,1.275)}
.product-card:hover .product-img{transform:scale(1.12)}
.product-card .product-badge{position:absolute;top:15px;left:15px;background:#f6df57;color:#000;padding:5px 14px;border-radius:20px;font-size:11px;font-weight:700;text-transform:uppercase;letter-spacing:.5px;box-shadow:0 4px 10px rgba(246,223,87,.3)}
.product-card .product-actions{position:absolute;top:15px;right:15px;display:flex;flex-direction:column;gap:8px;opacity:0;transform:translateX(20px);transition:all .3s ease}
.product-card:hover .product-actions{opacity:1;transform:translateX(0)}
.product-card .product-actions button{width:38px;height:38px;border-radius:50%;background:#fff;color:#333;border:none;font-size:14px;transition:all .3s ease;box-shadow:0 4px 10px rgba(0,0,0,.1);cursor:pointer}
.product-card .product-actions button:hover{background:#f6df57;color:#000;transform:scale(1.1)}
.product-card .product-info{padding:20px 22px;display:flex;justify-content:space-between;align-items:center;background:#fff;position:relative}
.product-card .product-info .product-text h3{font-size:16px;font-weight:700;margin-bottom:4px;cursor:pointer;transition:color .3s}
.product-card .product-info .product-text h3:hover{color:#f6df57}
.product-card .product-info .product-text .product-price{font-size:18px;font-weight:800;color:#1a1a1a}
.product-card .product-info .product-text .product-price .old-price{font-size:13px;font-weight:400;color:#999;text-decoration:line-through;margin-left:8px}
.product-card .product-info .product-text p{font-size:12px;color:#777}
.product-card .arrow-link{font-size:18px;color:#333;transition:all .3s ease;cursor:pointer;width:40px;height:40px;border-radius:50%;display:flex;align-items:center;justify-content:center;background:#f3f4f6}
.product-card:hover .arrow-link{transform:translateX(3px);background:#f6df57;color:#000}
.product-card .add-to-cart-hidden{position:absolute;bottom:70px;left:50%;transform:translateX(-50%) scale(0);background:#000;color:#fff;padding:12px 24px;border-radius:30px;font-size:13px;font-weight:700;transition:all .4s cubic-bezier(.175,.885,.32,1.275);white-space:nowrap;box-shadow:0 8px 25px rgba(0,0,0,.3);z-index:5;letter-spacing:.5px}
.product-card:hover .add-to-cart-hidden{transform:translateX(-50%) scale(1);bottom:80px}
.product-card .add-to-cart-hidden:hover{background:#f6df57;color:#000}

/* ============================================
   LANÇAMENTOS - RESPONSIVO
   ============================================ */
@media (max-width:480px){.product-card .product-img-wrapper{height:220px}}

/* ============================================
   PROMO BANNER
   ============================================ */
.promo-banner{background:linear-gradient(135deg,#f6df57 0%,#f4d94a 100%);border-radius:30px;padding:40px 60px;display:flex;align-items:center;justify-content:space-between;margin:50px 0;position:relative;gap:40px;box-shadow:0 10px 40px rgba(246,223,87,.3);overflow:hidden}
.promo-banner::after{content:'';position:absolute;top:-50%;right:-10%;width:500px;height:500px;border:2px dashed rgba(0,0,0,.1);border-radius:50%;animation:spinCircle 20s linear infinite;pointer-events:none}
@keyframes spinCircle{0%{transform:rotate(0)}100%{transform:rotate(360deg)}}
.promo-image-wrapper{position:relative;z-index:2;flex:1;max-width:350px}
.promo-img{width:100%;height:auto;border-radius:50% 50% 50% 50%/40% 40% 60% 60%;box-shadow:0 20px 40px rgba(0,0,0,.15);transition:transform .5s ease;position:relative;z-index:2}
.promo-img:hover{transform:scale(1.03) rotate(-2deg)}
.promo-content{flex:1.5;text-align:left;position:relative;z-index:2}
.promo-content h2{font-size:clamp(36px,5vw,60px);font-weight:900;line-height:.9;margin-bottom:15px;text-transform:uppercase;letter-spacing:-2px}
.promo-content h2 .highlight-white{background:#fff;padding:0 10px;display:inline-block}
.promo-content .sub-text{font-size:16px;font-weight:500;margin-bottom:20px;max-width:450px;line-height:1.5}
.promo-content .date-text{font-weight:700;margin-bottom:25px;font-size:15px}
.promo-content .date-text span{font-weight:400;font-size:12px;opacity:.7}
.promo-btn{background:#000;color:#fff;padding:15px 40px;font-weight:700;border-radius:50px;font-size:16px;transition:all .3s ease;position:relative;overflow:hidden;display:inline-block}
.promo-btn:hover{transform:translateY(-3px);box-shadow:0 10px 20px rgba(0,0,0,.3)}
.promo-btn::before{content:'';position:absolute;top:-50%;left:-50%;width:200%;height:200%;background:linear-gradient(45deg,transparent,rgba(255,255,255,.1),transparent);transform:rotate(45deg);transition:.6s}
.promo-btn:hover::before{left:100%}

/* ============================================
   PROMO BANNER - RESPONSIVO
   ============================================ */
@media (max-width:768px){.promo-banner{flex-direction:column;text-align:center;padding:30px 20px}
.promo-content{text-align:center;margin-top:20px}
.promo-image-wrapper{max-width:250px;margin:0 auto}
.promo-content .sub-text{margin:0 auto 20px auto}
.promo-banner::after{display:none}}

/* ============================================
   FAVORITOS
   ============================================ */
.favourites-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:30px;margin-bottom:60px}
.fav-card{position:relative;border-radius:15px;overflow:hidden;height:350px;transition:transform .3s;opacity:0;transform:translateY(30px)}
.fav-card.visible{opacity:1;transform:translateY(0);transition:all .6s ease}
.fav-card:hover{transform:scale(1.03)}
.fav-card img{width:100%;height:100%;object-fit:cover;transition:transform .5s}
.fav-card:hover img{transform:scale(1.1)}
.fav-info{position:absolute;bottom:20px;left:20px;right:20px;display:flex;justify-content:space-between;align-items:center;color:#1a1a1a}
.fav-info h3{background:rgba(255,255,255,.9);padding:8px 15px;border-radius:8px;font-size:16px;backdrop-filter:blur(10px)}
.fav-info .arrow-link{background:#fff;padding:10px 12px;border-radius:50%;color:#000;transition:.3s}
.fav-card:hover .arrow-link{transform:translateX(5px)}

/* ============================================
   FAVORITOS - RESPONSIVO
   ============================================ */
@media (max-width:992px){.favourites-grid{grid-template-columns:1fr 1fr}
.fav-card{height:300px}}
@media (max-width:768px){.favourites-grid{grid-template-columns:1fr}
.fav-card{height:250px}}
@media (max-width:480px){.fav-card{height:200px}}

/* ============================================
   APP SECTION
   ============================================ */
.app-section{display:flex;align-items:center;justify-content:space-between;background:#fff;padding:40px 0;margin-bottom:50px;gap:40px}
.app-text h2{font-size:clamp(24px,3.5vw,36px);font-weight:900;margin-bottom:15px}
.app-text p{color:#555;margin-bottom:20px;font-size:15px}
.store-btns{display:flex;gap:10px;flex-wrap:wrap}
.store-btns img{height:40px;cursor:pointer;transition:transform .3s}
.store-btns img:hover{transform:scale(1.05)}
.app-mockup{width:250px;max-width:100%;border-radius:30px;box-shadow:0 10px 30px rgba(0,0,0,.1);transition:transform .5s}
.app-mockup:hover{transform:translateY(-10px) rotate(2deg)}

/* ============================================
   APP SECTION - RESPONSIVO
   ============================================ */
@media (max-width:768px){.app-section{flex-direction:column;text-align:center;gap:30px}
.store-btns{justify-content:center}}

/* ============================================
   NEWSLETTER
   ============================================ */
.newsletter{background:linear-gradient(135deg,#f6df57 0%,#f4d94a 100%);padding:60px 20px;text-align:center;border-radius:10px;margin-bottom:0}
.newsletter h2{font-size:clamp(22px,3vw,32px);font-weight:900;margin-bottom:10px}
.newsletter p{margin-bottom:25px;font-weight:500;font-size:15px}
.newsletter-form{display:inline-flex;background:#fff;padding:5px 5px 5px 20px;border-radius:30px;align-items:center;width:100%;max-width:450px;box-shadow:0 5px 20px rgba(0,0,0,.1)}
.newsletter-form input{border:none;outline:none;width:100%;font-size:14px;padding:10px 0}
.newsletter-form button{background:#000;color:#fff;padding:10px 25px;border-radius:30px;font-weight:700;white-space:nowrap;transition:.3s}
.newsletter-form button:hover{background:#333;transform:scale(1.05)}

/* ============================================
   NEWSLETTER - RESPONSIVO
   ============================================ */
@media (max-width:768px){.newsletter-form{flex-direction:column;background:transparent;gap:10px;max-width:100%;padding:0}
.newsletter-form input{width:100%;padding:15px 20px;border-radius:30px;background:#fff}
.newsletter-form button{width:100%;padding:15px}}

/* ============================================
   FOOTER
   ============================================ */
footer{background:linear-gradient(135deg,#0b0b0b 0%,#1a1a1a 100%);color:#fff;padding:50px 0 20px;border-radius:20px 20px 0 0;margin-top:-10px;position:relative;z-index:1}
.footer-grid{display:grid;grid-template-columns:1.5fr 1fr 1fr 1fr;gap:40px;padding-bottom:30px;border-bottom:1px solid #333}
.footer-col h4{font-size:20px;margin-bottom:20px}
.footer-col p{color:#888;font-size:14px;line-height:1.6}
.footer-col ul li{margin-bottom:10px}
.footer-col ul li a{color:#888;font-size:14px;transition:.3s}
.footer-col ul li a:hover{color:#f6df57;padding-left:5px}
.footer-bottom{margin-top:20px;display:flex;justify-content:space-between;color:#888;font-size:12px;flex-wrap:wrap;gap:10px}
.footer-bottom i{transition:.3s;cursor:pointer;margin:0 8px}
.footer-bottom i:hover{color:#f6df57;transform:translateY(-3px)}
.footer-dev{text-align:center;margin-top:20px;padding-top:20px;border-top:1px solid #222;color:#666;font-size:13px;letter-spacing:.5px}
.footer-dev a{color:#f6df57;font-weight:600;transition:color .3s}
.footer-dev a:hover{color:#fff;text-decoration:underline}
.footer-dev .heart{color:#ff4757;display:inline-block;animation:heartbeat 1.5s ease-in-out infinite}
@keyframes heartbeat{0%,100%{transform:scale(1)}50%{transform:scale(1.2)}}

/* ============================================
   FOOTER - RESPONSIVO
   ============================================ */
@media (max-width:992px){.footer-grid{grid-template-columns:1fr 1fr}}
@media (max-width:768px){.footer-grid{grid-template-columns:1fr;gap:30px}
.footer-bottom{flex-direction:column;align-items:center;text-align:center}}

/* ============================================
   CARRINHO - Z-INDEX: 9998
   ============================================ */
.cart-overlay{position:fixed;top:0;left:0;width:100%;height:100%;background:rgba(0,0,0,.5);z-index:9998;opacity:0;visibility:hidden;transition:all .3s ease}
.cart-overlay.active{opacity:1;visibility:visible}
.cart-sidebar{position:fixed;top:0;right:-420px;width:400px;max-width:100%;height:100%;background:#111;color:#fff;z-index:9998;padding:30px;transition:right .4s cubic-bezier(.175,.885,.32,1.275);display:flex;flex-direction:column}
.cart-sidebar.active{right:0}
.cart-header{display:flex;justify-content:space-between;align-items:center;border-bottom:1px solid #333;padding-bottom:20px;margin-bottom:20px}
.cart-header h2{font-size:22px}
.cart-header h2 i{color:#f6df57;margin-right:10px}
.cart-close{font-size:24px;cursor:pointer;transition:transform .3s}
.cart-close:hover{transform:rotate(90deg);color:#f6df57}
.cart-items{flex:1;overflow-y:auto;padding-right:10px}
.cart-items::-webkit-scrollbar{width:6px}
.cart-items::-webkit-scrollbar-thumb{background:#f6df57;border-radius:3px}
.cart-item{display:flex;align-items:center;gap:15px;margin-bottom:20px;padding-bottom:20px;border-bottom:1px solid #222}
.cart-item-img{width:70px;height:70px;border-radius:10px;object-fit:cover}
.cart-item-info{flex:1}
.cart-item-info h4{font-size:14px;font-weight:600;margin-bottom:5px}
.cart-item-info p{font-size:13px;color:#888}
.cart-item-remove{color:#ff4d4d;cursor:pointer;font-size:16px;transition:transform .2s}
.cart-item-remove:hover{transform:scale(1.2)}
.cart-footer{border-top:1px solid #333;padding-top:20px;margin-top:20px}
.cart-total{display:flex;justify-content:space-between;font-size:18px;font-weight:700;margin-bottom:20px}
.cart-footer .black-btn{width:100%;text-align:center;background:#f6df57;color:#000;border-radius:30px}
.cart-footer .black-btn:hover{background:#fff;transform:scale(1.02)}
.empty-cart-msg{text-align:center;color:#888;margin-top:50px;font-size:16px}

/* ============================================
   CARRINHO - RESPONSIVO
   ============================================ */
@media (max-width:480px){.cart-sidebar{width:100%;right:-100%}}

/* ============================================
   MODAL - Z-INDEX: 9998
   ============================================ */
.modal-overlay{position:fixed;top:0;left:0;width:100%;height:100%;background:rgba(0,0,0,.6);z-index:9998;opacity:0;visibility:hidden;transition:all .3s ease;display:flex;align-items:center;justify-content:center;padding:20px}
.modal-overlay.active{opacity:1;visibility:visible}
.modal-content{background:#fff;border-radius:20px;max-width:800px;width:100%;display:flex;overflow:hidden;transform:scale(.8);transition:transform .3s cubic-bezier(.175,.885,.32,1.275);position:relative;max-height:90vh}
.modal-overlay.active .modal-content{transform:scale(1)}
.modal-close{position:absolute;top:15px;right:20px;font-size:28px;color:#333;cursor:pointer;z-index:10;transition:transform .3s;background:rgba(255,255,255,.8);width:40px;height:40px;border-radius:50%;display:flex;align-items:center;justify-content:center}
.modal-close:hover{transform:rotate(90deg);color:#000}
.modal-img-container{width:50%;background:#f3f4f6}
.modal-img-container img{width:100%;height:100%;object-fit:cover}
.modal-details{width:50%;padding:40px;display:flex;flex-direction:column;justify-content:center}
.modal-details h2{font-size:28px;margin-bottom:10px}
.modal-details .price{font-size:24px;font-weight:700;color:#f6df57;margin-bottom:20px}
.modal-details p{color:#666;line-height:1.6;margin-bottom:30px}
.modal-details .black-btn{width:100%;text-align:center;border-radius:30px}

/* ============================================
   MODAL - RESPONSIVO
   ============================================ */
@media (max-width:768px){.modal-content{flex-direction:column;max-width:90%}
.modal-img-container{width:100%;height:250px}
.modal-details{width:100%;padding:20px}}

/* ============================================
   TOAST - Z-INDEX: 9999
   ============================================ */
#toast{position:fixed;bottom:20px;right:20px;background:#1a1a1a;color:#fff;padding:15px 25px;border-radius:10px;box-shadow:0 10px 30px rgba(0,0,0,.3);transform:translateX(150%);transition:transform .5s cubic-bezier(.175,.885,.32,1.275);z-index:9999;display:flex;align-items:center;gap:10px;border-left:5px solid #f6df57}
#toast.show{transform:translateX(0)}

/* ============================================
   IA DE DÚVIDAS - CHAT FLOATING - Z-INDEX: 9995
   ============================================ */
.chat-float{position:fixed;bottom:30px;right:30px;z-index:9995;display:flex;flex-direction:column;align-items:flex-end;gap:12px}
.chat-toggle-btn{background:#f6df57!important;color:#000!important;border:none!important;border-radius:16px!important;padding:20px 32px!important;font-weight:800!important;font-size:18px!important;text-transform:uppercase!important;letter-spacing:1px!important;display:flex!important;align-items:center!important;gap:14px!important;box-shadow:0 8px 0 #000,0 12px 40px rgba(0,0,0,.3)!important;transition:all .15s ease!important;cursor:pointer!important;position:relative!important}
.chat-toggle-btn i{font-size:24px!important;color:#000!important}
.chat-toggle-btn:hover{transform:translateY(-4px)!important;box-shadow:0 12px 0 #000,0 20px 50px rgba(0,0,0,.4)!important;background:#ffe066!important}
.chat-toggle-btn:active{transform:translateY(4px)!important;box-shadow:0 4px 0 #000,0 8px 30px rgba(0,0,0,.3)!important}
.chat-window{background:#fff;border-radius:20px;box-shadow:0 8px 0 #000,0 20px 60px rgba(0,0,0,.25);width:400px;max-width:calc(100vw - 40px);max-height:580px;display:none;flex-direction:column;overflow:hidden;animation:slideUpChat .4s cubic-bezier(.175,.885,.32,1.275);border:2px solid #000}
.chat-window.open{display:flex}
@keyframes slideUpChat{0%{opacity:0;transform:translateY(30px) scale(.95) rotate(-2deg)}100%{opacity:1;transform:translateY(0) scale(1) rotate(0)}}
.chat-header{background:#f6df57!important;color:#000!important;padding:20px 24px!important;display:flex!important;justify-content:space-between!important;align-items:center!important;border-bottom:3px solid #000!important}
.chat-header h3{font-size:18px!important;display:flex!important;align-items:center!important;gap:12px!important;font-weight:800!important;text-transform:uppercase!important;letter-spacing:.5px!important}
.chat-header h3 i{color:#000!important;font-size:22px!important}
.chat-header .chat-close{font-size:28px!important;cursor:pointer!important;color:#000!important;transition:all .2s ease!important;background:none!important;border:none!important;font-weight:800!important;width:40px!important;height:40px!important;display:flex!important;align-items:center!important;justify-content:center!important;border-radius:50%!important}
.chat-header .chat-close:hover{background:rgba(0,0,0,.1)!important;transform:scale(1.1)!important}
.chat-messages{padding:20px 18px!important;flex:1!important;overflow-y:auto!important;background:#f5f5f5!important;display:flex!important;flex-direction:column!important;gap:12px!important;max-height:360px!important;min-height:220px!important;border-bottom:3px solid #000!important;will-change:auto!important}
.chat-messages::-webkit-scrollbar{width:8px!important}
.chat-messages::-webkit-scrollbar-track{background:#e0e0e0!important}
.chat-messages::-webkit-scrollbar-thumb{background:#f6df57!important;border:2px solid #000!important;border-radius:10px!important}
.chat-messages::-webkit-scrollbar-thumb:hover{background:#ffe066!important}
.bot-msg,.user-msg{max-width:88%!important;padding:14px 20px!important;border-radius:16px!important;font-size:14px!important;line-height:1.6!important;animation:msgFade .3s ease!important;word-wrap:break-word!important;font-weight:500!important}
.bot-msg{background:#fff!important;color:#1a1a1a!important;align-self:flex-start!important;border-bottom-left-radius:4px!important;box-shadow:0 3px 0 #000!important;border:1px solid #000!important}
.user-msg{background:#f6df57!important;color:#000!important;align-self:flex-end!important;border-bottom-right-radius:4px!important;box-shadow:0 3px 0 #000!important;border:1px solid #000!important;font-weight:700!important}
@keyframes msgFade{0%{opacity:0;transform:translateY(10px) scale(.95)}100%{opacity:1;transform:translateY(0) scale(1)}}
.chat-footer{padding:14px 18px 18px!important;background:#f5f5f5!important;border-top:none!important;display:flex!important;gap:10px!important}
.chat-footer input{flex:1!important;padding:14px 18px!important;border-radius:12px!important;border:2px solid #000!important;outline:none!important;font-size:14px!important;font-weight:600!important;background:#fff!important;transition:all .15s ease!important}
.chat-footer input:focus{border-color:#f6df57!important;box-shadow:0 3px 0 #000!important;transform:translateY(-2px)!important}
.chat-footer button{background:#000!important;color:#fff!important;border:none!important;border-radius:12px!important;padding:14px 24px!important;font-weight:800!important;font-size:14px!important;text-transform:uppercase!important;letter-spacing:.5px!important;transition:all .15s ease!important;white-space:nowrap!important;border:2px solid #000!important}
.chat-footer button:hover{background:#f6df57!important;color:#000!important;transform:translateY(-3px)!important;box-shadow:0 3px 0 #000!important}
.chat-footer button:active{transform:translateY(3px)!important;box-shadow:none!important}
.typing-indicator{display:flex!important;gap:6px!important;padding:12px 18px!important;background:#fff!important;border-radius:16px!important;align-self:flex-start!important;border:2px solid #000!important;box-shadow:0 3px 0 #000!important}
.typing-indicator span{width:10px!important;height:10px!important;background:#f6df57!important;border:1px solid #000!important;border-radius:50%!important;animation:typingDot 1.4s infinite both!important}
.typing-indicator span:nth-child(2){animation-delay:.2s!important}
.typing-indicator span:nth-child(3){animation-delay:.4s!important}
@keyframes typingDot{0%,60%,100%{transform:translateY(0) scale(1);opacity:.5}30%{transform:translateY(-10px) scale(1.2);opacity:1}}
.badge-status{display:inline-block!important;background:#4CAF50!important;color:#fff!important;font-size:10px!important;padding:4px 12px!important;border-radius:20px!important;margin-left:8px!important;font-weight:800!important;text-transform:uppercase!important;border:2px solid #000!important}

/* ============================================
   CHAT - RESPONSIVO
   ============================================ */
@media (max-width:768px){.chat-float{right:20px!important;bottom:calc(90px + env(safe-area-inset-bottom))!important;z-index:9995!important}
.chat-toggle-btn{width:72px!important;height:72px!important;border-radius:20px!important;padding:0!important;display:flex!important;justify-content:center!important;align-items:center!important;box-shadow:0 6px 0 #000,0 12px 40px rgba(0,0,0,.3)!important}
.chat-toggle-btn span{display:none!important}
.chat-toggle-btn i{font-size:28px!important;margin:0!important}
.chat-float.chat-open .chat-toggle-btn{display:none!important}
.chat-window{position:fixed!important;inset:0!important;width:100vw!important;height:100dvh!important;max-width:100vw!important;max-height:100dvh!important;border-radius:0!important;border:none!important;margin:0!important;-webkit-overflow-scrolling:touch!important;transform:none!important;-webkit-transform:none!important}
.chat-header{padding:18px!important;flex-shrink:0}
.chat-header h3{font-size:16px!important}
.chat-messages{flex:1!important;max-height:none!important;min-height:0!important;overflow-y:auto!important;padding:16px!important;-webkit-overflow-scrolling:touch!important;will-change:auto!important}
.chat-footer{flex-shrink:0;padding:12px!important;padding-bottom:calc(12px + env(safe-area-inset-bottom))!important}
.chat-footer input{min-height:50px!important;font-size:16px!important;-webkit-appearance:none!important;appearance:none!important}
.chat-footer button{min-height:50px!important;padding:0 20px!important}
.bot-msg,.user-msg{max-width:90%!important;font-size:14px!important}}
@media (max-width:480px){.chat-toggle-btn span{display:none}
.chat-toggle-btn{padding:14px 16px;border-radius:50%}}

/* ============================================
   iPHONES MENORES (até 430px)
   ============================================ */
@media (max-width:430px){.chat-header{padding:15px!important}
.chat-header h3{font-size:15px!important}
.chat-footer{gap:8px!important}
.chat-footer button{padding:0 14px!important;font-size:12px!important}
.bot-msg,.user-msg{font-size:13px!important;padding:12px 14px!important}}

/* ============================================
   SELETOR DE IDIOMA
   ============================================ */
.lang-selector{display:flex;align-items:center;gap:8px;margin-left:10px}
.lang-selector .flag-icon{font-size:20px;cursor:pointer;transition:transform .3s,opacity .3s;opacity:.5;line-height:1}
.lang-selector .flag-icon:hover{transform:scale(1.2);opacity:1}
.lang-selector .flag-icon.active{opacity:1;transform:scale(1.1)}
.mobile-flags{display:none}

/* ============================================
   CORREÇÕES PARA SAFARI
   ============================================ */
.chat-footer input{-webkit-appearance:none;appearance:none;user-select:text;-webkit-user-select:text}
.chat-footer input:focus{outline:none;-webkit-tap-highlight-color:transparent}
.chat-window{-webkit-overflow-scrolling:touch;overscroll-behavior:contain}
.chat-messages{-webkit-overflow-scrolling:touch;overscroll-behavior:contain;will-change:auto!important}
.chat-toggle-btn{-webkit-tap-highlight-color:transparent;touch-action:manipulation}
.chat-window.open{transform:none!important;-webkit-transform:none!important}