@import "dash/dash.css";


body {
    line-height: 1.6;
    color: hsl(215 20% 15%);
    background: #fff;
    -webkit-text-size-adjust: 100%;
    font-family: ui-sans-serif,system-ui,sans-serif,"Apple Color Emoji","Segoe UI Emoji",Segoe UI Symbol,"Noto Color Emoji";
    font-feature-settings: normal;
    font-variation-settings: normal;
    -webkit-tap-highlight-color: transparent;
}

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

.container {
    max-width: 1400px;
    width: 90%;
    margin: 0 auto;
}

/* HEADER */
.header_view_main {
    background: #fff;
    border-bottom: 1px solid #e5e7eb;
    padding: 12px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header_view_container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    gap: 32px;
}

/* Logo */
.header_view_logo {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}

.header_view_logo_icon {
    width: 40px;
    height: 40px;
    background-image: linear-gradient(135deg, hsl(142 70% 45%), hsl(210 100% 55%));
    color: #fff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.header_view_logo_text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.header_view_logo_title {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
}

.header_view_logo_subtitle {
    font-size: 14px;
    font-weight: 700;
    color: #10b981;
}

/* Search */
.header_view_search {
    flex: 1;
    max-width: 400px;
    position: relative;
}

.header_view_search_icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
    pointer-events: none;
}

.header_view_search_input {
    width: 100%;
    padding: 10px 16px 10px 44px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-size: 14px;
    outline: none;
    transition: all 0.2s;
    background: #f9fafb;
}

.header_view_search_input:focus {
    border-color: #10b981;
    background: #fff;
}

.header_view_search_input::placeholder {
    color: #9ca3af;
}

/* Navigation */
.header_view_nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.header_view_nav_link {
    color: #4b5563;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.2s;
    white-space: nowrap;
}

.header_view_nav_link:hover {
    color: #10b981;
}

/* Actions */
.header_view_actions {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-left: auto;
}

.header_view_user {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4b5563;
    transition: all 0.2s;
    border-radius: 8px;
}

.header_view_user:hover {
    background: #f3f4f6;
    color: #10b981;
}

.header_view_btn_entrar {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    color: #4b5563;
    background: transparent;
    border-radius: 8px;
    border: 1px solid #E1E7EF;
    transition: all 0.2s;
    white-space: nowrap;
}

.header_view_btn_entrar:hover {
    background: #f3f4f6;
    color: #10b981;
}

.header_view_btn_anunciar {
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    background: #10b981;
    border-radius: 8px;
    transition: all 0.2s;
    white-space: nowrap;
}

.header_view_btn_anunciar:hover {
    background: #059669;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

/* ==================== NOTIFICAÇÕES ==================== */
.header_view_notifications {
    position: relative;
}

.header_view_notifications_btn {
    position: relative;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: background 0.2s;
    color: #1e293b;
}

.header_view_notifications_btn:hover {
    background: #f1f5f9;
}

.header_view_notifications_badge {
    position: absolute;
    top: 4px;
    right: 4px;
    background: #ef4444;
    color: white;
    font-size: 10px;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 10px;
    min-width: 18px;
    text-align: center;
}

.header_view_notifications_dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    width: 380px;
    max-height: 500px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    display: none;
    flex-direction: column;
    z-index: 1000;
    overflow: hidden;
}

.header_view_notifications_dropdown.active {
    display: flex;
}

.header_view_notifications_header {
    padding: 16px 20px;
    border-bottom: 1px solid #f1f5f9;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header_view_notifications_header h4 {
    font-size: 16px;
    font-weight: 600;
    color: #1e293b;
}

.header_view_notifications_mark_all {
    font-size: 12px;
    color: #3b82f6;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 4px;
}

.header_view_notifications_mark_all:hover {
    background: #eff6ff;
}

.header_view_notifications_list {
    flex: 1;
    overflow-y: auto;
    max-height: 400px;
}

.header_view_notifications_loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px;
    color: #94a3b8;
}

.header_view_notifications_footer {
    padding: 12px 20px;
    border-top: 1px solid #f1f5f9;
    text-align: center;
}

.header_view_notifications_footer a {
    color: #3b82f6;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
}

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

/* Item de notificação */
.notification_item {
    padding: 16px 20px;
    border-bottom: 1px solid #f1f5f9;
    cursor: pointer;
    transition: background 0.2s;
    display: flex;
    gap: 12px;
}

.notification_item:hover {
    background: #f8fafc;
}

.notification_item.unread {
    background: #eff6ff;
}

.notification_item_icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: #e0f2fe;
    color: #0284c7;
}

.notification_item_content {
    flex: 1;
}

.notification_item_title {
    font-size: 14px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 4px;
}

.notification_item_message {
    font-size: 13px;
    color: #64748b;
    line-height: 1.4;
}

.notification_item_time {
    font-size: 11px;
    color: #94a3b8;
    margin-top: 4px;
}

/* ==================== MENU DO USUÁRIO ==================== */
.header_view_user_menu {
    position: relative;
}

.header_view_user_btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: 1px solid #e2e8f0;
    padding: 6px 12px 6px 6px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.2s;
}

.header_view_user_btn:hover {
    background: #f8fafc;
    border-color: #cbd5e1;
}

.header_view_user_avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, #21b87e 0%, #1a92ef 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
}

.header_view_user_name {
    font-size: 14px;
    font-weight: 500;
    color: #1e293b;
}

.header_view_user_dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    width: 280px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    display: none;
    flex-direction: column;
    z-index: 1000;
    overflow: hidden;
}

.header_view_user_dropdown.active {
    display: flex;
}

.header_view_user_dropdown_header {
    padding: 20px;
    border-bottom: 1px solid #f1f5f9;
    display: flex;
    align-items: center;
    gap: 12px;
}

.header_view_user_dropdown_avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 18px;
    flex-shrink: 0;
}

.header_view_user_dropdown_info {
    flex: 1;
    min-width: 0;
}

.header_view_user_dropdown_info strong {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #1e293b;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.header_view_user_dropdown_info span {
    display: block;
    font-size: 12px;
    color: #64748b;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.header_view_user_dropdown_menu {
    padding: 8px;
}

.header_view_user_dropdown_item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 12px;
    border-radius: 8px;
    color: #1e293b;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: background 0.2s;
}

.header_view_user_dropdown_item:hover {
    background: #f8fafc;
}

.header_view_user_dropdown_item_danger {
    color: #ef4444;
}

.header_view_user_dropdown_item_danger:hover {
    background: #fef2f2;
}

.header_view_user_dropdown_divider {
    height: 1px;
    background: #f1f5f9;
    margin: 8px 0;
}

/* Spinner */
.spinner {
    animation: spin 1s linear infinite;
}

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


/* RESPONSIVIDADE */
@media (max-width: 1200px) {
    .header_view_container {
        gap: 20px;
    }
    
    .header_view_nav {
        gap: 20px;
    }
}

@media (max-width: 1024px) {
    .header_view_nav {
        display: none;
    }
    
    .header_view_search {
        max-width: 300px;
    }
}

@media (max-width: 768px) {
    .header_view_container {
        flex-wrap: wrap;
        gap: 12px;
    }
    
    .header_view_search {
        order: 3;
        flex-basis: 100%;
        max-width: 100%;
    }
    
    .header_view_user {
        display: none;
    }
}

@media (max-width: 480px) {
    .header_view_logo_text {
        display: none;
    }
    
    .header_view_btn_entrar {
        padding: 8px 16px;
        font-size: 13px;
    }
    
    .header_view_btn_anunciar {
        padding: 8px 16px;
        font-size: 13px;
    }
}


/******** HERO **********/
/* HERO SECTION */
.section_home_view_hero {
    background-image: linear-gradient(135deg, hsl(142 70% 45% / 0.85), hsl(210 100% 55% / 0.85)), url('../../assets/images/hero.jpg');
    padding: 80px 24px 100px;
    position: relative;
    overflow: hidden;
}

.section_home_view_hero_container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

/* Título */
.section_home_view_hero_title {
    font-size: 56px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Subtítulo */
.section_home_view_hero_subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 48px;
    font-weight: 400;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}

