/* /Components/Layout/MainLayout.razor.rz.scp.css */
/* ========================================
   LAYOUT PRINCIPAL
   ======================================== */
.page[b-pl08t8xf97] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-pl08t8xf97] {
    flex: 1;
}

/* ========================================
   HEADER - TRANSPARENTE COM SCROLL
   ======================================== */
.header[b-pl08t8xf97] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: transparent;
    padding: 1rem 0;
    transition: all 0.3s ease-in-out;
    z-index: 1000;
}

    .header .container[b-pl08t8xf97] {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    /* Header após scroll - fundo branco */
    .header.scrolled[b-pl08t8xf97] {
        background: var(--white);
        backdrop-filter: blur(0px);
        box-shadow: var(--shadow);
        padding: 0.8rem 0;
    }

/* ========================================
   LOGO COM FUNDO PARA VISIBILIDADE
   ======================================== */
.logo a[b-pl08t8xf97] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

/* Wrapper da imagem da logo - efeito glassmorphism */
.logo-icon-wrapper[b-pl08t8xf97] {
    display: inline-flex;
    background: rgba(0, 180, 216, 0.6); /* Fundo escuro semi-transparente */
    backdrop-filter: blur(8px); /* Desfoque para efeito vidro */
    border-radius: 12px; /* Bordas arredondadas */
    padding: 6px 12px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Ao scroll, se quiser alterar o fundo da logo */
.header.scrolled .logo-icon-wrapper[b-pl08t8xf97] {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(0px);
}

.logo-icon[b-pl08t8xf97] {
    display: inline-flex;
    align-items: center;
}

    .logo-icon img[b-pl08t8xf97] {
        max-height: 65px;
        width: auto;
        object-fit: contain;
        transition: all 0.3s ease;
    }

/* Ajuste de tamanho ao scroll */
.header.scrolled .logo-icon img[b-pl08t8xf97] {
    max-height: 40px;
}

/* Texto da logo */
.logo-text[b-pl08t8xf97] {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    transition: color 0.3s ease;
}

.header.scrolled .logo-text[b-pl08t8xf97] {
    color: var(--primary);
    text-shadow: none;
}

.logo-highlight[b-pl08t8xf97] {
    color: var(--aqua);
}


/* ========================================
   MENU DE NAVEGAÇÃO
   ======================================== */
.nav-menu[b-pl08t8xf97] {
    display: flex;
    list-style: none;
    gap: 2rem;
}

    .nav-menu a[b-pl08t8xf97] {
        text-decoration: none;
        color: var(--white);
        font-weight: 500;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
        transition: all 0.3s ease;
    }

        .nav-menu a:hover[b-pl08t8xf97],
        .nav-menu a.active[b-pl08t8xf97] {
            color: rgba(0, 180, 216, 0.4);
        }

/* Links após scroll - texto escuro */
.header.scrolled .nav-menu a[b-pl08t8xf97] {
    color: var(--gray-700);
    text-shadow: none;
}

    .header.scrolled .nav-menu a:hover[b-pl08t8xf97],
    .header.scrolled .nav-menu a.active[b-pl08t8xf97] {
        color: var(--aqua);
    }

/* ========================================
   BOTÕES
   ======================================== */
/* Botão Orçamento no header transparente */
.header .btn-outline[b-pl08t8xf97] {
    border-color: var(--aqua);
    color: var(--white);
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(4px);
    transition: all 0.3s ease;
}

    .header .btn-outline:hover[b-pl08t8xf97] {
        background: var(--white);
        color: var(--primary);
        border-color: var(--white);
    }

/* Botão Orçamento após scroll */
.header.scrolled .btn-outline[b-pl08t8xf97] {
    border-color: var(--aqua);
    color: var(--aqua);
    background: transparent;
    backdrop-filter: none;
}

    .header.scrolled .btn-outline:hover[b-pl08t8xf97] {
        background: var(--aqua);
        color: var(--white);
    }

/* Botões globais */
.btn-primary[b-pl08t8xf97] {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
    padding: 0.75rem 2rem;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.2s, box-shadow 0.2s;
    display: inline-block;
    border: none;
    cursor: pointer;
}

    .btn-primary:hover[b-pl08t8xf97] {
        transform: translateY(-2px);
        box-shadow: var(--shadow-lg);
    }

.btn-outline[b-pl08t8xf97] {
    border: 2px solid var(--aqua);
    color: var(--aqua);
    padding: 0.7rem 1.8rem;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    background: transparent;
    cursor: pointer;
}

    .btn-outline:hover[b-pl08t8xf97] {
        background: var(--aqua);
        color: var(--white);
    }

.btn-outline-white[b-pl08t8xf97] {
    border: 2px solid var(--white);
    color: var(--white);
    padding: 0.75rem 2rem;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    background: transparent;
    cursor: pointer;
}

    .btn-outline-white:hover[b-pl08t8xf97] {
        background: var(--white);
        color: var(--primary);
    }

/* ========================================
   MENU MOBILE
   ======================================== */
.mobile-menu-btn[b-pl08t8xf97] {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--white);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    transition: color 0.3s ease;
}

.header.scrolled .mobile-menu-btn[b-pl08t8xf97] {
    color: var(--primary);
    text-shadow: none;
}

/* ========================================
   SIDEBAR (Blazor default)
   ======================================== */
.sidebar[b-pl08t8xf97] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.top-row[b-pl08t8xf97] {
    background-color: #f7f7f9;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-pl08t8xf97]  a,
    .top-row[b-pl08t8xf97]  .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
        text-decoration: none;
    }

        .top-row[b-pl08t8xf97]  a:hover,
        .top-row[b-pl08t8xf97]  .btn-link:hover {
            text-decoration: underline;
        }

        .top-row[b-pl08t8xf97]  a:first-child {
            overflow: hidden;
            text-overflow: ellipsis;
        }

/* ========================================
   RESPONSIVIDADE
   ======================================== */
@media (max-width: 640.98px) {
    .top-row[b-pl08t8xf97] {
        justify-content: space-between;
    }

        .top-row[b-pl08t8xf97]  a,
        .top-row[b-pl08t8xf97]  .btn-link {
            margin-left: 0;
        }
}

@media (min-width: 641px) {
    .page[b-pl08t8xf97] {
        flex-direction: row;
    }

    .sidebar[b-pl08t8xf97] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-pl08t8xf97] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

        .top-row.auth[b-pl08t8xf97]  a:first-child {
            flex: 1;
            text-align: right;
            width: 0;
        }

    .top-row[b-pl08t8xf97],
    article[b-pl08t8xf97] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn[b-pl08t8xf97] {
        display: block;
    }

    .nav-menu[b-pl08t8xf97] {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 1rem;
        gap: 1rem;
        box-shadow: var(--shadow);
    }

        .nav-menu.open[b-pl08t8xf97] {
            display: flex;
        }

    .header .nav-menu a[b-pl08t8xf97] {
        color: var(--gray-700);
        text-shadow: none;
    }

    .header.scrolled .nav-menu a[b-pl08t8xf97] {
        color: var(--gray-700);
    }

    /* Ajuste da logo em mobile */
    .logo-icon-wrapper[b-pl08t8xf97] {
        padding: 4px 8px;
    }

    .logo-icon img[b-pl08t8xf97] {
        max-height: 35px;
    }

    .header.scrolled .logo-icon img[b-pl08t8xf97] {
        max-height: 35px;
    }

    .logo-text[b-pl08t8xf97] {
        font-size: 1rem;
    }
}

