/* ============================================
   PORTAL INDIANÓPOLIS - MG
   CSS Principal
   ============================================ */

/* Variables */
:root {
    --brand-navy: #0b2b57;
    --brand-navy-dark: #082043;
    --brand-teal: #1d6f86;
    --brand-sky: #8ec3d5;
    --brand-green: #79b442;
    --brand-sun: #f5b01a;
    --brand-orange: #e88c1a;

    --primary: var(--brand-navy);
    --primary-dark: var(--brand-navy-dark);
    --secondary: var(--brand-teal);
    --accent: var(--brand-sun);
    --accent-hover: var(--brand-orange);
    --danger: #e5533d;
    --success: var(--brand-green);
    --dark: #10253f;
    --gray: #6f7f8c;
    --light-gray: #edf2f5;
    --white: #ffffff;
    --bg: #f5f7f9;

    --border: rgba(221,231,244,0.9);
    --shadow: 0 16px 40px rgba(11,43,87,0.14);
    --shadow-hover: 0 24px 60px rgba(11,43,87,0.18);
    --radius: 14px;
    --radius-lg: 18px;
    --transition: all 0.3s ease;
}

/* Reset */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: radial-gradient(circle at 12% 14%, rgba(245,176,26,0.16), transparent 35%),
                radial-gradient(circle at 82% 10%, rgba(29,111,134,0.14), transparent 32%),
                linear-gradient(180deg, #f9fbff 0%, #eef3fb 60%, #f8f5ef 100%);
    color: var(--dark);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Raleway', 'Open Sans', sans-serif;
    letter-spacing: 0.01em;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

/* ============================================
   TOP BAR
   ============================================ */
.top-bar {
    background: linear-gradient(90deg, var(--primary-dark), var(--primary));
    border-bottom: 1px solid rgba(245,176,26,0.25);
    color: var(--white);
    font-size: 0.85rem;
    padding: 8px 0;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left {
    display: flex;
    gap: 20px;
}

.top-bar-left span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.top-bar-right {
    display: flex;
    gap: 15px;
    align-items: center;
    flex-wrap: wrap;
}

.top-bar-right a {
    color: var(--white);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 5px;
}

.top-bar-right a:hover {
    color: var(--accent);
}

.top-action {
    padding: 6px 14px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.35);
    color: var(--white);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    transition: var(--transition);
}

.top-action:hover {
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.6);
    color: var(--accent);
}

.top-action.primary {
    background: var(--accent);
    color: var(--primary);
    border-color: transparent;
}

.top-action.primary:hover {
    background: var(--accent-hover);
    color: var(--white);
}

/* ============================================
   HEADER
   ============================================ */
