/* Cores personalizadas (exemplo) */
:root {
    --bs-initial: #fff; /* branco para o fundo */
	--bs-primary: #009681; /* Um tom de verde mais escuro para o cabeçalho */
    --bs-success: #28a745; /* Verde padrão do Bootstrap para o botão */
	--bs-secondary: #d1cecd /* Um tom de cinza mais claro para o menu */
}

body {
	background: var(--bs-initial) !important;
	font-size: 1.3em;
	color: #666;
}

b, strong {
	font-weight: 500;
}

.bg-primary {
    background-color: var(--bs-primary) !important;
}

.bg-secondary {
    background-color: var(--bs-secondary) !important;
}

.bg-tertiary {
    background-color: #eef4fd !important;
}

.btn-whatsapp {
    background-color: #25d366;
    color: white;
}

.cinza {
	color: #666!important;
}

.bg-cinza {
	background: #efefef;
}

.btn-whatsapp:hover {
    background-color: #128c7e;
    color: white;
}

/* Estilo para os botões flutuantes */
.floating-buttons .widget-whatsapp {
    position: fixed;
    bottom: 90px;
    right: 20px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 10px; /* Espaço entre os botões */
}

.floating-buttons .widget-whatsapp .btn {
    min-width: 200px; /* Largura mínima para os botões */
    text-align: left; /* Alinhar o texto à esquerda */
    padding: 10px 15px; /* Preenchimento interno */
    border-radius: 30px; /* Bordas mais arredondadas */
}

/* Animação para os botões flutuantes (opcional) */
.floating-buttons .widget-whatsapp .btn {
    transition: transform 0.3s ease-in-out;
}

.floating-buttons .widget-whatsapp .btn:hover {
    transform: scale(1.05); /* Pequeno zoom ao passar o mouse */
}

/* Estilo para os botões flutuantes */
.floating-buttons .widget-doctoralia {
    position: fixed;
    bottom: 150px;
    right: 20px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 10px; /* Espaço entre os botões */
}

.floating-buttons .widget-doctoralia .btn {
    min-width: 200px; /* Largura mínima para os botões */
    text-align: left; /* Alinhar o texto à esquerda */
    padding: 10px 15px; /* Preenchimento interno */
    border-radius: 30px; /* Bordas mais arredondadas */
}

/* Animação para os botões flutuantes (opcional) */
.floating-buttons .widget-doctoralia .btn {
    transition: transform 0.3s ease-in-out;
}

.floating-buttons .widget-doctoralia .btn:hover {
    transform: scale(1.05); /* Pequeno zoom ao passar o mouse */
}

.floating-buttons .widget-doctoralia.fixed {
	position: fixed;
	top: 100px!important; /* ou onde quiser posicionar */
	transition: all 0.3s ease;
	bottom: unset;
	z-index: 9999;
}

.floating-buttons .widget-doctoralia .fechar {
  position: absolute;
  top: 10px;
  right: 10px;
  background: none;
  border: none;
  font-size: 20px;
  font-weight: bold;
  cursor: pointer;
  color: #333;
  transition: color 0.2s;
}

.floating-buttons .widget-doctoralia .fechar:hover {
  color: red;
}

/* Ajustes para dispositivos menores */
@media (max-width: 768px) {
	.hero-section {
		background: linear-gradient(rgba(0,0,0,0.0), rgba(0,0,0,0.15)), url('../img/banner-medico-novo-mobile.jpg') no-repeat center center!important; /* Exemplo de imagem de fundo */
	}
	.floating-buttons .widget-whatsapp {
        bottom: 15px;
        right: 15px;
        left: 15px; /* Centralizar em telas pequenas */
        flex-direction: row; /* Alinhar em linha */
        justify-content: center;
        gap: 8px;
    }

    .floating-buttons .widget-whatsapp .btn {
        min-width: unset; /* Remover largura mínima */
        flex-grow: 1; /* Distribuir espaço igualmente */
        font-size: 0.9rem; /* Reduzir tamanho da fonte */
    }
	
	.floating-buttons .widget-doctoralia {
        bottom: 15px;
        right: 15px;
        left: 15px; /* Centralizar em telas pequenas */
        flex-direction: row; /* Alinhar em linha */
        justify-content: center;
        gap: 8px;
    }

    .floating-buttons .widget-doctoralia .btn {
        min-width: unset; /* Remover largura mínima */
        flex-grow: 1; /* Distribuir espaço igualmente */
        font-size: 0.9rem; /* Reduzir tamanho da fonte */
    }
}

