:root {
    --primary-color: #D4A373; /* Cor de pão dourado */
    --secondary-color: #FAEDCD; /* Bege suave */
    --accent-color: #606C38; /* Verde oliva escuro (toque orgânico) */
    --dark-text: #282420; /* Marrom quase preto */
    --light-text: #FEFAE0; /* Creme claro */
    --white: #ffffff;
    --shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.1);
    --glass-bg: rgba(255, 255, 255, 0.95);
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #f3e9dc;
    background-image: radial-gradient(#D4A373 1px, transparent 1px);
    background-size: 20px 20px;
    color: var(--dark-text);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    justify-content: center;
}

.container {
    width: 100%;
    max-width: 480px;
    background: var(--glass-bg);
    min-height: 100vh;
    padding: 40px 20px;
    box-shadow: 0 0 50px rgba(0,0,0,0.05);
    position: relative;
}

/* --- Header --- */
.header {
    text-align: center;
    margin-bottom: 30px;
}

.logo-container {
    width: 180px; /* Aumentei um pouco para compensar a falta do círculo */
    height: auto; /* Altura automática para respeitar a proporção da imagem */
    margin: 0 auto 10px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-img {
    width: 100%;
    height: auto;
    object-fit: contain;
    /* Removido border-radius para não cortar nada */
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.15));
}

h1 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #4A403A;
    margin-bottom: 5px;
}

.header p {
    font-size: 0.9rem;
    color: #777;
    margin-bottom: 15px;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    background: #E8F5E9;
    color: #2E7D32;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.status-badge.closed {
    background: #FFEBEE;
    color: #C62828;
}

.dot {
    width: 8px;
    height: 8px;
    background-color: #4CAF50;
    border-radius: 50%;
    margin-right: 6px;
    animation: pulse 2s infinite;
}

.status-badge.closed .dot {
    background-color: #EF5350;
    animation: none;
}

/* --- Links Section --- */
.links-section {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.link-card {
    display: flex;
    align-items: center;
    background: var(--white);
    padding: 15px;
    border-radius: 16px;
    text-decoration: none;
    color: var(--dark-text);
    font-weight: 500;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}

.link-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px -5px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.icon-box {
    width: 40px;
    height: 40px;
    background: var(--secondary-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 1.2rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.link-card:hover .icon-box {
    background: var(--primary-color);
    color: var(--white);
}

/* Cores específicas para marcas */
.link-card.whatsapp:hover .icon-box { background: #25D366; color: white; }
.link-card.instagram:hover .icon-box { background: #E1306C; color: white; }

/* Botões PDF Padrão */
.link-card.pdf-menu { 
    background: #fff;
    border-left: 5px solid var(--primary-color);
}
.link-card.pdf-menu .icon-box { background: var(--secondary-color); color: var(--primary-color); }


/* Google Avaliação */
.link-card.google {
    border: 1px solid #4285F4;
    background: #f8faff;
}
.link-card.google .icon-box {
    background: #e8f0fe;
    color: #4285F4;
}
.link-card.google:hover .icon-box {
    background: #4285F4;
    color: white;
}
.link-card.google .arrow { color: #fbbc05; } /* Estrela amarela */


.arrow {
    margin-left: auto;
    color: #ccc;
    font-size: 0.8rem;
}

.divider {
    border: 0;
    height: 1px;
    background: #e0e0e0;
    margin: 40px 0;
}

.divider-small {
    border: 0;
    height: 1px;
    background: #eee;
    margin: 10px 20px;
}

/* --- Menu Section --- */
.menu-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #4A403A;
    margin-bottom: 5px;
    text-align: center;
}

.subtitle {
    text-align: center;
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 25px;
}

.accordion {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.accordion-item {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}

.accordion-header {
    width: 100%;
    padding: 18px 20px;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    color: var(--dark-text);
    cursor: pointer;
    transition: background 0.2s;
}

.accordion-header:hover {
    background: #fafafa;
}

.accordion-header i.icon {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
    color: var(--primary-color);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    background: #fffaf0;
}

.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.item-info h3 {
    font-size: 0.95rem;
    margin-bottom: 4px;
    color: #555;
}

.item-info p {
    font-size: 0.8rem;
    color: #999;
}

.price {
    font-weight: 700;
    color: var(--accent-color);
    font-size: 0.95rem;
    white-space: nowrap;
    margin-left: 10px;
}

/* Estado Ativo do Accordion */
.accordion-item.active .accordion-header i.icon {
    transform: rotate(45deg);
}

.accordion-item.active .accordion-content {
    transition: max-height 0.4s ease-in;
}

/* --- Footer --- */
.footer {
    margin-top: 50px;
    text-align: center;
    color: #999;
    font-size: 0.8rem;
}

.social-mini {
    margin-top: 10px;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-mini a {
    color: var(--primary-color);
    font-size: 1.2rem;
    transition: 0.2s;
}

.social-mini a:hover {
    color: var(--accent-color);
}

/* --- Animations --- */
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.4); }
    70% { box-shadow: 0 0 0 6px rgba(76, 175, 80, 0); }
    100% { box-shadow: 0 0 0 0 rgba(76, 175, 80, 0); }
}

.animate-fade-in {
    opacity: 0;
    animation: fadeIn 0.8s ease-out forwards;
}

.animate-slide-up {
    opacity: 0;
    transform: translateY(20px);
    animation: slideUp 0.8s ease-out forwards;
}

.delay-1 { animation-delay: 0.2s; }

@keyframes fadeIn {
    to { opacity: 1; }
}

@keyframes slideUp {
    to { opacity: 1; transform: translateY(0); }
}