.header {
    background: var(--white);
    padding: 15px 0;
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

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

.logo-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-main {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.2;
    font-family: 'Raleway', 'Open Sans', sans-serif;
    letter-spacing: 0.02em;
}

.logo-sub {
    font-size: 0.85rem;
    color: var(--gray);
    font-weight: 500;
}

.search-box {
    flex: 1;
    max-width: 400px;
    display: flex;
    background: var(--light-gray);
    border-radius: 50px;
    overflow: hidden;
}

.search-box input {
    flex: 1;
    border: none;
    padding: 12px 20px;
    background: transparent;
    font-size: 0.95rem;
    outline: none;
}

.search-box button {
    background: var(--accent);
    color: var(--primary);
    border: none;
    padding: 12px 20px;
    cursor: pointer;
    transition: var(--transition);
}

.search-box button:hover {
    background: var(--accent-hover);
    color: var(--white);
}

.menu-toggle {
    display: none;
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 10px 15px;
    border-radius: var(--radius);
    font-size: 1.2rem;
    cursor: pointer;
}

/* ============================================
   NAVIGATION
   ============================================ */
.main-nav {
    background: rgba(255,255,255,0.95);
    position: sticky;
    top: 80px;
    z-index: 999;
    box-shadow: var(--shadow);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.nav-list {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.nav-list li {
    list-style: none;
    position: relative;
}

.nav-list a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    padding: 12px 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    transition: var(--transition);
    position: relative;
    border-radius: 14px;
}

.nav-list a:hover,
.nav-list a.active {
    background: #dbeaf7;
    color: var(--primary-dark);
}

.nav-list a.active::after {
    content: none;
}

.nav-dropdown-toggle .fa-chevron-down {
    font-size: 0.7rem;
    margin-left: 2px;
}

.nav-dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 220px;
    border-radius: 14px;
    box-shadow: var(--shadow-hover);
    padding: 6px 0;
    z-index: 1000;
    border: 1px solid var(--border);
}

.nav-dropdown-menu li {
    list-style: none;
}

.nav-dropdown-menu a {
    color: var(--primary);
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    font-weight: 600;
}

.nav-dropdown-menu a:hover {
    background: #dbeaf7;
    color: var(--primary-dark);
}

.nav-dropdown:hover .nav-dropdown-menu {
    display: block;
}

.nav-dropdown.active > .nav-dropdown-toggle {
    background: #dbeaf7;
}

.btn-anuncie {
    background: var(--accent) !important;
    border-radius: var(--radius);
    margin-left: 10px;
}

.btn-anuncie:hover {
    background: var(--accent-hover) !important;
}

/* ============================================
   BREAKING NEWS
   ============================================ */
.breaking-news {
    display: flex;
    align-items: center;
    background: var(--white);
    border-radius: var(--radius-lg);
    margin: 20px 0;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

.breaking-label {
    background: var(--danger);
    color: var(--white);
    padding: 12px 20px;
    font-weight: 700;
    font-size: 0.85rem;
    white-space: nowrap;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.breaking-text {
    flex: 1;
    padding: 0 20px;
    font-weight: 500;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
    margin-bottom: 30px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 20px;
}

.hero-main {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.hero-main:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-2px);
}

.hero-image {
    position: relative;
    height: 350px;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.hero-main:hover .hero-image img {
    transform: scale(1.05);
}

.category-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--white);
}

.category-badge.cidade { background: var(--primary); }
.category-badge.saude { background: var(--brand-green); }
.category-badge.esporte { background: var(--secondary); }
.category-badge.educacao { background: var(--brand-sky); color: var(--primary); }
.category-badge.economia { background: var(--accent); color: var(--primary); }
.category-badge.policia { background: var(--danger); }
.category-badge.politica { background: var(--primary-dark); }
.category-badge.regiao { background: var(--secondary); }

.hero-content {
    padding: 25px;
}

.hero-content h1 {
    font-size: 1.6rem;
    line-height: 1.3;
    margin-bottom: 12px;
    color: var(--dark);
}

.hero-content p {
    color: var(--gray);
    margin-bottom: 15px;
}

.meta {
    display: flex;
    gap: 20px;
    font-size: 0.85rem;
    color: var(--gray);
}

.meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.hero-secondary {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.hero-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    transition: var(--transition);
    flex: 1;
}

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

.hero-card a {
    display: flex;
    height: 100%;
}

.hero-card img {
    width: 120px;
    height: 100%;
    object-fit: cover;
}

.hero-card-content {
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-card-content .category-badge {
    position: static;
    display: inline-block;
    width: fit-content;
    margin-bottom: 8px;
}

.hero-card-content h3 {
    font-size: 0.95rem;
    line-height: 1.4;
}

/* ============================================
   BANNER AD
   ============================================ */
.banner-ad {
    margin: 30px 0;
}

.banner-slider {
    margin: 20px 0 30px;
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    border: none;
    background: transparent;
    min-height: 280px;
}

.banner-slider-track {
    display: flex;
    transition: transform 0.6s ease;
    width: 100%;
    align-items: stretch;
    gap: 0;
}

.banner-slide {
    min-width: 100%;
    display: flex;
    justify-content: center;
    position: relative;
    min-height: 280px;
    background: transparent;
}

.banner-slide img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    min-height: 280px;
}

.banner-slide .ad-placeholder {
    min-height: 220px;
    width: 100%;
}

.banner-slide .banner-caption {
    position: absolute;
    left: 16px;
    bottom: 16px;
    background: rgba(11,43,87,0.88);
    color: var(--white);
    padding: 8px 14px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.85rem;
    box-shadow: 0 10px 20px rgba(11,43,87,0.25);
}

.banner-slider-dots {
    position: absolute;
    right: 14px;
    bottom: 14px;
    display: flex;
    gap: 8px;
    z-index: 2;
}

.banner-slider-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.85);
    border: 1px solid rgba(11,43,87,0.25);
    color: var(--primary);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    cursor: pointer;
    transition: var(--transition);
    z-index: 3;
}

.banner-slider-control:hover {
    background: var(--white);
    border-color: var(--accent);
}

.banner-slider-control.prev {
    left: 14px;
}

.banner-slider-control.next {
    right: 14px;
}

.banner-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.7);
    box-shadow: 0 0 0 1px rgba(11,43,87,0.25);
    cursor: pointer;
    transition: var(--transition);
}

.banner-dot.active {
    background: var(--accent);
    box-shadow: 0 0 0 2px rgba(11,43,87,0.25);
}

.banner-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 16px;
}