/* ========================================
   Blazor Error UI
   ======================================== */
#blazor-error-ui[b-pl08t8xf97] {
    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-pl08t8xf97] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }

/* ========================================
   SCROLLBAR PERSONALIZADA (opcional)
   ======================================== */
[b-pl08t8xf97]::-webkit-scrollbar {
    width: 8px;
}

[b-pl08t8xf97]::-webkit-scrollbar-track {
    background: var(--gray-200);
}

[b-pl08t8xf97]::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 4px;
}

    [b-pl08t8xf97]::-webkit-scrollbar-thumb:hover {
        background: var(--primary-dark);
    }
/* /Components/Layout/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-g85cuuha9d] {
    appearance: none;
    cursor: pointer;
    width: 3.5rem;
    height: 2.5rem;
    color: white;
    position: absolute;
    top: 0.5rem;
    right: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") no-repeat center/1.75rem rgba(255, 255, 255, 0.1);
}

.navbar-toggler:checked[b-g85cuuha9d] {
    background-color: rgba(255, 255, 255, 0.5);
}

.top-row[b-g85cuuha9d] {
    min-height: 3.5rem;
    background-color: rgba(0,0,0,0.4);
}

.navbar-brand[b-g85cuuha9d] {
    font-size: 1.1rem;
}

.bi[b-g85cuuha9d] {
    display: inline-block;
    position: relative;
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.75rem;
    top: -1px;
    background-size: cover;
}

.bi-house-door-fill-nav-menu[b-g85cuuha9d] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-house-door-fill' viewBox='0 0 16 16'%3E%3Cpath d='M6.5 14.5v-3.505c0-.245.25-.495.5-.495h2c.25 0 .5.25.5.5v3.5a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5v-7a.5.5 0 0 0-.146-.354L13 5.793V2.5a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5v1.293L8.354 1.146a.5.5 0 0 0-.708 0l-6 6A.5.5 0 0 0 1.5 7.5v7a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5Z'/%3E%3C/svg%3E");
}

.bi-plus-square-fill-nav-menu[b-g85cuuha9d] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-plus-square-fill' viewBox='0 0 16 16'%3E%3Cpath d='M2 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2H2zm6.5 4.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3a.5.5 0 0 1 1 0z'/%3E%3C/svg%3E");
}

.bi-list-nested-nav-menu[b-g85cuuha9d] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-list-nested' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M4.5 11.5A.5.5 0 0 1 5 11h10a.5.5 0 0 1 0 1H5a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 3 7h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 1 3h10a.5.5 0 0 1 0 1H1a.5.5 0 0 1-.5-.5z'/%3E%3C/svg%3E");
}

.nav-item[b-g85cuuha9d] {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

    .nav-item:first-of-type[b-g85cuuha9d] {
        padding-top: 1rem;
    }

    .nav-item:last-of-type[b-g85cuuha9d] {
        padding-bottom: 1rem;
    }

    .nav-item[b-g85cuuha9d]  .nav-link {
        color: #d7d7d7;
        background: none;
        border: none;
        border-radius: 4px;
        height: 3rem;
        display: flex;
        align-items: center;
        line-height: 3rem;
        width: 100%;
    }

.nav-item[b-g85cuuha9d]  a.active {
    background-color: rgba(255,255,255,0.37);
    color: white;
}

.nav-item[b-g85cuuha9d]  .nav-link:hover {
    background-color: rgba(255,255,255,0.1);
    color: white;
}

.nav-scrollable[b-g85cuuha9d] {
    display: none;
}

.navbar-toggler:checked ~ .nav-scrollable[b-g85cuuha9d] {
    display: block;
}

@media (min-width: 641px) {
    .navbar-toggler[b-g85cuuha9d] {
        display: none;
    }

    .nav-scrollable[b-g85cuuha9d] {
        /* Never collapse the sidebar for wide screens */
        display: block;

        /* Allow sidebar to scroll for tall menus */
        height: calc(100vh - 3.5rem);
        overflow-y: auto;
    }
}
/* /Components/Pages/Home.razor.rz.scp.css */
/* ========================================
   HOME.RAZOR.CSS - ESTILOS COMPLETOS
   Neves Status Pools
   ======================================== */

