/* --- 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 LATERAL (SIDEBAR) --- Iguala a fonte em 1.4rem bold */
.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; /* Igualado ao de Serviços */
    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; }

/* --- CONTEÚDO SOBRE NÓS --- */
.about-container {
    max-width: 1000px;
    margin: 50px auto;
    padding: 0;
}

/* Título de Seção - Igualado ao de Serviços */
.section-title {
    font-size: 1.8rem; /* Igualado ao de Serviços */
    color: #4a3e3d;
    margin-bottom: 25px;
    margin-left: 20px;
    letter-spacing: 1px;
    border-left: 4px solid #b48f48;
    padding-left: 12px;
}

/* Card da Proprietária */
.owner-card {
    display: flex;
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.04);
    border: 1px solid #f5ebe6;
    margin-bottom: 50px;
    margin-left: 20px;
    margin-right: 20px;
}

.owner-image {
    flex: 0 0 400px;
}

.owner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.owner-content {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Nome da Proprietária - Tamanho harmonizado com os preços/destaques */
.owner-name {
    font-size: 1.6rem; 
    color: #b08532;
    margin-bottom: 20px;
    font-weight: bold;
}

/* Texto descritivo - Igualado às descrições dos serviços */
.about-text {
    font-size: 1.05rem; /* Igualado ao de Serviços */
    line-height: 1.6;
    color: #7a6e6d;
    margin-bottom: 20px;
}

.owner-signature {
    font-family: 'Brush Script MT', cursive;
    font-size: 2.5rem;
    color: #b08532;
    margin-top: 10px;
}

/* Grid de Compromisso (Valores) */
.values-section {
    margin-bottom: 50px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding-left: 20px;
    padding-right: 20px;
}

.value-card {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #f5ebe6;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.value-card:hover { transform: translateY(-5px); }

.value-card i {
    font-size: 2.5rem;
    color: #b08532;
    margin-bottom: 15px;
}

/* Título do Card de valor - Igualado aos títulos dos cards de serviços */
.value-card h4 {
    font-size: 1.4rem; /* Igualado ao h3 de Serviços */
    color: #4a3e3d;
    margin-bottom: 12px;
    font-weight: bold;
}

/* Texto interno do card de valor - Igualado ao texto descritivo menor */
.value-card p {
    font-size: 1.05rem; /* Igualado ao de Serviços */
    color: #a19492;
    line-height: 1.5;
}

/* --- VERSÃO CELULAR (MOBILE) --- */
@media (max-width: 1000px) {
    .about-container {
        margin: 30px auto;
    }

    .section-title {
        font-size: 1.6rem; /* Redução idêntica à do mobile de serviços */
        margin-left: 15px;
    }

    .owner-card {
        flex-direction: column;
        border-radius: 12px;
        margin-left: 15px;
        margin-right: 15px;
    }

    .owner-image {
        flex: 0 0 300px;
    }

    .owner-content {
        padding: 25px 20px;
    }

    .values-grid {
        grid-template-columns: 1fr;
        padding-left: 15px;
        padding-right: 15px;
        gap: 25px;
    }
}
/* --- 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;
    }
}