/* Barra de Busca */
.section_home_view_hero_search {
    background: #ffffff;
    padding: 8px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 8px;
    max-width: 900px;
    margin: 0 auto 80px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.section_home_view_hero_search_input_wrapper {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
}

.section_home_view_hero_search_icon {
    position: absolute;
    left: 20px;
    color: #9ca3af;
    pointer-events: none;
}

.section_home_view_hero_search_input {
    width: 100%;
    border: none;
    padding: 14px 20px 14px 50px;
    font-size: 15px;
    outline: none;
    background: transparent;
    color: #1a1a1a;
}

.section_home_view_hero_search_input::placeholder {
    color: #9ca3af;
}

.section_home_view_hero_search_location_wrapper {
    position: relative;
    display: flex;
    align-items: center;
    padding: 0 16px;
    border-left: 1px solid #e5e7eb;
}

.section_home_view_hero_search_location_icon {
    color: #9ca3af;
    margin-right: 8px;
}

.section_home_view_hero_search_select {
    border: none;
    padding: 14px 32px 14px 0;
    font-size: 15px;
    outline: none;
    background: transparent;
    cursor: pointer;
    color: #1a1a1a;
    font-weight: 500;
    appearance: none;
    min-width: 150px;
}

.section_home_view_hero_search_select_arrow {
    position: absolute;
    right: 16px;
    color: #9ca3af;
    pointer-events: none;
}

.section_home_view_hero_search_btn {
    background: #10b981;
    color: #ffffff;
    border: none;
    padding: 14px 40px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}

.section_home_view_hero_search_btn:hover {
    background: #059669;
    transform: scale(1.02);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
}

/* Estatísticas */
.section_home_view_hero_stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 120px;
}

.section_home_view_hero_stats_item {
    text-align: center;
}

.section_home_view_hero_stats_number {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.section_home_view_hero_stats_label {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}

/* RESPONSIVIDADE */
@media (max-width: 1024px) {
    .section_home_view_hero_title {
        font-size: 44px;
    }
    
    .section_home_view_hero_stats {
        gap: 60px;
    }
}

@media (max-width: 768px) {
    .section_home_view_hero {
        padding: 60px 20px 80px;
    }
    
    .section_home_view_hero_title {
        font-size: 36px;
    }
    
    .section_home_view_hero_subtitle {
        font-size: 18px;
    }
    
    .section_home_view_hero_search {
        flex-direction: column;
        border-radius: 16px;
        padding: 12px;
    }
    
    .section_home_view_hero_search_input_wrapper {
        width: 100%;
    }
    
    .section_home_view_hero_search_location_wrapper {
        width: 100%;
        border-left: none;
        border-top: 1px solid #e5e7eb;
        padding: 12px 16px;
    }
    
    .section_home_view_hero_search_btn {
        width: 100%;
        border-radius: 12px;
    }
    
    .section_home_view_hero_stats {
        flex-direction: column;
        gap: 40px;
    }
    
    .section_home_view_hero_stats_number {
        font-size: 40px;
    }
}

@media (max-width: 480px) {
    .section_home_view_hero_title {
        font-size: 28px;
    }
    
    .section_home_view_hero_subtitle {
        font-size: 16px;
    }
    
    .section_home_view_hero_stats_number {
        font-size: 36px;
    }
    
    .section_home_view_hero_stats_label {
        font-size: 14px;
    }
}


        /* ==================== DROPDOWN DE SUGESTÕES ==================== */
.hero_search_suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-top: none;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 100;
    max-height: 300px;
    overflow-y: auto;
}

.hero_search_suggestions_header {
    padding: 12px 16px;
    border-bottom: 1px solid #e5e7eb;
    background: #f9fafb;
}

.hero_search_suggestions_title {
    font-size: 12px;
    font-weight: 600;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero_search_suggestions_list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hero_search_suggestions_list li {
    padding: 12px 16px;
    border-bottom: 1px solid #f3f4f6;
    cursor: pointer;
    transition: background 0.2s ease;
}

.hero_search_suggestions_list li:hover {
    background: #f3f4f6;
}

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


/*********** CATEGORY HOME *******************/
/* CATEGORIAS SECTION */
.section_home_view_categorias {
    padding: 96px 24px;
    background: #ffffff;
}

.section_home_view_categorias_container {
    max-width: 1280px;
    margin: 0 auto;
}

/* Título e Subtítulo */
.section_home_view_categorias_title {
    font-size: 40px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 16px;
    color: #1f2937;
}

.section_home_view_categorias_subtitle {
    text-align: center;
    color: #6b7280;
    margin-bottom: 64px;
    font-size: 18px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Grid de Categorias */
.section_home_view_categorias_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 24px;
    margin-bottom: 48px;
}

/* Card de Categoria */
.section_home_view_categorias_card {
    background: #ffffff;
    padding: 32px 24px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
}

.section_home_view_categorias_card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
    border-color: #10b981;
}

/* Ícone */
.section_home_view_categorias_icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #10b981 0%, #06b6d4 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.section_home_view_categorias_icon svg {
    color: #ffffff;
}

.section_home_view_categorias_card:hover .section_home_view_categorias_icon {
    transform: scale(1.1);
    box-shadow: 0 8px 16px rgba(16, 185, 129, 0.3);
}

/* Título do Card */
.section_home_view_categorias_card_title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1f2937;
}

/* Contador */
.section_home_view_categorias_card_count {
    color: #9ca3af;
    font-size: 14px;
    font-weight: 500;
}

/* Botão Ver Todas */
.section_home_view_categorias_btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    padding: 14px 32px;
    background: transparent;
    color: #10b981;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    display: block;
    text-align: center;
    max-width: fit-content;
}

.section_home_view_categorias_btn:hover {
    color: #059669;
    transform: translateX(4px);
}

/* RESPONSIVIDADE */
@media (max-width: 1024px) {
    .section_home_view_categorias_grid {
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .section_home_view_categorias {
        padding: 64px 20px;
    }
    
    .section_home_view_categorias_title {
        font-size: 32px;
    }
    
    .section_home_view_categorias_subtitle {
        font-size: 16px;
        margin-bottom: 48px;
    }
    
    .section_home_view_categorias_grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .section_home_view_categorias_card {
        padding: 24px 16px;
    }
    
    .section_home_view_categorias_icon {
        width: 44px;
        height: 44px;
        margin-bottom: 16px;
    }
}

@media (max-width: 480px) {
    .section_home_view_categorias_title {
        font-size: 28px;
    }
    
    .section_home_view_categorias_grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .section_home_view_categorias_card {
        padding: 20px 12px;
    }
    
    .section_home_view_categorias_card_title {
        font-size: 14px;
    }
    
    .section_home_view_categorias_card_count {
        font-size: 13px;
    }
}


/* FEATURED COMPANIES SECTION */
.section_home_view_featured_companies {
    padding: 96px 24px;
    background: #f9fafb;
}

.section_home_view_featured_companies_container {
    max-width: 1400px;
    margin: 0 auto;
}

/* Header */
.section_home_view_featured_companies_header {
    text-align: center;
    margin-bottom: 48px;
}

.section_home_view_featured_companies_title {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1f2937;
}

.section_home_view_featured_companies_subtitle {
    color: #6b7280;
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ✅ Container com botões nas laterais */
.featured-companies-swiper-container {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
}

/* ✅ Botões SEMPRE VISÍVEIS nas laterais */
.swiper-button-prev-custom,
.swiper-button-next-custom {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 56px;
    height: 56px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    opacity: 1; /* ✅ Sempre visível */
    visibility: visible; /* ✅ Sempre visível */
}

.swiper-button-prev-custom {
    left: -28px; /* Metade do botão para fora */
}

.swiper-button-next-custom {
    right: -28px; /* Metade do botão para fora */
}

.swiper-button-prev-custom:hover,
.swiper-button-next-custom:hover {
    background: #10b981;
    border-color: #10b981;
    box-shadow: 0 6px 16px rgba(16, 185, 129, 0.4);
    transform: translateY(-50%) scale(1.1);
}

.swiper-button-prev-custom:active,
.swiper-button-next-custom:active {
    transform: translateY(-50%) scale(0.95);
}

.swiper-button-prev-custom svg,
.swiper-button-next-custom svg {
    stroke: #1f2937;
    transition: stroke 0.3s ease;
}

.swiper-button-prev-custom:hover svg,
.swiper-button-next-custom:hover svg {
    stroke: #ffffff;
}

/* Botões desabilitados (quando loop está desativado) */
.swiper-button-prev-custom.swiper-button-disabled,
.swiper-button-next-custom.swiper-button-disabled {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
}

/* ✅ Container do Swiper */
.featured-companies-swiper {
    overflow: hidden;
    width: 100%;
    padding-bottom: 50px;
}

.swiper-wrapper {
    display: flex;
    align-items: stretch;
}

.swiper-slide {
    height: auto;
    display: flex;
}

.swiper-slide .section_search_card {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* ✅ Paginação customizada */
.swiper-pagination {
    bottom: 0 !important;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #d1d5db;
    opacity: 1;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    background: #10b981;
    width: 24px;
    border-radius: 5px;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .swiper-button-prev-custom,
    .swiper-button-next-custom {
        width: 48px;
        height: 48px;
    }
    
    .swiper-button-prev-custom {
        left: -24px;
    }
    
    .swiper-button-next-custom {
        right: -24px;
    }
}

@media (max-width: 768px) {
    .section_home_view_featured_companies {
        padding: 64px 20px;
    }
    
    .section_home_view_featured_companies_title {
        font-size: 32px;
    }
    
    .section_home_view_featured_companies_subtitle {
        font-size: 16px;
    }
    
    .swiper-button-prev-custom,
    .swiper-button-next-custom {
        width: 40px;
        height: 40px;
    }
    
    .swiper-button-prev-custom {
        left: 0;
    }
    
    .swiper-button-next-custom {
        right: 0;
    }
    
    .swiper-button-prev-custom svg,
    .swiper-button-next-custom svg {
        width: 20px;
        height: 20px;
    }
    
    .featured-companies-swiper-container {
        gap: 0;
        padding: 0 50px; /* Espaço para os botões */
    }
}

@media (max-width: 480px) {
    .section_home_view_featured_companies_title {
        font-size: 28px;
    }
    
    .featured-companies-swiper-container {
        padding: 0 45px;
    }
    
    .swiper-button-prev-custom,
    .swiper-button-next-custom {
        width: 36px;
        height: 36px;
    }
}


/* FOR BUSINESS SECTION */
.section_home_view_for_business {
    background: linear-gradient(135deg, #10b981 0%, #14b8a6 25%, #06b6d4 50%, #0ea5e9 75%, #3b82f6 100%);
    padding: 96px 24px;
    position: relative;
    overflow: hidden;
}

.section_home_view_for_business::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><rect x="0" y="0" width="100" height="100" fill="none"/><path d="M50 10 L90 50 L50 90 L10 50 Z" fill="rgba(255,255,255,0.03)"/></svg>');
    background-size: 400px 400px;
    opacity: 0.3;
    pointer-events: none;
}

.section_home_view_for_business_container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Left Content */
.section_home_view_for_business_content {
    color: #ffffff;
}

.section_home_view_for_business_header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.section_home_view_for_business_icon {
    color: rgba(255, 255, 255, 0.9);
}

.section_home_view_for_business_label {
    font-size: 16px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
}

.section_home_view_for_business_title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.section_home_view_for_business_desc {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 48px;
}

/* Stats */
.section_home_view_for_business_stats {
    display: flex;
    gap: 48px;
    margin-bottom: 40px;
}

.section_home_view_for_business_stats_item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.section_home_view_for_business_stats_item svg {
    color: rgba(255, 255, 255, 0.9);
    flex-shrink: 0;
}

.section_home_view_for_business_stats_content h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 4px;
}

.section_home_view_for_business_stats_content p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
}

/* Actions */
.section_home_view_for_business_actions {
    display: flex;
    gap: 16px;
}

.section_home_view_for_business_btn {
    padding: 14px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.section_home_view_for_business_btn_primary {
    background: #ffffff;
    color: #10b981;
}

.section_home_view_for_business_btn_primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.section_home_view_for_business_btn_secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.section_home_view_for_business_btn_secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Right Features */
.section_home_view_for_business_features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.section_home_view_for_business_card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 28px;
    transition: all 0.3s ease;
}

.section_home_view_for_business_card:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(8px);
}