/* ========================================
   VARIÁVEIS (Garantia de consistência)
   ======================================== */
:root[b-u46fv6fmz2] {
    --primary: #1a4d8c;
    --primary-dark: #0e3a6b;
    --primary-light: #3a7bd5;
    --aqua: #00b4d8;
    --aqua-dark: #0099cc;
    --gray-bg: #f5f7fa;
    --white: #ffffff;
    --gray-100: #f8f9fa;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-600: #6c757d;
    --gray-700: #495057;
    --gray-800: #343a40;
    --gray-900: #212529;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.12);
}

/* ========================================
   HERO SECTION - COM VIDA E DINAMISMO
   ======================================== */
.hero[b-u46fv6fmz2] {
    position: relative;
    min-height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Overlay dramático */
.hero-overlay[b-u46fv6fmz2] {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 1;
}

/* Efeito Parallax */
.hero[b-u46fv6fmz2] {
    background-attachment: fixed;
}

@media (max-width: 768px) {
    .hero[b-u46fv6fmz2] {
        background-attachment: scroll;
    }
}

/* Elementos flutuantes decorativos */
.hero-shapes[b-u46fv6fmz2] {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    pointer-events: none;
    overflow: hidden;
}

.shape[b-u46fv6fmz2] {
    position: absolute;
    font-size: 2rem;
    opacity: 0.15;
    animation: float-b-u46fv6fmz2 6s ease-in-out infinite;
}

.shape-1[b-u46fv6fmz2] {
    top: 15%;
    left: 5%;
    animation-delay: 0s;
    font-size: 3rem;
}

.shape-2[b-u46fv6fmz2] {
    bottom: 20%;
    right: 8%;
    animation-delay: 1.5s;
    font-size: 4rem;
}

.shape-3[b-u46fv6fmz2] {
    top: 40%;
    right: 15%;
    animation-delay: 3s;
    font-size: 2.5rem;
}

@keyframes float-b-u46fv6fmz2 {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

.hero .container[b-u46fv6fmz2] {
    position: relative;
    z-index: 3;
    width: 100%;
}

.hero-content[b-u46fv6fmz2] {
    max-width: 750px;
}

/* Badge animada */
.hero-badge[b-u46fv6fmz2] {
    display: inline-block;
    margin-bottom: 1.5rem;
}

    .hero-badge span[b-u46fv6fmz2] {
        background: rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(10px);
        padding: 0.5rem 1rem;
        border-radius: 50px;
        font-size: 0.85rem;
        font-weight: 500;
        color: var(--aqua);
        border: 1px solid rgba(255, 255, 255, 0.2);
        letter-spacing: 1px;
    }

/* Título com gradiente */
.hero-content h1[b-u46fv6fmz2] {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--white);
    text-shadow: 2px 2px 15px rgba(0, 0, 0, 0.3);
}

    .hero-content h1 .highlight[b-u46fv6fmz2] {
        background: linear-gradient(135deg, var(--aqua), #007bff);
        background-clip: text;
        -webkit-background-clip: text;
        color: transparent;
        position: relative;
        display: inline-block;
    }

        .hero-content h1 .highlight[b-u46fv6fmz2]::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, var(--aqua), transparent);
            border-radius: 3px;
        }

