/* =========================
   RESET BÁSICO
========================= */
body {
    margin: 0;
    min-height: 100vh;

    background:
        linear-gradient(rgba(0,0,0,0.25), rgba(0,0,0,0.25)),
        url('../img/FundoBellaMaria.webp');

    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

/* =========================
   FUNDO MOBILE
========================= */
@media (max-width: 768px) {
    body {
        background:
            linear-gradient(rgba(0,0,0,0.25), rgba(0,0,0,0.25)),
            url('../img/FundoBellaCell.webp');

        background-position: top center;
    }
}

/* =========================
   LOGO
========================= */
.logo-bella {
    width: 12rem;
    margin-top: 2rem;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* =========================
   TEXTO DA LOJA
========================= */
.info-loja {
    color: #5f6346;
    font-size: 16px;
    line-height: 1.5;
    font-weight: 600;
    margin-top: 1rem;
    text-align: center;

    text-shadow: 0 1px 3px rgba(255,255,255,0.6);
}

/* =========================
   BOTÕES
========================= */
.btn {
    border-radius: 50px;
    padding: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    transition: all 0.3s ease;

    background-color: #ffffff;
    border: 2px solid #5f6346;
    color: #5f6346;
}

.btn:hover {
    background-color: #5f6346;
    border-color: #5f6346;
    color: #ffffff !important;
    transform: translateY(-2px);
}

/* WhatsApp */
.btn-whatsapp {
    border-color: #075E54;
    color: #075E54;
}

.btn-whatsapp:hover {
    background-color: #075E54;
    border-color: #075E54;
}

/* Ícones */
.btn i {
    margin-right: 8px;
    font-size: 1.2rem;
}

/* =========================
   MASTIGRA
========================= */
.mastigra {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
}

.mastigra:hover {
    color: #cb2128;
}
