/* =====================================================
   GUIA COMERCIAL - Estilos Responsivos
   ===================================================== */

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

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Outfit:wght@400;500;600;700&display=swap');

:root {
    /* Brand Colors - Harmonic Palette */
    --primary: #2D2B52;
    --primary-rgb: 45, 43, 82;
    --secondary: #00AFEF;
    --secondary-rgb: 0, 175, 239;
    --accent: #8EFF03;
    --accent-rgb: 142, 255, 3;

    /* Functional Colors */
    --success: #10b981;
    --danger: #ef4444;
    --warning: #f59e0b;
    --info: #3b82f6;

    /* Neutral Palette */
    --background: #f8fafc;
    --foreground: #0f172a;
    --text-main: #1e293b;
    --text-muted: #64748b;
    --border: #e2e8f0;

    /* Glassmorphism Tokens */
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.3);
    --glass-blur: 12px;

    /* Shadows & Effects */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-premium: 0 20px 25px -5px rgba(45, 43, 82, 0.1), 0 8px 10px -6px rgba(45, 43, 82, 0.05);

    /* Transitions */
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 300ms cubic-bezier(0.4, 0, 0.2, 1);

    /* Legacy Mapping (para compatibilidade temporária) */
    --cor-primaria: var(--primary);
    --cor-secundaria: var(--secondary);
    --cor-destaque: var(--accent);
    --cor-fundo: var(--background);
    --cor-texto: var(--text-main);
    --cor-texto-claro: var(--text-muted);
    --cor-borda: var(--border);
    --sombra: var(--shadow-md);
    --sombra-grande: var(--shadow-premium);
}

html,
body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: var(--text-main);
    background-color: var(--background);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6,
.outfit-font {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    letter-spacing: -0.02em;
}


/* ======================== */
/* STICKY HEADER & FOOTER    */
/* ======================== */

.sticky-footer-mobile {
    position: fixed;
    bottom: 15px;
    left: 15px;
    right: 15px;
    height: 65px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    z-index: 9999;
    display: none;
    /* Hidden on Desktop */
    justify-content: space-around;
    align-items: center;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    padding: 0 10px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (max-width: 768px) {
    .sticky-footer-mobile {
        display: flex;
        /* Show on Mobile */
    }
}

.sticky-footer-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #64748b;
    font-size: 10px;
    font-weight: 600;
    flex: 1;
    height: 100%;
    transition: all 0.2s ease;
    gap: 4px;
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
    font-family: inherit;
}

.sticky-footer-item i {
    font-size: 20px;
    transition: transform 0.2s ease;
}

.sticky-footer-item.active,
.sticky-footer-item:active,
.sticky-footer-item:focus {
    color: var(--cor-primaria);
    transform: scale(0.95);
    outline: none;
    background: transparent;
}

.sticky-footer-item.highlight i {
    color: var(--cor-primaria);
}

/* Ajuste para não cobrir o rodapé no mobile */
@media (max-width: 768px) {
    body.has-sticky-footer {
        padding-bottom: 90px;
    }
}

@media (min-width: 992px) {
    body.has-sticky-footer {
        padding-bottom: 0;
    }
}


.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}

.page-content {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 30px;
    margin: 30px 0;
}

.empresa-grid {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 30px;
    margin-top: 30px;
}

/* ======================== */
/* HEADER E NAVEGAﾃ�グ       */
/* ======================== */

.header {
    background: white;
    box-shadow: var(--sombra);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: var(--cor-primaria);
    text-decoration: none;
}

.logo a {
    color: var(--cor-primaria);
    text-decoration: none;
}

.menu {
    display: flex;
    gap: 30px;
}

.menu a {
    color: var(--cor-texto);
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 500;
}

.menu a:hover,
.menu a.ativo {
    color: var(--cor-primaria);
}

/* ======================== */
/* HERO SECTION              */
/* ======================== */

.hero {
    background: linear-gradient(135deg, var(--cor-primaria) 0%, var(--cor-secundaria) 100%);
    color: white;
    padding: 80px 20px;
    text-align: center;
}

.hero-content h2 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.search-form {
    display: flex;
    gap: 10px;
    max-width: 500px;
    margin: 0 auto;
}

.search-form input {
    flex: 1;
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
}

.search-form button {
    padding: 12px 30px;
    background: var(--cor-destaque);
    color: var(--cor-primaria);
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
}

.search-form button:hover {
    background: #f0f0f0;
}

/* ======================== */
/* SECTIONS                  */
/* ======================== */

