.modelo-loja {
    background: #ffffff;
    color: #1a1a1a;
    font-family: 'Inter', -apple-system, sans-serif;
}

.modelo-loja .top-bar-loja {
    background: #000;
    color: #fff;
    font-size: 11px;
    text-align: center;
    padding: 8px;
    letter-spacing: 2px;
}

.modelo-loja .nav-loja {
    padding: 20px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eee;
}

.modelo-loja .logo-loja {
    font-weight: 800;
    font-size: 22px;
    letter-spacing: -1px;
}

.modelo-loja .logo-loja span { font-weight: 300; color: #777; }

.modelo-loja .hero-loja {
    height: 90vh;
    background: url('https://images.pexels.com/photos/1183266/pexels-photo-1183266.jpeg?auto=compress&cs=tinysrgb&w=1260') center/cover;
    display: flex;
    align-items: center;
    padding: 0 5%;
}

.modelo-loja .hero-overlay {
    max-width: 500px;
}

.modelo-loja .hero-loja h1 {
    font-size: 64px;
    line-height: 1;
    margin: 20px 0;
    font-weight: 900;
}

.modelo-loja .btn-loja {
    background: #000;
    color: #fff !important;
    padding: 18px 35px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    border-radius: 4px;
    transition: 0.3s;
}

.modelo-loja .vitrine-loja { padding: 80px 5%; }

.modelo-loja .grid-produtos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.modelo-loja .img-container {
    background: #f5f5f5;
    aspect-ratio: 3/4;
    overflow: hidden;
    margin-bottom: 15px;
}

.modelo-loja .img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.modelo-loja .card-produto:hover img { transform: scale(1.05); }

.modelo-loja .footer-interno-loja {
    background: #f9f9f9;
    padding: 60px 5% 30px;
    border-top: 1px solid #eee;
}

.modelo-loja .icones-loja a {
    color: #1a1a1a !important; /* Cor preta para ser visível no fundo branco */
    text-decoration: none !important;
    margin-right: 20px;
    font-weight: 500;
    font-size: 14px;
    transition: 0.3s ease;
    display: inline-block;
}

/* Cor azul apenas quando passar o mouse */
.modelo-loja .icones-loja a:hover {
    color: #00bcd4 !important; /* O tom de azul/ciano que aparece no seu print */
    transform: translateY(-2px);
}

/* Ajuste para o ícone do carrinho não sumir também */
.modelo-loja .icones-loja a:last-child {
    font-size: 18px;
    margin-right: 0;
}

.modelo-loja .btn {
  padding: 12px 25px;
  border-radius: 30px;
  background: #000;
  color: white;
  text-decoration: none;
  transition: 0.3s;
  display: inline-block;
  margin-left: 2%;
}

.modelo-loja .btn:hover {
  transform: scale(1.05);
  background: #272727;
}