@import url('https://fonts.googleapis.com/css2?family=Questrial&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Monsieur+La+Doulaise&family=Questrial&display=swap');


:root {
    --primary-color: #ffffff;
    --secondary-color: hwb(0 10% 90%);
    --tertiary-color: #122454;
}

body {
    background-color: var(--primary-color);
    font-family: "Questrial", sans-serif;
    margin: 0;
    padding-top: 120px;
}

.navbar {
    max-width: 100vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.3em 2em;
    background-color: white;
    top: 0;
    left: 0;
    border-bottom: 1px solid #ddd;
}

.logo {
    font-family: "questrial", sans-serif;
    font-size: 3rem;
    font-weight: bold;
}

.nav-links {
    display: flex;
    justify-content: center;
    list-style-type: none;
    margin: 0;
    padding: 0;
    font-size: 1.2rem;
}

.navbar-brand {
    font-family: "Monsieur La Doulaise", cursive;
    font-size: 3rem;
    text-align: center;
}

a {
    font-weight: bold;
    text-decoration: none;
    color: black;
    padding: 14px 16px;
    display: block;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--tertiary-color);
}

.botao {
    background-color: var(--primary-color);
    border: solid 2px var(--secondary-color);
    color: rgb(0, 0, 0);
    padding: 8px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
    border-radius: 25px;
    transition: background-color 0.5s ease;
}

.botao:hover {
    color: white;
    background-color: var(--secondary-color);
}

.card {
    height: 50vh;
    border: none;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}
.card:hover{
    transform: translateY(-10px); 
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2); 
}
.card-body:hover{
    border-radius: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2); 
}

.card-img {
    height: 100%;
    object-fit: cover;
}

.card-img-overlay {
    top: 40vh;
}


.text p {
    text-align: justify;
    font-family: "questrial", sans-serif;
    font-size: 1.3rem;
    color: rgb(27, 27, 27);
}

.perfumes {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20rem;
    padding-bottom: 4.5rem;
    flex-wrap: wrap;
}

.perfume-masc {
    color: white;
    width: 18rem;
    border-radius: 20px;
    background-color: #555555;
}

.perfume-masc img {
    border-radius: 16px 16px 0 0;
}

.perfume-fem {
    color: white;
    width: 18rem;
    border-radius: 20px;
    background-color: #b83a42;
}

.perfume-fem img {
    border-radius: 16px 16px 0 0;
}

.footer-container {
    color: white;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    background: var(--secondary-color);
    padding: 30px 20px 10px 20px;
    border-radius: 15px 15px 0 0;
    gap: 2rem;
}
.footer-section {
    flex: 1 1 220px;
    min-width: 220px;
    margin-bottom: 10px;
}

footer a {
    color: white;
}
footer a:hover {
    color: rgb(103, 180, 251);
}