.section {
    padding: 20px 20px;
}

.section h2 {
    font-size: 32px;
    margin-bottom: 30px;
    text-align: center;
}

.section.cta {
    background: linear-gradient(135deg, var(--cor-primaria) 0%, var(--cor-secundaria) 100%);
    color: white;
    text-align: center;
}

.section.cta h2 {
    color: white;
}

.section.cta p {
    font-size: 18px;
    margin-bottom: 20px;
}

/* ======================== */
/* CARDS                     */
/* ======================== */

.card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--sombra);
    transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--sombra-grande);
}

.card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card-image-placeholder {
    width: 100%;
    height: 200px;
    background: var(--cor-fundo);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cor-texto-claro);
}

.card-content {
    padding: 20px;
}

.card-content h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.card-content p {
    color: var(--cor-texto-claro);
    font-size: 14px;
    margin-bottom: 10px;
}

.card-footer {
    padding: 0 20px 20px 20px;
}

/* ======================== */
/* AVALIAﾃ�髭S               */
/* ======================== */

.avaliacao {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 10px 0;
}

.estrelas {
    color: var(--cor-destaque);
    text-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
    font-size: 16px;
}

.nota {
    font-weight: bold;
    color: var(--cor-texto);
}

.total-avaliacoes {
    color: var(--cor-texto-claro);
    font-size: 12px;
}

.avaliacao-grande {
    text-align: center;
    padding: 20px;
    background: var(--cor-fundo);
    border-radius: 8px;
}

.avaliacao-grande .estrelas {
    font-size: 32px;
    display: block;
    margin-bottom: 10px;
}

.avaliacao-grande .nota {
    font-size: 24px;
    display: block;
    margin-bottom: 5px;
}

.avaliacao-item {
    padding: 15px;
    border: 1px solid var(--cor-borda);
    border-radius: 8px;
    margin-bottom: 15px;
}

.avaliacao-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.avaliacao-header strong {
    font-size: 14px;
}

.estrelas-pequenas {
    color: #ffc107;
    font-size: 12px;
}

.avaliacao-item .data {
    color: var(--cor-texto-claro);
    font-size: 12px;
    margin: 5px 0;
}

.avaliacao-item .texto {
    margin: 10px 0;
    font-size: 14px;
}

/* ======================== */
/* BOTﾃ髭S                    */
/* ======================== */

.btn {
    display: inline-block;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.3s, transform 0.2s;
    text-align: center;
}

.btn:hover {
    transform: scale(1.05);
}

.btn-primary {
    background: var(--cor-primaria);
    color: white;
}

.btn-primary:hover {
    background: var(--cor-secundaria);
}

.btn-secondary {
    background: var(--cor-secundaria);
    color: white;
}

.btn-secondary:hover {
    background: var(--cor-primaria);
}

.btn-block {
    display: block;
    width: 100%;
    margin: 10px 0;
}

.btn-compartilhar {
    padding: 8px 15px;
    margin: 5px;
    background: #f0f0f0;
    border: 1px solid var(--cor-borda);
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-compartilhar:hover {
    background: var(--cor-primaria);
    color: white;
}

/* ======================== */
/* FORMULﾃヽIOS              */
/* ======================== */

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

.form-grupo label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: var(--cor-texto);
}

.form-grupo input,
.form-grupo textarea,
.form-grupo select {
    width: 100%;
    padding: 10px;
    border: 1px solid var(--cor-borda);
    border-radius: 5px;
    font-family: inherit;
    font-size: 14px;
}

.form-grupo input:focus,
.form-grupo textarea:focus,
.form-grupo select:focus {
    outline: none;
    border-color: var(--cor-primaria);
    box-shadow: 0 0 5px rgba(102, 126, 234, 0.3);
}

.form-grupo textarea {
    resize: vertical;
    min-height: 120px;
}

/* Rating */
.rating {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 5px;
}

.rating input {
    width: auto;
    display: none;
}

.rating label {
    font-size: 28px;
    color: #ddd;
    cursor: pointer;
    transition: color 0.3s;
    margin: 0;
    padding: 0;
}

.rating input:checked~label,
.rating label:hover,
.rating label:hover~label {
    color: #ffc107;
}

/* ======================== */
/* SIDEBAR                   */
/* ======================== */

.sidebar {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: var(--sombra);
    height: fit-content;
    position: sticky;
    top: 100px;
}

.sidebar h3 {
    margin-bottom: 20px;
    font-size: 18px;
}