.banner-card {
    display: block;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.banner-card img {
    width: 100%;
    height: auto;
    display: block;
}

.banner-caption {
    padding: 12px 16px;
    font-weight: 600;
    color: var(--dark);
}

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

.ad-placeholder {
    background: linear-gradient(135deg, var(--brand-teal) 0%, var(--brand-sky) 100%);
    color: var(--white);
    padding: 25px;
    border-radius: var(--radius);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.ad-placeholder i {
    font-size: 2rem;
    opacity: 0.8;
}

.ad-placeholder span {
    font-weight: 600;
}

.ad-placeholder small {
    opacity: 0.7;
}

.ad-placeholder.vertical {
    padding: 60px 30px;
}

/* ============================================
   CONTENT GRID
   ============================================ */
.content-grid {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 30px;
}

/* Section Block */
.section-block {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--light-gray);
    position: relative;
}

.section-header::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 70px;
    height: 2px;
    background: var(--accent);
    border-radius: 2px;
}

.section-header h2 {
    font-size: 1.3rem;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-header h2 i {
    color: var(--accent);
}

.ver-mais {
    color: var(--accent-hover);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: var(--transition);
}

.ver-mais:hover {
    color: var(--accent);
}

/* News List */
.news-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.news-item {
    border-bottom: 1px solid var(--light-gray);
    padding-bottom: 20px;
}

.news-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.news-item a {
    display: flex;
    gap: 20px;
}

.news-item img {
    width: 150px;
    height: 100px;
    object-fit: cover;
    border-radius: var(--radius);
    flex-shrink: 0;
}

.news-content {
    flex: 1;
}

.news-content .category-badge {
    position: static;
    display: inline-block;
    margin-bottom: 8px;
}

.news-content h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    line-height: 1.4;
    transition: var(--transition);
}

.news-item:hover h3 {
    color: var(--primary);
}

.news-content p {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 8px;
}

/* Jobs Grid */
.jobs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.job-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 20px;
    transition: var(--transition);
    border: 1px solid var(--border);
}

.job-card:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
}

.job-card.featured {
    background: linear-gradient(135deg, #8ec3d559, #79b44233);
    border-color: var(--success);
}

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

.job-icon {
    width: 45px;
    height: 45px;
    background: var(--primary);
    color: var(--white);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.job-badge {
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
}

.job-badge.urgente {
    background: var(--danger);
    color: var(--white);
}

.job-badge.destaque {
    background: var(--success);
    color: var(--white);
}

.job-card h3 {
    font-size: 1rem;
    margin-bottom: 10px;
}

.job-card .company,
.job-card .salary {
    font-size: 0.85rem;
    color: var(--gray);
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.job-card .salary {
    color: var(--success);
    font-weight: 600;
}

.btn-job {
    display: inline-block;
    margin-top: 12px;
    padding: 8px 16px;
    background: linear-gradient(135deg, var(--accent), var(--accent-hover));
    color: var(--primary);
    border-radius: var(--radius);
    font-size: 0.85rem;
    font-weight: 500;
    transition: var(--transition);
    box-shadow: 0 12px 24px rgba(245,176,26,0.25);
}

.btn-job:hover {
    background: var(--accent-hover);
    color: var(--white);
}

/* Classifieds Grid */
.classifieds-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.classified-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid var(--border);
}

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

.classified-card img {
    width: 100%;
    height: 140px;
    object-fit: cover;
}

.classified-content {
    padding: 15px;
}

.classified-type {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.classified-type.imoveis {
    background: #3498db;
    color: var(--white);
}

.classified-type.veiculos {
    background: #e74c3c;
    color: var(--white);
}

.classified-type.servicos {
    background: #f39c12;
    color: var(--white);
}

.classified-content h3 {
    font-size: 0.95rem;
    margin-bottom: 8px;
}

.classified-content .price {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--success);
    margin-bottom: 12px;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: #25d366;
    color: var(--white);
    border-radius: var(--radius);
    font-size: 0.85rem;
    font-weight: 500;
    transition: var(--transition);
}

.btn-whatsapp:hover {
    background: #128c7e;
}

/* ============================================
   SIDEBAR
   ============================================ */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.sidebar-block {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 20px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

.sidebar-block .section-header {
    margin-bottom: 15px;
    padding-bottom: 12px;
}

.sidebar-block .section-header h2 {
    font-size: 1.1rem;
}

/* Guia Comercial Cards - Versão Melhorada */
.empresa-cards {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.empresa-card {
    display: flex;
    gap: 14px;
    padding: 14px;
    background: var(--white);
    border-radius: 12px;
    align-items: stretch;
    position: relative;
    border: 1px solid #e8eef3;
    transition: all 0.3s ease;
    overflow: hidden;
}

.empresa-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    border-color: var(--primary);
}

.empresa-card.premium {
    background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
    border: 2px solid #f59e0b;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.15);
}

.empresa-card.premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #f59e0b, #fbbf24);
}

.premium-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: var(--white);
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 6px rgba(245, 158, 11, 0.4);
    display: flex;
    align-items: center;
    gap: 3px;
}

.empresa-card-img {
    width: 72px;
    height: 72px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
    position: relative;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.empresa-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.empresa-card-content {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.empresa-card h3 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 4px;
    color: #1e293b;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.empresa-card .categoria {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.7rem;
    color: #64748b;
    background: #f1f5f9;
    padding: 3px 8px;
    border-radius: 20px;
    width: fit-content;
    margin-bottom: 8px;
}

.empresa-card .categoria i {
    font-size: 0.65rem;
    color: var(--primary);
}

.empresa-card-footer {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
}

.empresa-rating {
    display: flex;
    align-items: center;
    gap: 2px;
}

.empresa-rating i {
    font-size: 0.65rem;
    color: #fbbf24;
}

.empresa-rating i.empty {
    color: #e2e8f0;
}

.empresa-rating span {
    font-size: 0.7rem;
    color: #64748b;
    margin-left: 4px;
}

.btn-whatsapp-sm {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 12px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: var(--white);
    border-radius: 20px;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(37, 211, 102, 0.3);
    margin-left: auto;
}

.btn-whatsapp-sm:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    color: var(--white);
}

.btn-whatsapp-sm i {
    font-size: 0.85rem;
}

.btn-ver-guia {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
    padding: 14px 20px;
    background: linear-gradient(135deg, var(--accent), var(--accent-hover));
    color: var(--primary);
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.btn-ver-guia:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(245, 176, 26, 0.4);
    background: var(--accent-hover);
    color: var(--white);
}

.btn-ver-guia i {
    transition: transform 0.3s ease;
}

.btn-ver-guia:hover i {
    transform: translateX(4px);
}

/* Sidebar Ad */
.sidebar-ad {
    border-radius: var(--radius);
    overflow: hidden;
}

/* Eventos List */
.eventos-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.evento-item {
    display: flex;
    gap: 15px;
    padding: 12px;
    background: var(--light-gray);
    border-radius: var(--radius);
    transition: var(--transition);
}

.evento-item:hover {
    background: #e8f4f8;
}

.evento-data {
    width: 50px;
    text-align: center;
    background: var(--accent);
    color: var(--primary);
    border-radius: var(--radius);
    padding: 8px 5px;
}

.evento-data .dia {
    display: block;
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1;
}

.evento-data .mes {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
}

.evento-info h4 {
    font-size: 0.9rem;
    margin-bottom: 4px;
}

.evento-info p {
    font-size: 0.8rem;
    color: var(--gray);
}

.btn-ver-mais {
    display: block;
    text-align: center;
    margin-top: 15px;
    padding: 10px;
    background: var(--accent);
    color: var(--primary);
    border-radius: var(--radius);
    font-weight: 600;
    transition: var(--transition);
}

.btn-ver-mais:hover {
    background: var(--accent-hover);
    color: var(--white);
}

/* Social Block */
.social-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    color: var(--white);
    border-radius: var(--radius);
    font-weight: 500;
    font-size: 0.85rem;
    transition: var(--transition);
}