.destaque {
	color: var(--bs-primary);
}

.borda-img {
	border-radius: 20px 0 20px 0;
}

.icone-primary {
    color: var(--bs-primary) !important;
}

/*header */
header {
	border-bottom: 3px #d59150 solid;
}

.scrolled {
	position: fixed !important;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 9999;
	transition: all 0.3s ease;
}

.navbar-dark, .navbar[data-bs-theme=dark] {
    --bs-navbar-color: var(--bs-primary);
    --bs-navbar-hover-color: var(--bs-primary);
    --bs-navbar-disabled-color: var(--bs-primary);
    --bs-navbar-active-color: var(--bs-primary);
    --bs-navbar-brand-color: var(--bs-primary);
    --bs-navbar-brand-hover-color: var(--bs-primary);
    --bs-navbar-toggler-border-color: var(--bs-primary);
    --bs-navbar-toggler-icon-bg: url(data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e);
}

.navbar-toggler {
	background: var(--bs-primary);
}

.nav-link {
	font-size: 0.9em !important;
}

a.nav-link {
	color: var(--bs-primary);
}

a.active {
	color: #666!important;
}

/*header */

/* Estilos para o conteúdo das páginas */
.hero-section {
    background: linear-gradient(rgba(0,0,0,0.0), rgba(0,0,0,0.15)), url('../img/banner-medico-novo.jpg') no-repeat center center; /* Exemplo de imagem de fundo */
    background-size: cover;
    color: white;
    padding: 100px 0;
    text-align: center;
	border-bottom: 35px #d59150 solid;
}

.hero-section h1.logo {
    background: url(../img/logo-dr-marcio-pimentel.png) no-repeat;
    background-repeat: no-repeat;
    text-indent: -9999px;
    display: block;
	width: 457px;
    height: 262px;
	background-size: contain;
}

.section-title {
    color: var(--bs-primary);
    margin-bottom: 30px;
    font-weight: 400!important;
}

.card {
    border: none;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

/* Adicione mais estilos conforme a necessidade para cada seção */

/* sobre */

.sobre p.itens {
	font-size: 0.9em !important;
}

/* sobre */

/* footer */

footer {
	border-top: 3px #d59150 solid;
}

footer .conteudo {
	margin-bottom: 60px !important;
}

footer h4 {
	color: #666;
}

footer .social-links a {
  color: var(--bs-primary) !important;
  background-color: var(--bs-initial) !important;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 16px;
  margin-right: 10px;
  transition: 0.3s;
}

footer .social-links a:hover {
  color: #999 !important;
  background-color: #0d6efd !important;
}

footer .footer-links {
    margin-bottom: 30px;
}

footer .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

footer .footer-links ul li:first-child {
    padding-top: 0;
}

footer .footer-links ul li {
    padding: 10px 0;
    display: flex;
	align-items: center;
}

footer .footer-links ul a {
    color: var(--bs-primary) !important;
    display: inline-block;
    line-height: 1;
	text-decoration: none;
}

footer .footer-links ul a:hover {
	color: #999 !important;
}

footer .footer-links ul a.active {
    font-weight: bold;
}

footer .footer-contact a {
	font-size: 0.9em;
	color: var(--bs-primary) !important;
	text-decoration: underline;
}

footer .footer-contact a:hover {
	color: var(--bs-secondary) !important;
	text-decoration: none;
}

footer .credits {
    margin-top: 5px;
    font-size: 0.9em;
    text-align: right;
}

footer .credits a {
	color: var(--bs-primary) !important;
	font-weight: bold;
}

/* footer */

/* Ajustes para dispositivos menores */
@media (max-width: 768px) {
	.navbar-collapse {
		position: absolute;
		top: 56px;
		left: -280px;
		width: 300px;
		display: block;
		background: var(--bs-secondary) !important;
		padding: 20px;
		border-radius: 0 0 20px 20px;
	}
	
	.hero-section h1.logo {
		width: 280px;
		height: 160px;
	}
	
	.hero-section h2 {
		font-size: 1.2em;
	}
	
	.hero-section h4 {
		font-size: 1.1em;
	}
}