/* Descrição */
.hero-content p[b-u46fv6fmz2] {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.6;
}

    .hero-content p strong[b-u46fv6fmz2] {
        color: var(--aqua);
        font-weight: 700;
    }

/* Botões animados */
.hero-buttons[b-u46fv6fmz2] {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.btn-primary[b-u46fv6fmz2], .btn-outline-white[b-u46fv6fmz2] {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary[b-u46fv6fmz2] {
    background: linear-gradient(135deg, #007bff, var(--aqua));
    color: white;
    border: none;
    box-shadow: 0 5px 20px rgba(0, 123, 255, 0.3);
    animation: pulse-b-u46fv6fmz2 2s infinite;
}

    .btn-primary:hover[b-u46fv6fmz2] {
        transform: translateY(-3px);
        box-shadow: 0 8px 30px rgba(0, 123, 255, 0.4);
    }

    .btn-primary i[b-u46fv6fmz2] {
        transition: transform 0.3s;
    }

    .btn-primary:hover i[b-u46fv6fmz2] {
        transform: translateX(5px);
    }

@keyframes pulse-b-u46fv6fmz2 {
    0%, 100% {
        box-shadow: 0 5px 20px rgba(0, 123, 255, 0.3);
    }

    50% {
        box-shadow: 0 5px 30px rgba(0, 123, 255, 0.5);
    }
}

.btn-outline-white[b-u46fv6fmz2] {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(5px);
}

    .btn-outline-white:hover[b-u46fv6fmz2] {
        background: rgba(255, 255, 255, 0.1);
        border-color: var(--white);
        transform: translateY(-3px);
    }

    .btn-outline-white i[b-u46fv6fmz2] {
        transition: transform 0.3s;
    }

    .btn-outline-white:hover i[b-u46fv6fmz2] {
        transform: translateX(3px);
    }

/* Indicador de Scroll */
.scroll-indicator[b-u46fv6fmz2] {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 3;
    cursor: pointer;
}

    .scroll-indicator span[b-u46fv6fmz2] {
        display: block;
        color: rgba(255, 255, 255, 0.7);
        font-size: 0.75rem;
        margin-bottom: 8px;
        letter-spacing: 2px;
    }

.mouse[b-u46fv6fmz2] {
    width: 26px;
    height: 42px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    position: relative;
    margin: 0 auto;
}

.wheel[b-u46fv6fmz2] {
    width: 4px;
    height: 8px;
    background: var(--white);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel-b-u46fv6fmz2 2s ease infinite;
}

@keyframes scrollWheel-b-u46fv6fmz2 {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }

    80% {
        opacity: 0;
        transform: translateX(-50%) translateY(15px);
    }

    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(0);
    }
}

/* ========================================
   SEÇÃO DE NÚMEROS
   ======================================== */
.numbers[b-u46fv6fmz2] {
    padding: 4rem 0;
    background: var(--gray-bg);
}

.numbers-grid[b-u46fv6fmz2] {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    text-align: center;
    gap: 2rem;
}

.number-item h2[b-u46fv6fmz2] {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.number-item p[b-u46fv6fmz2] {
    font-weight: 600;
    color: var(--gray-800);
}

.number-item small[b-u46fv6fmz2] {
    color: var(--gray-600);
    font-size: 0.875rem;
}

/* ========================================
   SEÇÃO DE SERVIÇOS
   ======================================== */
.services-home[b-u46fv6fmz2] {
    padding: 5rem 0;
}

.section-header[b-u46fv6fmz2] {
    text-align: center;
    margin-bottom: 3rem;
}

    .section-header h2[b-u46fv6fmz2] {
        font-size: 2.5rem;
        font-weight: 700;
        color: var(--primary);
        margin-bottom: 0.5rem;
    }

    .section-header p[b-u46fv6fmz2] {
        color: var(--gray-600);
        font-size: 1.125rem;
    }

.services-grid[b-u46fv6fmz2] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.service-card[b-u46fv6fmz2] {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
}

    .service-card:hover[b-u46fv6fmz2] {
        transform: translateY(-8px);
        box-shadow: var(--shadow-lg);
    }

.service-image[b-u46fv6fmz2] {
    height: 200px;
    overflow: hidden;
}

    .service-image img[b-u46fv6fmz2] {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s;
    }

.service-card:hover .service-image img[b-u46fv6fmz2] {
    transform: scale(1.05);
}

.service-content[b-u46fv6fmz2] {
    padding: 1.5rem;
    text-align: center;
}

.card-icon[b-u46fv6fmz2] {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.service-content h3[b-u46fv6fmz2] {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.service-content p[b-u46fv6fmz2] {
    color: var(--gray-600);
    margin-bottom: 1rem;
}

/* Service List */
.service-list[b-u46fv6fmz2] {
    list-style: none;
    text-align: left;
    margin: 1rem 0;
    padding-left: 0;
}

    .service-list li[b-u46fv6fmz2] {
        font-size: 0.875rem;
        color: var(--gray-600);
        margin-bottom: 0.5rem;
    }

.card-link[b-u46fv6fmz2] {
    color: var(--aqua);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    transition: gap 0.3s;
}

    .card-link:hover[b-u46fv6fmz2] {
        gap: 0.5rem;
    }

/* ========================================
   DIFERENCIAIS
   ======================================== */
.diferenciais[b-u46fv6fmz2] {
    padding: 5rem 0;
    background: var(--gray-bg);
}

.diferenciais-grid[b-u46fv6fmz2] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
}

.diferencial-item[b-u46fv6fmz2] {
    background: var(--white);
    padding: 1rem 1.5rem;
    border-radius: 40px;
    text-align: center;
    font-weight: 500;
    color: var(--primary);
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
}

    .diferencial-item:hover[b-u46fv6fmz2] {
        transform: translateY(-3px);
        box-shadow: var(--shadow-lg);
    }

/* ========================================
   GALERIA
   ======================================== */
.galeria-pdf[b-u46fv6fmz2] {
    padding: 5rem 0;
    background: var(--white);
}

.galeria-grid[b-u46fv6fmz2] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
}

.galeria-item[b-u46fv6fmz2] {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
}

    .galeria-item:hover[b-u46fv6fmz2] {
        transform: translateY(-5px);
        box-shadow: var(--shadow-lg);
    }

    .galeria-item img[b-u46fv6fmz2] {
        width: 100%;
        height: 280px;
        object-fit: cover;
        transition: transform 0.5s;
    }

    .galeria-item:hover img[b-u46fv6fmz2] {
        transform: scale(1.05);
    }

.galeria-overlay[b-u46fv6fmz2] {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(26, 77, 140, 0.9));
    padding: 1.5rem;
    text-align: center;
    transform: translateY(100%);
    transition: transform 0.3s;
}

.galeria-item:hover .galeria-overlay[b-u46fv6fmz2] {
    transform: translateY(0);
}

.galeria-overlay span[b-u46fv6fmz2] {
    color: var(--white);
    font-weight: 600;
    font-size: 1rem;
}

/* Números nos projetos */
.galeria-item[b-u46fv6fmz2]::before {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 1;
}

.galeria-item:nth-child(1)[b-u46fv6fmz2]::before {
    content: "01";
}

.galeria-item:nth-child(2)[b-u46fv6fmz2]::before {
    content: "02";
}

.galeria-item:nth-child(3)[b-u46fv6fmz2]::before {
    content: "03";
}

.galeria-item:nth-child(4)[b-u46fv6fmz2]::before {
    content: "04";
}

.galeria-item:nth-child(5)[b-u46fv6fmz2]::before {
    content: "05";
}

.galeria-item:nth-child(6)[b-u46fv6fmz2]::before {
    content: "06";
}

/* ========================================
   WHY CHOOSE - PORQUE ESCOLHER
   ======================================== */
.why-choose[b-u46fv6fmz2] {
    padding: 5rem 0;
    background: var(--white);
}

.why-grid[b-u46fv6fmz2] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    text-align: center;
}