.social-btn.facebook { background: #1877f2; }
.social-btn.instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.social-btn.whatsapp { background: #25d366; }
.social-btn.youtube { background: #ff0000; }

.social-btn:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

/* Newsletter Block */
.newsletter-block {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark)) !important;
    color: var(--white);
    text-align: center;
}

.newsletter-block h3 {
    margin-bottom: 8px;
}

.newsletter-block p {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: 15px;
}

.newsletter-form {
    display: flex;
    gap: 8px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: var(--radius);
    font-size: 0.9rem;
}

.newsletter-form button {
    padding: 12px 20px;
    background: var(--accent);
    color: var(--white);
    border: none;
    border-radius: var(--radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background: var(--accent-hover);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: linear-gradient(180deg, #f4f8fd 0%, #eef3fb 60%, #f8f5ef 100%);
    color: var(--dark);
    padding: 50px 0 0;
    margin-top: 50px;
    border-top: 1px solid var(--border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.footer-logo i {
    font-size: 2rem;
    color: var(--accent);
}

.footer-col p {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(29,111,134,0.12);
    color: var(--primary);
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--accent);
    color: var(--primary);
    transform: translateY(-3px);
}

.footer-col h4 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 44px;
    height: 2px;
    background: var(--accent);
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul a {
    color: var(--secondary);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-col ul a:hover {
    color: var(--primary-dark);
    padding-left: 5px;
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gray);
}

.contact-info i {
    color: var(--accent);
}

.btn-anuncie-footer {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
    padding: 12px 25px;
    background: linear-gradient(135deg, var(--accent), var(--accent-hover));
    color: var(--primary);
    border-radius: var(--radius);
    font-weight: 600;
    transition: var(--transition);
}

.btn-anuncie-footer:hover {
    background: var(--accent-hover);
    color: var(--white);
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;
    border-top: 1px solid var(--border);
    color: var(--gray);
    font-size: 0.9rem;
}

/* ============================================
   FLOATING ELEMENTS
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: var(--transition);
    animation: bounce 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 1000;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
    .content-grid {
        grid-template-columns: 1fr;
    }

    .sidebar {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .sidebar-block {
        flex: 1;
        min-width: 300px;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .top-bar-left {
        display: none;
    }

    .header-content {
        flex-wrap: wrap;
    }

    .search-box {
        order: 3;
        max-width: 100%;
        flex: 1 0 100%;
        margin-top: 15px;
    }

    .menu-toggle {
        display: block;
    }

    .main-nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: var(--primary);
        padding-top: 60px;
        transition: var(--transition);
        z-index: 9999;
    }

    .main-nav.active {
        left: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: 0;
    }

    .nav-list a {
        border-bottom: 1px solid rgba(255,255,255,0.08);
        border-radius: 0;
        color: var(--white);
    }

    .nav-dropdown-menu {
        position: static;
        background: transparent;
        box-shadow: none;
        padding: 0;
        display: none;
        border: none;
    }

    .nav-dropdown.open .nav-dropdown-menu {
        display: block;
    }

    .nav-dropdown-menu a {
        color: var(--white);
        padding-left: 40px;
    }

    .nav-dropdown-menu a.active {
        background: rgba(255,255,255,0.1);
    }

    .banner-slider {
        margin: 15px 0 25px;
    }

    .banner-slide .banner-caption {
        font-size: 0.75rem;
        padding: 6px 10px;
    }

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

    .hero-secondary {
        flex-direction: row;
        overflow-x: auto;
        padding-bottom: 10px;
    }

    .hero-card {
        min-width: 280px;
    }

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

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

    .sidebar {
        flex-direction: column;
    }

    .sidebar-block {
        min-width: auto;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-col h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-social {
        justify-content: center;
    }

    .contact-info li {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .logo-main {
        font-size: 1.1rem;
    }

    .logo-sub {
        font-size: 0.75rem;
    }

    .hero-content h1 {
        font-size: 1.3rem;
    }

    .section-header {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }

    .news-item a {
        flex-direction: column;
    }

    .news-item img {
        width: 100%;
        height: 180px;
    }

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

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

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .back-to-top {
        bottom: 80px;
        right: 20px;
    }
}

/* ============================================
   PAGES STYLES (Shared)
   ============================================ */
.page-header {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
    padding: 40px 0;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}

.page-header::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 18% 30%, rgba(245,176,26,0.4), transparent 40%);
    pointer-events: none;
}

.page-header .container {
    position: relative;
    z-index: 1;
}

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

.breadcrumb {
    display: flex;
    gap: 10px;
    font-size: 0.9rem;
    opacity: 0.9;
}

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

/* Category Filter */
.category-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 25px;
}

.filter-btn {
    padding: 8px 16px;
    background: var(--light-gray);
    border: none;
    border-radius: 50px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--accent);
    color: var(--primary);
}

