body {
    font-family: Arial, sans-serif;

}

.navbar {
    background-color: #ffffff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-size: 24px;
    font-weight: 700;
    color: #333333;
}

.hero {
    background-image: url('../img/webp/homepage.webp');
    background-size: cover;
    background-position: center;
    padding: 250px 0;
    text-align: center;
    color: #fff;
}

.hero-section {
    background-color: #f1f1f1;
    text-align: center;
}

.hero-title {
    font-size: 38px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-text {
    font-size: 24px;
    color: #ffffff;
    margin-bottom: 40px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.cta-button {
    font-size: 18px;
    font-weight: 700;
    color: #000000;
    background-color: #fa812a;
    border-radius: 5px;
    padding: 15px 30px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    color: white;
    background-color: black;
    text-decoration: none;
}

.section {
    padding: 80px 0;
}

#sobre {
    background-color: white;
    color: black;
}

#especialidades {
    background-color: white;
    color: #000000;
}

#contato {
    background-color: #f8f8f8;
}

#planos {
    background-color: black;
    color: white;
}

#planos .section-title {
    color: white;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: #333333;
    text-align: center;
    margin-bottom: 40px;
}

.icon-title {
    color: greenyellow;
    margin-bottom: 15px;
}

.section-icon {
    font-size: 48px;
    color: #333333;
    margin-bottom: 20px;
}

.section-content {
    font-size: 18px;
    color: #666666;
    margin-bottom: 40px;
}

.contact-info-item {
    margin-bottom: 10px;
}

.contact-info-icon {
    font-size: 24px;
    color: #333333;
    margin-right: 10px;
}

.custom-card {
    background-color: #000;
    color: #fff;
    border: none;
    height: 600px;
}

.card-text {
    color: #fff;
}

.custom-card img {
    height: 300px;
    max-width: 100%;
    height: auto;
}

.footer {
    background-color: black;
    color: #ffffff;
    padding: 20px 0;
    text-align: center;
    font-size: 14px;
}

.footer-links a {
    color: #ffffff;
    margin: 0 10px;
    text-decoration: none;
}

.footer-links a:hover {
    text-decoration: underline;
}

.whatsapp-button {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #25D366;
    color: #fff;
    text-align: center;
    line-height: 60px;
    font-size: 30px;
    z-index: 9999;
}

.whatsapp-button:hover {
    transform: scale(1.1);
    color: white;
}

.nav-green {
    background-color: black;
}

.social-button {
    position: fixed;
    right: 0;
    width: 40px;
    height: 40px;
    border: none;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    overflow: hidden;
    transition: width 0.3s ease;
}

.social-button:hover {
    width: 80px;
}

.social-button i {
    margin-right: 0;
    transition: margin-right 0.3s ease;
}

.social-button:hover i {
    margin-right: 40px;
}

.instagram-button {
    top: 30%;
    background-color: #C13584;
}

.facebook-button {
    top: calc(30% + 40px);
    background-color: #3b5998;
}

.email-button {
    top: calc(30% + 40px);
    background-color: #D44638;
}

.card {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    transition: transform 0.3s;
}


#especialidades .card {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    transition: transform 0.3s;
}

#especialidades .card .card-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    color: #fff;
    height: 50px;
    text-align: center;
    z-index: 2;
}

#especialidades .card .image {
    position: absolute;
    top: 00px;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

#especialidades .card .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card .text {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 20px;
    opacity: 0;
    transform: translateY(100%);
    transition: opacity 0.3s, transform 0.3s;
    text-align: justify;
}

.card:hover {
    transform: translateY(-10px);
}

.card:hover .text {
    opacity: 1;
    transform: translateY(0);
}

.navbar-dark .navbar-nav .nav-link {
    color: white;
}

.navbar-dark .navbar-nav .nav-link:hover {
    color: #fa812a;
    text-decoration: underline;
    text-decoration-thickness: 4px;
    text-underline-offset: 8px;
}

a {
    color: black;
}

a:hover {
    color: #fa812a;
}

.btn-enviar {
    color: black;
    background-color: #fa812a;
    border: #fa812a;
}

.btn-enviar:hover {
    background-color: white;
    border: black;
}

.titulo {
    color: #fa812a;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.subtitulo {
    color: #fa812a;
}


.table-dark {
    background-color: #000;
    color: white;
}

#contato {
    background-color: #000;
}

#contato .section-title {
    color: white;
}



#profissional {
    background-color: #000;
}

#profissional .section-title {
    color: white;
}

#profissional p {
    color: white;
}

#profissional h2 {
    color: white;
}

#contato a {
    color: white;
}

#contato a:hover {
    color: #fa812a;
}


#contato .contact-info-icon {
    color: white;
}

#contato .contact-info-icon:hover {
    color: #fa812a;
}

table {
    color: white;
}

#loc {
    color: white;
}

.status-pago {
    color: green !important;
}

.status-nao-pago {
    color: red !important;
}

.btn_laranja {
    background-color: #fa812a;
    border: #fa812a;
}