.section_home_view_for_business_card_icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.section_home_view_for_business_card_icon svg {
    color: #ffffff;
}

.section_home_view_for_business_card_title {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
}

.section_home_view_for_business_card_desc {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .section_home_view_for_business_container {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .section_home_view_for_business_title {
        font-size: 40px;
    }
    
    .section_home_view_for_business_stats {
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .section_home_view_for_business {
        padding: 64px 20px;
    }
    
    .section_home_view_for_business_title {
        font-size: 32px;
    }
    
    .section_home_view_for_business_desc {
        font-size: 16px;
    }
    
    .section_home_view_for_business_stats {
        flex-direction: column;
        gap: 24px;
    }
    
    .section_home_view_for_business_actions {
        flex-direction: column;
    }
    
    .section_home_view_for_business_btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .section_home_view_for_business_title {
        font-size: 28px;
    }
    
    .section_home_view_for_business_stats_content h3 {
        font-size: 28px;
    }
}


/* FOOTER */
.footer_view_main {
    background: #1f2937;
    color: #e5e7eb;
    padding: 64px 24px 24px;
}

.footer_view_container {
    max-width: 1400px;
    margin: 0 auto;
}

/* Footer Grid */
.footer_view_grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 48px;
    margin-bottom: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Column About */
.footer_view_col_about {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Logo */
.footer_view_logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer_view_logo_icon {
    width: 40px;
    height: 40px;
    background: #10b981;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.footer_view_logo_text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.footer_view_logo_title {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
}

.footer_view_logo_subtitle {
    font-size: 14px;
    font-weight: 700;
    color: #10b981;
}

/* Description */
.footer_view_desc {
    font-size: 14px;
    line-height: 1.6;
    color: #9ca3af;
}

/* Social Links */
.footer_view_social {
    display: flex;
    gap: 12px;
}

.footer_view_social_link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e5e7eb;
    transition: all 0.3s ease;
}

.footer_view_social_link:hover {
    background: #10b981;
    color: #ffffff;
    transform: translateY(-2px);
}

/* Column Title */
.footer_view_col_title {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
}

/* Links List */
.footer_view_list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    list-style: none;
}

.footer_view_link {
    font-size: 14px;
    color: #9ca3af;
    text-decoration: none;
    transition: all 0.2s;
    display: inline-block;
}

.footer_view_link:hover {
    color: #10b981;
    transform: translateX(4px);
}

/* Contact */
.footer_view_contact {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 28px;
}

.footer_view_contact_item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #9ca3af;
    font-size: 14px;
    text-decoration: none;
    transition: color 0.2s;
}

.footer_view_contact_item:hover {
    color: #10b981;
}

.footer_view_contact_item svg {
    color: #10b981;
    flex-shrink: 0;
}

/* Newsletter */
.footer_view_newsletter {
    margin-top: 24px;
}

.footer_view_newsletter_title {
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 8px;
}

.footer_view_newsletter_desc {
    font-size: 13px;
    color: #9ca3af;
    margin-bottom: 16px;
    line-height: 1.5;
}

.footer_view_newsletter_form {
    display: flex;
    gap: 8px;
}

.footer_view_newsletter_input {
    flex: 1;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #ffffff;
    font-size: 14px;
    outline: none;
    transition: all 0.2s;
}

.footer_view_newsletter_input::placeholder {
    color: #6b7280;
}

.footer_view_newsletter_input:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: #10b981;
}

.footer_view_newsletter_btn {
    padding: 10px 20px;
    background: #10b981;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}

.footer_view_newsletter_btn:hover {
    background: #059669;
    transform: translateY(-2px);
}

/* Bottom Bar */
.footer_view_bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
}

.footer_view_copyright {
    font-size: 14px;
    color: #6b7280;
}

.footer_view_bottom_links {
    display: flex;
    gap: 24px;
}

.footer_view_bottom_link {
    font-size: 14px;
    color: #6b7280;
    text-decoration: none;
    transition: color 0.2s;
}

.footer_view_bottom_link:hover {
    color: #10b981;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .footer_view_grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .footer_view_main {
        padding: 48px 20px 20px;
    }
    
    .footer_view_grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer_view_bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .footer_view_bottom_links {
        flex-direction: column;
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .footer_view_newsletter_form {
        flex-direction: column;
    }
    
    .footer_view_newsletter_btn {
        width: 100%;
    }
}


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

.page_login_body {
    background: #f3f4f6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    padding: 24px;
}

/* BACK LINK */
.section_page_view_login_back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #6b7280;
    font-size: 14px;
    font-weight: 400;
    text-decoration: none;
    transition: color 0.2s;
    margin-bottom: 40px;
}

.section_page_view_login_back:hover {
    color: #374151;
}



/*REGISTER*/
.page_register_body {
    background: #f3f4f6;
    min-height: 100vh;
}

.section_page_view_register {
    max-width: 960px;
    margin: 0 auto;
}

.section_page_view_register_container {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

/* HEADER */
.section_page_view_register_header {
    text-align: center;
}

.section_page_view_register_title {
    font-size: 32px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 8px;
}

.section_page_view_register_subtitle {
    font-size: 16px;
    color: #6b7280;
}

/* PREMIUM CARD */
.section_page_view_register_premium {
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
    border: 1px solid #86efac;
    border-radius: 12px;
    padding: 32px;
}

.section_page_view_register_premium_header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.section_page_view_register_premium_badge {
    background: #10b981;
    color: #ffffff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.section_page_view_register_premium_title {
    font-size: 20px;
    font-weight: 700;
    color: #065f46;
}

.section_page_view_register_premium_desc {
    font-size: 14px;
    color: #047857;
    margin-bottom: 24px;
    line-height: 1.5;
}

.section_page_view_register_premium_content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

/* Benefits List */
.section_page_view_register_premium_benefits_title {
    font-size: 15px;
    font-weight: 700;
    color: #065f46;
    margin-bottom: 16px;
}

.section_page_view_register_premium_list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.section_page_view_register_premium_list li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #047857;
}

.section_page_view_register_premium_list li svg {
    color: #10b981;
    flex-shrink: 0;
}

/* Pricing */
.section_page_view_register_premium_pricing {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    gap: 12px;
}

.section_page_view_register_premium_price {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 8px;
}