.filtro-grupo {
    margin-bottom: 20px;
}

.filtro-grupo label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    font-size: 14px;
}

.filtro-grupo input,
.filtro-grupo select {
    width: 100%;
    padding: 8px;
    border: 1px solid var(--cor-borda);
    border-radius: 5px;
    font-size: 14px;
}

/* ======================== */
/* PAGINAﾃ�グ                 */
/* ======================== */

.paginacao {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.btn-paginacao {
    padding: 10px 20px;
    background: var(--cor-primaria);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s;
}

.btn-paginacao:hover {
    background: var(--cor-secundaria);
}

.info-paginacao {
    font-weight: bold;
}

/* ======================== */
/* Pﾃ；INA DE EMPRESA        */
/* ======================== */

.empresa-detalhes {
    margin: 30px 0;
}

.empresa-hero {
    margin-bottom: 30px;
}

.foto-capa {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: 8px;
}

.foto-capa-placeholder {
    width: 100%;
    height: 400px;
    background: var(--cor-fundo);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    color: var(--cor-texto-claro);
}

.empresa-info-principal {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--sombra);
    margin-bottom: 30px;
}

.logo-e-nome {
    display: flex;
    gap: 20px;
    align-items: center;
}

.logo-empresa {
    width: 100px;
    height: 100px;
    border-radius: 8px;
    object-fit: cover;
}

.empresa-info-principal h1 {
    font-size: 36px;
    margin: 0 0 10px 0;
}

.categoria-badge {
    color: var(--cor-texto-claro);
    font-size: 16px;
    margin: 0;
}

.empresa-actions {
    display: flex;
    gap: 30px;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 20px;
}

.compartilhar {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

/* ======================== */
/* INFO BOXES                */
/* ======================== */

.info-box {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: var(--sombra);
    margin-bottom: 20px;
}

.info-box h3 {
    margin-bottom: 15px;
}

.info-box p {
    margin: 10px 0;
}

.info-box a {
    color: var(--cor-primaria);
    text-decoration: none;
}

.info-box a:hover {
    text-decoration: underline;
}

.horarios {
    list-style: none;
}

.horarios li {
    padding: 8px 0;
    border-bottom: 1px solid var(--cor-borda);
}

.horarios li:last-child {
    border-bottom: none;
}

.redes-sociais {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.rede-social {
    display: inline-block;
    padding: 8px 15px;
    background: var(--cor-primaria);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s;
}

.rede-social:hover {
    background: var(--cor-secundaria);
}

/* ======================== */
/* BREADCRUMB                */
/* ======================== */

.breadcrumb {
    background: var(--cor-fundo);
    padding: 15px 20px;
    margin: 0;
}

.breadcrumb a {
    color: var(--cor-primaria);
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb span {
    color: var(--cor-texto-claro);
    margin: 0 5px;
}

/* ======================== */
/* FOOTER                    */
/* ======================== */

.footer {
    background: #2c3e50;
    color: white;
    padding: 40px 20px 20px;
    margin-top: 60px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-section h4 {
    margin-bottom: 15px;
}

.footer-section p {
    margin: 10px 0;
    opacity: 0.8;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin: 8px 0;
}

.footer-section a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--cor-primaria);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.7;
}

/* ======================== */
/* Pﾃ；INA 404                */
/* ======================== */

.erro-404 {
    text-align: center;
    padding: 80px 20px;
}

.erro-404 h1 {
    font-size: 100px;
    color: var(--cor-primaria);
    margin: 0;
}

.erro-404 h2 {
    font-size: 32px;
    margin: 20px 0;
}

.erro-404 p {
    font-size: 18px;
    color: var(--cor-texto-claro);
    margin: 20px 0 40px;
}

/* ======================== */
/* CONTEﾃ咼O                  */
/* ======================== */

.page-header {
    margin: 30px 0;
}

.page-header h1 {
    font-size: 32px;
    margin-bottom: 10px;
}

.resultado-info {
    color: var(--cor-texto-claro);
}

.resultado-vazio {
    text-align: center;
    padding: 60px 20px;
}

.resultado-vazio p {
    font-size: 18px;
    color: var(--cor-texto-claro);
    margin-bottom: 20px;
}

.texto-vazio {
    text-align: center;
    padding: 40px;
    color: var(--cor-texto-claro);
}

.texto-descricao {
    line-height: 1.8;
    font-size: 16px;
}

/* ======================== */
/* LISTA DE EVENTOS         */
/* ======================== */

.lista-eventos,
.lista-noticias {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.evento-card,
.noticia-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--sombra);
    display: flex;
    transition: transform 0.3s, box-shadow 0.3s;
}

.evento-card:hover,
.noticia-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--sombra-grande);
}

