/* CONFIGURAÇÃO GERAL E RESETS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

body {
    background-color: #0b0b0c;
    color: #f5f5f7;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* BARRA DE AVISO SUPERIOR */
.barra-aviso {
    background-color: #dfb142; /* Dourado idêntico à logo */
    color: #000000;
    text-align: center;
    padding: 10px 0;
    font-size: 13px;
    font-weight: bold;
    letter-spacing: 0.5px;
}

/* CABEÇALHO (HEADER) */
header {
    background-color: rgba(18, 18, 18, 0.95);
    padding: 12px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #232325;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* BLOCO UNIFICADO DA LOGO */
.logo-bloco {
    display: flex;
    align-items: center;
    gap: 15px; /* Distância perfeita entre imagem e texto */
}

/* Tamanho excelente para a logo redonda */
.logo-img {
    height: 55px; 
    width: 55px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid #dfb142; /* Aro dourado em volta da logo */
}

/* Estilo do nome da loja */
.logo-texto {
    font-size: 20px;
    font-weight: bold;
    color: #ffffff;
    letter-spacing: 0.5px;
}

/* LINK INSTAGRAM */
.insta-link {
    color: #f5f5f7;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: 0.3s;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 8px 16px;
    border-radius: 20px;
    border: 1px solid rgba(223, 177, 66, 0.2);
}

.insta-link:hover {
    color: #dfb142;
    border-color: #dfb142;
    background-color: rgba(223, 177, 66, 0.05);
}

/* BANNER PRINCIPAL */
.hero {
    background: linear-gradient(180deg, #121212 0%, #050505 100%);
    padding: 90px 0;
    text-align: center;
    border-bottom: 1px solid #232325;
}

.hero-content h2 {
    font-size: 46px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #ffffff;
}

.hero-content p {
    font-size: 18px;
    color: #86868b;
    max-width: 600px;
    margin: 0 auto 35px;
    line-height: 1.4;
}

.btn-principal {
    display: inline-block;
    background-color: #25d366; 
    color: #ffffff;
    padding: 15px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    transition: 0.3s transform ease;
}

.btn-principal:hover {
    transform: scale(1.04);
}

/* GRID DE PRODUTOS */
.titulo-secao {
    text-align: center;
    margin: 60px 0 40px;
    font-size: 32px;
    font-weight: 600;
    color: #ffffff;
}

.grid-produtos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.card-produto {
    background-color: #121212;
    border: 1px solid #232325;
    border-radius: 18px;
    padding: 25px;
    text-align: center;
    position: relative;
    transition: 0.3s ease;
}

.card-produto:hover {
    border-color: #dfb142;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

.tag-disponivel {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: #dfb142;
    color: #000000;
    font-size: 11px;
    font-weight: bold;
    padding: 5px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    z-index: 10;
}

/* CONTEINER DE IMAGENS DOS PRODUTOS */
.container-imagem {
    width: 100%;
    height: 200px;
    margin-bottom: 20px;
    border-radius: 12px;
    overflow: hidden;
    background-color: #1a1a1c;
}

.img-produto {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s ease;
}

.card-produto:hover .img-produto {
    transform: scale(1.06);
}

.card-produto h3 {
    font-size: 22px;
    margin-bottom: 8px;
    color: #ffffff;
}

.preco-apartir {
    font-size: 14px;
    color: #86868b;
    margin-bottom: 15px;
}

.preco-apartir strong {
    font-size: 26px;
    color: #ffffff;
    display: block;
    margin-top: 4px;
}

/* DESIGN DO SELETOR DE MODELOS (NOVO) */
.seletor-modelo {
    margin: 15px 0 20px;
    text-align: left;
}

.seletor-modelo label {
    font-size: 12px;
    color: #86868b;
    display: block;
    margin-bottom: 6px;
    font-weight: 500;
}

.campo-selecao {
    width: 100%;
    padding: 12px;
    background-color: #1a1a1c;
    border: 1px solid #232325;
    color: #ffffff;
    border-radius: 10px;
    outline: none;
    font-size: 14px;
    cursor: pointer;
    transition: 0.3s;
}

.campo-selecao:focus {
    border-color: #dfb142;
}

.campo-selecao optgroup {
    background-color: #121212;
    color: #dfb142;
    font-weight: bold;
}

.campo-selecao option {
    background-color: #1a1a1c;
    color: #ffffff;
}

/* SELETOR DE CORES VISUAL */
.seletor-cores {
    margin-bottom: 20px;
    text-align: center;
}

.seletor-cores span {
    font-size: 12px;
    color: #86868b;
    display: block;
    margin-bottom: 8px;
}

.cores-lista {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.cor-item {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid transparent;
    transition: 0.2s;
}

.cor-item:hover {
    transform: scale(1.2);
    border-color: #dfb142;
}

/* CAIXA DE DETALHES */
.detalhes-tecnicos {
    text-align: left;
    background-color: #1a1a1c;
    padding: 15px;
    border-radius: 12px;
    margin-bottom: 20px;
    font-size: 13px;
    line-height: 1.5;
    border-left: 3px solid #dfb142;
}

.detalhes-tecnicos p {
    margin-bottom: 8px;
    color: #cccccc;
}

.detalhes-tecnicos p:last-child {
    margin-bottom: 0;
}

.detalhes-tecnicos strong {
    color: #dfb142;
}

/* BOTÃO COMPRAR */
.btn-comprar {
    display: block;
    background-color: transparent;
    border: 1px solid #dfb142;
    color: #dfb142;
    padding: 12px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: 0.3s;
    text-align: center;
}

.btn-comprar:hover {
    background-color: #dfb142;
    color: #000000;
}

/* SEÇÃO INFORMAÇÕES DE CONFIANÇA */
.secao-info {
    background-color: #121212;
    padding: 50px 0;
    border-top: 1px solid #232325;
    border-bottom: 1px solid #232325;
}

.grid-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    text-align: center;
}

.item-info i {
    font-size: 35px;
    color: #dfb142;
    margin-bottom: 15px;
}

.item-info h4 {
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 8px;
}

.item-info p {
    font-size: 14px;
    color: #86868b;
}

/* FOOTER */
footer {
    background-color: #0b0b0c;
    padding: 40px 0;
    text-align: center;
    font-size: 14px;
    color: #86868b;
}

.footer-content p {
    margin-bottom: 10px;
}

.redes-sociais {
    margin-top: 15px;
}

.redes-sociais a {
    color: #86868b;
    font-size: 22px;
    margin: 0 12px;
    transition: 0.3s;
}

.redes-sociais a:hover {
    color: #dfb142;
}

/* BOTÃO FLUTUANTE WHATSAPP */
.whatsapp-flutuante {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #ffffff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    z-index: 9999;
    transition: 0.3s;
}

.whatsapp-flutuante:hover {
    transform: scale(1.1);
}

/* RESPONSIVIDADE CELULAR */
@media (max-width: 768px) {
    .hero-content h2 { font-size: 32px; }
    .hero-content p { font-size: 16px; }
    .header-container { flex-direction: column; gap: 15px; text-align: center; }
    .grid-produtos { grid-template-columns: 1fr; }
}