.section_page_view_register_premium_price_currency {
    font-size: 24px;
    font-weight: 700;
    color: #10b981;
}

.section_page_view_register_premium_price_value {
    font-size: 56px;
    font-weight: 700;
    color: #10b981;
    line-height: 1;
}

.section_page_view_register_premium_price_period {
    font-size: 16px;
    color: #047857;
}

.section_page_view_register_premium_btn_phone,
.section_page_view_register_premium_btn_email {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    width: 100%;
    max-width: 280px;
}

.section_page_view_register_premium_btn_phone {
    background: #10b981;
    color: #ffffff;
}

.section_page_view_register_premium_btn_phone:hover {
    background: #059669;
    transform: translateY(-2px);
}

.section_page_view_register_premium_btn_email {
    background: transparent;
    color: #047857;
    border: 1px solid #047857;
}

.section_page_view_register_premium_btn_email:hover {
    background: rgba(16, 185, 129, 0.1);
}

/* FORM CARD */
.section_page_view_register_form_card {
    background: #ffffff;
    border: 1px solid #d1d5db;
    border-radius: 12px;
    padding: 32px;
}

.section_page_view_register_form_title {
    font-size: 24px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 8px;
}

.section_page_view_register_form_subtitle {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 28px;
}

/* Form Fields */
.section_page_view_register_form_row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.section_page_view_register_form_field {
    margin-bottom: 20px;
}

.section_page_view_register_form_label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 6px;
}

.section_page_view_register_form_label span {
    color: #ef4444;
}

.section_page_view_register_form_input,
.section_page_view_register_form_select,
.section_page_view_register_form_textarea {
    width: 100%;
    padding: 11px 14px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 15px;
    color: #111827;
    transition: all 0.2s;
    outline: none;
    background: #ffffff;
    font-family: inherit;
}

.section_page_view_register_form_input::placeholder,
.section_page_view_register_form_textarea::placeholder {
    color: #9ca3af;
}

.section_page_view_register_form_input:focus,
.section_page_view_register_form_select:focus,
.section_page_view_register_form_textarea:focus {
    border-color: #10b981;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.section_page_view_register_form_textarea {
    resize: vertical;
    min-height: 80px;
}

/* Form Actions */
.section_page_view_register_form_actions {
    display: flex;
    gap: 16px;
    margin-top: 32px;
}

.section_page_view_register_form_btn_submit {
    flex: 1;
    padding: 14px 32px;
    background: #10b981;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.section_page_view_register_form_btn_submit:hover {
    background: #059669;
    transform: translateY(-1px);
}

.section_page_view_register_form_btn_cancel {
    padding: 14px 32px;
    background: transparent;
    color: #6b7280;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.section_page_view_register_form_btn_cancel:hover {
    background: #f3f4f6;
    border-color: #9ca3af;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .page_register_body {
        padding: 24px 16px;
    }
    
    .section_page_view_register_title {
        font-size: 28px;
    }
    
    .section_page_view_register_premium_content {
        grid-template-columns: 1fr;
    }
    
    .section_page_view_register_premium_list {
        grid-template-columns: 1fr;
    }
    
    .section_page_view_register_premium_pricing {
        align-items: flex-start;
    }
    
    .section_page_view_register_premium_btn_phone,
    .section_page_view_register_premium_btn_email {
        max-width: 100%;
    }
    
    .section_page_view_register_form_row {
        grid-template-columns: 1fr;
    }
    
    .section_page_view_register_form_card {
        padding: 24px 20px;
    }
    
    .section_page_view_register_form_actions {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .section_page_view_register_title {
        font-size: 24px;
    }
    
    .section_page_view_register_premium {
        padding: 24px 20px;
    }
    
    .section_page_view_register_premium_price_value {
        font-size: 48px;
    }
}


/* SEARCH RESULTS PAGE */
.section_page_view_search_results {
    padding: 64px 24px;
    background: #f9fafb;
    min-height: 100vh;
}

.section_page_view_search_results_container {
    max-width: 1400px;
    margin: 0 auto;
}

/* Header */
.section_page_view_search_results_header {
    margin-bottom: 40px;
}

.section_page_view_search_results_title {
    font-size: 32px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 8px;
}

.section_page_view_search_results_count {
    font-size: 16px;
    color: #6b7280;
}

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

/* Card */
.section_page_view_search_results_card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.section_page_view_search_results_card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

/* Card Image */
.section_page_view_search_results_card_image {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

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

.section_page_view_search_results_card:hover .section_page_view_search_results_card_image img {
    transform: scale(1.05);
}

/* Card Content */
.section_page_view_search_results_card_content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

/* Category */
.section_page_view_search_results_card_category {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    color: #10b981;
    margin-bottom: 12px;
}

/* Title */
.section_page_view_search_results_card_title {
    font-size: 20px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 16px;
    line-height: 1.3;
}

/* Info List */
.section_page_view_search_results_card_info {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.section_page_view_search_results_card_info_item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #6b7280;
}

.section_page_view_search_results_card_info_item svg {
    flex-shrink: 0;
    color: #9ca3af;
}

.section_page_view_search_results_card_info_item svg[fill="#FFD700"] {
    color: #FFD700;
}

/* Actions */
.section_page_view_search_results_card_actions {
    display: flex;
    gap: 12px;
    margin-top: auto;
}

.section_page_view_search_results_card_btn {
    flex: 1;
    padding: 11px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.section_page_view_search_results_card_btn_details {
    background: transparent;
    color: #1f2937;
    border: 1px solid #d1d5db;
}

.section_page_view_search_results_card_btn_details:hover {
    background: #f3f4f6;
    border-color: #9ca3af;
}

.section_page_view_search_results_card_btn_whatsapp {
    background: #10b981;
    color: #ffffff;
    border: none;
}

.section_page_view_search_results_card_btn_whatsapp:hover {
    background: #059669;
    transform: translateY(-1px);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .section_page_view_search_results_grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .section_page_view_search_results {
        padding: 48px 20px;
    }
    
    .section_page_view_search_results_title {
        font-size: 28px;
    }
    
    .section_page_view_search_results_grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .section_page_view_search_results_title {
        font-size: 24px;
    }
    
    .section_page_view_search_results_card_content {
        padding: 20px;
    }
    
    .section_page_view_search_results_card_actions {
        flex-direction: column;
    }
    
    .section_page_view_search_results_card_btn {
        width: 100%;
    }
}

/* COMPANY DETAIL PAGE - PREMIUM */

.section_page_view_company {
    background: #fef9f5;
    min-height: 100vh;
    padding: 20px 0 60px;
}

.section_page_view_company_back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 0;
    color: #d97706;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    max-width: 1400px;
    margin: 0 auto 25px;
    width: calc(100% - 40px);
    padding-left: 20px;
    transition: all 0.3s ease;
}

.section_page_view_company_back:hover {
    color: #b45309;
}

.section_page_view_company_back svg {
    flex-shrink: 0;
}

/* Container */
.section_page_view_company_container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 30px;
    align-items: start;
}

/* ===================================
   COLUNA ESQUERDA
   =================================== */

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

/* GALERIA */
.section_page_view_company_gallery {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    position: relative;
}

.section_page_view_company_gallery_badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(135deg, #d97706 0%, #f59e0b 100%);
    color: #fff;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(217, 119, 6, 0.3);
    display: flex;
    align-items: center;
    gap: 5px;
}

.section_page_view_company_gallery_main {
    position: relative;
    width: 100%;
    height: 480px;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.section_page_view_company_gallery_btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 5;
    color: #fff;
}

.section_page_view_company_gallery_prev { left: 20px; }
.section_page_view_company_gallery_next { right: 20px; }

.section_page_view_company_gallery_btn:hover {
    background: rgba(0, 0, 0, 0.7);
    transform: translateY(-50%) scale(1.1);
}

.section_page_view_company_gallery_counter {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.75);
    color: #fff;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    z-index: 5;
}

.section_page_view_company_gallery_actions {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    gap: 10px;
    z-index: 10;
}