.evento-card img,
.noticia-card img {
    width: 200px;
    height: 200px;
    object-fit: cover;
}

.evento-info,
.noticia-info {
    flex: 1;
    padding: 20px;
}

.evento-info h3,
.noticia-info h3 {
    margin: 0 0 10px 0;
}

.evento-meta,
.noticia-meta {
    color: var(--cor-texto-claro);
    font-size: 14px;
    margin-bottom: 10px;
}

.evento-meta p,
.noticia-meta p {
    margin: 5px 0;
}

.noticia-meta {
    font-size: 12px;
}

.resumo,
.descricao {
    color: var(--cor-texto-claro);
    margin: 10px 0;
    font-size: 14px;
}

/* ======================== */
/* DETALHES EVENTO/NOTICIA  */
/* ======================== */

.evento-detalhes,
.noticia-detalhes {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--sombra);
}

.evento-imagem,
.noticia-imagem {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 30px;
}

.evento-detalhes h1,
.noticia-detalhes h1 {
    margin-bottom: 20px;
}

.evento-conteudo,
.noticia-conteudo {
    line-height: 1.8;
    font-size: 16px;
    color: var(--cor-texto);
}

.noticia-tags {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--cor-borda);
}

.tag {
    display: inline-block;
    background: var(--cor-fundo);
    color: var(--cor-primaria);
    padding: 8px 15px;
    border-radius: 20px;
    margin: 5px 5px 5px 0;
    font-size: 12px;
}

/* ======================== */
/* FORMULﾃヽIO AVALIAﾃ�グ    */
/* ======================== */

.formulario-avaliacao {
    background: var(--cor-fundo);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.formulario-avaliacao h3 {
    margin-bottom: 20px;
}

.lista-avaliacoes {
    margin-top: 30px;
}

.lista-avaliacoes h3 {
    margin-bottom: 20px;
}

/* ======================== */
/* RESPONSIVO                */
/* ======================== */

@media (max-width: 768px) {
    .menu {
        gap: 15px;
        font-size: 14px;
    }

    .hero-content h2 {
        font-size: 32px;
    }

    .search-form {
        flex-direction: column;
    }

    .search-form button {
        width: 100%;
    }

    .grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }

    .page-content,
    .empresa-grid {
        grid-template-columns: 1fr;
    }

    .empresa-info-principal {
        flex-direction: column;
    }

    .logo-e-nome {
        flex-direction: column;
        text-align: center;
    }

    .empresa-actions {
        flex-direction: column;
    }

    .evento-card,
    .noticia-card {
        flex-direction: column;
    }

    .evento-card img,
    .noticia-card img {
        width: 100%;
        height: 200px;
    }

    .section h2 {
        font-size: 24px;
    }

    .sidebar {
        position: static;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .header-content {
        flex-direction: column;
        gap: 15px;
    }

    .menu {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .logo {
        font-size: 20px;
    }

    .hero-content h2 {
        font-size: 24px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .grid {
        grid-template-columns: 1fr;
    }

    .paginacao {
        flex-direction: column;
        gap: 10px;
    }

    .btn-paginacao {
        width: 100%;
    }

    .compartilhar {
        justify-content: center;
    }
}

/* ======================== */
/* MODERN ACTION ICONS      */
/* ======================== */
.profile-action-icons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px dashed #eee;
}

.action-icon-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    text-decoration: none;
    background: transparent !important;
    border: none !important;
    width: auto;
    min-width: 50px;
    transition: transform 0.2s;
}

.action-icon-btn:hover {
    transform: translateY(-5px);
}

.action-icon-btn i {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    /* Squircle */
    font-size: 16px;
    background: #f8f9fa;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.action-icon-btn span {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: #555;
    text-align: center;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Colors (Unified for Desktop & Mobile) */
.btn-call i {
    background: rgba(13, 110, 253, 0.1);
    color: #0d6efd;
}

.btn-call:hover i {
    background: #0d6efd;
    color: white;
    box-shadow: 0 5px 15px rgba(13, 110, 253, 0.3);
}

.btn-whatsapp i {
    background: rgba(37, 211, 102, 0.1);
    color: #25D366;
}

.btn-whatsapp:hover i {
    background: #25D366;
    color: white;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.btn-site i {
    background: rgba(111, 66, 193, 0.1);
    color: #6f42c1;
}

.btn-site:hover i {
    background: #6f42c1;
    color: white;
    box-shadow: 0 5px 15px rgba(111, 66, 193, 0.3);
}

.btn-email i {
    background: rgba(255, 193, 7, 0.1);
    color: #ffc107;
}

.btn-email:hover i {
    background: #ffc107;
    color: white;
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.3);
}

.btn-directions i {
    background: rgba(13, 202, 240, 0.1);
    color: #0dcaf0;
}

.btn-directions:hover i {
    background: #0dcaf0;
    color: white;
    box-shadow: 0 5px 15px rgba(13, 202, 240, 0.3);
}

.btn-delivery i {
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
}

.btn-delivery:hover i {
    background: #dc3545;
    color: white;
    box-shadow: 0 5px 15px rgba(220, 53, 69, 0.3);
}

.btn-video i {
    background: rgba(255, 0, 0, 0.1);
    color: #FF0000;
}

.btn-video:hover i {
    background: #FF0000;
    color: white;
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.3);
}

.btn-bio i {
    background: linear-gradient(45deg, rgba(255, 220, 128, 0.2), rgba(253, 29, 29, 0.1), rgba(131, 58, 180, 0.1));
    color: #E1306C;
}

.btn-bio:hover i {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: white;
    box-shadow: 0 5px 15px rgba(225, 48, 108, 0.3);
}

.btn-share i {
    background: rgba(108, 117, 125, 0.1);
    color: #6c757d;
}

.btn-share:hover i {
    background: #6c757d;
    color: white;
    box-shadow: 0 5px 15px rgba(108, 117, 125, 0.3);
}

/* Mobile Adjustments (If needed) */
@media (max-width: 991.98px) {
    .profile-action-icons {
        gap: 15px;
    }

    .action-icon-btn {
        min-width: 65px;
    }

    .action-icon-btn i {
        width: 42px;
        height: 42px;
        font-size: 18px;
    }

    .action-icon-btn span {
        font-size: 11px;
    }
}

/* ======================== */

.empresa-modern-layout {
    margin-top: -50px;
    z-index: 10;
    position: relative;
}

/* ======================== */
/* MODERN PROFILE LAYOUT    */
/* ======================== */

.profile-header-modern {
    position: relative;
    padding-bottom: 20px;
    background-color: #f8f9fa;
}

.cover-wrapper {
    height: 240px;
    position: relative;
    border-radius: 0 0 30px 30px;
    overflow: hidden;
    background-color: #eee;
}

.cover-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: var(--hero-bg);
    background-size: cover;
    background-position: center;
    opacity: 0.3;
    /* 70% transparente */
    z-index: 1;
}

