[13:52, 10/01/2026] Vidracaria Multividros: * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

/* CORES BASE */
:root {
    --azul: #007bff;
    --verde: #25d366;
    --cinza: #f5f5f5;
    --escuro: #1a1a1a;
}

/* BODY */
body {
    background: #ffffff;
    color: var(--escuro);
}

/* HEADER */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    background: #ffffff;
    border-bottom: 1px solid #eaeaea;
}

.logo img {
    height: 45px;
}

/* BOTÃO WHATSAPP */
.btn-whatsapp {
    background: var(--verde);
    color: #ffffff;
    padding: 12px 22px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.btn-whatsapp:hover {
    opacity: 0.85;
}

/* HERO COM IMAGEM */
.hero {
    height: 80vh;
    background-image: url("imagens/foto21.jpeg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

/* CAMADA DE LEITURA */
.hero-overlay {
    background: rgba(255, 255, 255, 0.88);
    padding: 50px;
    border-radius: 14px;
    text-align: center;
    max-width: 720px;
}

/* TÍTULO */
.hero h1 {
    font-size: 36px;
    margin-bottom: 15px;
}

/* DESCRIÇÃO */
.hero p {
    font-size: 18px;
    color: #555;
    margin-bottom: 30px;
}

/* BOTÃO PRINCIPAL */
.btn-principal {
    background: var(--azul);
    color: #ffffff;
    padding: 15px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    transition: 0.3s;
}

.btn-principal:hover {
    background: #005ec4;
}

/* SEÇÃO SERVIÇOS */
.servicos {
    padding: 60px 40px;
    background: var(--cinza);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

/* CARD */
.card {
    background: #ffffff;
    padding: 35px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

/* TÍTULO CARD */
.card h3 {
    margin-bottom: 10px;
    font-size: 22px;
}

/* TEXTO CARD */
.card p {
    color:
[13:52, 10/01/2026] Vidracaria Multividros: /* RESET BÁSICO */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

/* CORES BASE */
:root {
    --azul: #007bff;
    --verde: #25d366;
    --cinza: #f5f5f5;
    --escuro: #1a1a1a;
}

/* BODY */
body {
    background: #ffffff;
    color: var(--escuro);
}

/* HEADER */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    background: #ffffff;
    border-bottom: 1px solid #eaeaea;
}

.logo img {
    height: 45px;
}

/* BOTÃO WHATSAPP */
.btn-whatsapp {
    background: var(--verde);
    color: #ffffff;
    padding: 12px 22px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.btn-whatsapp:hover {
    opacity: 0.85;
}

/* HERO COM IMAGEM */
.hero {
    height: 80vh;
    background-image: url("imagens/foto1.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

/* CAMADA DE LEITURA */
.hero-overlay {
    background: rgba(255, 255, 255, 0.88);
    padding: 50px;
    border-radius: 14px;
    text-align: center;
    max-width: 720px;
}

/* TÍTULO */
.hero h1 {
    font-size: 36px;
    margin-bottom: 15px;
}

/* DESCRIÇÃO */
.hero p {
    font-size: 18px;
    color: #555;
    margin-bottom: 30px;
}

/* BOTÃO PRINCIPAL */
.btn-principal {
    background: var(--azul);
    color: #ffffff;
    padding: 15px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    transition: 0.3s;
}

.btn-principal:hover {
    background: #005ec4;
}

/* SEÇÃO SERVIÇOS */
.servicos {
    padding: 60px 40px;
    background: var(--cinza);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

/* CARD */
.card {
    background: #ffffff;
    padding: 35px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

/* TÍTULO CARD */
.card h3 {
    margin-bottom: 10px;
    font-size: 22px;
}

/* TEXTO CARD */
.card p {
    color: #666;
    font-size: 16px;
}

/* RODAPÉ */
footer {
    background: #ffffff;
    padding: 25px;
    text-align: center;
    border-top: 1px solid #eaeaea;
}

/* LINK INSTAGRAM */
footer a {
    color: var(--azul);
    text-decoration: none;
    font-weight: bold;
}

footer a:hover {
    text-decoration: underline;
}

/* RESPONSIVO */
@media (max-width: 768px) {

    header {
        flex-direction: column;
        gap: 15px;
    }

    .hero h1 {
        font-size: 28px;
    }

    .hero-overlay {
        padding: 35px 25px;
    }
}