/* =========================================================
   CONFIGURAÇÕES GERAIS
========================================================= */

body {
    margin: 0;
    padding: 0;

    background-color:#0174b7;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    min-height: 100vh;
}


/* =========================================================
   NAVBAR
========================================================= */

.navbar {
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.navbar-brand img {
    display: block;
}

.navbar .nav-link {
    transition: 0.25s ease;
}

.navbar .nav-link:hover {
    color: #ffffff;
    transform: translateY(-1px);
}

.navbar .nav-link.active {
    color: #ffffff;
    font-weight: 600;
}


/* =========================================================
   CABEÇALHO
========================================================= */

.descontos-header {
    padding-top: 120px;
    padding-bottom: 0px;

    text-align: center;
}

.descontos-header h1 {
    margin: 0;
    color: #ffffff;
    font-size: 34px;
    font-weight: 800;

    letter-spacing: -0.5px;
}

.descontos-header p {
    margin-top: 10px;
    margin-bottom: 0;

    color: #bdbdbd;

    font-size: 15px;
}


/* =========================================================
   CONTAINER
========================================================= */

.descontos-container {
    padding-top: 10px;
    padding-bottom: 60px;
}


/* =========================================================
   CARD
========================================================= */

.desconto-card {
    height: 100%;

    display: flex;
    flex-direction: column;

    overflow: hidden;

    background: #ffffff;

    border-radius: 18px;

    border: 1px solid rgba(255, 255, 255, 0.08);

    box-shadow:
        0 12px 35px rgba(0, 0, 0, 0.28);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.desconto-card:hover {
    transform: translateY(-6px);

    box-shadow:
        0 18px 45px rgba(0, 0, 0, 0.40);
}


/* =========================================================
   IMAGEM
========================================================= */

.desconto-imagem {
    width: 100%;

    height: 230px;

    overflow: hidden;

    background: #eeeeee;
}

.desconto-imagem img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;

    transition: transform 0.4s ease;
}

.desconto-card:hover .desconto-imagem img {
    transform: scale(1.05);
}


/* =========================================================
   CONTEÚDO
========================================================= */

.desconto-conteudo {
    flex: 1;

    padding: 22px 22px 10px;

    color: #222222;
}

.desconto-conteudo h2 {
    margin: 0 0 14px;

    color: #151515;

    font-size: 21px;
    font-weight: 800;

    line-height: 1.25;
}


/* =========================================================
   DESCRIÇÃO
========================================================= */

.desconto-descricao {
    color: #666666;

    font-size: 14px;

    line-height: 1.6;

    white-space: pre-line;
}


/* =========================================================
   PREÇOS
========================================================= */

.desconto-precos {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 8px;

    margin-top: 18px;
}

.price-old {
    color: #999999;

    font-size: 14px;

    text-decoration: line-through;
}

.price-arrow {
    color: #999999;

    font-size: 15px;
}

.price-new {
    color: #198754;

    font-size: 20px;

    font-weight: 800;
}


/* =========================================================
   ÁREA DOS BOTÕES
========================================================= */

.desconto-acoes {
    display: flex;
    flex-direction: column;

    gap: 10px;

    padding: 18px 22px 22px;

    margin-top: auto;

    background: #fafafa;

    border-top: 1px solid #eeeeee;
}


/* =========================================================
   BOTÃO AGÊNCIA
========================================================= */

.btn-agencia,
.btn-login {
    width: 100%;

    min-height: 46px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 8px;

    border-radius: 10px;

    font-size: 14px;
    font-weight: 700;

    text-decoration: none;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease;
}


/* Agência */

.btn-agencia {
    background: #198754;

    color: #ffffff;
}

.btn-agencia:hover {
    background: #157347;

    color: #ffffff;

    transform: translateY(-2px);

    box-shadow:
        0 6px 15px rgba(25, 135, 84, 0.25);
}

.btn-agencia i {
    font-size: 17px;
}


/* =========================================================
   BOTÃO LOGIN
========================================================= */

.btn-login {
    background: #212529;

    color: #ffffff;

    border: 1px solid #212529;
}

.btn-login:hover {
    background: #000000;

    color: #ffffff;

    transform: translateY(-2px);

    box-shadow:
        0 6px 15px rgba(0, 0, 0, 0.20);
}


/* =========================================================
   DROPDOWN
========================================================= */

.dropdown-menu {
    border: 0;

    border-radius: 10px;

    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.20);
}

.dropdown-item {
    padding: 9px 15px;
}

.dropdown-item i {
    width: 20px;
}


/* =========================================================
   RESPONSIVO
========================================================= */

@media (max-width: 991px) {

    .navbar-nav {
        padding-top: 15px;
        padding-bottom: 10px;
    }

    .navbar .nav-item {
        margin-bottom: 5px;
    }

    .navbar .dropdown {
        margin-top: 5px;
    }
    
    .descontos-header p {
        font-size: 10px;
    }

}


@media (max-width: 767px) {

    .descontos-header {
        padding-top: 105px;
        padding-bottom: 0px;
    }

    .descontos-header h1 {
        font-size: 28px;
    }

    .descontos-header p {
        padding: 0 20px;

        font-size: 9px;
    }

    .desconto-imagem {
        height: 210px;
    }

}


@media (max-width: 480px) {

    .descontos-container {
        padding-left: 14px;
        padding-right: 14px;
    }

    .desconto-card {
        border-radius: 15px;
    }

    .desconto-imagem {
        height: 200px;
    }

    .desconto-conteudo {
        padding: 18px 18px 8px;
    }

    .desconto-conteudo h2 {
        font-size: 19px;
    }

    .desconto-acoes {
        padding: 15px 18px 18px;
    }

    .btn-agencia,
    .btn-login {
        min-height: 44px;

        font-size: 13px;
    }

}