.profile-info-card {
    background: white;
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    margin-top: -80px;
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 35px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.profile-logo-wrapper {
    width: 210px;
    height: 210px;
    min-width: 210px;
    background: white;
    border-radius: 25px;
    padding: 12px;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #eee;
}

.profile-logo-wrapper img {
    max-width: 100%;
    max-height: 100%;
    border-radius: 12px;
    object-fit: contain;
}

.profile-text-content {
    flex-grow: 1;
}

.profile-text-content h1 {
    font-size: 38px;
    font-weight: 800;
    color: #2D2B52;
    /* Dark Blue */
    margin-bottom: 12px;
    text-shadow: none;
}

.profile-meta-tags {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.tag-modern {
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.tag-location {
    background: transparent;
    color: #666;
    /* Texto cinza sutil */
    padding: 0;
    font-weight: 500;
}

.tag-category {
    background: #f0f2f5;
    color: #444;
    border: 1px solid #ddd;
}

@media (max-width: 768px) {
    .cover-wrapper {
        height: 165px;
    }

    .profile-info-card {
        flex-direction: column;
        text-align: center;
        padding: 25px;
        margin-top: -60px;
        gap: 20px;
    }

    .profile-logo-wrapper {
        margin-top: -75px;
        margin-left: auto;
        margin-right: auto;
        width: 130px;
        height: 130px;
        min-width: 130px;
    }

    .profile-text-content h1 {
        font-size: 28px;
    }

    .profile-meta-tags {
        justify-content: center;
    }
}

.card-modern {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: var(--sombra);
    border: 1px solid rgba(45, 43, 82, 0.05);
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.card-modern:hover {
    box-shadow: var(--sombra-grande);
}

.card-title-modern {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--cor-primaria);
}

.card-title-modern i {
    width: 40px;
    height: 40px;
    background: rgba(0, 175, 239, 0.1);
    color: var(--cor-secundaria);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.horarios-modern {
    list-style: none;
    padding: 0;
}

.horarios-modern li {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px dashed #eee;
}

.horarios-modern li:last-child {
    border-bottom: none;
}

.horarios-modern .dia {
    font-weight: 600;
}

.horarios-modern .hora {
    color: var(--cor-texto-claro);
}

.btn-whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 65px;
    height: 65px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s;
}

.btn-whatsapp-float:hover {
    transform: translateY(-10px);
    color: white;
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.5);
}

.avaliacao-score-modern {
    font-size: 56px;
    font-weight: 800;
    color: var(--cor-primaria);
    line-height: 1;
}

.contact-item-modern {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-icon-modern {
    width: 45px;
    height: 45px;
    background: #f8f9fa;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--cor-primaria);
    transition: all 0.3s;
}

.contact-item-modern:hover .contact-icon-modern {
    background: var(--cor-primaria);
    color: white;
}

.contact-info-modern h5 {
    font-size: 14px;
    color: var(--cor-texto-claro);
    margin-bottom: 2px;
}

.contact-info-modern p {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .hero-modern {
        height: 250px;
    }

    .logo-container-modern {
        width: 100px;
        height: 100px;
        margin-bottom: -50px;
        margin-left: auto;
        margin-right: auto;
    }

    .header-info-modern {
        text-align: center;
        padding-left: 0;
        margin-top: 60px;
    }

    .header-info-modern h1 {
        font-size: 28px;
    }
}

.badge-status-open {
    background: #e8f5e9;
    color: #2e7d32;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
}

.badge-status-closed {
    background: #ffebee;
    color: #c62828;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
}

.live-status-indicator {
    padding: 15px;
    border-radius: 12px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.live-status-indicator.open {
    background: rgba(46, 125, 50, 0.1);
    color: #2e7d32;
    border: 1px solid rgba(46, 125, 50, 0.2);
}

.live-status-indicator.closed {
    background: rgba(198, 40, 40, 0.1);
    color: #c62828;
    border: 1px solid rgba(198, 40, 40, 0.2);
}

.live-status-indicator .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.live-status-indicator.open .dot {
    background: #2e7d32;
}

.live-status-indicator.closed .dot {
    background: #c62828;
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 currentColor;
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 6px rgba(0, 0, 0, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    }
}

.horarios-modern li.is-current {
    background: #f8f9fa;
    margin: 0 -15px;
    padding: 12px 15px;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

/* Estilos para Cards em Destaque (Home) */
.card-image-wrapper {
    position: relative;
    height: 200px;
    overflow: hidden;
    border-radius: 0px 0px 0 0;
    transition: all 0.3s ease;
}

.card-image-wrapper.no-cover {
    background-color: #f0f2f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-logo-overlay {
    position: absolute;
    bottom: 12px;
    left: 12px;
    width: 90px;
    height: 90px;
    background: white;
    padding: 8px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.card-logo-overlay.is-prominent {
    position: relative;
    bottom: auto;
    left: auto;
    width: 180px;
    height: 180px;
    padding: 14px;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.card-logo-overlay img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.card-delivery-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #FFD700;
    color: #333;
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    z-index: 20;
    /* Aumentado para ficar acima da logo (z-index: 10) */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: transform 0.2s;
}

.card-delivery-badge:hover {
    transform: scale(1.05);
    color: #000;
}

/* Ajuste no delivery-badge das listagens horizontais */
.delivery-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #FFD700;
    color: #333 !important;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    z-index: 5;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.delivery-badge:hover {
    background: #ffc400;
    color: #000 !important;
}

/* Botﾃ｣o Ver Detalhes (Listagem) */
.btn-details-modern {
    margin-left: auto;
    background: var(--cor-secundaria);
    color: white;
    padding: 8px 18px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid var(--cor-secundaria);
    transition: all 0.3s ease;
}

.btn-details-modern:hover {
    background: var(--cor-primaria);
    color: white;
    border-color: var(--cor-primaria);
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Destaques por Plano */
.empresa-card-horizontal.card-premium {
    border: 2px solid transparent;
    background-image: linear-gradient(white, white), linear-gradient(90deg, var(--cor-primaria), var(--cor-secundaria), var(--cor-destaque));
    background-origin: border-box;
    background-clip: padding-box, border-box;
    box-shadow: 0 8px 25px rgba(45, 43, 82, 0.12);
    position: relative;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.empresa-card-horizontal.card-premium:hover {
    box-shadow: 0 12px 35px rgba(45, 43, 82, 0.2);
    transform: translateY(-3px) scale(1.01);
}

.empresa-card-horizontal.card-basic {
    border: 2px solid var(--cor-secundaria);
    background: #fff;
    position: relative;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.empresa-card-horizontal.card-basic:hover {
    box-shadow: 0 8px 20px rgba(0, 175, 239, 0.15);
}


@media (max-width: 768px) {
    .btn-details-modern {
        width: 100%;
        justify-content: center;
        margin-top: 10px;
    }
}

/* ======================== */
/* SEﾃ�グ DE NOTﾃ垢IAS (HOME) */
/* ======================== */

.news-section {
    padding: 80px 0;
    background: #fff;
}

.news-grid-featured {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}

.news-grid-secondary {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.news-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Card Grande (Destaque) */
.news-card-featured {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 400px;
    box-shadow: 0 10px 30px rgba(45, 43, 82, 0.1);
    transition: all 0.4s ease;
    display: block;
    text-decoration: none;
    color: white;
}

.news-card-featured:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(45, 43, 82, 0.2);
}

.news-card-featured .img-wrapper {
    width: 100%;
    height: 100%;
}

.news-card-featured img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.news-card-featured:hover img {
    transform: scale(1.1);
}

.news-card-featured .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 60px 30px 30px;
    background: linear-gradient(to top, rgba(45, 43, 82, 0.95) 0%, rgba(45, 43, 82, 0) 100%);
}

.news-card-featured h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.3;
    color: white;
}

.news-card-featured .meta {
    font-size: 0.85rem;
    opacity: 0.9;
    background: var(--cor-secundaria);
    display: inline-block;
    padding: 3px 12px;
    border-radius: 50px;
    margin-bottom: 10px;
}

/* Card Horizontal (Pequeno) */
.news-card-horizontal {
    display: flex;
    gap: 20px;
    background: white;
    padding: 12px;
    border-radius: 16px;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

.news-card-horizontal:hover {
    border-color: var(--cor-secundaria);
    box-shadow: 0 8px 20px rgba(0, 175, 239, 0.1);
    background: #fdfdfd;
    transform: translateX(5px);
}

.news-card-horizontal .img-small {
    width: 140px;
    height: 100px;
    flex-shrink: 0;
    border-radius: 12px;
    overflow: hidden;
}

.news-card-horizontal .img-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-card-horizontal .content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.news-card-horizontal h4 {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 6px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: var(--cor-primaria);
}

/* =============================== */
/* ESTILOS GERAIS DE CARDS NOTﾃ垢IA */
/* =============================== */

.news-listing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.noticia-card-modern {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.noticia-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(45, 43, 82, 0.1);
    border-color: var(--cor-secundaria);
}

.noticia-card-modern .card-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.noticia-card-modern .card-body {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.noticia-card-modern h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.4;
    color: var(--cor-primaria);
}

.noticia-card-modern .meta {
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 15px;
}

.noticia-card-modern .resumo {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.noticia-card-modern .btn-read-more {
    margin-top: auto;
    background: #f8f9fa;
    color: var(--cor-primaria);
    border: 1px solid #eee;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.noticia-card-modern:hover .btn-read-more {
    background: var(--cor-primaria);
    color: white;
    border-color: var(--cor-primaria);
}

@media (max-width: 768px) {
    .news-listing-grid {
        grid-template-columns: 1fr;
    }
}

.news-card-horizontal .meta {
    font-size: 0.8rem;
    color: #888;
}

/* Responsividade News */
@media (max-width: 992px) {

    .news-grid-featured,
    .news-grid-secondary {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .news-card-featured {
        height: 320px;
    }

    .news-card-horizontal {
        flex-direction: column;
    }

    .news-card-horizontal .img-small {
        width: 100%;
        height: 180px;
    }
}

/* =====================================================
   PﾁGINA DE NOTﾍCIA - REDESIGN PREMIUM
   ===================================================== */

:root {
    --news-reading-width: 800px;
    --news-font-main: 'Inter', 'Segoe UI', Roboto, sans-serif;
    --news-text-size: 1.15rem;
    --news-line-height: 1.8;
}

/* Barra de Progresso */
.reading-progress-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: transparent;
    z-index: 1001;
}

.reading-progress-bar {
    height: 100%;
    background: linear-gradient(to right, var(--cor-secundaria), var(--cor-destaque));
    width: 0%;
    transition: width 0.1s ease;
}

/* Hero Section para Noticia */
.noticia-hero {
    padding: 60px 0;
    background: linear-gradient(135deg, rgba(45, 43, 82, 0.05) 0%, rgba(0, 175, 239, 0.05) 100%);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.noticia-hero .breadcrumb {
    background: transparent;
    padding: 0;
    margin-bottom: 20px;
}

.noticia-hero h1 {
    font-size: 3rem;
    line-height: 1.2;
    color: var(--cor-primaria);
    margin-bottom: 25px;
}

.noticia-meta-premium {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--cor-texto-claro);
    font-size: 0.95rem;
}

.meta-item i {
    color: var(--cor-secundaria);
}

.autor-avatar-img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Layout de Conte棈o */
.noticia-container-premium {
    max-width: var(--news-reading-width);
    margin: -40px auto 60px;
    position: relative;
    z-index: 5;
}

.noticia-main-card {
    background: white;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(45, 43, 82, 0.08);
}

.noticia-capa-premium {
    width: 105%;
    margin-left: -2.5%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
    border-radius: 20px;
    margin-bottom: 40px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.noticia-conteudo-texto {
    font-family: var(--news-font-main);
    font-size: var(--news-text-size);
    line-height: var(--news-line-height);
    color: #333;
}

.noticia-conteudo-texto p {
    margin-bottom: 25px;
}

/* Bot�s de Compartilhamento Flutuantes */
.share-sidebar-float {
    position: absolute;
    left: -80px;
    top: 100px;
}

.share-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    color: var(--cor-texto-claro);
    margin-bottom: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-decoration: none;
}

.share-btn:hover {
    transform: translateY(-3px);
    color: white;
}

.share-btn.fb:hover {
    background: #1877F2;
}

.share-btn.tw:hover {
    background: #1DA1F2;
}

.share-btn.wa:hover {
    background: #25D366;
}

.share-btn.copy:hover {
    background: var(--cor-primaria);
}

/* Sidebar Premium */
.sidebar-premium .card {
    border: none;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.noticia-sidebar-item {
    transition: all 0.3s ease;
    border-radius: 12px;
    padding: 10px;
}

.noticia-sidebar-item:hover {
    background: rgba(0, 175, 239, 0.05);
    transform: translateX(5px);
}

/* Responsividade */
@media (max-width: 1200px) {
    .share-sidebar-float {
        position: relative;
        left: 0;
        top: 0;
        display: flex;
        gap: 15px;
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .noticia-hero h1 {
        font-size: 2rem;
    }

    .noticia-main-card {
        padding: 25px;
        border-radius: 0;
    }

    .noticia-capa-premium {
        width: 100%;
        margin-left: 0;
        border-radius: 12px;
    }

    .noticia-container-premium {
        display: block;
    }
}

/* ======================== */
/* PREMIUM UTILITIES        */
/* ======================== */

.glass-effect {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-premium);
}

.hover-lift {
    transition: var(--transition-base);
}

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

.active-shrink {
    transition: var(--transition-fast);
}

.active-shrink:active {
    transform: scale(0.97);
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}


/* Micro-interação para inputs */
.form-input-premium {
    transition: var(--transition-base);
    border: 1px solid var(--border);
}

.form-input-premium:focus {
    transform: translateY(-2px);
    border-color: var(--primary);
    box-shadow: 0 10px 20px -10px rgba(var(--primary-rgb), 0.2);
}


/* Operating Hours Colors & Geometry Update */
.horarios-modern li {
    border-bottom: 1px dashed rgba(0, 0, 0, 0.2) !important;
}

/* Unified Geometry for Highlights */
.horarios-modern li.is-current,
.horarios-modern li.is-closed,
.horarios-modern li.is-holiday {
    margin: 0 -15px !important;
    padding: 12px 15px !important;
    border: none !important;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.2) !important;
    border-radius: 0 !important;
}

/* Current Day - Light Blue */
.horarios-modern li.is-current {
    background-color: rgba(0, 175, 239, 0.1) !important;
    color: var(--cor-primaria, #00AFEF) !important;
}

/* Closed Days - Light Red */
.horarios-modern li.is-current.is-closed,
.horarios-modern li.is-closed {
    background-color: #FFEBEE !important;
    color: #dc3545 !important;
}

/* Holidays - Light Yellow */
.horarios-modern li.is-holiday {
    background-color: #FFF9C4 !important;
    color: #856404 !important;
}

.horarios-modern .hora {
    font-size: 0.85rem !important;
}