/*

TemplateMo 559 Zay Shop – Modernizado
https://templatemo.com/tm-559-zay-shop

---------------------------------------------
Melhorias aplicadas:
------------------------------------------------
1. Cores modernas (gradientes, tons vibrantes mas suaves)
2. CTAs dinâmicos com hover e transições
3. Efeitos de shadow e bordas arredondadas atualizados
4. Animações sutis em interações
5. Manutenção total da estrutura original
--------------------------------------------- */

/* Tipografia (ajustes sutis) */
body, ul, li, p, a, label, input, div {
  font-family: 'Inter', sans-serif !important; /* Fonte mais moderna */
  font-size: 16px !important;
  font-weight: 350 !important;
  line-height: 1.6;
}
.h1 {
  font-family: 'Inter', sans-serif;
  font-size: 3.5rem !important;
  font-weight: 700 !important;
  letter-spacing: -0.5px;
}
.h2 {
  font-family: 'Inter', sans-serif;
  font-size: 2.5rem !important;
  font-weight: 600 !important;
}
.h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1.75rem !important;
  font-weight: 500 !important;
}

/* Cores modernas */
:root {
  --primary: #6C63FF;
  --secondary: #36D1DC;
  --accent: #FF6584;
  --dark: #1A1A2E;
  --light: #F8F9FA;
  --success: #4ECDC4;
  --warning: #FFD166;
  --gray: #8A8D93;
}

/* Aplicação das novas cores */
.text-warning { color: var(--warning) !important; }
.text-muted { color: var(--gray) !important; }
.text-success { color: var(--success) !important; }
.text-light { color: var(--light) !important; }
.bg-dark { background-color: var(--dark) !important; }
.bg-light { background-color: var(--light) !important; }
.bg-black { background-color: #0F0F1C !important; }
.bg-success { background-color: var(--success) !important; }

/* Botões modernos com gradiente e transição */
.btn-success {
  background: linear-gradient(135deg, var(--success), #2AB7A9) !important;
  border: none !important;
  border-radius: 50px !important;
  padding: 12px 28px !important;
  font-weight: 500 !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(78, 205, 196, 0.3);
}
.btn-success:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(78, 205, 196, 0.5);
}

/* Paginação dinâmica */
.pagination .page-link {
  border-radius: 8px;
  margin: 0 5px;
  transition: all 0.3s ease;
}
.pagination .page-link:hover {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white !important;
  transform: scale(1.05);
}
.pagination .page-link.active {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-color: transparent;
}

/* Navegação moderna */
#templatemo_nav_top {
  background: var(--dark);
  min-height: 45px;
}
#templatemo_main_nav a {
  color: var(--dark);
  position: relative;
  padding-bottom: 5px;
}
#templatemo_main_nav a:hover {
  color: var(--primary) !important;
}
#templatemo_main_nav a:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transition: width 0.3s ease;
}
#templatemo_main_nav a:hover:after {
  width: 100%;
}

/* Hero Carousel com gradiente sutil */
#template-mo-zay-hero-carousel {
  background: linear-gradient(135deg, #f5f7fa 0%, #e4e8f0 100%) !important;
}
.carousel-indicators li {
  width: 12px !important;
  height: 12px !important;
  border-radius: 50% !important;
  background-color: var(--gray) !important;
  transition: all 0.3s ease;
}
.carousel-indicators li.active {
  background-color: var(--primary) !important;
  transform: scale(1.3);
}

/* Cards de produto modernizados */
.product-wap {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.4s ease;
  border: 1px solid rgba(0,0,0,0.05);
}
.product-wap:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}
.card.product-wap .card .product-overlay {
  background: linear-gradient(0deg, rgba(108,99,255,0.9) 0%, rgba(54,209,220,0.7) 100%);
  visibility: hidden;
  opacity: 0;
  transition: all 0.4s ease;
}
.card.product-wap:hover .card .product-overlay {
  visibility: visible;
  opacity: 1;
}

/* Cores dos dots dos produtos */
.product-wap .product-color-dot {
  border-radius: 50%;
  transition: transform 0.3s ease;
}
.product-wap .product-color-dot:hover {
  transform: scale(1.3);
}
.product-wap .product-color-dot.color-dot-red { background: #FF4757; }
.product-wap .product-color-dot.color-dot-blue { background: #2E86DE; }
.product-wap .product-color-dot.color-dot-black { background: #2F3542; }
.product-wap .product-color-dot.color-dot-light { background: #DFE4EA; }
.product-wap .product-color-dot.color-dot-green { background: #1DD1A1; }

/* Brand com hover mais suave */
.brand-img {
  filter: grayscale(1);
  opacity: 0.6;
  transition: all 0.4s ease;
}
.brand-img:hover {
  filter: grayscale(0);
  opacity: 1;
  transform: scale(1.05);
}

/* Services com efeito moderno */
.services-icon-wap {
  border-radius: 16px;
  padding: 2rem;
  background: white;
  box-shadow: 0 8px 25px rgba(0,0,0,0.06);
  transition: all 0.4s ease;
}
.services-icon-wap:hover {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(108,99,255,0.2);
}
.services-icon-wap:hover i {
  color: white !important;
  transform: scale(1.1);
}

/* Formulário moderno */
.form-control {
  border: 1px solid #E0E6ED;
  border-radius: 10px;
  padding: 12px 18px;
  transition: all 0.3s ease;
}
.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(108,99,255,0.1);
}

/* Footer atualizado */
#tempaltemo_footer {
  background: var(--dark) !important;
}
#tempaltemo_footer a {
  color: #B2B9C6;
  transition: color 0.3s ease;
}
#tempaltemo_footer a:hover {
  color: var(--secondary) !important;
}
#tempaltemo_footer ul.footer-icons li {
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  transition: all 0.3s ease;
}
#tempaltemo_footer ul.footer-icons li:hover {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  transform: translateY(-5px);
}

/* ============ MEDIA QUERIES (mantidas, com ajustes) ============ */

/* Small devices */
@media (min-width: 576px) {
  .tempaltemo-carousel .h1 { font-size: 1.8em !important; }
}

/* Medium devices */
@media (min-width: 768px) {
  #templatemo_main_nav .navbar-nav { max-width: 500px; }
}

/* Large devices */
@media (min-width: 992px) {
  #templatemo_main_nav .navbar-nav { max-width: 600px; }
  #template-mo-zay-hero-carousel .carousel-item { min-height: 32rem !important; }
}

/* Extra large devices */
@media (min-width: 1200px) {
  .product-wap .h3 { font-size: 1.5rem !important; }
}