/* Modern News Filters */
.news-filters-modern {
    background: var(--white);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 24px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    border: 1px solid #e9ecef;
}

.news-filters-modern h3 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #666;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
}

.news-filters-modern h3 i {
    color: var(--primary);
}

.date-filter-section {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e9ecef;
}

.date-filter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
}

.date-filter-header h3 {
    margin-bottom: 0;
}

.clear-date-filter {
    background: #fee2e2;
    color: #dc2626;
    border: none;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.8rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: all 0.2s;
}

.clear-date-filter:hover {
    background: #dc2626;
    color: #fff;
}

/* Year Selector */
.year-selector {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.year-btn {
    padding: 10px 18px;
    background: #f1f5f9;
    border: 2px solid transparent;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    color: #475569;
}

.year-btn:hover {
    background: #e2e8f0;
    border-color: var(--primary);
}

.year-btn.active {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

/* Month Selector */
.month-selector {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px dashed #e2e8f0;
}

.month-btn {
    padding: 8px 14px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.2s;
    color: #64748b;
}

.month-btn:hover {
    background: #e2e8f0;
    color: var(--primary);
}

.month-btn.active {
    background: var(--accent);
    color: var(--primary);
    border-color: var(--accent);
    font-weight: 600;
}

.month-btn[data-month=""] {
    background: #f1f5f9;
    font-weight: 500;
}

.month-btn[data-month=""].active {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

/* Category Filter Section */
.category-filter-section h3 {
    margin-bottom: 12px;
}

.category-filter-section .category-filter {
    margin-bottom: 0;
}

/* Active Filter Indicator */
.active-filter-indicator {
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    border: 1px solid #93c5fd;
    border-radius: 10px;
    padding: 12px 18px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    color: #1e40af;
}

.active-filter-indicator i {
    color: #3b82f6;
}

#filterDescription {
    font-weight: 500;
}

#filterResultCount {
    margin-left: auto;
    background: #3b82f6;
    color: #fff;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
    .news-filters-modern {
        padding: 16px;
    }

    .year-selector {
        gap: 6px;
    }

    .year-btn {
        padding: 8px 14px;
        font-size: 0.85rem;
    }

    .month-selector {
        gap: 6px;
    }

    .month-btn {
        padding: 6px 10px;
        font-size: 0.8rem;
    }

    .date-filter-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 30px;
}

.pagination a,
.pagination span {
    padding: 10px 15px;
    background: var(--white);
    border-radius: var(--radius);
    font-weight: 500;
    transition: var(--transition);
}

.pagination a:hover,
.pagination span.active {
    background: var(--accent);
    color: var(--primary);
}

/* Overlay for mobile menu */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    opacity: 0;
    visibility: hidden;
    z-index: 9998;
    transition: var(--transition);
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}