.section_page_view_company_gallery_action {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.section_page_view_company_gallery_action:hover {
    background: #fff;
    transform: scale(1.1);
}

.section_page_view_company_gallery_action svg {
    color: #374151;
}

/* Miniaturas */
.section_page_view_company_gallery_thumbs {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
    padding: 16px;
}

.section_page_view_company_gallery_thumb {
    width: 100%;
    height: 90px;
    object-fit: cover;
    border-radius: 10px;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.3s ease;
}

.section_page_view_company_gallery_thumb:hover,
.section_page_view_company_gallery_thumb.active {
    border-color: #008c75;
}

/* CARDS DE INFORMAÇÃO */
.section_page_view_company_info_card {
    background: #fff;
    padding: 28px 32px;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.section_page_view_company_info_card h1 {
    font-size: 32px;
    font-weight: 800;
    color: #111827;
    margin: 0 0 15px 0;
    line-height: 1.2;
}

.section_page_view_company_info_meta {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    flex-wrap: wrap;
}

.section_page_view_company_info_tag {
    padding: 6px 14px;
    background: #f3f4f6;
    color: #374151;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
}

.section_page_view_company_info_rating {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-left: auto;
    background-color: color-mix(in oklch, oklch(55% .15 180) 10%, transparent);
    padding: .7rem 1rem;
    border-radius: 5px;
}

.section_page_view_company_info_rating svg {
    stroke: #008c75;
    fill: #008c75;
}

.section_page_view_company_info_rating strong {
    font-size: 18px;
    font-weight: 700;
    color: #111827;
}

.section_page_view_company_info_rating span {
    font-size: 14px;
    color: #6b7280;
}

/* Seções */
.section_page_view_company_section_card {
    background: #fff;
    padding: 28px 32px;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.section_page_view_company_section_card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 18px 0;
}

.section_page_view_company_section_card p {
    font-size: 15px;
    color: #4b5563;
    line-height: 1.7;
    margin: 0;
}

/* Anunciante */
.section_page_view_company_advertiser {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: #f9fafb;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
}

.section_page_view_company_advertiser_avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #d97706 0%, #f59e0b 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #fff;
}

.section_page_view_company_advertiser_info {
    flex: 1;
}

.section_page_view_company_advertiser_info > div:first-child {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
}

.section_page_view_company_advertiser_info strong {
    font-size: 16px;
    font-weight: 700;
    color: #111827;
}

.section_page_view_company_advertiser_badge {
    padding: 3px 10px;
    background: linear-gradient(135deg, #d97706 0%, #f59e0b 100%);
    color: #fff;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 700;
}

.section_page_view_company_advertiser_meta {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 13px;
    color: #6b7280;
}

.section_page_view_company_advertiser_meta svg {
    display: inline-block;
    vertical-align: middle;
    margin-right: 4px;
}

.section_page_view_company_advertiser_arrow,
a.section_page_view_company_advertiser_arrow {
    width: 36px;
    height: 36px;
    background: #fff;
    border: 2px solid #e5e7eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #9ca3af;
    transition: all 0.3s ease;
    text-decoration: none;
    flex-shrink: 0;
}

.section_page_view_company_advertiser_arrow:hover {
    border-color: #008c75;
    color: #008c75;
}

/* Especialidades */
.section_page_view_company_tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.section_page_view_company_tag {
    padding: 8px 16px;
    background: #fef3c7;
    color: #92400e;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

/* Comodidades */
.section_page_view_company_amenities {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.section_page_view_company_amenity {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #374151;
}

.section_page_view_company_amenity svg {
    flex-shrink: 0;
}

/* Horários */
.section_page_view_company_hours_header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    padding-bottom: 18px;
    border-bottom: 2px solid #f3f4f6;
}

.section_page_view_company_hours_header > div {
    display: flex;
    align-items: center;
    gap: 10px;
}

.section_page_view_company_hours_header h3 {
    margin: 0;
}

.section_page_view_company_hours_header svg {
    color: #d97706;
}

.section_page_view_company_hours_status {
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}

.section_page_view_company_hours_open {
    background: #d1fae5;
    color: #065f46;
}

.section_page_view_company_hours_closed {
    background: #fee2e2;
    color: #991b1b;
}

.section_page_view_company_hours_list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.section_page_view_company_hours_item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f3f4f6;
    font-size: 14px;
}

.section_page_view_company_hours_item:last-child {
    border-bottom: none;
}

.section_page_view_company_hours_item span {
    color: #6b7280;
    font-weight: 500;
}

.section_page_view_company_hours_item strong {
    color: #111827;
    font-weight: 600;
}

.section_page_view_company_hours_special {
    padding: 18px;
    background: #fef3c7;
    border-radius: 10px;
}

.section_page_view_company_hours_special strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: #92400e;
    margin-bottom: 10px;
}

.section_page_view_company_hours_special ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.section_page_view_company_hours_special li {
    font-size: 13px;
    color: #92400e;
    line-height: 1.8;
}

/* ============================================================================
   SEÇÃO DE AVALIAÇÕES
============================================================================ */
.company_reviews_section {
    background: white;
    border-radius: 16px;
    padding: 32px;
    margin: 24px 0;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

/* HEADER */
.company_reviews_header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid #e5e7eb;
}

.company_reviews_header_left {
    flex: 1;
}

.company_reviews_title {
    font-size: 24px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 12px 0;
}

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

.company_reviews_stars {
    display: flex;
    gap: 4px;
}

.company_review_star {
    color: #e5e7eb;
}

.company_review_star.filled {
    color: #10b981;
}

.company_reviews_avg {
    font-size: 20px;
    font-weight: 700;
    color: #111827;
}

.company_reviews_count {
    font-size: 14px;
    color: #6b7280;
}

/* BOTÃO AVALIAR */
.company_reviews_btn_avaliar {
    padding: 12px 24px;
    background: #10b981;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.company_reviews_btn_avaliar:hover {
    background: #059669;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

/* FILTROS */
.company_reviews_filters {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.company_reviews_filter_label {
    font-size: 14px;
    font-weight: 600;
    color: #6b7280;
}

.company_reviews_filter_btn {
    padding: 8px 16px;
    background: white;
    color: #6b7280;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.company_reviews_filter_btn:hover {
    border-color: #10b981;
    color: #10b981;
}

.company_reviews_filter_btn.active {
    background: #10b981;
    color: white;
    border-color: #10b981;
}

/* LISTA DE AVALIAÇÕES */
.company_reviews_list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* ITEM DA AVALIAÇÃO */
.company_review_item {
    padding-bottom: 24px;
    border-bottom: 1px solid #f3f4f6;
}

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

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

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

.company_review_avatar {
    width: 48px;
    height: 48px;
    background: #f3f4f6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.company_review_avatar svg {
    color: #9ca3af;
}

.company_review_user_info {
    flex: 1;
}

.company_review_user_name {
    font-size: 16px;
    font-weight: 600;
    color: #111827;
    margin: 0 0 4px 0;
}

.company_review_date {
    font-size: 14px;
    color: #9ca3af;
    flex-shrink: 0;
}

.company_review_text {
    font-size: 15px;
    line-height: 1.6;
    color: #4b5563;
    margin: 0;
}

/* RESPOSTA DO PROPRIETÁRIO */
.company_review_owner_response {
    margin-top: 16px;
    padding: 16px;
    background: #f0fdf4;
    border: 2px solid #d1fae5;
    border-radius: 12px;
}

.company_review_owner_header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.company_review_owner_name {
    font-size: 14px;
    font-weight: 600;
    color: #065f46;
}

.company_review_owner_badge {
    padding: 4px 8px;
    background: #065f46;
    color: white;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.company_review_owner_date {
    font-size: 13px;
    color: #047857;
    margin-left: auto;
}

.company_review_owner_text {
    font-size: 14px;
    line-height: 1.5;
    color: #065f46;
    margin: 0;
}

/* RESPONSIVO */
@media (max-width: 768px) {
    .company_reviews_section {
        padding: 20px;
    }

    .company_reviews_header {
        flex-direction: column;
        gap: 16px;
    }

    .company_reviews_btn_avaliar {
        width: 100%;
    }

    .company_review_header {
        flex-direction: column;
        gap: 8px;
    }

    .company_review_date {
        align-self: flex-start;
    }
}

/* ============================================================================
   MODAL DE AVALIAÇÃO
============================================================================ */
.review_modal_overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.review_modal_container {
    background: white;
    border-radius: 16px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.4s ease;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* HEADER */
.review_modal_header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 32px;
    border-bottom: 1px solid #e5e7eb;
}

.review_modal_title {
    font-size: 20px;
    font-weight: 700;
    color: #111827;
    margin: 0;
}

.review_modal_close {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    border-radius: 8px;
    color: #6b7280;
    cursor: pointer;
    transition: all 0.2s ease;
}

.review_modal_close:hover {
    background: #f3f4f6;
    color: #111827;
}

/* FORM */
.review_modal_form {
    padding: 32px;
}

.review_modal_field {
    margin-bottom: 24px;
}

.review_modal_field:last-child {
    margin-bottom: 0;
}

.review_modal_label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 12px;
}

/* ESTRELAS INTERATIVAS */
.review_modal_stars {
    display: flex;
    gap: 8px;
}

.review_modal_star {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    color: #e5e7eb;
    transition: all 0.2s ease;
}

.review_modal_star:hover {
    transform: scale(1.1);
}

.review_modal_star.active {
    color: #10b981;
}

.review_modal_star.hover {
    color: #10b981;
}

/* TEXTAREA */
.review_modal_textarea {
    width: 100%;
    padding: 16px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 15px;
    font-family: inherit;
    line-height: 1.6;
    color: #374151;
    resize: vertical;
    transition: all 0.3s ease;
}

.review_modal_textarea:focus {
    outline: none;
    border-color: #10b981;
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.1);
}

.review_modal_textarea::placeholder {
    color: #9ca3af;
}

.review_modal_hint {
    display: block;
    margin-top: 8px;
    font-size: 13px;
    color: #6b7280;
}

.review_char_count {
    font-weight: 600;
    color: #10b981;
}

/* BOTÕES */
.review_modal_actions {
    display: flex;
    gap: 12px;
    margin-top: 32px;
}

.review_modal_btn_cancel,
.review_modal_btn_submit {
    flex: 1;
    padding: 14px 24px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.review_modal_btn_cancel {
    background: #f3f4f6;
    color: #6b7280;
}

.review_modal_btn_cancel:hover {
    background: #e5e7eb;
    color: #374151;
}

.review_modal_btn_submit {
    background: #10b981;
    color: white;
}

.review_modal_btn_submit:hover:not(:disabled) {
    background: #059669;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.3);
}

.review_modal_btn_submit:disabled {
    background: #d1d5db;
    color: #9ca3af;
    cursor: not-allowed;
}

/* RESPONSIVO */
@media (max-width: 640px) {
    .review_modal_container {
        border-radius: 16px 16px 0 0;
        max-height: 95vh;
    }

    .review_modal_header {
        padding: 20px;
    }

    .review_modal_form {
        padding: 24px 20px;
    }

    .review_modal_actions {
        flex-direction: column;
    }
}


/* ===================================
   COLUNA DIREITA (ASIDE)
   =================================== */

.section_page_view_company_aside {
    position: sticky;
    top: calc( .25rem * 24 );
}

.section_page_view_company_contact_card {
    background: #fff;
    padding: 28px;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.section_page_view_company_contact_card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 20px 0;
    padding-bottom: 18px;
    border-bottom: 2px solid #f3f4f6;
}

.section_page_view_company_contact_item {
    display: flex;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #f3f4f6;
}

.section_page_view_company_contact_item:last-of-type {
    border-bottom: none;
}

.section_page_view_company_contact_item svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.section_page_view_company_contact_item div {
    flex: 1;
}

.section_page_view_company_contact_item p {
    font-size: 14px;
    color: #4b5563;
    line-height: 1.6;
    margin: 0 0 4px 0;
}

.section_page_view_company_contact_item p:last-child {
    margin-bottom: 0;
}

.section_page_view_company_contact_actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px solid #f3f4f6;
}

.section_page_view_company_btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 24px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
}

.section_page_view_company_btn_primary {
    color: #fff;
    background-color: #008c75;
}

.section_page_view_company_btn_outline {
    background: #fff;
    color: #008c75;
    border-color: #008c75;
}


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

@media (max-width: 1200px) {
    .section_page_view_company_container {
        grid-template-columns: 1fr;
    }

    .section_page_view_company_aside {
        position: static;
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .section_page_view_company_gallery_main {
        height: 350px;
    }

    .section_page_view_company_gallery_thumbs {
        grid-template-columns: repeat(4, 1fr);
    }

    .section_page_view_company_info_card h1 {
        font-size: 24px;
    }

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

@media (max-width: 480px) {
    .section_page_view_company {
        padding: 15px 0 40px;
    }

    .section_page_view_company_container {
        padding: 0 15px;
    }

    .section_page_view_company_gallery_main {
        height: 280px;
    }

    .section_page_view_company_gallery_thumbs {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }

    .section_page_view_company_gallery_thumb {
        height: 70px;
    }

    .section_page_view_company_info_card,
    .section_page_view_company_section_card,
    .section_page_view_company_contact_card {
        padding: 20px;
    }
}

/* Efeitos de hover */
.section_page_view_company_info_card,
.section_page_view_company_section_card,
.section_page_view_company_contact_card {
    transition: all 0.3s ease;
}

.section_page_view_company_info_card:hover,
.section_page_view_company_section_card:hover,
.section_page_view_company_contact_card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

/* ==========================================================
   PÁGINA DE BUSCA - LAYOUT GERAL
========================================================== */
.section_search_page {
    padding: 40px 24px;
    min-height: 100vh;
}

.section_search_container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 32px;
}

/* ==========================================================
   🔹 FILTRO LATERAL - DESIGN FINAL COM STICKY BUTTON
========================================================== */

.section_search_sidebar {
    width: 100%;
    max-width: 340px;
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
    height: fit-content;
    position: sticky;
    top: 20px;
}

/* ==================== CARD DO FILTRO ==================== */
.section_search_filter_card {
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 25px;
}

.section_search_filter_title {
    font-size: 20px;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 24px 0;
    padding: 0;
}

/* ==================== LISTA DE FILTROS ==================== */
.section_search_filter_list {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

/* ==================== CHECKBOX CUSTOMIZADO ==================== */
.section_search_filter_checkbox {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    padding: 8px 4px;
    transition: all 0.2s ease;
    position: relative;
}

.section_search_filter_checkbox:hover {
    opacity: 0.7;
}

/* Esconde checkbox nativo */
.section_search_filter_checkbox input[type="checkbox"],
.section_search_filter_checkbox input[type="radio"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

/* Checkbox visual */
.section_search_filter_check,
.section_search_filter_radio {
    width: 20px;
    height: 20px;
    border: 2.5px solid #d1d5db;
    border-radius: 5px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.25s ease;
}

/* Radio visual (círculo) */
.section_search_filter_item .section_search_filter_radio {
    border-radius: 50%;
    width: 22px;
    height: 22px;
}

/* Checkbox/Radio marcado */
.section_search_filter_checkbox input:checked ~ .section_search_filter_check,
.section_search_filter_checkbox input:checked ~ .section_search_filter_radio,
.section_search_filter_item input:checked ~ .section_search_filter_radio {
    border-color: #10b981;
    background: #10b981;
}

/* ✓ Check interno */
.section_search_filter_checkbox input:checked ~ .section_search_filter_check::after,
.section_search_filter_checkbox input:checked ~ .section_search_filter_radio::after,
.section_search_filter_item input:checked ~ .section_search_filter_radio::after {
    content: '✓';
    color: #ffffff;
    font-size: 14px;
    font-weight: bold;
}

/* ==================== ÍCONE DA CATEGORIA ==================== */
.section_search_filter_parent_icon {
    font-size: 18px;
    width: 15px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #10b981;
}

.section_search_filter_parent_label {
    flex: 1;
    font-size: 13px;
    font-weight: 500;
    color: #222222;
}

/* ==================== TIPO DE PLANO (RADIO) ==================== */
.section_search_filter_item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 4px;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
}

.section_search_filter_item:hover {
    opacity: 0.7;
}

/* Esconde input radio nativo */
.section_search_filter_item input[type="radio"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

/* Texto do label */
.section_search_filter_item > span:last-child {
    flex: 1;
    font-size: 15px;
    color: #6b7280;
    font-weight: 400;
}

/* ==================== BOTÃO LIMPAR FILTROS ==================== */
.section_search_filter_clear_wrapper {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.section_search_filter_clear {
    width: 100%;
    padding: 10px 16px;
    background: transparent;
    color: #ef4444;
    border: 1px solid #fee2e2;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: all 0.2s ease;
}

.section_search_filter_clear:hover {
    background: #fef2f2;
    border-color: #ef4444;
}

/* ==================== BOTÃO APLICAR FILTROS (STICKY) ==================== */
.section_search_filter_actions {
    background: #ffffff;
    padding: 16px;
    border-top: 1px solid #e5e7eb;
    border-radius: 0 0 16px 16px;
    margin-top: auto;
}

.section_search_filter_apply {
    width: 100%;
    padding: 14px 20px;
    background: #10b981;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.2);
}

.section_search_filter_apply:hover {
    background: #059669;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
    transform: translateY(-2px);
}

.section_search_filter_apply:active {
    transform: translateY(0);
}

.section_search_filter_apply:disabled {
    background: #94a3b8;
    cursor: not-allowed;
    box-shadow: none;
}

/* Loading */
.section_search_filter_apply.loading svg {
    animation: spin 1s linear infinite;
}

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

/* ==================== HEADER COM ORDENAÇÃO ==================== */
.section_search_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    margin-bottom: 32px;
    border-bottom: 1px solid #e5e7eb;
    gap: 20px;
}

.section_search_header_info {
    flex: 1;
}

.section_search_header_title {
    font-size: 28px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 8px;
}

.section_search_header_count {
    font-size: 15px;
    color: #6b7280;
}

.section_search_header_count #countNumber {
    font-weight: 600;
    color: #10b981;
}

/* Ordenação */
.section_search_header_sort {
    display: flex;
    align-items: center;
    gap: 12px;
}

.section_search_sort_label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #6b7280;
    white-space: nowrap;
}

.section_search_sort_select {
    padding: 10px 16px;
    padding-right: 40px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #1f2937;
    background: #ffffff;
    cursor: pointer;
    transition: all 0.2s ease;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
}

.section_search_sort_select:hover {
    border-color: #10b981;
}

.section_search_sort_select:focus {
    outline: none;
    border-color: #10b981;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

/* ==================== MODAL FILTRO MOBILE ==================== */
.mobile_filter_toggle_wrapper {
    display: none;
    position: fixed;
    bottom: 80px;
    right: 20px;
    z-index: 998;
    /* Safe area para dispositivos com notch */
    bottom: calc(80px + env(safe-area-inset-bottom));
    right: calc(20px + env(safe-area-inset-right));
}

.mobile_filter_toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #10b981;
    color: #ffffff;
    border: none;
    padding: 14px 20px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.4), 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    min-height: 48px; /* Touch target mínimo */
    -webkit-tap-highlight-color: transparent;
}

.mobile_filter_toggle:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(16, 185, 129, 0.5), 0 4px 12px rgba(0, 0, 0, 0.15);
}

