/* ============================================
   FLAT CARNEIROS — HARMONIA DE BEGE EM CAMADAS (CORRIGIDO)
   ============================================ */

:root {
    /* Navy */
    --navy: #1B3A5C;
    --navy-deep: #122A45;
    --navy-light: #2C5282;
    
    /* Sky */
    --sky: #63B3ED;
    --sky-soft: #BEE3F8;
    
    /* Família bege em camadas — do mais claro ao mais quente */
    --bege-onda: #F7F3EC;       /* Cor da onda — fundo seções */
    --bege-creme: #FDF8F0;      /* Fundo geral da página */
    --bege-card: #F0E4D0;       /* Cards info — mais quente, destaque */
    --bege-vivo: #D4B896;       /* Acentos, bordas, hover */
    --bege-medio: #C4A87C;      /* Elementos secundários */
    --bege-escuro: #A68B5B;     /* Texto em bege (hero) */
    
    --text: #1a202c;
    --text-light: #4A5568;
    --text-muted: #718096;
    --white: #ffffff;
    
    --glass: rgba(240, 228, 208, 0.85);
    --glass-border: rgba(212, 184, 150, 0.5);
    
    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    
    --radius: 24px;
    --radius-sm: 16px;
    --radius-pill: 100px;
    --shadow-soft: 0 4px 24px rgba(27, 58, 92, 0.08);
    --shadow-hover: 0 12px 40px rgba(27, 58, 92, 0.14);
    --shadow-bege: 0 4px 20px rgba(196, 168, 124, 0.15);
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-sans);
    background: var(--bege-creme);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* ============================================
   HERO — TEXTO EM BEGE QUENTE
   ============================================ */
.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--bege-card);
    overflow: hidden;
    padding: 40px 24px 120px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: 
        linear-gradient(180deg, rgba(18, 42, 69, 0.5) 0%, rgba(27, 58, 92, 0.65) 50%, rgba(27, 58, 92, 0.8) 100%),
        linear-gradient(160deg, rgba(27, 58, 92, 0.4) 0%, transparent 60%),
        url('assets/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    transform: scale(1.05);
    transition: transform 8s ease-out;
}

.hero:hover .hero-bg {
    transform: scale(1);
}

.gradient-mesh {
    position: absolute;
    inset: 0;
    opacity: 0.3;
    background: 
        radial-gradient(circle at 20% 50%, rgba(212, 184, 150, 0.25) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(99, 179, 237, 0.1) 0%, transparent 40%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 640px;
}

.hero-logo {
    margin-bottom: 28px;
}

.hero-logo img {
    max-height: 90px;
    max-width: 300px;
    width: auto;
    filter: drop-shadow(0 8px 24px rgba(0,0,0,0.4));
    transition: var(--transition);
}

.hero-logo img:hover {
    transform: scale(1.03);
}

.hero-logo-fallback h1 {
    font-family: var(--font-serif);
    font-size: 3.5rem;
    font-weight: 300;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
    text-shadow: 0 2px 12px rgba(0,0,0,0.5);
    color: var(--bege-card);
}

.hero-pretitle {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-style: italic;
    color: var(--bege-vivo);
    margin-bottom: 4px;
    display: block;
}

.hero-location {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--bege-vivo);
    margin-bottom: 16px;
}

.hero-desc {
    font-size: 1.05rem;
    font-weight: 300;
    color: var(--bege-card);
    line-height: 1.8;
    max-width: 480px;
    margin: 0 auto;
}

.scroll-indicator {
    margin-top: 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--bege-vivo);
    animation: bounce 2s infinite;
}

.scroll-indicator span {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 500;
    color: var(--bege-vivo);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(10px); }
    60% { transform: translateY(5px); }
}

/* ============================================
   ONDAS — COR BEGE ONDA (CORRIGIDO - SEM SOBREPOSIÇÃO)
   ============================================ */
.waves-container {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    line-height: 0;
    z-index: 1;
    pointer-events: none;
}

