:root {
    /* 🎨 INSIRA AS CORES DA MARCA DO CLIENTE AQUI */
    --brand-dark: #0a0a0a;   /* Fundo Principal Escuro */
    --brand-medium: #1a1a1a; /* Fundo das Caixinhas (Cards) */
    --brand-accent: #ffffff; /* Cor de Destaque (Fica ótimo se for a cor principal do cliente ex: Azul, Laranja...) */
    --brand-light: #f5f5f5;  /* Cor de Texto Principal */
    
    --bg-dark: var(--brand-dark);
    --card-bg: var(--brand-medium);
    --card-border: rgba(217, 174, 184, 0.2);
    
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --accent: var(--brand-accent);
    
    --font-title: 'Montserrat', sans-serif;
    --font-inter: 'Inter', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: var(--font-inter);
    background-color: var(--bg-dark);
    color: var(--text-primary);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    -webkit-font-smoothing: antialiased;
    position: relative;
}

/* Fundo Animado Seda (Silk) */
.silk-container {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    width: 100vw; height: 100vh;
    z-index: 0;
    pointer-events: none;
}

.app-container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 500px; 
    padding: 50px 24px;
    display: flex;
    flex-direction: column;
}

/* --- HEADER / LOGO --- */
.header {
    text-align: center;
    margin-bottom: 32px;
    animation: fadeInDown 0.8s ease;
}

.brand-logo-img {
    height: 90px; /* Tamanho ajustável da logo (Aumentado) */
    max-width: 100%;
    object-fit: contain;
    margin-bottom: 8px;
    filter: drop-shadow(0 4px 10px rgba(0,0,0,0.4));
}

.brand-subtitle {
    font-family: var(--font-title);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    color: var(--brand-accent);
    margin-top: 4px;
    text-transform: uppercase;
}

/* --- REDES SOCIAIS --- */
.social-row {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 40px;
    animation: fadeInUp 0.8s ease 0.1s both;
}

.social-btn {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.05); /* Fundo sutil invés de solido */
    border: 1px solid var(--card-border);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--text-primary);
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.social-btn:hover {
    background-color: var(--brand-accent);
    color: var(--brand-dark);
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(217, 174, 184, 0.3);
}

.social-btn svg { width: 20px; height: 20px; }

/* --- BENTO GRID ESTILIZADO --- */
.bento-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 40px;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.bento-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    background-size: cover;
    background-position: center;
    background-color: var(--card-bg);
    border: 1px solid var(--card-border);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bento-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.6);
    border-color: var(--brand-accent);
}

.bento-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(35,14,24,0.95) 0%, rgba(35,14,24,0.4) 60%, rgba(35,14,24,0) 100%);
}

.bento-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 18px;
    z-index: 2;
    color: white;
}

.bento-content.center {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

h3 {
    font-family: var(--font-title);
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 6px;
}

.bento-item.tall {
    height: 260px;
}

.bento-item.tall .bento-content p {
    font-size: 12px;
    font-family: var(--font-inter);
    color: var(--brand-light);
    line-height: 1.4;
    opacity: 0.85;
}

.badge {
    display: inline-block;
    background-color: var(--brand-accent);
    color: var(--brand-dark);
    font-family: var(--font-title);
    font-size: 10px;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 4px;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.bento-stack {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.bento-item.small {
    height: 122px;
}

.bento-item.brand-colored {
    background: none;
    background-color: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

/* --- LISTA DE SERVIÇOS TIPO ACORDEÃO (Novo) --- */
.list-section {
    margin-bottom: 40px;
    animation: fadeInUp 0.8s ease 0.3s both;
}

.section-header {
    margin-bottom: 20px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--card-border);
}

.section-header h2 {
    font-family: var(--font-title);
    font-size: 18px;
    color: var(--brand-accent);
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.list-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.list-item-wrapper {
    background-color: transparent;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid transparent;
    cursor: pointer;
}

/* Quando passa o mouse no fechado */
.list-item-wrapper:hover:not(.active) {
    background-color: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.05);
}

/* Quando está Ativo (Aberto) */
.list-item-wrapper.active {
    background-color: var(--card-bg);
    border-color: var(--card-border);
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
    margin: 8px 0; /* Dá um espacinho extra quando abre */
}

.list-item-header {
    display: flex;
    align-items: center;
    padding: 12px;
}

/* Círculo do número do serviço */
.item-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    margin-right: 16px;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: var(--font-title);
    font-weight: 600;
    font-size: 18px;
    background-color: var(--brand-medium);
    color: var(--brand-accent);
    border: 1px solid var(--card-border);
    transition: all 0.3s ease;
}

.list-item-wrapper.active .item-avatar {
    background-color: var(--brand-accent);
    color: var(--brand-medium);
}

.item-info {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.item-info h4 {
    font-family: var(--font-title);
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--text-primary);
}

.item-info p {
    font-size: 12px;
    color: var(--text-secondary);
    line-height: 1.4;
}

.action-text {
    font-family: var(--font-title);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--brand-accent);
    margin-top: 6px;
    opacity: 0.6;
    transition: all 0.3s ease;
}

.list-item-wrapper:hover .action-text {
    opacity: 1;
}

/* Ícone girando quando abre */
.action-text svg {
    transition: transform 0.4s ease;
}
.list-item-wrapper.active .action-text svg {
    transform: rotate(180deg);
}

/* Conteúdo Expandido (Escondido por padrão) */
.list-item-content {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.list-item-wrapper.active .list-item-content {
    max-height: 300px; /* Suficiente pro texto */
    opacity: 1;
}

.content-inner {
    padding: 0 16px 20px 72px; /* Alinhado com o texto de cima, ignorando o circulo */
}

.content-inner p {
    font-size: 13px;
    color: var(--brand-light);
    line-height: 1.6;
    margin-bottom: 16px;
}

/* Botão de contato dentro do modal */
.contact-btn {
    display: inline-block;
    background-color: var(--brand-accent);
    color: var(--brand-dark);
    font-family: var(--font-title);
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    padding: 10px 16px;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.contact-btn:hover {
    background-color: white;
    transform: translateY(-2px);
}

/* --- FOOTER --- */
.footer {
    text-align: center;
    color: var(--text-secondary);
    font-size: 11px;
    margin-top: 20px;
    animation: fadeInUp 0.8s ease 0.4s both;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}