/* Logo Customizada - Portal Indianópolis */
.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.logo:hover {
    opacity: 0.85;
}

.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

@media (max-width: 768px) {
    .logo-img {
        height: 40px;
    }
    .logo-text {
        display: none;
    }
}

.logo-icon {
    display: none;
}

/* ============================================
   SEÇÃO DE COMENTÁRIOS
   ============================================ */
.comments-section {
    margin-top: 30px;
    padding: 0;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.comments-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    background: linear-gradient(135deg, #1a365d, #2c5282);
    color: #fff;
}
.comments-header h2 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
}
.comments-count {
    background: rgba(255,255,255,0.2);
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
}

/* Form de comentário */
.comment-form-wrapper {
    padding: 25px;
    border-bottom: 1px solid #e2e8f0;
    background: #f7fafc;
}
.comment-form-wrapper h3 {
    margin: 0 0 18px 0;
    font-size: 16px;
    color: #1a365d;
    display: flex;
    align-items: center;
    gap: 8px;
}
.comment-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 12px;
}
@media (max-width: 600px) {
    .comment-form-row { grid-template-columns: 1fr; }
}
.comment-form-group {
    position: relative;
}
.comment-form-group input,
.comment-form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-family: inherit;
    font-size: 14px;
    transition: border-color 0.2s, box-shadow 0.2s;
    background: #fff;
    box-sizing: border-box;
}
.comment-form-group input:focus,
.comment-form-group textarea:focus {
    border-color: #3182ce;
    box-shadow: 0 0 0 3px rgba(49,130,206,0.1);
    outline: none;
}
.comment-form-group textarea {
    resize: vertical;
    min-height: 100px;
}
.comment-char-count {
    position: absolute;
    bottom: 8px;
    right: 12px;
    font-size: 11px;
    color: #a0aec0;
}
.comment-form-info {
    font-size: 13px;
    color: #718096;
    margin: 12px 0;
    display: flex;
    align-items: center;
    gap: 6px;
}
.comment-form-info i { color: #3182ce; }
.comment-submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: linear-gradient(135deg, #1a365d, #2c5282);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}
.comment-submit-btn:hover {
    background: linear-gradient(135deg, #2c5282, #3182ce);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(26,54,93,0.3);
}
.comment-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Lista de comentários */
.comments-list {
    padding: 20px 25px;
}
.comment-item {
    display: flex;
    gap: 14px;
    padding: 18px 0;
    border-bottom: 1px solid #edf2f7;
}
.comment-item:last-child { border-bottom: none; }
.comment-avatar-public {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1a365d, #3182ce);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 17px;
    flex-shrink: 0;
}
.comment-body {
    flex: 1;
    min-width: 0;
}
.comment-meta-public {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
    flex-wrap: wrap;
    gap: 4px;
}
.comment-meta-public strong {
    font-size: 14px;
    color: #1a202c;
}
.comment-meta-public span {
    font-size: 12px;
    color: #a0aec0;
}
.comment-edited {
    font-style: italic;
    color: #cbd5e0 !important;
    font-size: 11px !important;
}
.comment-text-public {
    color: #4a5568;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
    word-wrap: break-word;
}
.no-comments {
    text-align: center;
    color: #a0aec0;
    padding: 30px 0;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.no-comments i { font-size: 20px; }

/* ============================================
   EMPRESA DETAIL PAGE
   ============================================ */
.empresa-detail {}

.empresa-detail-header {
    display: flex;
    gap: 24px;
    margin-bottom: 24px;
    align-items: flex-start;
}

.empresa-detail-img {
    width: 120px;
    height: 120px;
    border-radius: 16px;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.12);
}

.empresa-detail-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.empresa-detail-title {
    flex: 1;
}

.empresa-detail-title h1 {
    font-size: 1.6rem;
    color: var(--dark);
    margin-bottom: 8px;
    line-height: 1.3;
}

.empresa-detail-badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.empresa-categoria-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    background: var(--light-gray);
    color: var(--primary);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.empresa-plan-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.empresa-plan-badge.premium {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: #fff;
}

.empresa-plan-badge.destaque {
    background: linear-gradient(135deg, var(--brand-green), #5a8a30);
    color: #fff;
}

.empresa-detail-meta {
    display: flex;
    gap: 15px;
    font-size: 0.85rem;
    color: var(--gray);
}

.empresa-detail-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.empresa-detail-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 24px;
    padding: 18px;
    background: var(--light-gray);
    border-radius: 12px;
}

.btn-empresa-action {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    color: #fff;
}

.btn-empresa-action.whatsapp {
    background: linear-gradient(135deg, #25d366, #128c7e);
}
.btn-empresa-action.whatsapp:hover {
    background: #128c7e;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37,211,102,0.3);
    color: #fff;
}

.btn-empresa-action.telefone {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
}
.btn-empresa-action.telefone:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(11,43,87,0.3);
    color: #fff;
}

.btn-empresa-action.site {
    background: linear-gradient(135deg, var(--accent), var(--accent-hover));
    color: var(--primary);
}
.btn-empresa-action.site:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(245,176,26,0.3);
    color: var(--primary);
}

.btn-empresa-action.instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}
.btn-empresa-action.instagram:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(225,48,108,0.3);
    color: #fff;
}