.waves {
    position: relative;
    width: 100%;
    height: 120px;
    min-height: 80px;
    max-height: 180px;
}

.parallax > use {
    animation: wave-move 25s cubic-bezier(.55,.5,.45,.5) infinite;
}

.parallax > use:nth-child(1) { animation-delay: -2s; animation-duration: 7s; }
.parallax > use:nth-child(2) { animation-delay: -3s; animation-duration: 10s; }
.parallax > use:nth-child(3) { animation-delay: -4s; animation-duration: 13s; }
.parallax > use:nth-child(4) { animation-delay: -5s; animation-duration: 20s; }

@keyframes wave-move {
    0% { transform: translate3d(-90px, 0, 0); }
    100% { transform: translate3d(85px, 0, 0); }
}

/* ============================================
   WHATSAPP FLUTUANTE
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    text-decoration: none;
    transition: var(--transition);
    animation: pulse-wa 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-4px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
    animation: none;
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
}

@keyframes pulse-wa {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
    70% { box-shadow: 0 0 0 18px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ============================================
   ANIMAÇÕES
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    animation: reveal-anim 1s ease-out forwards;
}

.reveal-delay-1 { animation-delay: 0.2s; opacity: 0; transform: translateY(30px); animation: reveal-anim 1s ease-out 0.2s forwards; }
.reveal-delay-2 { animation-delay: 0.4s; opacity: 0; transform: translateY(30px); animation: reveal-anim 1s ease-out 0.4s forwards; }
.reveal-delay-3 { animation-delay: 0.6s; opacity: 0; transform: translateY(30px); animation: reveal-anim 1s ease-out 0.6s forwards; }

@keyframes reveal-anim {
    to { opacity: 1; transform: translateY(0); }
}

.reveal-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.reveal-on-scroll.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   LAYOUT
   ============================================ */
.container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 28px;
}

section {
    margin-bottom: 100px;
}

.section-header-modern {
    text-align: center;
    margin-bottom: 56px;
}

.section-eyebrow {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--bege-escuro);
    margin-bottom: 16px;
}

.section-title-modern {
    font-family: var(--font-serif);
    font-size: 2.8rem;
    font-weight: 300;
    color: var(--navy);
    margin-bottom: 12px;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-light);
    font-weight: 300;
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ============================================
   SEÇÃO ESSENCIAIS — FUNDO COR DA ONDA (CORRIGIDO - REMOVIDO O PSEUDO-ELEMENTO)
   ============================================ */
.info-section {
    background: var(--bege-onda);
    margin-left: -28px;
    margin-right: -28px;
    padding: 80px 28px;
    border-radius: 0 0 var(--radius) var(--radius);
    position: relative;
}

/* PSEUDO-ELEMENTO REMOVIDO - não há mais sobreposição sobre as ondas */

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
    position: relative;
    z-index: 2;
}

/* ============================================
   INFO CARDS — BEGE QUENTE (DESTAQUE)
   ============================================ */
.info-card-glass {
    background: var(--bege-card);
    border: 1px solid var(--bege-vivo);
    border-radius: var(--radius);
    padding: 36px 32px;
    box-shadow: var(--shadow-bege);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.info-card-glass::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--navy), var(--bege-vivo));
    opacity: 0;
    transition: opacity 0.3s;
}

.info-card-glass:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(196, 168, 124, 0.25);
    border-color: var(--bege-medio);
}

.info-card-glass:hover::before {
    opacity: 1;
}

.info-icon-modern {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bege-card);
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(27, 58, 92, 0.25);
}

.info-card-glass h3 {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--navy);
}

.info-card-glass .info-content {
    font-size: 0.92rem;
    color: var(--text-light);
    line-height: 1.8;
}

.info-card-glass .info-content strong {
    color: var(--text);
    font-weight: 600;
}

/* ============================================
   FILTROS
   ============================================ */
.filtros-modern {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 48px;
}