.mobile_filter_toggle:active {
    transform: translateY(0) scale(0.96);
    box-shadow: 0 2px 12px rgba(16, 185, 129, 0.3);
}

.mobile_filter_toggle svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.mobile_filter_toggle:active svg {
    transform: rotate(90deg);
}

.mobile_filter_label {
    user-select: none;
}

.mobile_filter_badge {
    position: absolute;
    top: -6px;
    right: -6px;
    background: #ef4444;
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    min-width: 24px;
    height: 24px;
    border-radius: 12px;
    display: none;
    align-items: center;
    justify-content: center;
    border: 2px solid #ffffff;
    padding: 0 6px;
    box-shadow: 0 2px 8px rgba(239, 68, 68, 0.4);
    animation: pulse-badge 2s infinite;
}

.mobile_filter_badge.active {
    display: flex;
}

@keyframes pulse-badge {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

/* Overlay */
.mobile_filter_overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    -webkit-tap-highlight-color: transparent;
}

.mobile_filter_overlay.active {
    display: block;
    opacity: 1;
}

/* Modal */
.mobile_filter_modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh; /* Dynamic viewport height para mobile */
    background: #ffffff;
    z-index: 1000;
    flex-direction: column;
    transform: translateY(-100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    /* Safe area para dispositivos com notch */
    padding-top: env(safe-area-inset-top);
    padding-bottom: env(safe-area-inset-bottom);
}

