/* /Components/Layout/MainLayout.razor.rz.scp.css */
#blazor-error-ui[b-7w824p8l4t] {
    color-scheme: light only;
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss[b-7w824p8l4t] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* /Components/Pages/Home.razor.rz.scp.css */
/* Hero Section */

.hero-section[b-t7ndv5jamp] {
    background: linear-gradient(135deg, #d2691e 0%, #ff8c42 50%, #e85d04 100%);
    padding: 80px 0;
    margin-bottom: 40px;
    box-shadow: 0 4px 20px rgba(210, 105, 30, 0.3);
}

.hero-content[b-t7ndv5jamp] {
    text-align: center;
    color: white;
}

.hero-title[b-t7ndv5jamp] {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    animation: fadeInDown-b-t7ndv5jamp 0.8s ease-out;
}

.hero-subtitle[b-t7ndv5jamp] {
    font-size: 1.4rem;
    font-weight: 300;
    opacity: 0.95;
    animation: fadeInUp-b-t7ndv5jamp 0.8s ease-out;
}

/* Tabs Wrapper */
.tabs-wrapper[b-t7ndv5jamp] {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Custom Tabs */
.custom-tabs[b-t7ndv5jamp] {
    background-color: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(210, 105, 30, 0.1);
}

.custom-tabs .nav-tabs[b-t7ndv5jamp] {
    border-bottom: 3px solid #f8f9fa;
    background: linear-gradient(to bottom, #fafafa 0%, #f5f5f5 100%);
    padding: 10px 10px 0 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.custom-tabs .nav-item[b-t7ndv5jamp] {
    flex: 1;
    min-width: 150px;
}

.custom-tabs .nav-link[b-t7ndv5jamp] {
    color: #6c757d;
    border: none;
    padding: 18px 25px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 500;
    font-size: 1rem;
    border-radius: 12px 12px 0 0;
    background: transparent;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
}

.custom-tabs .nav-link:hover[b-t7ndv5jamp] {
    color: #d2691e;
    background: rgba(210, 105, 30, 0.05);
    transform: translateY(-2px);
}

.custom-tabs .nav-link.active[b-t7ndv5jamp] {
    color: #ffffff;
    background: linear-gradient(135deg, #d2691e 0%, #ff8c42 100%);
    box-shadow: 0 4px 15px rgba(210, 105, 30, 0.4);
    transform: translateY(-3px);
}

.custom-tabs .nav-link i[b-t7ndv5jamp] {
    font-size: 1.1rem;
}

.custom-tabs .tab-content[b-t7ndv5jamp] {
    padding: 40px;
    min-height: 350px;
    background: #ffffff;
}

.tab-inner[b-t7ndv5jamp] {
    animation: fadeInContent-b-t7ndv5jamp 0.5s ease-out;
}

.tab-inner h3[b-t7ndv5jamp] {
    color: #d2691e;
    font-weight: 600;
    font-size: 1.8rem;
    margin-bottom: 30px;
}

.disabled-tab[b-t7ndv5jamp] {
      position: relative;
      opacity: 0.999;
      filter: grayscale(2%);
      pointer-events: none; /* trava tudo */
}

      /* Overlay elegante */
      .disabled-tab[b-t7ndv5jamp]::after {
            content: "¡Por favor, espere! En construcción";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: 600;
            color: #6c757d;
            background: rgba(255, 255, 255, 0.6);
            backdrop-filter: blur(2px);
            border-radius: 0.5rem;
      }

/* Search Container */
.search-container[b-t7ndv5jamp] {
    max-width: 700px;
    margin: 0 auto;
}

.search-container .input-group-text[b-t7ndv5jamp] {
    background: linear-gradient(135deg, #d2691e 0%, #ff8c42 100%);
    border: none;
    color: white;
    padding: 12px 20px;
}

.search-container .form-control[b-t7ndv5jamp] {
    border: 2px solid #e0e0e0;
    padding: 12px 20px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.search-container .form-control:focus[b-t7ndv5jamp] {
    border-color: #d2691e;
    box-shadow: 0 0 0 0.25rem rgba(210, 105, 30, 0.15);
}

.search-results[b-t7ndv5jamp] {
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    animation: fadeIn-b-t7ndv5jamp 0.3s ease-out;
}

/* Select Container */
.select-container[b-t7ndv5jamp] {
    max-width: 800px;
    margin: 0 auto;
}

.custom-select-wrapper[b-t7ndv5jamp] {
    margin-bottom: 20px;
}

.custom-select-wrapper .form-label[b-t7ndv5jamp] {
    font-weight: 600;
    color: #495057;
    margin-bottom: 10px;
    font-size: 1rem;
}

.custom-select-wrapper .form-select[b-t7ndv5jamp] {
    border: 2px solid #e0e0e0;
    padding: 12px 20px;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    border-radius: 10px;
    background-color: #ffffff;
}

.custom-select-wrapper .form-select:focus[b-t7ndv5jamp] {
    border-color: #d2691e;
    box-shadow: 0 0 0 0.25rem rgba(210, 105, 30, 0.15);
}

.custom-select-wrapper .form-select:disabled[b-t7ndv5jamp] {
    background-color: #f5f5f5;
    cursor: not-allowed;
    opacity: 0.6;
}

.custom-select-wrapper .form-select option[b-t7ndv5jamp] {
    padding: 10px;
}

.custom-select-wrapper .form-select optgroup[b-t7ndv5jamp] {
    font-weight: 700;
    font-size: 0.95rem;
    color: #d2691e;
    padding: 8px 0;
}

/* Selection Info */
.selection-info[b-t7ndv5jamp] {
    animation: fadeIn-b-t7ndv5jamp 0.4s ease-out;
}

.selection-info .alert[b-t7ndv5jamp] {
    border-radius: 12px;
    border: none;
    padding: 18px 24px;
    font-size: 1.05rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.selection-info .alert-success[b-t7ndv5jamp] {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    color: #155724;
}

/* Animations */
@keyframes fadeInDown-b-t7ndv5jamp {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp-b-t7ndv5jamp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInContent-b-t7ndv5jamp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn-b-t7ndv5jamp {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-title[b-t7ndv5jamp] {
        font-size: 2.5rem;
    }

    .hero-subtitle[b-t7ndv5jamp] {
        font-size: 1.2rem;
    }

    .custom-tabs .tab-content[b-t7ndv5jamp] {
        padding: 30px 20px;
    }

    .tab-inner h3[b-t7ndv5jamp] {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .hero-section[b-t7ndv5jamp] {
        padding: 60px 0;
    }

    .hero-title[b-t7ndv5jamp] {
        font-size: 2rem;
    }

    .hero-subtitle[b-t7ndv5jamp] {
        font-size: 1.1rem;
    }

    .custom-tabs .nav-tabs[b-t7ndv5jamp] {
        padding: 5px;
    }

    .custom-tabs .nav-item[b-t7ndv5jamp] {
        flex: 1 1 calc(50% - 5px);
        min-width: 140px;
    }

    .custom-tabs .nav-link[b-t7ndv5jamp] {
        padding: 14px 15px;
        font-size: 0.9rem;
    }

    .custom-tabs .nav-link i[b-t7ndv5jamp] {
        font-size: 1rem;
    }

    .custom-tabs .tab-content[b-t7ndv5jamp] {
        padding: 25px 15px;
        min-height: 300px;
    }

    .tab-inner h3[b-t7ndv5jamp] {
        font-size: 1.3rem;
        margin-bottom: 20px;
    }

    .search-container .form-control[b-t7ndv5jamp],
    .custom-select-wrapper .form-select[b-t7ndv5jamp] {
        font-size: 1rem;
        padding: 10px 15px;
    }

    .selection-info .alert[b-t7ndv5jamp] {
        font-size: 0.95rem;
        padding: 15px 18px;
    }
}

@media (max-width: 576px) {
    .hero-title[b-t7ndv5jamp] {
        font-size: 1.6rem;
    }

    .hero-subtitle[b-t7ndv5jamp] {
        font-size: 1rem;
    }

    .custom-tabs .nav-item[b-t7ndv5jamp] {
        flex: 1 1 100%;
        min-width: 100%;
    }

    .custom-tabs .nav-link[b-t7ndv5jamp] {
        padding: 12px 10px;
        font-size: 0.85rem;
    }

    .custom-tabs .tab-content[b-t7ndv5jamp] {
        padding: 20px 12px;
    }

    .tab-inner h3[b-t7ndv5jamp] {
        font-size: 1.2rem;
    }

    .row.g-3[b-t7ndv5jamp] {
        gap: 15px !important;
    }

    .col-md-4[b-t7ndv5jamp], .col-md-6[b-t7ndv5jamp] {
        margin-bottom: 15px;
    }
}

/* Print Styles */
@media print {
    .hero-section[b-t7ndv5jamp] {
        background: #d2691e;
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }

    .custom-tabs[b-t7ndv5jamp] {
        box-shadow: none;
        border: 1px solid #ddd;
    }

    .custom-tabs .nav-tabs[b-t7ndv5jamp] {
        display: none;
    }

    .custom-tabs .tab-content[b-t7ndv5jamp] {
        padding: 20px;
    }
}