.filtro-modern {
    display: inline-flex;
    align-items: center;
    padding: 10px 22px;
    background: var(--white);
    border: 1px solid transparent;
    border-radius: var(--radius-pill);
    text-decoration: none;
    color: var(--text-light);
    font-size: 0.85rem;
    font-weight: 500;
    transition: var(--transition);
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.filtro-modern:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    color: var(--navy);
}

.filtro-modern.ativo {
    background: var(--navy);
    color: var(--bege-card);
    box-shadow: 0 4px 16px rgba(27, 58, 92, 0.25);
}

/* ============================================
   LOCAIS — CARDS COM FOTO
   ============================================ */
.locais-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
    gap: 28px;
}

.local-card-modern {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(0,0,0,0.03);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    position: relative;
}

.local-card-modern:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

.local-card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.local-card-modern:hover .local-card-img {
    transform: scale(1.05);
}

.local-card-img-wrap {
    overflow: hidden;
    position: relative;
}

.local-card-img-wrap::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(to top, var(--white), transparent);
    pointer-events: none;
}

.local-card-accent {
    height: 4px;
    width: 100%;
    transition: height 0.3s ease;
}

.local-card-modern:hover .local-card-accent {
    height: 6px;
}

.local-card-modern.destaque {
    box-shadow: 0 4px 24px rgba(27, 58, 92, 0.1);
    border: 1px solid rgba(27, 58, 92, 0.08);
}

.local-body-modern {
    padding: 24px 32px 20px;
    flex: 1;
}

.local-meta-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
    gap: 12px;
}

.local-categoria-modern {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.local-badge-modern {
    background: linear-gradient(135deg, var(--bege-card), var(--bege-vivo));
    color: var(--navy);
    font-size: 0.65rem;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: var(--radius-pill);
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
    border: 1px solid var(--bege-medio);
}

.local-body-modern h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--navy);
    line-height: 1.3;
}

.local-desc-modern {
    font-size: 0.92rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 16px;
}

.local-detail {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-top: 8px;
}

.local-detail svg {
    flex-shrink: 0;
    margin-top: 3px;
    opacity: 0.5;
}

.local-detail a {
    color: var(--navy-light);
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s;
}

.local-detail a:hover {
    border-bottom-color: var(--navy-light);
}

.local-actions-modern {
    padding: 0 32px 28px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.action-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 12px;
    font-size: 0.82rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    border: 1px solid transparent;
}

.action-btn.wa {
    background: #f0fdf4;
    color: #166534;
    border-color: #bbf7d0;
}

.action-btn.wa:hover {
    background: #dcfce7;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(22, 101, 52, 0.1);
}

.action-btn.ig {
    background: linear-gradient(135deg, #fdf2f8, #fff1f2);
    color: #be185d;
    border-color: #fbcfe8;
}

.action-btn.ig:hover {
    background: linear-gradient(135deg, #fce7f3, #ffe4e6);
    transform: translateY(-2px);
}

.action-btn.site {
    background: #eff6ff;
    color: #1e40af;
    border-color: #bfdbfe;
    padding: 10px 14px;
}

.action-btn.site:hover {
    background: #dbeafe;
    transform: translateY(-2px);
}

.action-btn.maps {
    background: var(--bege-card);
    color: var(--navy);
    border-color: var(--bege-vivo);
}

.action-btn.maps:hover {
    background: var(--bege-vivo);
    transform: translateY(-2px);
}

.empty-state {
    grid-column: 1 / -1;
    text-align: center;
    padding: 80px 20px;
    color: var(--text-muted);
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer-modern {
    background: linear-gradient(180deg, var(--bege-creme) 0%, var(--bege-onda) 100%);
    border-top: 1px solid var(--bege-vivo);
    padding: 60px 24px 40px;
    text-align: center;
}

.footer-content {
    max-width: 600px;
    margin: 0 auto;
}

.footer-title {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--navy);
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.footer-small {
    font-size: 0.8rem;
    color: var(--text-muted);
    letter-spacing: 0.5px;
}

/* ============================================
   ADMIN — LOGIN ELEGANTE
   ============================================ */
.admin-body {
    background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.login-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 48px;
    width: 100%;
    max-width: 420px;
    box-shadow: 0 24px 60px rgba(0,0,0,0.3);
    position: relative;
    overflow: hidden;
}

.login-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--navy), var(--bege-vivo));
}