.mobile_filter_modal.active {
    display: flex;
    transform: translateY(0);
}

/* Handle para arrastar */
.mobile_filter_modal::before {
    content: '';
    position: absolute;
    top: calc(8px + env(safe-area-inset-top));
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 4px;
    background: #d1d5db;
    border-radius: 2px;
    z-index: 1001;
    pointer-events: none;
}

.mobile_filter_modal_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    padding-top: calc(20px + env(safe-area-inset-top));
    border-bottom: 1px solid #e5e7eb;
    flex-shrink: 0;
    background: #ffffff;
    position: sticky;
    top: 0;
    z-index: 10;
}

.mobile_filter_modal_title {
    font-size: 20px;
    font-weight: 700;
    color: #1f2937;
    margin: 0;
    line-height: 1.2;
}

.mobile_filter_modal_title span {
    font-weight: 500;
    color: #6b7280;
    font-size: 16px;
}

.mobile_filter_modal_close {
    background: #f3f4f6;
    border: none;
    cursor: pointer;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b7280;
    transition: all 0.2s ease;
    border-radius: 50%;
    min-width: 44px;
    min-height: 44px;
    -webkit-tap-highlight-color: transparent;
}

.mobile_filter_modal_close:hover {
    background: #e5e7eb;
    color: #1f2937;
}

.mobile_filter_modal_close:active {
    transform: scale(0.9);
    background: #d1d5db;
}

.mobile_filter_modal_content {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 20px;
    padding-bottom: calc(20px + env(safe-area-inset-bottom));
    /* Momentum scrolling para iOS */
    -webkit-overflow-scrolling: touch;
    /* Scrollbar personalizada */
    scrollbar-width: thin;
    scrollbar-color: #d1d5db transparent;
}

.mobile_filter_modal_content::-webkit-scrollbar {
    width: 4px;
}

.mobile_filter_modal_content::-webkit-scrollbar-track {
    background: transparent;
}

.mobile_filter_modal_content::-webkit-scrollbar-thumb {
    background: #d1d5db;
    border-radius: 2px;
}

.mobile_filter_modal_content::-webkit-scrollbar-thumb:hover {
    background: #9ca3af;
}

.mobile_filter_modal_footer {
    display: flex;
    gap: 12px;
    padding: 16px 20px;
    padding-bottom: calc(16px + env(safe-area-inset-bottom));
    border-top: 1px solid #e5e7eb;
    flex-shrink: 0;
    background: #ffffff;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    bottom: 0;
    z-index: 10;
}

.mobile_filter_modal_btn_clear,
.mobile_filter_modal_btn_apply {
    flex: 1;
    padding: 16px 20px;
    border: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    min-height: 52px; /* Touch target maior */
    -webkit-tap-highlight-color: transparent;
    position: relative;
    overflow: hidden;
}

.mobile_filter_modal_btn_clear {
    background: #f9fafb;
    color: #ef4444;
    border: 1.5px solid #fee2e2;
}

.mobile_filter_modal_btn_clear:hover {
    background: #fef2f2;
    border-color: #fecaca;
}

.mobile_filter_modal_btn_clear:active {
    transform: scale(0.97);
    background: #fee2e2;
}

.mobile_filter_modal_btn_apply {
    background: #10b981;
    color: #ffffff;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}

.mobile_filter_modal_btn_apply:hover {
    background: #059669;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
    transform: translateY(-1px);
}

.mobile_filter_modal_btn_apply:active {
    transform: translateY(0) scale(0.97);
    box-shadow: 0 1px 4px rgba(16, 185, 129, 0.3);
}

/* ==================== RESPONSIVO ==================== */
@media (max-width: 1024px) {
    .section_search_sidebar {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .section_search_container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .section_search_sidebar {
        display: none;
        position: sticky;
        top: auto;
    }
    
    .mobile_filter_toggle_wrapper {
        display: block;
    }
    
    .mobile_filter_modal_content .section_search_sidebar {
        display: flex;
        flex-direction: column;
        max-width: 100%;
        gap: 16px;
    }
    
    .section_search_header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    
    .section_search_header_title {
        font-size: 24px;
    }
    
    .section_search_header_sort {
        width: 100%;
    }
    
    .section_search_sort_select {
        flex: 1;
    }
}

@media (max-width: 480px) {
    .mobile_filter_toggle {
        padding: 12px 18px;
        font-size: 14px;
        gap: 6px;
    }
    
    .mobile_filter_toggle svg {
        width: 18px;
        height: 18px;
    }
    
    .mobile_filter_modal_header {
        padding: 16px;
        padding-top: calc(16px + env(safe-area-inset-top));
    }
    
    .mobile_filter_modal_title {
        font-size: 18px;
    }
    
    .mobile_filter_modal_title span {
        font-size: 14px;
    }
    
    .mobile_filter_modal_content {
        padding: 16px;
        padding-bottom: calc(16px + env(safe-area-inset-bottom));
    }
    
    .mobile_filter_modal_footer {
        gap: 10px;
        padding: 14px 16px;
        padding-bottom: calc(14px + env(safe-area-inset-bottom));
    }
    
    .mobile_filter_modal_btn_clear,
    .mobile_filter_modal_btn_apply {
        padding: 14px 16px;
        font-size: 14px;
        min-height: 48px;
    }
    
    .mobile_filter_toggle_wrapper {
        bottom: calc(70px + env(safe-area-inset-bottom));
        right: calc(16px + env(safe-area-inset-right));
    }
}


@media (max-width: 480px) {
    .section_search_sort_label {
        font-size: 13px;
    }
    
    .section_search_sort_select {
        font-size: 13px;
        padding: 8px 12px;
        padding-right: 36px;
    }
    
    .section_search_header_title {
        font-size: 20px;
    }
}

/* =============================================
   CONTEÚDO - GRID DE CARDS
============================================= */
.section_search_content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.section_search_grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, 333px); 
  gap: 24px;
}

/* ==================== ESTADO VAZIO ==================== */
.section_search_empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    text-align: center;
    background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
    border-radius: 12px;
    border: 2px dashed #e5e7eb;
    min-height: 400px;
}

.section_search_empty svg {
    margin-bottom: 24px;
    opacity: 0.4;
    animation: float 3s ease-in-out infinite;
}

.section_search_empty h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 12px 0;
}

.section_search_empty p {
    font-size: 16px;
    color: #6b7280;
    margin: 0;
    max-width: 400px;
}

/* ✅ Animação flutuante */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* ==================== RESPONSIVO ==================== */
@media (max-width: 768px) {
    .section_search_empty {
        padding: 40px 16px;
        min-height: 300px;
    }
    
    .section_search_empty h3 {
        font-size: 20px;
    }
    
    .section_search_empty p {
        font-size: 14px;
    }
}


/* =============================================
   CARDS DE ANÚNCIOS
============================================= */
.section_search_card {
  width: 100%;
  max-width: 380px;                    
  height: max-content;
  display: flex;
  flex-direction: column;
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}