.why-item[b-u46fv6fmz2] {
    background: var(--primary);
    color: var(--white);
    padding: 1rem;
    border-radius: 40px;
    font-weight: 500;
    transition: transform 0.3s, box-shadow 0.3s;
}

    .why-item:hover[b-u46fv6fmz2] {
        transform: translateY(-3px);
        box-shadow: var(--shadow);
    }

/* ========================================
   MERCADO-ALVO
   ======================================== */
.target-market[b-u46fv6fmz2] {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
    text-align: center;
}

    .target-market h2[b-u46fv6fmz2] {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .target-market p[b-u46fv6fmz2] {
        max-width: 700px;
        margin: 0 auto 2rem;
        opacity: 0.9;
    }

.market-grid[b-u46fv6fmz2] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
}

.market-item[b-u46fv6fmz2] {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.75rem;
    border-radius: 40px;
    font-weight: 500;
    transition: transform 0.3s, background 0.3s;
}

    .market-item:hover[b-u46fv6fmz2] {
        background: rgba(255, 255, 255, 0.2);
        transform: translateY(-2px);
    }

/* ========================================
   MENSAGEM FINAL - ADMINISTRADOR
   ======================================== */
.final-message[b-u46fv6fmz2] {
    padding: 5rem 0;
    background: var(--gray-bg);
}

