* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Poppins', sans-serif; background-color: #f8f9fa; color: #333; line-height: 1.6; }

/* Header conforme sua imagem */
.main-header {
    background: linear-gradient(180deg, #d20000 0%, #a00000 100%);
    padding: 30px 20px;
    text-align: center;
}
.logo { max-width: 150px; }

.hero {
    text-align: center;
    padding: 40px 20px;
    background: #fff;
}
.hero h1 { font-weight: 800; font-size: 1.8rem; margin-bottom: 10px; }
.hero h1 span { color: #d20000; display: block; }
.hero p { font-size: 0.9rem; color: #666; max-width: 600px; margin: 0 auto; }

/* Marcas Estilizadas */
.marcas { text-align: center; padding: 20px; }
.marcas h3 { font-size: 1.2rem; margin-bottom: 20px; }
.marcas-grid { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; }
.marca-item {
    max-width: 80px; max-height: 80px; background: #ffffff; color: white;
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 0.7rem; font-weight: bold;
}

/* Busca */
.search-section { padding: 20px; max-width: 800px; margin: 0 auto; }
.search-container label { font-weight: bold; display: block; margin-bottom: 10px; text-align:center; }
.search-form input {
    width: 100%; padding: 15px; border: 1px solid #ccc; border-radius: 5px; margin-bottom: 10px;
}
.search-form button {
    width: 100%; padding: 15px; background: #0056b3; color: white;
    border: none; border-radius: 5px; font-weight: bold; cursor: pointer;
}

/* Resultados */
.result-card {
    background: white; padding: 20px; border-radius: 10px; margin-top: 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1); border-left: 5px solid #0056b3;
}
.price-info .pix { display: block; font-size: 1.5rem; color: #28a745; font-weight: bold; }
.btn-whatsapp {
    display: block; text-align: center; background: #25d366; color: white;
    padding: 12px; margin-top: 15px; text-decoration: none; border-radius: 5px; font-weight: bold;
}

/* Rodapé */
.footer-info { background: #eee; padding: 30px 20px; margin-top: 40px; }
.info-box { margin-bottom: 20px; }

/* Desktop */
@media (min-width: 768px) {
    .hero h1 { font-size: 3rem; }
    .marcas-grid { gap: 30px; }
    .footer-info { display: flex; justify-content: space-around; }
}

/* SEÇÃO QUEM SOU - CASSIANO ALVES */
.quem-sou {
    padding: 60px 5%;
    background-color: #ffffff;
}

.container-sobre {
    display: flex;
    flex-direction: column; /* Mobile first */
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
    align-items: center;
}

.sobre-imagem {
    position: relative;
    width: 100%;
    max-width: 400px;
}

.sobre-imagem img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 20px 20px 0px var(--vermelho-premium); /* Detalhe estiloso */
}

.selo-tempo {
    position: absolute;
    bottom: -15px;
    right: -15px;
    background: #ffcc00;
    color: #000;
    padding: 10px 20px;
    font-weight: 900;
    border-radius: 10px;
    font-size: 0.9rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.sobre-texto .subtitulo {
    color: var(--vermelho-premium);
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 2px;
}

.sobre-texto h2 {
    font-size: 2.2rem;
    line-height: 1.2;
    margin: 10px 0 20px;
    font-weight: 800;
}

.sobre-texto h2 span { color: var(--vermelho-premium); }

.sobre-texto p {
    color: #555;
    margin-bottom: 15px;
    font-size: 1.05rem;
}

.diferenciais-sobre {
    margin: 30px 0;
    display: grid;
    gap: 20px;
}

.item-confianca {
    border-left: 3px solid #0051a3;
    padding-left: 15px;
}

.item-confianca strong {
    display: block;
    color: #333;
    font-size: 1.1rem;
}

.item-confianca span {
    font-size: 0.9rem;
    color: #777;
}

.btn-contato-direto {
    display: inline-block;
    padding: 15px 30px;
    background: #25d366;
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 8px;
    transition: 0.3s;
    width: 100%;
    text-align: center;
}

/* Ajuste para Desktop */
@media (min-width: 992px) {
    .container-sobre {
        flex-direction: row;
        text-align: left;
    }
    .btn-contato-direto { width: auto; }
}

.instrucao-busca {
    color: #d20000;
    font-weight: 900;
    margin-bottom: 5px;
   text-align:center;
	font-size: 1.3rem;  max-width: 600px; 
}