.empresa-detail-info {
    margin-bottom: 24px;
}

.empresa-detail-info h3,
.empresa-detail-descricao h3 {
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.empresa-detail-info h3 i,
.empresa-detail-descricao h3 i {
    color: var(--accent);
}

.empresa-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 14px;
}

.empresa-info-item {
    display: flex;
    gap: 12px;
    padding: 12px 16px;
    background: var(--light-gray);
    border-radius: 10px;
    align-items: flex-start;
}

.empresa-info-item > i {
    color: var(--primary);
    margin-top: 3px;
    width: 18px;
    text-align: center;
    flex-shrink: 0;
}

.empresa-info-item strong {
    display: block;
    font-size: 0.75rem;
    color: var(--gray);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    margin-bottom: 2px;
}

.empresa-info-item span,
.empresa-info-item a {
    font-size: 0.9rem;
    color: var(--dark);
}

.empresa-info-item a {
    color: var(--secondary);
    transition: color 0.2s;
}

.empresa-info-item a:hover {
    color: var(--primary);
    text-decoration: underline;
}

/* Horário de Funcionamento — Estilo Google */
.horario-google {
    margin-bottom: 24px;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
}
.horario-google-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
}
.horario-google-toggle {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    cursor: pointer;
    user-select: none;
    transition: background 0.15s;
}
.horario-google-toggle:hover {
    background: #f7fafc;
}
.horario-google-icon {
    color: #1a365d;
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
    flex-shrink: 0;
}
.horario-google-resumo {
    flex: 1;
    font-size: 0.9rem;
    line-height: 1.4;
}
.hg-aberto {
    color: #16a34a;
    font-weight: 700;
}
.hg-fechado {
    color: #dc2626;
    font-weight: 700;
}
.hg-detalhe {
    color: #64748b;
    font-weight: 400;
}
.horario-google-arrow {
    color: #94a3b8;
    font-size: 0.7rem;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}
.horario-google.expanded .horario-google-arrow {
    transform: rotate(180deg);
}
.horario-google-table {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}
.horario-google.expanded .horario-google-table {
    max-height: 400px;
}
.horario-google-table table {
    width: 100%;
    border-collapse: collapse;
    border-top: 1px solid #f1f5f9;
}
.horario-google-table tr {
    border-bottom: 1px solid #f1f5f9;
}
.horario-google-table tr:last-child {
    border-bottom: none;
}
.horario-google-table td {
    padding: 10px 18px;
    font-size: 0.88rem;
    color: #475569;
}
.horario-google-table .hg-dia {
    width: 45%;
    color: #334155;
}
.horario-google-table .hg-horas {
    color: #475569;
    font-variant-numeric: tabular-nums;
}
.horario-google-table .hg-fechado-cell {
    color: #dc2626;
    font-weight: 500;
}
.horario-google-table .hg-bold {
    font-weight: 700 !important;
}
.horario-google-table .hg-row-hoje {
    background: #fefce8;
}
.horario-google-table .hg-row-hoje .hg-dia {
    color: #1a365d;
}
.horario-google-table .hg-row-hoje .hg-horas {
    color: #16a34a;
}

.empresa-detail-descricao {
    padding-top: 20px;
    border-top: 1px solid var(--light-gray);
}

.empresa-detail-descricao p {
    color: #4a5568;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 12px;
}

/* Empresa card links */
.empresa-card-link,
.empresa-full-link,
.empresa-mini-link {
    display: flex;
    gap: inherit;
    color: inherit;
    text-decoration: none;
    flex: 1;
    min-width: 0;
}

