/* --- ESTILOS GERAIS --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

body {
    background-color: #fcf9f6; 
    color: #4a3e3d; 
    overflow-x: hidden;
}

/* --- CABEÇALHO --- */
header {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    height: 85px;
    background-color: #e9e5d9;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    padding: 0 20px;
    z-index: 100;
}

.logo img {
    max-height: 70px;
    width: auto;
}

/* Botão Hambúrguer */
.menu-btn {
    position: absolute;
    left: 20px;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 24px;
    z-index: 102;
}

.menu-btn span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: #b48f48; 
    border-radius: 3px;
    transition: all 0.3s ease;
}

.menu-btn.open span:nth-child(1) { transform: translateY(10px) rotate(45deg); }
.menu-btn.open span:nth-child(2) { opacity: 0; }
.menu-btn.open span:nth-child(3) { transform: translateY(-10px) rotate(-45deg); }

/* --- MENU LATERAL (SIDEBAR) --- */
.sidebar {
    position: fixed;
    top: 0;
    left: -300px;
    width: 300px;
    height: 100%;
    background-color: #e9e5d9;
    box-shadow: 5px 0 15px rgba(0,0,0,0.1);
    transition: left 0.4s ease;
    z-index: 101;
    padding-top: 110px;
}

.sidebar.active { left: 0; }
.sidebar ul { list-style: none; }
.sidebar ul li { border-bottom: 1px solid #f5ebe6; }
.sidebar ul li a {
    display: block;
    padding: 18px 25px;
    color: #b08532;
    text-decoration: none;
    font-size: 1.4rem;
    letter-spacing: 1px;
    transition: background 0.3s, color 0.3s;
    font-weight: bold;
}
.sidebar ul li a:hover {
    background-color: #fbf5f0;
    color: #4a3e3d;
}

/* Overlay */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.3);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    z-index: 99;
}
.overlay.active { opacity: 1; visibility: visible; }

/* --- SEÇÃO LOCALIZAÇÃO --- */
.location-page-container {
    max-width: 1000px;
    margin: 50px auto;
    padding: 0 20px;
}

.section-title {
    font-size: 1.8rem;
    color: #4a3e3d;
    margin-bottom: 25px;
    letter-spacing: 1px;
    border-left: 4px solid #b48f48;
    padding-left: 12px;
}

.location-card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.04);
    border: 1px solid #f5ebe6;
    text-align: center;
}

.clinic-name {
    font-size: 1.6rem;
    color: #4a3e3d;
    margin-bottom: 20px;
    font-weight: bold;
}

.map-wrapper {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 25px;
    border: 1px solid #f5ebe6;
}

.address-text {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #7a6e6d;
    margin-bottom: 25px;
}

/* BOTÃO DE LINK DE MAPAS */
.maps-btn {
    display: inline-block;
    background-color: #b08532;
    color: #ffffff;
    text-decoration: none;
    padding: 12px 35px;
    border-radius: 8px;
    font-weight: bold;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    transition: background-color 0.3s ease;
}

.maps-btn:hover {
    background-color: #916c24;
}

/* --- BOTÃO FLUTUANTE DO WHATSAPP --- */
.whatsapp-flutuante {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    z-index: 999; /* Garante que ele fique por cima de tudo */
    transition: transform 0.3s ease;
}

/* Controla a imagem dentro do botão */
.whatsapp-flutuante img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%; /* Mantém redondo se a imagem for quadrada */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
	background-color: #03e251;
}

/* Efeito de aumentar levemente ao passar o mouse */
.whatsapp-flutuante:hover {
    transform: scale(1.1);
}

/* Ajuste para telas menores (celulares) */
@media (max-width: 600px) {
    .whatsapp-flutuante {
        width: 70px;
        height: 70px;
        bottom: 15px;
        right: 15px;
    }
}