.message-card[b-u46fv6fmz2] {
    background: var(--white);
    padding: 3rem;
    border-radius: 30px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    max-width: 800px;
    margin: 0 auto;
}

    .message-card .quote[b-u46fv6fmz2] {
        font-size: 1.25rem;
        font-style: italic;
        color: var(--gray-700);
        line-height: 1.6;
        margin-bottom: 2rem;
    }

.signature h4[b-u46fv6fmz2] {
    font-size: 0.875rem;
    color: var(--gray-500);
    margin-bottom: 0.5rem;
}

.signature p[b-u46fv6fmz2] {
    color: var(--primary);
    font-weight: 500;
}

/* ========================================
   CONTACT FOOTER SECTION
   ======================================== */
.contact-footer-section[b-u46fv6fmz2] {
    padding: 4rem 0;
    background: var(--white);
}

.contact-info-box[b-u46fv6fmz2] {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    padding: 3rem;
    border-radius: 30px;
    text-align: center;
    color: var(--white);
}

    .contact-info-box h3[b-u46fv6fmz2] {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .contact-info-box p[b-u46fv6fmz2] {
        margin-bottom: 0.75rem;
        opacity: 0.9;
    }

    .contact-info-box .btn-primary[b-u46fv6fmz2] {
        margin-top: 1.5rem;
        background: var(--white);
        color: var(--primary);
        border: none;
    }

        .contact-info-box .btn-primary:hover[b-u46fv6fmz2] {
            transform: translateY(-2px);
            box-shadow: var(--shadow-lg);
        }

/* ========================================
   UTILITÁRIOS
   ======================================== */
.text-center[b-u46fv6fmz2] {
    text-align: center;
}

/* ========================================
   ANIMAÇÕES AOS
   ======================================== */
[data-aos][b-u46fv6fmz2] {
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

    [data-aos].aos-animate[b-u46fv6fmz2] {
        opacity: 1;
        transform: translateY(0) !important;
    }

[data-aos="fade-up"][b-u46fv6fmz2] {
    transform: translateY(30px);
}

[data-aos="fade-left"][b-u46fv6fmz2] {
    transform: translateX(-30px);
}

[data-aos="fade-right"][b-u46fv6fmz2] {
    transform: translateX(30px);
}

/* ========================================
   RESPONSIVIDADE
   ======================================== */
@media (max-width: 768px) {
    .hero-content h1[b-u46fv6fmz2] {
        font-size: 2.2rem;
    }

    .hero-content p[b-u46fv6fmz2] {
        font-size: 1rem;
    }

    .hero-buttons[b-u46fv6fmz2] {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary[b-u46fv6fmz2], .btn-outline-white[b-u46fv6fmz2] {
        width: 100%;
        justify-content: center;
    }

    .scroll-indicator[b-u46fv6fmz2] {
        display: none;
    }

    .hero-shapes[b-u46fv6fmz2] {
        display: none;
    }

    .numbers-grid[b-u46fv6fmz2] {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .section-header h2[b-u46fv6fmz2] {
        font-size: 1.75rem;
    }

    .message-card[b-u46fv6fmz2] {
        padding: 1.5rem;
    }

        .message-card .quote[b-u46fv6fmz2] {
            font-size: 1rem;
        }

    .contact-info-box[b-u46fv6fmz2] {
        padding: 1.5rem;
    }

    .diferencial-item[b-u46fv6fmz2] {
        font-size: 0.875rem;
    }

    .galeria-grid[b-u46fv6fmz2] {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .galeria-item img[b-u46fv6fmz2] {
        height: 220px;
    }

    .hero .container[b-u46fv6fmz2] {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-content h1[b-u46fv6fmz2] {
        font-size: 1.8rem;
    }

    .hero-badge span[b-u46fv6fmz2] {
        font-size: 0.7rem;
    }

    .btn-primary[b-u46fv6fmz2], .btn-outline-white[b-u46fv6fmz2] {
        padding: 10px 20px;
        font-size: 0.875rem;
    }

    .number-item h2[b-u46fv6fmz2] {
        font-size: 2rem;
    }

    .services-grid[b-u46fv6fmz2] {
        grid-template-columns: 1fr;
    }

    .diferenciais-grid[b-u46fv6fmz2] {
        grid-template-columns: 1fr;
    }

    .why-grid[b-u46fv6fmz2] {
        grid-template-columns: 1fr;
    }

    .market-grid[b-u46fv6fmz2] {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   SCROLLBAR PERSONALIZADA
   ======================================== */
[b-u46fv6fmz2]::-webkit-scrollbar {
    width: 10px;
}

[b-u46fv6fmz2]::-webkit-scrollbar-track {
    background: var(--gray-200);
}

[b-u46fv6fmz2]::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 5px;
}

    [b-u46fv6fmz2]::-webkit-scrollbar-thumb:hover {
        background: var(--primary-dark);
    }
/* /Components/Shared/Footer.razor.rz.scp.css */
/* ========================================
   FOOTER - RODAPÉ PROFISSIONAL
   ======================================== */
.footer[b-6ofhkr8ohe] {
    background: linear-gradient(135deg, var(--gray-900) 0%, #1a1a2e 100%);
    color: var(--gray-400);
    padding: 4rem 0 2rem;
    position: relative;
}

    /* Efeito decorativo no topo */
    .footer[b-6ofhkr8ohe]::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, var(--aqua), var(--primary), var(--aqua));
    }

/* Grid principal - 4 colunas fixas em desktop */
.footer-grid[b-6ofhkr8ohe] {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 colunas iguais */
    gap: 2rem;
    margin-bottom: 3rem;
}
/* Logo com imagem */
.logo-icon[b-6ofhkr8ohe] {
    display: inline-flex;
    align-items: center;
}

    .logo-icon img[b-6ofhkr8ohe] {
        max-height: 80px !important;
        width: auto;
        object-fit: contain;
    }

/* Footer logo */
.footer-logo .logo-icon img[b-6ofhkr8ohe] {
    max-height: 180px !important;
}
/* Logo da marca */
.footer-logo[b-6ofhkr8ohe] {
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

    .footer-logo .logo-icon[b-6ofhkr8ohe] {
        font-size: 1.2rem;
    }

    .footer-logo span[b-6ofhkr8ohe] {
        color: var(--white);
    }

    .footer-logo .highlight[b-6ofhkr8ohe] {
        color: var(--aqua);
        font-size: 1.2rem;
    }

/* Descrição da marca */
.footer-brand p[b-6ofhkr8ohe] {
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: var(--gray-400);
}

/* Badges */
.footer-badges[b-6ofhkr8ohe] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1rem;
}

.badge[b-6ofhkr8ohe] {
    background: rgba(0, 180, 216, 0.15);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--aqua);
    border: 1px solid rgba(0, 180, 216, 0.3);
    white-space: nowrap;
}

/* Títulos das seções */
.footer h4[b-6ofhkr8ohe] {
    color: var(--white);
    margin-bottom: 1.25rem;
    font-size: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

    .footer h4 i[b-6ofhkr8ohe] {
        color: var(--aqua);
        font-size: 1rem;
    }

/* Listas de links */
.footer-links ul[b-6ofhkr8ohe],
.footer-services ul[b-6ofhkr8ohe] {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li[b-6ofhkr8ohe],
.footer-services li[b-6ofhkr8ohe] {
    margin-bottom: 0.75rem;
}

.footer-links a[b-6ofhkr8ohe],
.footer-services a[b-6ofhkr8ohe] {
    color: var(--gray-400);
    text-decoration: none;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
}

    .footer-links a i[b-6ofhkr8ohe],
    .footer-services a i[b-6ofhkr8ohe] {
        font-size: 0.75rem;
        color: var(--aqua);
        transition: transform 0.3s;
        width: 16px;
    }

    .footer-links a:hover[b-6ofhkr8ohe],
    .footer-services a:hover[b-6ofhkr8ohe] {
        color: var(--aqua);
        transform: translateX(5px);
    }

        .footer-links a:hover i[b-6ofhkr8ohe],
        .footer-services a:hover i[b-6ofhkr8ohe] {
            transform: translateX(3px);
        }

/* Contato */
.footer-contact p[b-6ofhkr8ohe] {
    margin-bottom: 0.75rem;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

    .footer-contact p i[b-6ofhkr8ohe] {
        width: 20px;
        color: var(--aqua);
        font-size: 1rem;
    }

/* Horário de funcionamento */
.footer-hours[b-6ofhkr8ohe] {
    margin-top: 1rem;
}

    .footer-hours h4[b-6ofhkr8ohe] {
        margin-bottom: 0.75rem;
    }

    .footer-hours p[b-6ofhkr8ohe] {
        font-size: 0.8rem;
        margin-bottom: 0.5rem;
    }

        .footer-hours p span[b-6ofhkr8ohe] {
            color: var(--white);
            font-weight: 500;
        }

/* Redes Sociais */
.footer-social[b-6ofhkr8ohe] {
    text-align: center;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 1.5rem;
}

.social-links[b-6ofhkr8ohe] {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.social-icon[b-6ofhkr8ohe] {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s;
    font-size: 1.2rem;
}

    .social-icon:hover[b-6ofhkr8ohe] {
        background: var(--aqua);
        color: var(--white);
        transform: translateY(-3px);
    }

/* Copyright */
.footer-bottom[b-6ofhkr8ohe] {
    text-align: center;
    font-size: 0.75rem;
}

    .footer-bottom p[b-6ofhkr8ohe] {
        margin-bottom: 0.5rem;
    }

    .footer-bottom i[b-6ofhkr8ohe] {
        color: #ff6b6b;
    }

    .footer-bottom .admin[b-6ofhkr8ohe] {
        color: var(--aqua);
        font-size: 0.7rem;
        margin-top: 0.5rem;
    }

/* ========================================
   RESPONSIVIDADE - SÓ QUEBRA NO MOBILE
   ======================================== */
@media (max-width: 1024px) {
    .footer-grid[b-6ofhkr8ohe] {
        gap: 1.5rem;
    }
}

/* Tablet - mantém 4 colunas mas com gap menor */
@media (max-width: 900px) {
    .footer-grid[b-6ofhkr8ohe] {
        grid-template-columns: repeat(4, 1fr);
        gap: 1rem;
    }

    .footer-logo[b-6ofhkr8ohe] {
        font-size: 1.2rem;
    }

        .footer-logo .logo-icon[b-6ofhkr8ohe] {
            font-size: 1.5rem;
        }

    .badge[b-6ofhkr8ohe] {
        font-size: 0.6rem;
        padding: 0.2rem 0.5rem;
    }
}

/* Mobile - QUEBRA em 1 coluna */
@media (max-width: 768px) {
    .footer[b-6ofhkr8ohe] {
        padding: 3rem 0 1.5rem;
    }

    .footer-grid[b-6ofhkr8ohe] {
        grid-template-columns: 1fr; /* 👈 SÓ AQUI QUEBRA */
        gap: 2rem;
        text-align: center;
    }

    .footer-logo[b-6ofhkr8ohe] {
        justify-content: center;
    }

    .footer-brand p[b-6ofhkr8ohe] {
        text-align: center;
    }

    .footer-badges[b-6ofhkr8ohe] {
        justify-content: center;
    }

    .footer h4[b-6ofhkr8ohe] {
        justify-content: center;
    }

    .footer-links ul[b-6ofhkr8ohe],
    .footer-services ul[b-6ofhkr8ohe] {
        text-align: center;
    }

    .footer-links a[b-6ofhkr8ohe],
    .footer-services a[b-6ofhkr8ohe] {
        justify-content: center;
    }

    .footer-contact p[b-6ofhkr8ohe] {
        justify-content: center;
    }

    .social-links[b-6ofhkr8ohe] {
        gap: 1rem;
    }

    .social-icon[b-6ofhkr8ohe] {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .logo-icon img[b-6ofhkr8ohe] {
        max-height: 35px;
    }

    .footer-logo .logo-icon img[b-6ofhkr8ohe] {
        max-height: 30px;
    }
}

/* Mobile pequeno */
@media (max-width: 480px) {
    .footer-logo[b-6ofhkr8ohe] {
        font-size: 1.2rem;
    }

        .footer-logo .logo-icon[b-6ofhkr8ohe] {
            font-size: 1.5rem;
        }

    .footer-badges[b-6ofhkr8ohe] {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }

    .badge[b-6ofhkr8ohe] {
        white-space: normal;
    }

    .social-icon[b-6ofhkr8ohe] {
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
    }
}