.login-logo {
    text-align: center;
    margin-bottom: 32px;
}

.login-logo img {
    max-height: 50px;
    width: auto;
}

.login-logo h2 {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    color: var(--navy);
    font-weight: 600;
}

.login-logo p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 4px;
}

.login-card .form-group {
    margin-bottom: 20px;
}

.login-card label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.login-card input {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--bege-vivo);
    border-radius: var(--radius-sm);
    font-family: var(--font-sans);
    font-size: 0.95rem;
    color: var(--text);
    background: var(--bege-creme);
    transition: var(--transition);
}

.login-card input:focus {
    outline: none;
    border-color: var(--navy-light);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(27, 58, 92, 0.08);
}

.login-card button {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    color: var(--bege-card);
    border: none;
    border-radius: var(--radius-sm);
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 8px;
}

.login-card button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(27, 58, 92, 0.3);
}

.login-hint {
    text-align: center;
    margin-top: 20px;
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ============================================
   ADMIN — DASHBOARD E PÁGINAS
   ============================================ */
.admin-header {
    background: var(--white);
    border-bottom: 1px solid var(--bege-vivo);
    padding: 16px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 12px rgba(27, 58, 92, 0.06);
}

.admin-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.admin-logo img {
    height: 36px;
    width: auto;
}

.admin-logo span {
    font-family: var(--font-serif);
    font-weight: 600;
    font-size: 1.3rem;
    color: var(--navy);
}

.admin-nav {
    display: flex;
    gap: 8px;
    align-items: center;
}

.admin-nav a {
    text-decoration: none;
    color: var(--text-light);
    font-size: 0.88rem;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.admin-nav a:hover {
    background: var(--bege-card);
    color: var(--navy);
}

.admin-nav a.ativo {
    background: var(--navy);
    color: var(--bege-card);
}

.admin-nav .btn-sair {
    background: transparent;
    color: var(--text-muted);
    border: 1px solid var(--bege-vivo);
    margin-left: 8px;
}

.admin-nav .btn-sair:hover {
    background: #FED7D7;
    color: #C53030;
    border-color: #FED7D7;
}

.admin-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 40px 32px;
}

.admin-page-title {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--navy);
    margin-bottom: 32px;
    font-weight: 600;
}

/* Stats cards */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.stat-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 32px;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--bege-vivo);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, var(--navy), var(--bege-vivo));
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* Admin cards */
.admin-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 32px;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--bege-vivo);
    margin-bottom: 32px;
}

.admin-card h3 {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    color: var(--navy);
    margin-bottom: 20px;
}

/* Tabelas admin */
.admin-table-wrap {
    overflow-x: auto;
    border-radius: var(--radius-sm);
    border: 1px solid var(--bege-vivo);
}

table.admin-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.admin-table th {
    background: var(--bege-card);
    color: var(--navy);
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 14px 16px;
    text-align: left;
    border-bottom: 2px solid var(--bege-vivo);
}

.admin-table td {
    padding: 14px 16px;
    border-bottom: 1px solid var(--bege-vivo);
    color: var(--text-light);
    vertical-align: middle;
}

.admin-table tr:hover td {
    background: var(--bege-creme);
}

.admin-table td strong {
    color: var(--navy);
    font-weight: 600;
}

/* Badges tabela */
.badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: var(--radius-pill);
    font-size: 0.75rem;
    font-weight: 600;
}

.badge-destaque {
    background: linear-gradient(135deg, var(--bege-card), var(--bege-vivo));
    color: var(--navy);
}