.section_search_card:hover {
    box-shadow: 0 8px 16px rgba(0,0,0,0.15);
    transform: translateY(-4px);
}

/* IMAGEM */
.section_search_card_image {
    position: relative;
    width: 100%;
    height: 240px;
    overflow: hidden;
}

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

.section_search_card:hover .section_search_card_image img {
    transform: scale(1.05);
}

/* BADGES */
.section_search_card_badges {
    position: absolute;
    top: 12px;
    left: 12px;
    display: flex;
    gap: 8px;
    z-index: 2;
}

/* Botão de Favorito no Card */
.section_search_card_image .btn_favorite {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 3;
}

.section_search_card_badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: white;
}

.badge_aberto {
    background: #10b981;
}

.badge_premium {
    background: #f59e0b;
}

/* CORPO DO CARD */
.section_search_card_body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* TÍTULO */
.section_search_card_title {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;
}

.section_search_card_title a {
    color: #111827;
    text-decoration: none;
    transition: color 0.2s ease;
}

.section_search_card_title a:hover {
    color: #10b981;
}

/* META (CATEGORIA + PREÇO) */
.section_search_card_meta {
    display: flex;
    align-items: center;
    gap: 8px;
}

.section_search_card_category {
    display: inline-block;
    padding: 4px 12px;
    background: #f3f4f6;
    color: #374151;
    font-size: 13px;
    font-weight: 600;
    border-radius: 6px;
}

.section_search_card_price {
    font-size: 14px;
    font-weight: 600;
    color: #6b7280;
}

/* BAIRRO */
.section_search_card_neighborhood {
    margin: 0;
    font-size: 14px;
    font-weight: 500;
    color: #6b7280;
}

/* LOCALIZAÇÃO */
.section_search_card_location {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #6b7280;
}

.section_search_card_location svg {
    flex-shrink: 0;
    color: #9ca3af;
}

.section_search_card_rating {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-top: 12px;
    margin-top: 12px;
    border-top: 1px solid #f3f4f6;
}

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

.section_search_card_stars svg {
    flex-shrink: 0;
    width: 14px;
    height: 14px;
}

.section_search_card_rating_info {
    display: flex;
    align-items: center;
    gap: 6px;
}

.section_search_card_rating_info strong {
    font-size: 15px;
    font-weight: 700;
    color: #111827;
}

.section_search_card_rating_info span {
    font-size: 13px;
    color: #6b7280;
}

/* ===========================================================
   🔹 ESTILOS PARA AVALIAÇÕES SEM REVIEWS (0.0)
   =========================================================== */

/* Estilos para o cabeçalho da página da empresa */
.section_page_view_company_info_rating_not_evaluated {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-left: auto;
}

/* Estilos para cards de anúncio */
.section_search_card_rating_not_evaluated {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-top: 12px;
    margin-top: 12px;
    border-top: 1px solid #f3f4f6;
}

/* Caixa verde com 0.0 (reutilizável) */
.rating_box_zero {
    background-color: #a8e0b8;
    color: #fff;
    padding: 6px 12px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 45px;
    height: 32px;
}

.rating_box_zero span {
    color: #fff;
    font-weight: 700;
}




/* RESPONSIVO */
@media (max-width: 768px) {
    .section_search_card_image {
        height: 200px;
    }
    
    .section_search_card_body {
        padding: 16px;
    }
    
    .section_search_card_title {
        font-size: 16px;
    }

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


/* =====================
   Hero Background
===================== */
.page_view_autor_hero {
    background: url('https://images.unsplash.com/photo-1497366216548-37526070297c?w=1600') center/cover;
    height: 180px;
    position: relative;
}

.page_view_autor_hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(100, 116, 139, 0.5);
    backdrop-filter: blur(4px);
}

/* =====================
   Card de Perfil
===================== */
.page_view_autor_wrapper {
    margin-top: -80px;
    padding-bottom: 40px;
}

.page_view_autor_card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 28px 32px;
    position: relative;
}

.page_view_autor_card_inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    margin-bottom: 20px;
}

.page_view_autor_left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.page_view_autor_avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 3px solid #f1f5f9;
}

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

.page_view_autor_info h1 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 6px 0;
}

.page_view_autor_meta {
    display: flex;
    gap: 14px;
    margin-bottom: 6px;
}

.page_view_autor_meta span {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.85rem;
    color: #64748b;
}

.page_view_autor_rating {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
}

.page_view_autor_rating strong {
    color: #1e293b;
    font-weight: 600;
}

.page_view_autor_rating span {
    color: #64748b;
}

.page_view_autor_right {
    display: flex;
    gap: 10px;
}

.page_view_autor_icon {
    display: flex;
    align-items: center;
    width: 15px;
}

.page_view_autor_btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 18px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    border: 1.5px solid #e2e8f0;
    color: #334155;
    background: #fff;
    transition: all 0.2s;
}

.page_view_autor_btn:hover {
    background: #f8fafc;
    border-color: #cbd5e1;
}

.page_view_autor_btn.btn_green {
    background: #10b981;
    color: #fff;
    border-color: #10b981;
}

.page_view_autor_btn.btn_green:hover {
    background: #059669;
}

.page_view_autor_bio {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
    padding-top: 20px;
    border-top: 1px solid #f1f5f9;
}

/* =====================
   Anúncios
===================== */
.page_view_autor_ads {
    padding: 40px 0 60px;
    background: #f8fafc;
}

.page_view_autor_ads h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 28px;
}

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

.page_view_autor_ad_card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.3s;
    position: relative;
}

.page_view_autor_ad_card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.page_view_autor_ad_thumb {
    display: block;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

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

.page_view_autor_ad_card:hover .page_view_autor_ad_thumb img {
    transform: scale(1.05);
}

.page_view_autor_ad_body {
    padding: 18px;
}

.page_view_autor_ad_cat {
    display: inline-block;
    background: #f1f5f9;
    color: #475569;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 6px;
    margin-bottom: 10px;
}

.page_view_autor_ad_body h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 8px 0;
}

.page_view_autor_ad_body h3 a {
    color: #1e293b;
    text-decoration: none;
}

.page_view_autor_ad_body h3 a:hover {
    color: #10b981;
}

.page_view_autor_ad_body > p {
    color: #64748b;
    font-size: 0.88rem;
    line-height: 1.6;
    margin-bottom: 12px;
}

.page_view_autor_ad_meta {
    display: flex;
    justify-content: space-between;
    padding-top: 12px;
    border-top: 1px solid #f1f5f9;
    font-size: 0.82rem;
}

.page_view_autor_ad_location,
.page_view_autor_ad_stars {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #64748b;
}

@media (max-width: 768px) {
    .page_view_autor_card_inner {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .page_view_autor_right {
        width: 100%;
        flex-direction: column;
    }
    
    .page_view_autor_btn {
        width: 100%;
        justify-content: center;
    }
}


/************** PAGE 404********************/
.error-404 {
   display: flex;
   align-items: center;
   justify-content: center;
   min-height: 100vh;
   padding: 20px;
}
.error-404-box {
    background: #ffffff;
    max-width: 720px;
    width: 100%;
    padding: 60px 40px 50px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    text-align: center;
}
.error-404-box h1 {
    color: #10b981;
    font-size: 9rem;
    margin: 0 0 16px 0;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -6px;
}
.error-404-box h2 {
    color: #1e293b;
    font-size: 1.75rem;
    font-weight: 600;
    margin: 0 0 12px 0;
    letter-spacing: -0.5px;
}
.error-404-box p {
    color: #64748b;
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 36px;
}
.error-404-actions {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}
.error-404-btn {
    appearance: none;
    border: none;
    outline: none;
    border-radius: 10px;
    padding: 12px 24px;
    font-size: 0.95rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    gap: 8px;
    background: #10b981;
    color: #fff;
    transition: all 0.2s ease;
    text-decoration: none;
    justify-content: center;
}
.error-404-btn:hover {
    background: #059669;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}
.error-404-btn.outline {
    background: transparent;
    color: #334155;
    border: 2px solid #e2e8f0;
}
.error-404-btn.outline:hover {
    background: #f8fafc;
    border-color: #cbd5e1;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}
.error-404-btn svg {
    width: 18px;
    height: 18px;
}
@media (max-width: 640px) {
    .error-404-box {
        padding: 40px 24px 36px;
    }
    .error-404-box h1 {
        font-size: 6rem;
    }
    .error-404-box h2 {
        font-size: 1.4rem;
    }
    .error-404-actions {
        flex-direction: column;
    }
    .error-404-btn {
        width: 100%;
    }
}

/* Comodidades */
.section_page_view_company_comodidades_card {
    background: #f9fafb;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    padding: 20px;
    margin-top: 20px;
}

.section_page_view_company_comodidades_card h3 {
    font-size: 16px;
    font-weight: 700;
    color: #374151;
    margin: 0 0 12px 0;
}

.section_page_view_company_comodidades_list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.section_page_view_company_comodidade_item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #374151;
}