.empresa-card-link {
    align-items: stretch;
}

.empresa-full-link {
    display: block;
}

.empresa-mini-link {
    display: block;
}

.empresa-card-mini {
    position: relative;
}

.empresa-card-mini .mini-whatsapp {
    position: absolute;
    top: 8px;
    right: 8px;
    z-index: 2;
}

/* ============================================
   AVALIAÇÕES / REVIEWS
   ============================================ */
.avaliacoes-section {
    margin-top: 30px;
    padding: 0;
    overflow: hidden;
}

.avaliacoes-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    background: linear-gradient(135deg, #f5b01a, #e88c1a);
    color: #fff;
}

.avaliacoes-header h2 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
}

.avaliacoes-resumo {
    padding: 20px 25px;
    border-bottom: 1px solid #e2e8f0;
}

.avaliacoes-resumo-content {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.avaliacoes-big-number {
    text-align: center;
    min-width: 120px;
}

.big-nota {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.big-stars {
    margin: 8px 0;
}

.big-stars i {
    color: #fbbf24;
    font-size: 1.1rem;
}

.big-total {
    font-size: 0.85rem;
    color: var(--gray);
}

.avaliacoes-distribuicao {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.dist-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.dist-label {
    font-size: 0.8rem;
    color: var(--gray);
    min-width: 45px;
    display: flex;
    align-items: center;
    gap: 3px;
    white-space: nowrap;
}

.dist-label i {
    color: #fbbf24;
    font-size: 0.7rem;
}

.dist-bar {
    flex: 1;
    height: 10px;
    background: #edf2f7;
    border-radius: 5px;
    overflow: hidden;
}

.dist-fill {
    height: 100%;
    background: linear-gradient(90deg, #fbbf24, #f59e0b);
    border-radius: 5px;
    transition: width 0.5s ease;
}

.dist-count {
    font-size: 0.8rem;
    color: var(--gray);
    min-width: 25px;
    text-align: right;
}

.avaliacoes-list {
    padding: 0 25px;
}

.avaliacao-item {
    display: flex;
    gap: 14px;
    padding: 18px 0;
    border-bottom: 1px solid #edf2f7;
}

.avaliacao-item:last-child {
    border-bottom: none;
}

.avaliacao-stars {
    margin-bottom: 6px;
}

.avaliacao-stars i {
    color: #fbbf24;
    font-size: 0.85rem;
}

.avaliacao-stars i.far {
    color: #e2e8f0;
}

/* Star Rating Input */
.star-rating-input {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    padding: 12px 16px;
    background: #fffbeb;
    border: 2px solid #fde68a;
    border-radius: 10px;
}

.star-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #92400e;
}

.stars-select {
    display: flex;
    gap: 6px;
}

.stars-select i {
    font-size: 1.6rem;
    color: #fbbf24;
    cursor: pointer;
    transition: transform 0.15s;
}

.stars-select i:hover {
    transform: scale(1.2);
}

.stars-select i.far {
    color: #d1d5db;
}

/* Avaliação form wrapper */
.avaliacao-form-wrapper {
    padding: 25px;
    border-top: 1px solid #e2e8f0;
    background: #fffbeb;
}

.avaliacao-form-wrapper h3 {
    margin: 0 0 18px 0;
    font-size: 16px;
    color: #92400e;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* ============================================
   CADASTRO EMPRESA PAGE
   ============================================ */
.cadastro-empresa-form {
    max-width: 700px;
}

.cadastro-empresa-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 14px;
}

.cadastro-empresa-form .form-group {
    margin-bottom: 14px;
}

.cadastro-empresa-form label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 6px;
}

.cadastro-empresa-form input,
.cadastro-empresa-form select,
.cadastro-empresa-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-family: inherit;
    font-size: 14px;
    transition: border-color 0.2s, box-shadow 0.2s;
    background: #fff;
}

.cadastro-empresa-form input:focus,
.cadastro-empresa-form select:focus,
.cadastro-empresa-form textarea:focus {
    border-color: #3182ce;
    box-shadow: 0 0 0 3px rgba(49,130,206,0.1);
    outline: none;
}

.cadastro-empresa-form textarea {
    resize: vertical;
    min-height: 100px;
}

@media (max-width: 600px) {
    .empresa-detail-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .empresa-detail-badges {
        justify-content: center;
    }
    .empresa-detail-meta {
        justify-content: center;
    }
    .empresa-detail-actions {
        justify-content: center;
    }
    .empresa-info-grid {
        grid-template-columns: 1fr;
    }
    .avaliacoes-resumo-content {
        flex-direction: column;
        align-items: center;
    }
    .star-rating-input {
        flex-direction: column;
        text-align: center;
    }
    .cadastro-empresa-form .form-row {
        grid-template-columns: 1fr;
    }
}
