﻿/* Please see documentation at https://docs.microsoft.com/aspnet/core/client-side/bundling-and-minification\ 
for details on configuring this project to bundle and minify static web assets. */

/* Wrapping element */
/* Set some basic padding to keep content from hitting the edges */
.body-content {
    padding-left: 15px;
    padding-right: 15px;
}

/* Carousel */
.carousel-caption p {
    font-size: 20px;
    line-height: 1.4;
}

/* Make .svg files in the carousel display properly in older browsers */
.carousel-inner .item img[src$=".svg"] {
    width: 100%;
}

/* QR code generator */
#qrCode {
    margin: 15px;
}

/* Hide/rearrange for smaller screens */
@media screen and (max-width: 767px) {
    /* Hide captions */
    .carousel-caption {
        display: none;
    }
}

.whatsapp2 {
    position: fixed;
    /* width: 70px; */
    /* height: 70px; */
    bottom: 88px;
    right: 13px;
    background-color: #25d366;
    color: #fff !important;
    border-radius: 7px;
    text-align: center;
    line-height: 18px;
    font-weight: 600;
    font-size: 16px;
    box-shadow: 1px 1px 2px #888;
    z-index: 1000;
    padding: 6px;
    text-shadow: 0px 2px 5px #333333;
}

.whatsapp {
    position: fixed;
    width: 70px;
    height: 70px;
    bottom: 142px;
    right: 18px;
    line-height: 70px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50px;
    text-align: center;
    font-size: 48px;
    box-shadow: 0px 2px 2px #888;
    z-index: 1000;
    animation: blink 1.5s infinite;
}

@keyframes blink {
    0%, 50%, 100% {
        opacity: 1;
    }

    25%, 75% {
        opacity: 0.5;
    }
}

.whatsapp:hover {
    background-color: #fff;
    color: #25d366;
    animation: none; /* Parar a animação no hover */
}

/* Alternativa com mudança de cor */
@keyframes blink-color {
    0%, 50%, 100% {
        background-color: #25d366;
    }

    25%, 75% {
        background-color: #34ac61;
    }
}

.whatsapp-color {
    position: fixed;
    width: 81px;
    height: 81px;
    bottom: 93px;
    right: 27px;
    color: #fff;
    border-radius: 50px;
    text-align: center;
    font-size: 59px;
    box-shadow: 1px 1px 2px #888;
    z-index: 1000;
    animation: blink-color 1.5s infinite;
}

    .whatsapp-color:hover {
        background-color: #fff;
        color: #25d366;
        animation: none;
    }

.especialista {
    border-color: transparent;
    padding-left: 0;
    list-style: none;
    flex-direction: column !important;
    border-radius: 0.4rem;
}

    .especialista .nav-link {
        border-color: transparent;
        box-shadow: 0 0 0 .05rem rgba(8, 60, 130, .12), 0 0 1.25rem rgba(30, 34, 40, .12);
        margin-right: .5rem;
        padding: .4rem .9rem;
        display: flex;
        align-items: center;
        border-radius: 0.4rem;
        font-weight: 700;
        letter-spacing: -.01rem;
        color: #ffffff !important;
        transition: all .2s ease-in-out;
        font-size: .81rem;
        background: #32b658;
    }


.especialista2 {
    border-color: transparent;
    padding-left: 0;
    list-style: none;
    flex-direction: column !important;
    border-radius: 0.4rem;
}

    .especialista2 .nav-link {
        border-color: transparent;
        box-shadow: 0 0 0 .05rem rgb(111 111 111 / 35%), 0 0 1.25rem rgb(30 34 40 / 21%);
        margin-right: .5rem;
        padding: .4rem .9rem;
        display: flex;
        align-items: flex-start;
        border-radius: 0.4rem;
        font-weight: 700;
        letter-spacing: -.01rem;
        color: var(--bs-primary);
        transition: all .2s ease-in-out;
        font-size: 0.8rem;
        background: #ffffff;
        flex-direction: column;
    }
    .especialista2 .area{ 
        font-size: 1rem; 
    }

.autocomplete {
    position: relative;
    display: inline-block;
    padding-left: 0px;
    padding-right: 0px;
    z-index: 999;
}

    .autocomplete input[type="text"] {
        width: 100%;
        padding: 10px;
        margin-bottom: 0px !important;
        border: 2px solid #1F2849;
    }

    .autocomplete ul {
        list-style: none;
        padding: 0;
        margin: 0;
        position: absolute;
        z-index: 999;
        background-color: white;
        width: 100%;
        border: 1px solid #e0e0e0;
        border-top: none;
        max-height: 200px;
        overflow-y: auto;
    }

    .autocomplete li {
        padding: 5px;
        cursor: pointer;
    }

        .autocomplete li:hover {
            background-color: #f0f0f0;
        }

.dropdown-menu ul li a.dropdown-item {
    color: #4e4e4e;
}
    .dropdown-menu ul li a.dropdown-item:hover {
        color: var(--bs-secondary);
    }