/* =========================
   VARIÁVEIS (Design System)
========================= */
:root {
    --cor-primaria: #3c184e;
    --cor-secundaria: #ffffff;
    --cor-texto: #3c184e;
    --cor-sombra: rgba(0, 0, 0, 0.25);

    --fonte-padrao: "Segoe UI", Roboto, Arial, sans-serif;

    --raio: 10px;
    --padding-section: 120px 80px;
}

/* =========================
   RESET & BASE
========================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--fonte-padrao);
    color: var(--cor-texto);
    line-height: 1.6;
    background-color: var(--cor-secundaria);
}

img {
    max-width: 100%;
    display: inline-block;
}

a {
    text-decoration: none;
    color: inherit;
}

/* =========================
   ELEMENTOS GERAIS
========================= */
.container {
    padding: var(--padding-section);
}

h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 45px;
    font-weight: 800;
}

.destaque {
    font-weight: 700;
    font-style: italic;
}

/* =========================
   BANNER / TOPO
========================= */
.banner-topo {
    background: url("img/banner-topo.jpg") center / cover no-repeat;
}

.container-nome-logo {
    max-width: 260px;
}

.nome-pet-shop {
    font-size: 35px;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 6px;
}

.nome-pet-shop img {
    width: 30px;
}

.slogan-pet-shop {
    font-size: 14px;
    text-align: center;
}

.container-titulo-topo {
    max-width: 1024px;
    margin: 70px auto 0;
    padding: 40px;
    background: rgba(255, 255, 255, 0.85);
    border-radius: var(--raio);
    box-shadow: 0 8px 30px rgba(31, 38, 135, 0.35);
}

.titulo-topo {
    font-size: 60px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 40px;
}

.link-fale-conosco {
    width: 220px;
    margin: 0 auto;
    padding: 12px 25px;
    background-color: var(--cor-primaria);
    border-radius: var(--raio);
    text-align: center;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.link-fale-conosco a {
    color: var(--cor-secundaria);
    font-size: 20px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.link-fale-conosco:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

.link-fale-conosco img {
    width: 20px;
}

/* =========================
   SERVIÇOS
========================= */
.box-servicos {
    max-width: 800px;
    margin: 0 auto 50px;
}

.box-servicos ul {
    list-style: square;
    padding-left: 20px;
}

.box-servicos li {
    font-size: 20px;
    margin-bottom: 20px;
}

.box-servicos-img {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.box-servicos-img img {
    margin: 10px;
    border-radius: 6px;
    box-shadow: 0 6px 15px var(--cor-sombra);
    transition: transform 0.3s ease;
}

.box-servicos-img img:hover {
    transform: scale(1.05);
}

/* =========================
   FAIXA
========================= */
.faixa {
    background-color: var(--cor-primaria);
    text-align: center;
}

.text-faixa {
    max-width: 800px;
    margin: 0 auto 50px;
    font-size: 40px;
    color: var(--cor-secundaria);
}

.redes-sociais a {
    margin: 0 20px;
}

.redes-sociais img {
    width: 50px;
    height: 50px;
    transition: transform 0.2s ease;
}

.redes-sociais img:hover {
    transform: scale(1.15);
}

/* =========================
   MARCAS
========================= */
.principais-marcas {
    text-align: center;
}

.container-marcas {
    max-width: 900px;
    margin: 0 auto 25px;
}

.logo-marca {
    width: 148px;
    height: 148px;
    margin: 15px;
    object-fit: contain;
    filter: grayscale(100%);
    transition: transform 0.3s ease, filter 0.3s ease;
}

.logo-marca:hover {
    filter: grayscale(0);
    transform: scale(1.05);
}

/* =========================
   ONDE ESTAMOS
========================= */
.onde-estamos {
    text-align: center;
}

.onde-estamos p {
    font-size: 20px;
    margin-bottom: 45px;
}

.onde-estamos iframe {
    width: 100%;
    max-width: 800px;
    height: 450px;
    border-radius: var(--raio);
}

/* =========================
   RODAPÉ
========================= */
.rodape {
    background-color: var(--cor-primaria);
    padding: 15px 0;
}

.text-rodape {
    color: var(--cor-secundaria);
    font-size: 12px;
    text-align: center;
}

/* =========================
   RESPONSIVO
========================= */
@media (max-width: 900px) {
    :root {
        --padding-section: 70px 24px;
    }

    h2 {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .titulo-topo {
        font-size: 38px;
    }

    .container-titulo-topo {
        margin-top: 40px;
        padding: 28px;
    }

    .text-faixa {
        font-size: 28px;
    }
}

@media (max-width: 600px) {
    .nome-pet-shop {
        font-size: 28px;
    }

    .link-fale-conosco {
        width: 100%;
        max-width: 260px;
    }

    .box-servicos li {
        font-size: 18px;
    }

    .redes-sociais a {
        margin: 0 12px;
    }
}
