@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

body {
  font-family: 'Poppins', sans-serif;
}

/* Cor personalizada */
.bg-purple {
    background-color: #590478;
}

.text-purple {
    color: #590478 !important;
}

.btn-purple {
    background-color: #590478;
    color: #ffffff;
}

.btn-purple:hover {
    background-color: #5c037a;
    color: #ffffff;
}

/* Barra de busca */
.search-box input {
    border-radius: 30px;
    padding-left: 20px;
}

/* HERO */
.hero-section {
    width: 100%;
    overflow: hidden;
}

.hero-img {
    width: 100%;
    display: block;
}

/* Mostrar só no desktop */
.desktop-hero {
    display: block;
}

/* Mostrar só no mobile */
.mobile-hero {
    display: none;
}

.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 25px;
    right: 25px;
    background-color: rgb(37, 211, 102);
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    line-height: 60px;
    z-index: 999;
}

/* FOOTER */

.footer-dark {
    background-color: #222;
}

.footer-link {
    color: #fff;
    text-decoration: none;
}

.footer-link:hover {
    color: #f8b400;
}

.footer-social {
    color: #fff;
    text-decoration: none;
}

.footer-social:hover {
    color: #f8b400;
}


/* TROCA AUTOMÁTICA PARA MOBILE */
@media (max-width: 767px) {
    .desktop-hero {
        display: none;
    }
    .mobile-hero {
        display: block;
    }
}



/* ABOUT PAGE */

.about-section {
position: relative;
background: url('./src/img/about-bg.jpg') center/cover no-repeat;
color: #fff;
}

.about-section .overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
/* background: rgba(0, 0, 0, 0.1); */
z-index: 1;
}

.about-section .container {
z-index: 2;
position: relative;
}

/* TÓPICOS */

.product-topics {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.product-topics li {
    margin-bottom: 8px;
    padding-left: 25px;
    position: relative;
    font-size: 0.9rem;
    line-height: 1.3rem;
}

.product-topics p {
    font-size: .9rem;
}