/* --- 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; }

/* --- CONTEÚDO PACOTES --- */
.packages-container {
    max-width: 1000px;
    margin: 50px auto;
    padding: 0;
}

/* Título de Seção - Igualado ao de Serviços e Sobre */
.section-title {
    font-size: 1.8rem;
    color: #4a3e3d;
    margin-bottom: 25px;
    margin-left: 20px;
    letter-spacing: 1px;
    border-left: 4px solid #b48f48;
    padding-left: 12px;
}

/* Grid de Cards */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding-left: 20px;
    padding-right: 20px;
    margin-bottom: 30px;
}

/* Estrutura do Card - Igualada às outras páginas */
.package-card {
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.04);
    border: 1px solid #f5ebe6;
    transition: transform 0.3s ease;
}

.package-card:hover { 
    transform: translateY(-5px); 
}

.package-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Título do Pacote */
.package-name {
    font-size: 1.4rem; /* Mesma fonte h3 de Serviços */
    color: #4a3e3d;
    margin-bottom: 15px;
    font-weight: bold;
}

/* Itens Inclusos */
.inclusions-list {
    list-style: none;
    margin-bottom: 20px;
}

.inclusions-list li {
    font-size: 1.05rem; /* Mesma fonte descritiva de Serviços */
    line-height: 1.6;
    color: #7a6e6d;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.inclusions-list li i {
    color: #b08532;
    font-size: 0.9rem;
}

/* Texto de Bônus / Ganha */
.bonus-text {
    font-size: 1.05rem;
    color: #7a6e6d;
    margin-bottom: 25px;
    padding-top: 10px;
    border-top: 1px dashed #e9e5d9;
}

.bonus-text span {
    color: #b08532;
    font-weight: bold;
}

/* Seção de Preço */
.price-box {
    margin-top: auto; /* Empurra o preço e o botão sempre para o final do card */
    margin-bottom: 20px;
}

.old-price {
    font-size: 1.05rem;
    color: #a19492;
    text-decoration: line-through;
    display: block;
    margin-bottom: 5px;
}

.current-price {
    font-size: 1.6rem; /* Mesma proporção visual de destaque das outras páginas */
    color: #b08532;
    font-weight: bold;
    display: block;
}

/* Botão de Ação */
.buy-btn {
    display: block;
    background-color: #b08532;
    color: #ffffff;
    text-decoration: none;
    padding: 12px;
    border-radius: 8px;
    font-weight: bold;
    font-size: 1.1rem;
    text-align: center;
    transition: background-color 0.3s ease;
}

.buy-btn:hover {
    background-color: #916c24;
}

/* Caixa de Validade */
.validity-box {
    margin: 30px 20px;
    text-align: left;
    font-size: 1.05rem;
    color: #7a6e6d;
    font-style: italic;
}

/* --- 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;
    }

/* --- VERSÃO TOTALMENTE CORRIGIDA PARA CELULAR (MOBILE) --- */
@media (max-width: 1000px) {
    .packages-container {
        margin: 30px auto;
    }

    .section-title {
        font-size: 1.6rem;
        margin-left: 15px;
    }

    .packages-grid {
        grid-template-columns: 1fr; /* Um card embaixo do outro */
        padding-left: 15px;
        padding-right: 15px;
        gap: 20px;
    }

    .package-content {
        padding: 20px; /* Reduz margens internas no mobile */
    }

    .package-name {
        font-size: 1.3rem;
    }

    .validity-box {
        margin: 20px 15px;
        font-size: 1.1rem;
		text-align: center;
    }