@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");

#carouselExampleIndicators img {

    width: 100%;
}

.bg-a {
    background: linear-gradient(90deg, #6A358B, #F04B94);
}

.bg-a img {
    height: 130px;
}

.bg-b {
    height: 50px;
    background: linear-gradient(90deg, #F04B94, #00BFF3, #FDF2F8);
}

.bg-a .area-info .text-t span {
    font-size: 10px;
}

@media (max-width: 768px) {
    .show {
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 90%;
        max-width: 500px;
        background: linear-gradient(90deg, #F04B94, #00BFF3, #FDF2F8);
        z-index: 9999;
        /* Um acima do backdrop */
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.25);
        padding: 20px;
        border-radius: 8px;
        text-align: center;
    }

    .bg-a img {
        height: 70px;
        margin-left: 20px;
    }

    .bg-b {
        height: 5px;
        background: linear-gradient(90deg, #F04B94, #00BFF3, #FDF2F8);
    }

    #carouselExampleIndicators img {
        max-width: 100%;
        width: auto;
    }
}

.nav-link {
    position: relative;
    color: #ffffff;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0px;
    width: 0%;
    height: 2px;
    background-color: #6A358B;
    /* Altere a cor como quiser */
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: #6A358B;
    /* Altere para a cor de destaque */
}

.nav-link:hover::after {
    width: 100%;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='white' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

@media (max-width: 768px) {
    .mobile-search-wrapper {
        position: relative;
    }

    .mobile-search-icon {
        display: block;
        background: none;
        border: none;
        color: white;
        font-size: 1.5rem;
    }

    .desktop-search {
        display: none;
    }

    .mobile-search-form {
        position: fixed;
        top: 70px;
        left: 1rem;
        right: 1rem;
        background: white;
        padding: 0.5rem 1rem;
        border-radius: 10px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
        z-index: 999;
        overflow: hidden;
        max-height: 0;
        opacity: 0;
        transition: max-height 0.4s ease, opacity 0.3s ease;
    }

    .mobile-search-form.active {
        max-height: 100px;
        opacity: 1;
    }
}

@media (min-width: 769px) {

    .mobile-search-icon,
    .navbar-toggler {
        display: none !important;
    }

    .desktop-search {
        display: block;
    }
}

.slick-slide {
    padding: 10px;
    display: flex !important;
    justify-content: center;
    align-items: center;
}

.slick-prev:before,
.slick-next:before {
    color: #333;
    font-size: 30px;
}

.card-img-top {
    object-fit: cover;
    transition: opacity 0.4s ease-in-out;
}

.card-img-top.hover-img {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}

.card:hover .card-img-top.default-img {
    opacity: 0;
}

.card:hover .card-img-top.hover-img {
    opacity: 1;
}

.card-title {
    font-size: 1rem;
    font-weight: 600;
}

@media (max-width: 768px) {
    .card-img-top {
        object-fit: cover;
        transition: opacity 0.4s ease-in-out;
    }

}

.price-pix {
    font-size: 1.4rem;
    color: #28a745;
    font-weight: bold;
}

.btn-whatsapp {
    border: 1px solid #28a745;
    color: #28a745;
}

.btn-whatsapp:hover {
    background-color: #28a745;
    color: white;
}

.search-wrapper .form-control {
    border: none;
    border-radius: 50px 0 0 50px;
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
    box-shadow: none;
}

.search-wrapper .form-control:focus {
    outline: none;
    box-shadow: 0 0 0 2px #c5aed8;
}

.search-wrapper .input-group-text {
    background-color: white;
    border: none;
    border-radius: 0 50px 50px 0;
    padding: 0.6rem 1rem;
    color: #a188b6;
    transition: all 0.3s ease;
}

.search-wrapper .input-group-text i {
    font-size: 1rem;
}

.search-wrapper .input-group {
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.08);
}

.mobile-search-form {
    padding: 1rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    max-width: 90%;
    margin: 1rem auto;
    display: none;
}

.mobile-search-form.active {
    display: block;
}

.beneficio-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: #a188b6;
    color: #ffffff;
    border-radius: 50%;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    font-size: 20px;
    transition: all 0.3s ease;
    margin-right: 5px;
}

.beneficio-icon:hover {
    color: #ffffff;
    transform: scale(1.1);
}

.beneficio-text span {
    color: #7b51a1;
    font-weight: 600;
}

.beneficio-text small {
    color: #555;
    font-size: 0.85rem;
}

.footer {
    background: linear-gradient(180deg, #6A358B, #F04B94);
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background-color: white;
    color: #a188b6;
    /* lilás da identidade */
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 18px;
}

.footer-social a:hover {
    background-color: #fff;
    color: #7b51a1;
    transform: scale(1.1);
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-contact p {
    display: flex;
    align-items: center;
    font-size: 0.95rem;
    margin: 0;
}

.footer-contact .icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background-color: white;
    color: #a188b6;
    border-radius: 50%;
    font-size: 16px;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.footer-contact .icon:hover {
    color: #7b51a1;
    transform: scale(1.1);
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
}

.newsletter-form {
    max-width: 100%;
}

.newsletter-form input[type="email"] {
    border-radius: 50px 0 0 50px;
    border: none;
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
    outline: none;
}

.newsletter-form input::placeholder {
    color: #999;
}

.newsletter-form input:focus {
    box-shadow: 0 0 0 2px #c5aed8;
}

.newsletter-form .btn-newsletter {
    border-radius: 0 50px 50px 0;
    background-color: white;
    color: #a188b6;
    font-weight: 600;
    border: none;
    padding: 0.6rem 1rem;
    transition: all 0.3s ease;
}

.newsletter-form .btn-newsletter:hover {
    background-color: #f1e8ff;
    color: #7b51a1;
    transform: scale(1.03);
}