/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    width: 100%;
    overflow-x: hidden;
    /* iOS Safari viewport fix */
    height: -webkit-fill-available;
}

body {
    font-family: 'Twemoji Country Flags', 'Georgia', 'Times New Roman', serif;
    background: linear-gradient(135deg, #1a3a42 0%, #2d5a65 100%);
    color: #f5f5f5;
    min-height: 100vh;
    /* iOS Safari viewport fix */
    min-height: -webkit-fill-available;
    position: relative;
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/logos_imagens_app/back_mobile.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.60;
    z-index: 0;
    pointer-events: none;
}

/* Background para desktop */
@media (min-width: 769px) {
    body::after {
        background-image: url('/logos_imagens_app/back_desktop.png');
    }
}

/* Elementos decorativos de fundo */
body::before {
    content: '';
    position: fixed;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(70, 150, 180, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(100, 180, 200, 0.06) 0%, transparent 50%);
    animation: rotate 60s linear infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.decorative-pattern {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.03;
    background-image: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 35px,
        rgba(255,255,255,.05) 35px,
        rgba(255,255,255,.05) 70px
    );
    pointer-events: none;
    z-index: 1;
}

.container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    overflow-x: hidden;
}

/* ==================== HEADER ==================== */
.header {
    position: sticky;
    top: 0;
    /* iOS safe area support */
    padding-top: max(15px, env(safe-area-inset-top));
    background: linear-gradient(135deg, rgba(26, 58, 66, 0.65) 0%, rgba(45, 90, 101, 0.65) 100%);
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
    border-bottom: 3px solid rgba(74, 159, 184, 0.6);
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
    z-index: 100;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 15px;
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
    box-sizing: border-box;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

.logo-section {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo-container {
    width: 120px;
    height: 56px;
    transition: all 0.3s;
    background: #ffffff;
    padding: 5px;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.3);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.logo-container:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(0,0,0,0.4);
}

.logo-container img {
    width: 136px !important;
    height: 86px !important;
    object-fit: contain;
    display: block;
}

.header-controls {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: nowrap;
}

.language-selector {
    display: flex;
    gap: 6px;
    align-items: center;
    background: rgba(200, 70, 60, 0.1);
    padding: 6px 10px;
    border-radius: 10px;
    border: 1px solid rgba(200, 70, 60, 0.3);
}

.btn-lang {
    width: 36px;
    height: 36px;
    border: 2px solid transparent;
    border-radius: 8px;
    background: transparent;
    cursor: pointer;
    font-size: 18px;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-lang:hover {
    background: rgba(200, 70, 60, 0.2);
    transform: scale(1.05);
}

.btn-lang.active {
    background: rgba(74, 159, 184, 0.3);
    border-color: #4a9fb8;
    transform: scale(1.1);
}

.btn-pdf {
    background: linear-gradient(135deg, #00b4d8 0%, #0096c7 100%);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 700;
    font-size: 0.85em;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(0, 180, 216, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-pdf::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.btn-pdf:hover:not(:disabled)::before {
    left: 100%;
}

.btn-pdf:hover:not(:disabled) {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 180, 216, 0.5);
    background: linear-gradient(135deg, #0096c7 0%, #0077b6 100%);
}

.btn-pdf:disabled {
    cursor: wait;
    opacity: 1;
    animation: pulse 1.5s ease-in-out infinite;
}

.btn-pdf:active:not(:disabled) {
    transform: translateY(-1px) scale(0.98);
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(0, 180, 216, 0.3);
    }
    50% {
        box-shadow: 0 4px 25px rgba(0, 180, 216, 0.6);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% center;
    }
    100% {
        background-position: 200% center;
    }
}

.btn-pdf.loading {
    background: linear-gradient(90deg, #6c757d 25%, #8e9196 50%, #6c757d 75%);
    background-size: 200% 100%;
    animation: shimmer 2s linear infinite;
}

.btn-pdf.success {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    animation: successPulse 0.6s ease-out;
}

.btn-pdf.error {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    animation: shake 0.5s ease-in-out;
}

@keyframes successPulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes shake {
    0%, 100% {
        transform: translateX(0);
    }
    25% {
        transform: translateX(-10px);
    }
    75% {
        transform: translateX(10px);
    }
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* ==================== CONTEÚDO ==================== */
.content {
    padding: 30px 20px;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    overflow-x: hidden;
    box-sizing: border-box;
}

/* Seções de categoria */
.category-section {
    margin-bottom: 30px;
    background: rgba(26, 58, 66, 0.6);
    border: 2px solid #4a9fb8;
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    position: relative;
    overflow: hidden;
    width: 100%;
    box-sizing: border-box;
}

.category-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(200, 70, 60, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.category-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 12px;
    border-bottom: 2px solid #4a9fb8;
}

.category-title {
    font-size: 1.8em;
    color: #dcb48c;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.dishes-list {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.dish-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 0;
    border-bottom: 1px solid rgba(200, 70, 60, 0.2);
    transition: all 0.3s;
}

.dish-item:hover {
    background: rgba(200, 70, 60, 0.05);
    padding-left: 10px;
    padding-right: 10px;
    border-radius: 8px;
}

.dish-mini-image {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid #4a9fb8;
    box-shadow: 0 2px 8px rgba(74, 159, 184, 0.3);
}

.dish-mini-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dish-info {
    flex: 1;
}

.dish-name {
    font-size: 1.05em;
    color: #f5f5f5;
    flex: 1;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.dish-description {
    font-size: 0.85em;
    color: #bbb;
    font-style: italic;
    margin-top: 5px;
    display: block;
}

.dish-prices {
    display: flex;
    gap: 20px;
    align-items: center;
    white-space: nowrap;
    margin-left: 20px;
}

.price-value {
    font-size: 1.05em;
    color: #dcb48c;
    font-weight: 700;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

/* ==================== SEÇÃO HERO - PRATOS EM DESTAQUE ==================== */
.highlights-section {
    margin-bottom: 20px;
    padding: 30px 10px;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

.highlights-header {
    text-align: center;
    margin-bottom: 20px;
}

.highlights-title {
    font-size: 2em;
    color: #dcb48c;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.7);
    margin-bottom: 10px;
}

.highlights-category-title {
    font-size: 1.8em;
    color: #dcb48c;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.7);
    margin: 0;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(220, 180, 140, 0.3);
}

/* Grid responsivo - 2 colunas fixas em mobile, adaptável em desktop */
.highlights-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
    justify-items: center;
    align-items: start;
}

.highlight-card {
    position: relative;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    width: 100%;
    max-width: 140px;
}

/* Variações orgânicas sutis - Mantém visual interessante */
.highlight-card:nth-child(odd) {
    margin-top: clamp(8px, 2vw, 15px);
}

.highlight-card:nth-child(even) {
    margin-top: clamp(-6px, -1vw, -8px);
}

.highlight-card:nth-child(3n+1) {
    margin-top: clamp(10px, 2.5vw, 20px);
}

.highlight-card:nth-child(5n+3) {
    margin-top: clamp(12px, 3vw, 25px);
}

.highlight-card:hover {
    transform: translateY(-15px) scale(1.08);
    z-index: 10;
}

/* Imagem QUADRADA do prato - Novo design */
.highlight-image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    margin: 0 auto 10px;
}

.highlight-image {
    width: 100%;
    height: 100%;
    border-radius: 15px;
    object-fit: cover;
    border: 4px solid #c8463c;
    box-shadow: 0 8px 25px rgba(200, 70, 60, 0.5);
    background: linear-gradient(135deg, #3d2520 0%, #2a1a1a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3em;
    transition: all 0.3s;
}

.highlight-card:hover .highlight-image {
    border-color: #f4d03f;
    box-shadow: 0 12px 35px rgba(244, 208, 63, 0.6);
    transform: scale(1.02);
}

/* Badge de preço - Posicionado dentro dos limites do card */
.highlight-price-badge {
    position: absolute;
    top: -6px;
    right: -5px;
    background: linear-gradient(135deg, #c8463c 0%, #d85850 100%);
    color: #fff;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(200, 70, 60, 0.6);
    border: 2px solid #fff;
    z-index: 3;
    transition: all 0.3s;
}

.highlight-card:hover .highlight-price-badge {
    transform: scale(1.1) rotate(-5deg);
}

.highlight-price-badge .currency {
    font-size: 0.7em;
    line-height: 1;
}

.highlight-price-badge .amount {
    font-size: 1.3em;
    line-height: 1;
}

/* Nome do prato */
.highlight-name {
    font-size: 1.3em;
    color: #fff;
    margin-bottom: 8px;
    font-weight: 700;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.7);
    min-height: 2.6em;
    display: flex;
    align-items: center;
    justify-content: center;
}

.highlight-description {
    color: #d0d0d0;
    font-size: 0.9em;
    line-height: 1.4;
    margin-top: 8px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}


/* Footer styles moved to /public/cardapio/css/footer.css */

/* ============================================================================
   WHATSAPP FAB - Pill Design com Ícone Circular
   Botão em formato de cápsula com ícone circular branco + texto PT/ES
   ============================================================================ */

.whatsapp-fab {
    /* Positioning - mais próximo da borda */
    position: fixed;
    bottom: clamp(0.75rem, 2vw, 1rem);
    right: clamp(0.75rem, 2vw, 1rem);
    z-index: 1000;
    
    /* Layout - se ajusta ao conteúdo */
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    gap: clamp(0.375rem, 1vw, 0.5rem);
    padding: clamp(0.25rem, 0.75vw, 0.375rem);
    padding-right: clamp(0.625rem, 1.5vw, 0.875rem);
    min-height: clamp(2.75rem, 6vw, 3.5rem);
    width: fit-content;
    
    /* Visual - Verde WhatsApp sólido */
    background: #25D366;
    border-radius: 2.5rem;
    border: none;
    box-shadow: 
        0 3px 12px rgba(37, 211, 102, 0.35),
        0 1px 6px rgba(0, 0, 0, 0.12);
    
    /* Typography */
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 700;
    font-size: clamp(0.8rem, 2vw, 0.95rem);
    letter-spacing: -0.01em;
    color: #FFFFFF;
    text-decoration: none;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
    
    /* Interaction */
    cursor: pointer;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
    
    /* Animation */
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    animation: whatsappPulse 2.5s ease-in-out infinite;
}

/* Ícone Circular Branco */
.whatsapp-icon {
    width: clamp(2.25rem, 5vw, 2.75rem);
    height: clamp(2.25rem, 5vw, 2.75rem);
    flex-shrink: 0;
    
    /* Círculo branco de fundo */
    background: #FFFFFF;
    border-radius: 50%;
    padding: clamp(0.4rem, 1.25vw, 0.5rem);
    
    /* Ícone verde dentro */
    color: #25D366;
    
    /* Sombra sutil */
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
    
    display: flex;
    align-items: center;
    justify-content: center;
    
    /* Animação de rotação a cada 10s */
    animation: iconSpin 10s ease-in-out infinite;
}

/* SVG dentro do círculo */
.whatsapp-icon svg {
    width: 100%;
    height: 100%;
}

/* Text - quebra em 2 linhas */
.whatsapp-fab-text {
    white-space: normal;
    line-height: 1.15;
    font-weight: 700;
    max-width: 2.75rem;
    text-align: left;
    word-break: break-word;
    hyphens: auto;
}

/* ===== HOVER STATE (Desktop) ===== */
@media (hover: hover) and (pointer: fine) {
    .whatsapp-fab:hover {
        background: #1EBE5C;
        box-shadow: 
            0 5px 18px rgba(37, 211, 102, 0.45),
            0 2px 10px rgba(0, 0, 0, 0.18);
        transform: translateY(-2px) scale(1.03);
        animation-play-state: paused;
    }
    
    .whatsapp-fab:hover .whatsapp-icon {
        animation-play-state: paused;
        transform: rotate(0deg);
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
    }
}

/* ===== ACTIVE/CLICK STATE ===== */
.whatsapp-fab:active {
    transform: translateY(0) scale(0.97);
    box-shadow: 
        0 2px 8px rgba(37, 211, 102, 0.3),
        0 1px 4px rgba(0, 0, 0, 0.1);
}

.whatsapp-fab:active .whatsapp-icon {
    transform: scale(0.95);
}

/* ===== FOCUS STATE (Accessibility) ===== */
.whatsapp-fab:focus-visible {
    outline: 3px solid hsla(142, 70%, 49%, 0.5);
    outline-offset: 3px;
}

/* ===== PULSE ANIMATION (Botão) ===== */
@keyframes whatsappPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 
            0 3px 12px rgba(37, 211, 102, 0.35),
            0 1px 6px rgba(0, 0, 0, 0.12);
    }
    50% {
        transform: scale(1.02);
        box-shadow: 
            0 4px 16px rgba(37, 211, 102, 0.4),
            0 2px 8px rgba(0, 0, 0, 0.15);
    }
}

/* ===== ICON SPIN ANIMATION (Ícone gira a cada 10s) ===== */
@keyframes iconSpin {
    0%, 90% {
        transform: rotate(0deg);
    }
    92% {
        transform: rotate(-10deg);
    }
    94% {
        transform: rotate(10deg);
    }
    96% {
        transform: rotate(-10deg);
    }
    98% {
        transform: rotate(5deg);
    }
    100% {
        transform: rotate(0deg);
    }
}

/* ===== AUTO-HIDE NO MOBILE/TABLET ===== */
@media (max-width: 1024px) {
    .whatsapp-fab {
        opacity: 0;
        pointer-events: none;
        transform: translateY(80px) scale(0.85);
        transition: opacity 0.5s ease-out, 
                    transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }
    
    /* Visível quando classe .visible é adicionada */
    .whatsapp-fab.visible {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0) scale(1);
    }
    
    /* Escondido quando classe .hidden é adicionada - fade out suave */
    .whatsapp-fab.hidden {
        opacity: 0;
        pointer-events: none;
        transform: translateY(80px) scale(0.85);
        transition: opacity 0.6s ease-out, 
                    transform 0.6s cubic-bezier(0.4, 0, 0.6, 1);
    }
    
    /* Animação de pulso apenas quando visível */
    .whatsapp-fab.visible {
        animation: whatsappPulse 2.5s ease-in-out infinite;
    }
    
    .whatsapp-fab.hidden {
        animation: none;
    }
    
    /* Ícone continua girando mesmo quando botão está escondendo */
    .whatsapp-fab .whatsapp-icon {
        animation: iconSpin 10s ease-in-out infinite;
    }
}

/* ===== TOUCH DEVICES ===== */
@media (hover: none) and (pointer: coarse) {
    .whatsapp-fab {
        min-height: 2.875rem;
    }
    
    .whatsapp-fab:active {
        background: #1EBE5C;
        transform: scale(0.96);
    }
}

/* ===== TABLET ===== */
@media (min-width: 769px) {
    .whatsapp-fab {
        bottom: 1rem;
        right: 1rem;
        padding: 0.375rem;
        padding-right: 0.875rem;
        min-height: 3.25rem;
    }
    
    .whatsapp-icon {
        width: 2.5rem;
        height: 2.5rem;
    }
    
    .whatsapp-fab-text {
        font-size: 0.9rem;
        max-width: 2.5rem;
    }
}

/* ===== DESKTOP ===== */
@media (min-width: 1025px) {
    .whatsapp-fab {
        bottom: 1rem;
        right: 1rem;
        padding: 0.375rem;
        padding-right: 0.875rem;
        min-height: 3.5rem;
    }
    
    .whatsapp-icon {
        width: 2.75rem;
        height: 2.75rem;
    }
    
    .whatsapp-fab-text {
        font-size: 0.95rem;
        max-width: 2.75rem;
    }
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
    .whatsapp-fab {
        animation: none;
        transition-duration: 0.01ms;
    }
    
    .whatsapp-icon {
        animation: none;
    }
    
    .whatsapp-fab:hover {
        transform: none;
    }
}

/* ===== HIGH CONTRAST MODE ===== */
@media (prefers-contrast: high) {
    .whatsapp-fab {
        border: 2px solid hsl(0, 0%, 100%);
    }
}

@keyframes subtlePulse {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 25px rgba(37, 211, 102, 0.5);
    }
}

/* Estados */
.loading {
    text-align: center;
    padding: 60px 20px;
    color: #dcb48c;
    font-size: 1.4em;
}

.error {
    background: rgba(74, 159, 184, 0.2);
    border: 2px solid #4a9fb8;
    color: #90d5ff;
    padding: 25px;
    border-radius: 15px;
    margin: 25px;
    text-align: center;
    font-size: 1.05em;
}

/* ==================== RESPONSIVIDADE ==================== */

/* Notebooks pequenos e tablets landscape (1024px - 1366px) */
@media (max-width: 1366px) {
    .header {
        padding: 12px 15px;
    }
    
    .logo-container {
        width: 124px;
        height: 58px;
    }
    
    .btn-pdf {
        font-size: 0.8em;
        padding: 7px 14px;
    }
    
    .category-title {
        font-size: 1.6em;
    }
    
    .highlights-title {
        font-size: 2em;
    }
}

/* Tablets (768px - 1024px) */
@media (max-width: 1024px) {
    .header {
        padding: 12px 15px;
    }
    
    .header-content {
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
    }
    
    .logo-container {
        width: 120px;
        height: 56px;
    }
    
    .header-controls {
        gap: 10px;
    }
    
    .btn-lang {
        width: 34px;
        height: 34px;
        font-size: 16px;
    }
    
    .btn-pdf {
        font-size: 0.75em;
        padding: 6px 12px;
    }
    
    .category-title {
        font-size: 1.5em;
    }
    
    .dish-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
.dish-prices {
margin-left: 0;
}
    
/* Hero responsivo */
.highlights-section {
padding: 40px 15px;
}
    
.highlights-logo {
max-width: 220px;
}
    
.highlights-tagline {
font-size: 1.5em;
}
    
.highlights-subtitle {
font-size: 1em;
}
    
.highlights-grid {
    gap: 18px;
    padding: 15px;
}

.highlight-card {
    width: 160px;
}

.highlight-card:nth-child(3n+1) {
    width: 170px;
    margin-top: 15px;
}

.highlight-card:nth-child(4n+2) {
    width: 150px;
    margin-top: -8px;
}

.highlight-card:nth-child(5n+3) {
    width: 165px;
    margin-top: 20px;
}
    
.highlight-price-badge {
    width: 55px;
    height: 55px;
    top: 3px;
    right: 3px;
}
    
.highlight-name {
font-size: 1.1em;
}
    
.highlights-footer-text {
font-size: 1.6em;
}
}

/* Mobile (até 768px) */
@media (max-width: 768px) {
    .header {
        padding: 8px 8px;
    }
    
    .header-content {
        gap: 8px;
    }
    
    .logo-container {
        width: 110px;
        height: 51px;
        border-radius: 10px;
        padding: 4px;
    }
    
    .header-controls {
        flex-direction: row;
        gap: 5px;
    }
    
    .language-selector {
        padding: 3px 4px;
        gap: 2px;
    }
    
    .btn-lang {
        width: 26px;
        height: 26px;
        font-size: 12px;
    }
    
    .btn-pdf {
        font-size: 0.6em;
        padding: 6px 8px;
        gap: 3px;
        letter-spacing: 0.5px;
    }
    
    .content {
        padding: 20px 12px;
    }
    
    .category-section {
        padding: 18px;
        margin-bottom: 35px;
    }
    
    .category-title {
        font-size: 1.3em;
    }
    
    .dish-name {
        font-size: 1em;
    }
    
    /* Hero mobile - Apenas regras gerais, específicas vão nas media queries abaixo */
    .highlights-section {
        padding: 20px 10px 10px 10px;
        margin-bottom: 0;
        border-radius: 12px;
    }
    
    .category-section {
        margin-bottom: 10px;
    }
    
    .highlights-header {
        margin-bottom: 20px;
    }
    
    .highlights-logo {
        max-width: 140px;
    }
    
    .highlights-tagline {
        font-size: 1.1em;
        margin-bottom: 6px;
    }
    
    .highlights-subtitle {
        font-size: 0.8em;
    }
    
    .highlight-description {
        display: none;
    }
    
    .highlights-footer {
        margin-top: 20px;
        padding-top: 15px;
    }
    
    .highlights-footer-text {
        font-size: 1.1em;
    }
    
    .footer-content {
        flex-direction: column;
        align-items: center;
        gap: 18px;
    }
    
    .footer-item {
        font-size: 0.9em;
        text-align: center;
    }
    
    .footer-hours {
        align-items: center;
    }
    
    .hours-wrapper {
        align-items: center;
        text-align: center;
    }
    
    .status-badge {
        font-size: 0.8em;
        padding: 3px 8px;
    }
    
    /* Botão Admin em Mobile - Mais Visível */
    .admin-link-footer {
        bottom: 10px;
        left: 15px;
        right: auto;
        font-size: 1em;
        color: rgba(220, 180, 140, 0.7);
        opacity: 0.8;
        padding: 6px 12px;
        background: rgba(42, 26, 26, 0.6);
        border: 1px solid rgba(220, 180, 140, 0.3);
    }
}

/* ==================== MEDIA QUERIES RESPONSIVAS MODERNAS ==================== */

/* Mobile pequeno (280px - 359px) - Galaxy Fold, dispositivos compactos */
@media (max-width: 359px) {
    .highlights-section {
        padding: 15px 8px 8px 8px;
        margin-bottom: 0;
    }
    
    .highlights-grid {
        gap: 8px;
    }
    
    .highlight-card {
        max-width: 130px;
    }
    
    .highlight-image-wrapper {
        margin-bottom: 8px;
    }
    
    .highlight-price-badge {
        width: 40px;
        height: 40px;
        top: -5px;
        right: -4px;
    }
    
    .highlight-price-badge .currency {
        font-size: 0.48em;
    }
    
    .highlight-price-badge .amount {
        font-size: 0.85em;
    }
    
    .highlight-name {
        font-size: 0.8em;
        min-height: 2.2em;
        line-height: 1.1;
    }
}

/* Mobile padrão (360px - 479px) - Samsung Galaxy, iPhone SE, maioria dos Android */
@media (min-width: 360px) and (max-width: 479px) {
    .highlights-section {
        padding: 20px 10px 10px 10px;
        margin-bottom: 0;
    }
    
    .highlights-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .highlight-card {
        max-width: 140px;
    }
    
    .highlight-image-wrapper {
        margin-bottom: 8px;
    }
    
    .highlight-price-badge {
        width: 44px;
        height: 44px;
        top: -5px;
        right: -5px;
    }
    
    .highlight-price-badge .currency {
        font-size: 0.52em;
    }
    
    .highlight-price-badge .amount {
        font-size: 0.95em;
    }
    
    .highlight-name {
        font-size: 0.9em;
        min-height: 2.4em;
        line-height: 1.15;
    }
}

/* Mobile grande (480px - 767px) - iPhone Plus, Android grandes */
@media (min-width: 480px) and (max-width: 767px) {
    .highlights-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        padding: 16px 12px;
    }
    
    .highlight-card {
        max-width: 200px;
    }
    
    .highlight-image-wrapper {
        margin-bottom: 10px;
    }
    
    .highlight-price-badge {
        width: 52px;
        height: 52px;
        top: -8px;
        right: -10px;
    }
    
    .highlight-price-badge .currency {
        font-size: 0.6em;
    }
    
    .highlight-price-badge .amount {
        font-size: 1.15em;
    }
    
    .highlight-name {
        font-size: 1em;
        min-height: 2.5em;
        line-height: 1.2;
    }
}

/* Tablet e Desktop - 3+ colunas */
@media (min-width: 768px) {
    .highlights-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 20px;
        padding: 20px;
    }
    
    .highlight-card {
        max-width: 220px;
    }
    
    .highlight-image-wrapper {
        margin-bottom: 15px;
    }
}