.badge-ativo {
    background: #F0FFF4;
    color: #276749;
}

.badge-inativo {
    background: #F7FAFC;
    color: var(--text-muted);
}

/* Botões admin */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    border-radius: 12px;
    font-size: 0.88rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    color: var(--bege-card);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(27, 58, 92, 0.25);
}

.btn-secondary {
    background: var(--bege-card);
    color: var(--navy);
}

.btn-secondary:hover {
    background: var(--bege-vivo);
}

.btn-danger {
    background: #FFF5F5;
    color: #C53030;
}

.btn-danger:hover {
    background: #FED7D7;
}

.btn-sm {
    padding: 6px 12px;
    font-size: 0.8rem;
}

/* Formulários admin */
.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 0 24px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group.full {
    grid-column: 1 / -1;
}

.form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 10px 14px;
    border: 1.5px solid var(--bege-vivo);
    border-radius: var(--radius-sm);
    font-family: var(--font-sans);
    font-size: 0.95rem;
    color: var(--text);
    background: var(--bege-creme);
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--navy-light);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(27, 58, 92, 0.06);
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.form-group input[type="color"] {
    height: 44px;
    padding: 4px;
}

.form-group input[type="file"] {
    padding: 8px;
    font-size: 0.85rem;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 8px;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    accent-color: var(--navy);
}

/* Preview foto no admin */
.foto-preview {
    width: 100%;
    max-width: 300px;
    height: 160px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    border: 2px solid var(--bege-vivo);
    margin-top: 8px;
}

/* Alertas */
.alert {
    padding: 14px 18px;
    border-radius: var(--radius-sm);
    margin-bottom: 24px;
    font-size: 0.9rem;
    font-weight: 500;
}

.alert-erro {
    background: #FFF5F5;
    color: #C53030;
    border: 1px solid #FED7D7;
}

.alert-sucesso {
    background: #F0FFF4;
    color: #276749;
    border: 1px solid #C6F6D5;
}

/* ============================================
   RESPONSIVO
   ============================================ */
@media (max-width: 768px) {
    .hero { min-height: 75vh; padding: 30px 20px 100px; }
    .hero-bg { background-attachment: scroll; transform: none; }
    .hero:hover .hero-bg { transform: none; }
    .hero-logo img { max-height: 70px; max-width: 240px; }
    .hero-logo-fallback h1 { font-size: 2.4rem; }
    .hero-location { font-size: 1rem; letter-spacing: 2px; }
    .hero-desc { font-size: 0.95rem; }
    .waves { height: 80px; min-height: 60px; }
    
    .whatsapp-float { width: 54px; height: 54px; bottom: 20px; right: 20px; }
    .whatsapp-float svg { width: 28px; height: 28px; }
    
    .section-title-modern { font-size: 2rem; }
    .section-subtitle { font-size: 0.95rem; }
    
    .info-section { padding: 60px 20px; margin-left: -20px; margin-right: -20px; }
    .info-grid { grid-template-columns: 1fr; }
    .info-card-glass { padding: 28px 24px; }
    
    .locais-grid { grid-template-columns: 1fr; gap: 20px; }
    .local-body-modern { padding: 20px 24px 16px; }
    .local-actions-modern { padding: 0 24px 24px; }
    .local-body-modern h3 { font-size: 1.3rem; }
    
    .filtros-modern { gap: 8px; }
    .filtro-modern { padding: 8px 16px; font-size: 0.8rem; }
    
    .container { padding: 0 20px; }
    section { margin-bottom: 64px; }
    
    .login-card { padding: 32px 24px; }
    .admin-header { padding: 12px 20px; flex-wrap: wrap; gap: 12px; }
    .admin-nav { overflow-x: auto; width: 100%; padding-bottom: 4px; }
    .admin-container { padding: 24px 20px; }
    .stats-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .local-actions-modern .action-btn { flex: 1; justify-content: center; }
    .local-meta-header { flex-direction: column; gap: 8px; }
}