/* /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(--primary);
    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 (CORRIGIDO)
   ======================================== */
.nav-menu[b-pl08t8xf97] {
    display: flex;
    list-style: none;
    gap: 2rem;
}

    /* --- ESTADO INICIAL (HEADER TRANSPARENTE) --- */
    .nav-menu a[b-pl08t8xf97] {
        text-decoration: none;
        color: #ffffff; /* Mudou para BRANCO para garantir leitura */
        font-weight: 600; /* Aumentei o peso para dar mais destaque */
        text-shadow: 0 2px 12px rgba(0, 0, 0, 0.9); /* Sombra forte para o texto branco aparecer em qualquer fundo */
        transition: all 0.3s ease;
    }

        .nav-menu a:hover[b-pl08t8xf97],
        .nav-menu a.active[b-pl08t8xf97] {
            color: #00b4d8; /* Ao passar o mouse ou na página ativa, fica Ciano */
            text-shadow: 0 0 15px rgba(0, 180, 216, 0.4); /* Efeito de brilho sutil */
        }

/* --- ESTADO DE SCROLL (FUNDO BRANCO) --- */
.header.scrolled .nav-menu a[b-pl08t8xf97] {
    color: var(--gray-700); /* Volta a ser escuro para ler no fundo branco */
    text-shadow: none; /* Remove a sombra */
}

    .header.scrolled .nav-menu a:hover[b-pl08t8xf97],
    .header.scrolled .nav-menu a.active[b-pl08t8xf97] {
        color: var(--aqua); /* No hover/ativo com fundo branco, fica ciano também */
        text-shadow: none;
    }

/* ========================================
   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;
        }

/* ============================================ */
/* BOTÃO FLUTUANTE DO WHATSAPP                   */
/* ============================================ */
.whatsapp-float[b-pl08t8xf97] {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366; /* Cor oficial do WhatsApp */
    color: #ffffff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    z-index: 999;
    text-decoration: none;
}

    .whatsapp-float:hover[b-pl08t8xf97] {
        transform: scale(1.10) translateY(-3px);
        box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
        color: #ffffff;
    }

/* Para telas pequenas, ajustar o tamanho */
@media (max-width: 480px) {
    .whatsapp-float[b-pl08t8xf97] {
        width: 50px;
        height: 50px;
        font-size: 28px;
        bottom: 15px;
        right: 15px;
    }
}

/* ========================================
   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/About.razor.rz.scp.css */
/* ============================================ */
/* PAGE HEADER COM IMAGEM DE FUNDO              */
/* ============================================ */
.page-header[b-jiti448s8u] {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 120px 0 4rem;
    text-align: center;
    color: #ffffff;
    min-height: 350px;
    display: flex;
    align-items: center;
}

.page-header-overlay[b-jiti448s8u] {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10, 26, 58, 0.85) 0%, rgba(26, 77, 140, 0.75) 50%, rgba(58, 123, 213, 0.70) 100%);
    z-index: 1;
}

.page-header .container[b-jiti448s8u] {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.section-badge[b-jiti448s8u] {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(4px);
    padding: 6px 24px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    margin-bottom: 20px;
}

.page-header h1[b-jiti448s8u] {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

    .page-header h1 .cl-aqua[b-jiti448s8u] {
        color: #00b4d8;
        background: rgba(0,180,216,0.15);
        padding: 0 10px;
        border-radius: 8px;
    }

.page-header p[b-jiti448s8u] {
    font-size: 1.2rem;
    opacity: 0.9;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

/* ============================================ */
/* SOBRE – TEXTO + IMAGEM                       */
/* ============================================ */
.about-story[b-jiti448s8u] {
    padding: 5rem 0;
    background: var(--white);
}

.about-grid[b-jiti448s8u] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2[b-jiti448s8u] {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

    .about-text h2 .cl-aqua[b-jiti448s8u] {
        color: var(--aqua);
    }

.about-text p[b-jiti448s8u] {
    color: var(--gray-700);
    margin-bottom: 1rem;
    line-height: 1.7;
}

    .about-text p strong[b-jiti448s8u] {
        color: var(--primary);
    }

.about-text .btn-primary[b-jiti448s8u] {
    margin-top: 1rem;
}

.about-image[b-jiti448s8u] {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

    .about-image img[b-jiti448s8u] {
        width: 100%;
        height: 400px;
        object-fit: cover;
        display: block;
    }

.about-image-badge[b-jiti448s8u] {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    padding: 0.8rem 1.5rem;
    border-radius: 40px;
    color: white;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    font-size: 1rem;
    border: 1px solid rgba(255,255,255,0.15);
}

    .about-image-badge span:first-child[b-jiti448s8u] {
        font-size: 1.5rem;
    }

/* ============================================ */
/* NÚMEROS / MARCOS                             */
/* ============================================ */
.about-numbers[b-jiti448s8u] {
    padding: 4rem 0;
    background: var(--gray-bg);
}

.numbers-grid[b-jiti448s8u] {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    text-align: center;
}

.number-item[b-jiti448s8u] {
    padding: 1.5rem;
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: transform 0.3s;
}

    .number-item:hover[b-jiti448s8u] {
        transform: translateY(-5px);
    }

.number-icon[b-jiti448s8u] {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

.number-item h2[b-jiti448s8u] {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.number-item p[b-jiti448s8u] {
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 0.25rem;
}

.number-item small[b-jiti448s8u] {
    color: var(--gray-600);
    font-size: 0.875rem;
}

/* ============================================ */
/* VISÃO E MISSÃO                               */
/* ============================================ */
.about-vision-mission[b-jiti448s8u] {
    padding: 5rem 0;
    background: var(--white);
}

.vision-mission-grid[b-jiti448s8u] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.vm-card[b-jiti448s8u] {
    padding: 2.5rem;
    border-radius: 24px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

    .vm-card:hover[b-jiti448s8u] {
        transform: translateY(-5px);
        box-shadow: var(--shadow-lg);
    }

    .vm-card.vision[b-jiti448s8u] {
        background: linear-gradient(135deg, rgba(26, 77, 140, 0.08), rgba(0, 180, 216, 0.08));
        border: 1px solid rgba(26, 77, 140, 0.15);
    }

    .vm-card.mission[b-jiti448s8u] {
        background: linear-gradient(135deg, rgba(0, 180, 216, 0.08), rgba(26, 77, 140, 0.08));
        border: 1px solid rgba(0, 180, 216, 0.15);
    }

.vm-icon[b-jiti448s8u] {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.vm-card h3[b-jiti448s8u] {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
}

.vm-card p[b-jiti448s8u] {
    color: var(--gray-700);
    line-height: 1.6;
}

    .vm-card p strong[b-jiti448s8u] {
        color: var(--primary);
    }

/* ============================================ */
/* VALORES                                      */
/* ============================================ */
.about-values[b-jiti448s8u] {
    padding: 5rem 0;
    background: var(--gray-bg);
}

.section-header[b-jiti448s8u] {
    text-align: center;
    margin-bottom: 3rem;
}

    .section-header h2[b-jiti448s8u] {
        font-size: 2.5rem;
        font-weight: 700;
        color: var(--primary);
    }

        .section-header h2 .cl-aqua[b-jiti448s8u] {
            color: var(--aqua);
        }

    .section-header p[b-jiti448s8u] {
        color: var(--gray-600);
        font-size: 1.1rem;
    }

.values-grid[b-jiti448s8u] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.value-item[b-jiti448s8u] {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
}

    .value-item:hover[b-jiti448s8u] {
        transform: translateY(-5px);
        box-shadow: var(--shadow-lg);
    }

.value-icon[b-jiti448s8u] {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.value-item h4[b-jiti448s8u] {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.value-item p[b-jiti448s8u] {
    color: var(--gray-600);
    font-size: 0.95rem;
}

/* ============================================ */
/* CTA FINAL                                    */
/* ============================================ */
.about-cta[b-jiti448s8u] {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    text-align: center;
    color: white;
}

.cta-content h2[b-jiti448s8u] {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-content p[b-jiti448s8u] {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-content .btn-primary[b-jiti448s8u] {
    background: white;
    color: var(--primary);
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

    .cta-content .btn-primary:hover[b-jiti448s8u] {
        background: #f0f0f0;
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    }

/* ============================================ */
/* RESPONSIVIDADE                               */
/* ============================================ */
@media (max-width: 992px) {
    .about-grid[b-jiti448s8u] {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-image img[b-jiti448s8u] {
        height: 300px;
    }

    .vision-mission-grid[b-jiti448s8u] {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .page-header[b-jiti448s8u] {
        padding: 100px 0 3rem;
        min-height: 280px;
    }

        .page-header h1[b-jiti448s8u] {
            font-size: 2rem;
        }

        .page-header p[b-jiti448s8u] {
            font-size: 1rem;
        }

    .about-text h2[b-jiti448s8u] {
        font-size: 1.8rem;
    }

    .numbers-grid[b-jiti448s8u] {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .number-item h2[b-jiti448s8u] {
        font-size: 2.5rem;
    }

    .values-grid[b-jiti448s8u] {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .page-header[b-jiti448s8u] {
        padding: 80px 0 2rem;
        min-height: 220px;
    }

        .page-header h1[b-jiti448s8u] {
            font-size: 1.6rem;
        }

    .about-image img[b-jiti448s8u] {
        height: 220px;
    }

    .about-image-badge[b-jiti448s8u] {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
        bottom: 10px;
        right: 10px;
    }

    .values-grid[b-jiti448s8u] {
        grid-template-columns: 1fr;
    }

    .cta-content h2[b-jiti448s8u] {
        font-size: 1.6rem;
    }

    .vm-card[b-jiti448s8u] {
        padding: 1.5rem;
    }
}
/* /Components/Pages/Blog.razor.rz.scp.css */
/* ============================================ */
/* PAGE HEADER COM IMAGEM DE FUNDO              */
/* ============================================ */
.page-header[b-2gcli73tsv] {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 120px 0 4rem;
    text-align: center;
    color: #ffffff;
    min-height: 350px;
    display: flex;
    align-items: center;
}

.page-header-overlay[b-2gcli73tsv] {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10, 26, 58, 0.85) 0%, rgba(26, 77, 140, 0.75) 50%, rgba(58, 123, 213, 0.70) 100%);
    z-index: 1;
}

.page-header .container[b-2gcli73tsv] {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.section-badge[b-2gcli73tsv] {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(4px);
    padding: 6px 24px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    margin-bottom: 20px;
}

.page-header h1[b-2gcli73tsv] {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

    .page-header h1 .cl-aqua[b-2gcli73tsv] {
        color: #00b4d8;
        background: rgba(0,180,216,0.15);
        padding: 0 10px;
        border-radius: 8px;
    }

.page-header p[b-2gcli73tsv] {
    font-size: 1.2rem;
    opacity: 0.9;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

/* ============================================ */
/* BLOG SECTION                                 */
/* ============================================ */
.blog-section[b-2gcli73tsv] {
    padding: 4rem 0;
    background: var(--gray-bg);
}

.blog-grid[b-2gcli73tsv] {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 3rem;
    align-items: start;
}

/* ============================================ */
/* BLOG POSTS (CARDS)                           */
/* ============================================ */
.blog-posts[b-2gcli73tsv] {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.blog-card[b-2gcli73tsv] {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

    .blog-card:hover[b-2gcli73tsv] {
        transform: translateY(-5px);
        box-shadow: var(--shadow-lg);
    }

.blog-card-image[b-2gcli73tsv] {
    height: 200px;
    background: linear-gradient(135deg, var(--primary), var(--aqua));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3.5rem;
    transition: transform 0.3s;
}

.blog-card:hover .blog-card-image[b-2gcli73tsv] {
    transform: scale(1.02);
}

.blog-card-body[b-2gcli73tsv] {
    padding: 1.5rem;
}

.blog-meta[b-2gcli73tsv] {
    display: flex;
    gap: 1rem;
    font-size: 0.85rem;
    color: var(--gray-600);
    margin-bottom: 0.5rem;
}

.blog-date[b-2gcli73tsv],
.blog-category[b-2gcli73tsv] {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.blog-title[b-2gcli73tsv] {
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0.25rem 0 0.5rem;
    line-height: 1.3;
}

    .blog-title a[b-2gcli73tsv] {
        color: var(--primary);
        text-decoration: none;
        transition: color 0.3s;
    }

        .blog-title a:hover[b-2gcli73tsv] {
            color: var(--aqua);
        }

.blog-excerpt[b-2gcli73tsv] {
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.btn-read-more[b-2gcli73tsv] {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    color: var(--aqua);
    font-weight: 600;
    text-decoration: none;
    transition: gap 0.3s, color 0.3s;
}

    .btn-read-more:hover[b-2gcli73tsv] {
        gap: 0.5rem;
        color: var(--aqua-dark);
    }

/* ============================================ */
/* SIDEBAR                                      */
/* ============================================ */
.blog-sidebar[b-2gcli73tsv] {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.sidebar-card[b-2gcli73tsv] {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

    .sidebar-card h3[b-2gcli73tsv] {
        font-size: 1.2rem;
        font-weight: 700;
        color: var(--primary);
        margin-bottom: 1rem;
    }

/* Categorias */
.category-list[b-2gcli73tsv] {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .category-list li[b-2gcli73tsv] {
        margin-bottom: 0.5rem;
    }

    .category-list button[b-2gcli73tsv] {
        background: none;
        border: none;
        color: var(--gray-700);
        font-size: 0.95rem;
        cursor: pointer;
        padding: 0.25rem 0;
        transition: color 0.3s, transform 0.2s;
        display: flex;
        align-items: center;
        gap: 0.5rem;
        width: 100%;
        text-align: left;
    }

        .category-list button:hover[b-2gcli73tsv] {
            color: var(--aqua);
            transform: translateX(5px);
        }

.btn-view-all[b-2gcli73tsv] {
    margin-top: 0.5rem;
    background: var(--primary);
    color: white !important;
    padding: 0.5rem 1rem;
    border-radius: 40px;
    text-align: center !important;
    justify-content: center !important;
    transition: background 0.3s;
}

    .btn-view-all:hover[b-2gcli73tsv] {
        background: var(--primary-dark);
        color: white !important;
        transform: translateX(0) !important;
    }

/* Newsletter */
.newsletter p[b-2gcli73tsv] {
    color: var(--gray-600);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.newsletter-form[b-2gcli73tsv] {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

    .newsletter-form .form-control[b-2gcli73tsv] {
        padding: 0.75rem 1rem;
        border: 1px solid var(--gray-300);
        border-radius: 12px;
        font-size: 0.95rem;
    }

        .newsletter-form .form-control:focus[b-2gcli73tsv] {
            border-color: var(--aqua);
            box-shadow: 0 0 0 3px rgba(0,180,216,0.2);
        }

    .newsletter-form .btn-primary[b-2gcli73tsv] {
        width: 100%;
        justify-content: center;
    }

.newsletter small[b-2gcli73tsv] {
    display: block;
    margin-top: 0.5rem;
    color: var(--gray-500);
    font-size: 0.75rem;
}

/* ============================================ */
/* EMPTY STATE                                  */
/* ============================================ */
.empty-state[b-2gcli73tsv] {
    text-align: center;
    padding: 3rem 1rem;
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow);
}

    .empty-state span[b-2gcli73tsv] {
        font-size: 4rem;
        display: block;
        margin-bottom: 1rem;
    }

    .empty-state p[b-2gcli73tsv] {
        color: var(--gray-600);
        font-size: 1.1rem;
    }

/* ============================================ */
/* RESPONSIVIDADE                               */
/* ============================================ */
@media (max-width: 992px) {
    .blog-grid[b-2gcli73tsv] {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .blog-sidebar[b-2gcli73tsv] {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .page-header[b-2gcli73tsv] {
        padding: 100px 0 3rem;
        min-height: 280px;
    }

        .page-header h1[b-2gcli73tsv] {
            font-size: 2rem;
        }

        .page-header p[b-2gcli73tsv] {
            font-size: 1rem;
        }

    .blog-sidebar[b-2gcli73tsv] {
        grid-template-columns: 1fr;
    }

    .blog-card-image[b-2gcli73tsv] {
        height: 160px;
        font-size: 2.5rem;
    }

    .blog-title[b-2gcli73tsv] {
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .page-header[b-2gcli73tsv] {
        padding: 80px 0 2rem;
        min-height: 220px;
    }

        .page-header h1[b-2gcli73tsv] {
            font-size: 1.6rem;
        }

    .blog-card-image[b-2gcli73tsv] {
        height: 140px;
        font-size: 2rem;
    }

    .blog-meta[b-2gcli73tsv] {
        flex-wrap: wrap;
        font-size: 0.75rem;
    }
}
/* /Components/Pages/Contact.razor.rz.scp.css */
/* ============================================ */
/* CONTACTO PAGE - ESTILO DMZ + CORES NEVES     */
/* ============================================ */

/* ---- Page Header ---- */
/* ---- Page Header com imagem de fundo ---- */
.page-header[b-aeie0683pv] {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 120px 0 4rem;
    text-align: center;
    color: #ffffff;
    min-height: 400px;
    display: flex;
    align-items: center;
}

/* Overlay escuro para legibilidade */
.page-header-overlay[b-aeie0683pv] {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /*background: linear-gradient(135deg, rgba(10, 26, 58, 0.85) 0%, rgba(26, 77, 140, 0.75) 50%, rgba(58, 123, 213, 0.70) 100%);*/
    z-index: 1;
}

.page-header .container[b-aeie0683pv] {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

/* Resto do CSS igual... */
/*.page-header {
    background: linear-gradient(135deg, #0a1a3a 0%, var(--primary) 50%, var(--primary-light) 100%);
    padding: 120px 0 4rem;
    text-align: center;
    color: #ffffff;
}

    .page-header .container {
        max-width: 800px;
        margin: 0 auto;
    }
*/
.section-badge[b-aeie0683pv] {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(4px);
    padding: 6px 24px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    margin-bottom: 20px;
}

.page-header h1[b-aeie0683pv] {
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

    .page-header h1 .cl-aqua[b-aeie0683pv] {
        color: var(--aqua);
        background: rgba(0,180,216,0.15);
        padding: 0 10px;
        border-radius: 8px;
    }

.page-header p[b-aeie0683pv] {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* ---- Contact Section ---- */
.contact-section[b-aeie0683pv] {
    background: var(--gray-bg);
    padding: 4rem 0;
}

.contact-grid[b-aeie0683pv] {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    margin-bottom: 3rem;
}

/* ---- Contact Info Column ---- */
.contact-info-col[b-aeie0683pv] {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-card[b-aeie0683pv] {
    background: var(--white);
    padding: 24px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(26, 77, 140, 0.08);
    box-shadow: 0 4px 12px rgba(26, 77, 140, 0.05);
}

    .contact-card:hover[b-aeie0683pv] {
        transform: translateY(-5px);
        box-shadow: 0 15px 30px rgba(26, 77, 140, 0.10);
        border-color: rgba(0, 180, 216, 0.3);
    }

.contact-icon[b-aeie0683pv] {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(26, 77, 140, 0.08), rgba(0, 180, 216, 0.08));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    font-size: 1.8rem;
    color: var(--primary);
}

.contact-card h3[b-aeie0683pv] {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

.contact-card p[b-aeie0683pv] {
    color: #4a5568;
    font-size: 0.9rem;
    margin-bottom: 4px;
    line-height: 1.5;
}

.contact-card a[b-aeie0683pv] {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

    .contact-card a:hover[b-aeie0683pv] {
        color: var(--aqua);
    }

/* ---- Social ---- */
.contact-social[b-aeie0683pv] {
    background: var(--white);
    padding: 24px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(26, 77, 140, 0.08);
    box-shadow: 0 4px 12px rgba(26, 77, 140, 0.05);
}

    .contact-social h4[b-aeie0683pv] {
        font-size: 1rem;
        font-weight: 600;
        color: var(--primary);
        margin-bottom: 14px;
    }

.social-links[b-aeie0683pv] {
    display: flex;
    justify-content: center;
    gap: 14px;
}

.social-link[b-aeie0683pv] {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, rgba(26, 77, 140, 0.08), rgba(0, 180, 216, 0.08));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.2rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

    .social-link:hover[b-aeie0683pv] {
        background: linear-gradient(135deg, var(--primary), var(--aqua));
        color: #ffffff;
        transform: translateY(-3px);
    }

/* ---- Form Column ---- */
.contact-form-col[b-aeie0683pv] {
    background: var(--white);
    border-radius: 24px;
    padding: 36px;
    box-shadow: 0 8px 24px rgba(26, 77, 140, 0.06);
    border: 1px solid rgba(26, 77, 140, 0.05);
}

.form-card[b-aeie0683pv] {
    width: 100%;
}

.section-title[b-aeie0683pv] {
    font-size: 2rem;
    font-weight: 800;
    margin: 0 0 10px 0;
    color: var(--primary);
}

    .section-title .cl-aqua[b-aeie0683pv] {
        color: var(--aqua);
    }

/* ---- Form Elements ---- */
.contact-form-modern[b-aeie0683pv] {
    margin-top: 20px;
}

.form-group[b-aeie0683pv] {
    margin-bottom: 20px;
}

    .form-group label[b-aeie0683pv] {
        display: block;
        font-size: 0.85rem;
        font-weight: 600;
        color: var(--primary);
        margin-bottom: 6px;
    }

.form-control[b-aeie0683pv] {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: #fafbfc;
    color: #1a202c;
}

    .form-control:focus[b-aeie0683pv] {
        outline: none;
        border-color: var(--aqua);
        box-shadow: 0 0 0 4px rgba(0, 180, 216, 0.12);
        background: #ffffff;
    }

    .form-control[b-aeie0683pv]::placeholder {
        color: #a0aec0;
    }

select.form-control[b-aeie0683pv] {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%231a4d8c' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

textarea.form-control[b-aeie0683pv] {
    resize: vertical;
}

/* ---- Submit Button (gradiente Neves) ---- */
.submit-btn[b-aeie0683pv] {
    width: 100%;
    padding: 14px 20px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: #ffffff;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(26, 77, 140, 0.25);
    margin-top: 6px;
}

    .submit-btn:hover:not(:disabled)[b-aeie0683pv] {
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(26, 77, 140, 0.35);
        background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    }

    .submit-btn:disabled[b-aeie0683pv] {
        opacity: 0.6;
        cursor: not-allowed;
    }

/* ---- WhatsApp Button (verde WhatsApp) ---- */
.btn-cta[b-aeie0683pv] {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #25D366;
    color: #ffffff;
    padding: 16px 36px;
    border-radius: 60px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
    border: none;
    cursor: pointer;
}

    .btn-cta:hover[b-aeie0683pv] {
        transform: scale(1.05);
        gap: 18px;
        background: #128C7E;
        box-shadow: 0 12px 28px rgba(37, 211, 102, 0.45);
    }

/* ---- Alerts ---- */
.alert-success[b-aeie0683pv] {
    background: #d4edda;
    color: #155724;
    padding: 1rem;
    border-radius: 12px;
    margin-top: 1rem;
    border-left: 4px solid #28a745;
}

.alert-error[b-aeie0683pv] {
    background: #f8d7da;
    color: #721c24;
    padding: 1rem;
    border-radius: 12px;
    margin-top: 1rem;
    border-left: 4px solid #dc3545;
}

/* ---- Mapa ---- */
.map-container[b-aeie0683pv] {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(26, 77, 140, 0.06);
}

/* ---- CTA Final (Neves) - SEM ESPAÇO COM O FOOTER ---- */
.cta-modern[b-aeie0683pv] {
    background: linear-gradient(135deg, #0a1a3a 0%, var(--primary) 50%, var(--primary-light) 100%);
    padding: 80px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-bottom: 0;
}

    .cta-modern[b-aeie0683pv]::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -20%;
        width: 140%;
        height: 200%;
        background: radial-gradient(ellipse at center, rgba(255,255,255,0.06) 0%, transparent 70%);
        pointer-events: none;
    }

.cta-content[b-aeie0683pv] {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
    padding-bottom: 0;
}

.cta-icon[b-aeie0683pv] {
    font-size: 3rem;
    margin-bottom: 16px;
    animation: float-b-aeie0683pv 3s ease-in-out infinite;
}

.cta-content h2[b-aeie0683pv] {
    font-size: 2.2rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 16px;
}

.cta-content p[b-aeie0683pv] {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.85);
    margin-bottom: 30px;
}

/* ---- Animações ---- */
@keyframes float-b-aeie0683pv {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* ---- Responsividade ---- */
@media (max-width: 992px) {
    .contact-grid[b-aeie0683pv] {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-info-col[b-aeie0683pv] {
        flex-direction: row;
        flex-wrap: wrap;
    }

        .contact-info-col > *[b-aeie0683pv] {
            flex: 1;
            min-width: 200px;
        }
}

@media (max-width: 768px) {
    .page-header h1[b-aeie0683pv] {
        font-size: 2.2rem;
    }

    .contact-info-col[b-aeie0683pv] {
        flex-direction: column;
    }

    .contact-form-col[b-aeie0683pv] {
        padding: 24px;
    }

    .section-title[b-aeie0683pv] {
        font-size: 1.6rem;
    }

    .cta-content h2[b-aeie0683pv] {
        font-size: 1.8rem;
    }

    .map-container iframe[b-aeie0683pv] {
        height: 250px;
    }
}

@media (max-width: 576px) {
    .page-header[b-aeie0683pv] {
        padding: 100px 0 2.5rem;
    }

        .page-header h1[b-aeie0683pv] {
            font-size: 1.8rem;
        }

    .contact-card[b-aeie0683pv] {
        padding: 18px;
    }

    .contact-icon[b-aeie0683pv] {
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
    }

    .contact-form-col[b-aeie0683pv] {
        padding: 18px;
    }

    .submit-btn[b-aeie0683pv], .btn-cta[b-aeie0683pv] {
        padding: 12px 20px;
        font-size: 0.9rem;
    }

    .cta-modern[b-aeie0683pv] {
        padding: 50px 20px 0 20px;
    }
}
/* /Components/Pages/Gallery.razor.rz.scp.css */
/* ============================================ */
/* VARIÁVEIS (Mantidas do tema Neves Status)     */
/* ============================================ */
:root[b-emw6r4vste] {
    --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 60px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 30px 80px rgba(0, 0, 0, 0.15);
}

/* ============================================ */
/* PAGE HEADER COM IMAGEM DE FUNDO               */
/* ============================================ */
.page-header[b-emw6r4vste] {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 120px 0 4rem;
    min-height: 350px;
    display: flex;
    align-items: center;
    text-align: center;
    color: #ffffff;
    overflow: hidden;
}

.page-header-overlay[b-emw6r4vste] {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10, 26, 58, 0.85) 0%, rgba(26, 77, 140, 0.75) 50%, rgba(58, 123, 213, 0.60) 100%);
    z-index: 1;
}

.page-header .container[b-emw6r4vste] {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.section-badge[b-emw6r4vste] {
    display: inline-block;
    background: rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(6px);
    padding: 6px 24px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    margin-bottom: 1.2rem;
}

.page-header h1[b-emw6r4vste] {
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: #ffffff;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.25);
    line-height: 1.2;
}

    .page-header h1 .cl-aqua[b-emw6r4vste] {
        color: #00b4d8;
        background: rgba(0, 180, 216, 0.15);
        padding: 0 10px;
        border-radius: 8px;
        display: inline-block;
    }

.page-header p[b-emw6r4vste] {
    font-size: 1.2rem;
    opacity: 0.9;
    color: rgba(255, 255, 255, 0.95);
    margin: 0 auto;
    max-width: 600px;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.2);
}

/* ============================================ */
/* SEÇÃO GALERIA MODERNA (Container do Swiper)   */
/* ============================================ */
.galeria-modern[b-emw6r4vste] {
    padding: 5rem 0 3rem;
    background: var(--white);
}

    .galeria-modern .swiper.gallery-swiper[b-emw6r4vste] {
        border-radius: 24px;
        overflow: hidden;
        box-shadow: var(--shadow-lg);
        margin: 0 auto;
        max-width: 1200px;
    }

    .galeria-modern .text-center[b-emw6r4vste] {
        margin-top: 3rem;
    }

/* ============================================ */
/* BOTÃO OUTLINE (Ver todos)                     */
/* ============================================ */
.btn-outline-modern[b-emw6r4vste] {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 14px 30px;
    border-radius: 60px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    background: transparent;
    border: 2px solid var(--aqua);
    color: var(--aqua);
    cursor: pointer;
    transition: all 0.3s ease;
}

    .btn-outline-modern:hover[b-emw6r4vste] {
        background: var(--aqua);
        color: #fff;
        transform: translateY(-4px);
        box-shadow: 0 8px 25px rgba(0, 180, 216, 0.3);
    }

/* ============================================ */
/* MODAL FULL (TELA DE FUNDO ESCURA)            */
/* ============================================ */
.modal-full[b-emw6r4vste] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.90);
    backdrop-filter: blur(10px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeInModal-b-emw6r4vste 0.3s ease;
}

.modal-content[b-emw6r4vste] {
    position: relative;
    background: #111;
    width: 90%;
    max-width: 1100px;
    border-radius: 30px;
    padding: 1.5rem;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-close[b-emw6r4vste] {
    position: absolute;
    top: 12px;
    right: 20px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 20;
    transition: all 0.3s ease;
}

    .modal-close:hover[b-emw6r4vste] {
        transform: rotate(90deg) scale(1.1);
        background: white;
        color: black;
    }

/* ============================================ */
/* SWIPER DENTRO DO MODAL                        */
/* ============================================ */
.full-gallery-swiper[b-emw6r4vste] {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

[b-emw6r4vste] .full-gallery-swiper .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #151515;
    height: 100%;
    width: 100%;
}

    [b-emw6r4vste] .full-gallery-swiper .swiper-slide img {
        width: 100%;
        height: 100%;
        object-fit: contain; /* Exibe a imagem inteira sem cortar */
        display: block;
    }

[b-emw6r4vste] .full-gallery-swiper .swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.6);
}

[b-emw6r4vste] .full-gallery-swiper .swiper-pagination-bullet-active {
    background: #00b4d8;
    transform: scale(1.2);
}

[b-emw6r4vste] .full-gallery-swiper .swiper-button-next,
[b-emw6r4vste] .full-gallery-swiper .swiper-button-prev {
    color: white;
    background: rgba(0, 0, 0, 0.4);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    backdrop-filter: blur(4px);
}

    [b-emw6r4vste] .full-gallery-swiper .swiper-button-next::after,
    [b-emw6r4vste] .full-gallery-swiper .swiper-button-prev::after {
        font-size: 20px;
        font-weight: bold;
    }

/* ============================================ */
/* ANIMAÇÕES                                     */
/* ============================================ */
@keyframes fadeInModal-b-emw6r4vste {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ============================================ */
/* RESPONSIVIDADE                                */
/* ============================================ */
@media (max-width: 992px) {
    .page-header h1[b-emw6r4vste] {
        font-size: 2.6rem;
    }
}

@media (max-width: 768px) {
    .page-header[b-emw6r4vste] {
        padding: 100px 0 3rem;
        min-height: 280px;
    }

        .page-header h1[b-emw6r4vste] {
            font-size: 2rem;
        }

        .page-header p[b-emw6r4vste] {
            font-size: 1rem;
        }

    .modal-content[b-emw6r4vste] {
        width: 95%;
        padding: 1rem;
    }

    .modal-close[b-emw6r4vste] {
        top: 5px;
        right: 10px;
        width: 35px;
        height: 35px;
    }
}

@media (max-width: 480px) {
    .page-header[b-emw6r4vste] {
        padding: 80px 0 2rem;
        min-height: 220px;
    }

        .page-header h1[b-emw6r4vste] {
            font-size: 1.8rem;
        }

        .page-header p[b-emw6r4vste] {
            font-size: 0.95rem;
        }

    .btn-outline-modern[b-emw6r4vste] {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}
/* /Components/Pages/Home.razor.rz.scp.css */
/* ============================================ */
/* IMPORTAÇÃO DE FONTE                         */
/* ============================================ */
/*@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');
*//* ============================================ */
/* VARIÁVEIS - AZUL CARREGADO                  */
/* ============================================ */
:root[b-u46fv6fmz2] {
    --primary: #0a2444; /* Azul Carregado e Profundo */
    --primary-dark: #05152b;
    --primary-light: #2b5f9e;
    --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 60px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 30px 80px rgba(0, 0, 0, 0.15);
}

/* ============================================ */
/* HERO SECTION – IMPACTO TOTAL                */
/* ============================================ */
.hero-modern[b-u46fv6fmz2] {
    position: relative;
    min-height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-attachment: fixed;
}

.hero-overlay[b-u46fv6fmz2] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /*background: linear-gradient(135deg, rgba(10, 36, 68, 0.9) 0%, rgba(26, 77, 140, 0.6) 50%, rgba(0, 180, 216, 0.4) 100%);*/
    z-index: 1;
    backdrop-filter: blur(2px);
}

.hero-glow-orb[b-u46fv6fmz2] {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 180, 216, 0.15) 0%, transparent 70%);
    top: -100px;
    right: -100px;
    z-index: 0;
    animation: floatGlow-b-u46fv6fmz2 8s ease-in-out infinite;
}

@keyframes floatGlow-b-u46fv6fmz2 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(-50px, 50px) scale(1.2);
    }
}

.floating-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: 3rem;
    opacity: 0.15;
    animation: floatShape-b-u46fv6fmz2 8s ease-in-out infinite;
}

.shape-1[b-u46fv6fmz2] {
    top: 10%;
    left: 5%;
    animation-delay: 0s;
    font-size: 4rem;
}

.shape-2[b-u46fv6fmz2] {
    bottom: 20%;
    right: 8%;
    animation-delay: 1.5s;
    font-size: 5rem;
}

.shape-3[b-u46fv6fmz2] {
    top: 30%;
    right: 20%;
    animation-delay: 3s;
    font-size: 2.5rem;
}

.shape-4[b-u46fv6fmz2] {
    bottom: 40%;
    left: 15%;
    animation-delay: 4.5s;
    font-size: 3.5rem;
}

@keyframes floatShape-b-u46fv6fmz2 {
    0%, 100% {
        transform: translateY(0px) rotate(0deg) scale(1);
    }

    50% {
        transform: translateY(-30px) rotate(10deg) scale(1.05);
    }
}

.hero-modern .container[b-u46fv6fmz2] {
    position: relative;
    z-index: 3;
    width: 100%;
}

.hero-grid[b-u46fv6fmz2] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 2rem 0;
}

.hero-content[b-u46fv6fmz2] {
    max-width: 750px;
}

.hero-visual[b-u46fv6fmz2] {
    display: flex;
    justify-content: center;
    align-items: center;
}

.floating-image-wrapper[b-u46fv6fmz2] {
    position: relative;
    width: 100%;
    max-width: 500px;
}

.hero-image-glow[b-u46fv6fmz2] {
    position: absolute;
    inset: -20px;
    background: radial-gradient(circle at 30% 40%, rgba(0, 180, 216, 0.3), transparent 70%);
    filter: blur(30px);
    border-radius: 50%;
    z-index: -1;
    animation: pulseGlow-b-u46fv6fmz2 4s ease-in-out infinite;
}

@keyframes pulseGlow-b-u46fv6fmz2 {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.1);
        opacity: 1;
    }
}

.floating-image-wrapper img[b-u46fv6fmz2] {
    width: 100%;
    border-radius: 30px;
    box-shadow: var(--shadow-xl);
    border: 2px solid rgba(255, 255, 255, 0.1);
    transform: rotate(2deg) scale(0.95);
    /* Animação de flutuar + animação de fade ao entrar */
    animation: floatImage-b-u46fv6fmz2 6s ease-in-out infinite;
    transition: opacity 0.8s ease, transform 0.5s ease, box-shadow 0.5s ease;
    opacity: 1;
    display: block;
    background-color: #fff;
}

    .floating-image-wrapper img:hover[b-u46fv6fmz2] {
        transform: rotate(0deg) scale(1);
        animation-play-state: paused;
    }

.fade-transition[b-u46fv6fmz2] {
    animation: fadeInChange-b-u46fv6fmz2 0.8s ease-in-out;
}

@keyframes fadeInChange-b-u46fv6fmz2 {
    0% {
        opacity: 0;
        transform: scale(0.98) rotate(1deg);
    }

    100% {
        opacity: 1;
        transform: scale(0.95) rotate(2deg);
    }
}

@keyframes floatImage-b-u46fv6fmz2 {
    0% {
        transform: translateY(0px) rotate(2deg) scale(0.95);
    }

    50% {
        transform: translateY(-15px) rotate(1deg) scale(0.97);
    }

    100% {
        transform: translateY(0px) rotate(2deg) scale(0.95);
    }
}

.hero-badge[b-u46fv6fmz2] {
    display: inline-block;
    margin-bottom: 1.5rem;
}

    .hero-badge span[b-u46fv6fmz2] {
        background: rgba(255, 255, 255, 0.08);
        backdrop-filter: blur(12px);
        padding: 0.5rem 1.5rem;
        border-radius: 50px;
        font-size: 0.85rem;
        font-weight: 600;
        color: #fff;
        border: 1px solid rgba(255, 255, 255, 0.15);
        letter-spacing: 1px;
    }

.hero-content h1[b-u46fv6fmz2] {
    font-size: 3.8rem;
    font-weight: 900;
    line-height: 1.1;
    color: #fff;
    text-shadow: 0 2px 20px rgba(0,0,0,0.2);
    margin-bottom: 1.5rem;
}

.gradient-text[b-u46fv6fmz2] {
    background: linear-gradient(135deg, #00b4d8 0%, #3a7bd5 50%, #007bff 100%);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    display: inline-block;
}

.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: #00b4d8;
        font-weight: 700;
    }

.hero-buttons[b-u46fv6fmz2] {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.btn-primary-glow[b-u46fv6fmz2] {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 16px 34px;
    border-radius: 60px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    background: linear-gradient(135deg, #007bff, #00b4d8);
    color: #fff;
    box-shadow: 0 8px 30px rgba(0, 123, 255, 0.35);
    transition: all 0.3s ease;
    border: none;
}

    .btn-primary-glow:hover[b-u46fv6fmz2] {
        transform: translateY(-4px) scale(1.02);
        box-shadow: 0 12px 40px rgba(0, 180, 216, 0.5);
    }

.btn-outline-modern[b-u46fv6fmz2] {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    padding: 14px 30px;
    border-radius: 60px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    background: var(--aqua);
    backdrop-filter: blur(8px);
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    color: #fff;
    transition: all 0.3s ease;
}

    .btn-outline-modern:hover[b-u46fv6fmz2] {
        background: rgba(0, 180, 216, 0.3);
        transform: translateY(-4px);
        border-color: #fff;
    }

.trust-badges[b-u46fv6fmz2] {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

    .trust-badges span[b-u46fv6fmz2] {
        color: rgba(255, 255, 255, 0.8);
        font-size: 0.9rem;
        font-weight: 500;
        letter-spacing: 0.5px;
    }

/* Scroll Indicator */
.scroll-indicator-modern[b-u46fv6fmz2] {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    text-align: center;
    cursor: pointer;
}

    .scroll-indicator-modern span[b-u46fv6fmz2] {
        display: block;
        color: rgba(255, 255, 255, 0.6);
        font-size: 0.7rem;
        letter-spacing: 3px;
        text-transform: uppercase;
        margin-bottom: 8px;
    }

.mouse-modern[b-u46fv6fmz2] {
    width: 24px;
    height: 38px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    margin: 0 auto;
    position: relative;
}

.wheel-modern[b-u46fv6fmz2] {
    width: 4px;
    height: 10px;
    background: #00b4d8;
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheelModern-b-u46fv6fmz2 2s ease infinite;
}

@keyframes scrollWheelModern-b-u46fv6fmz2 {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }

    80% {
        opacity: 0;
        transform: translateX(-50%) translateY(12px);
    }

    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(0);
    }
}

/* ============================================ */
/* SOBRE – QUEM SOMOS                          */
/* ============================================ */
.about-modern[b-u46fv6fmz2] {
    padding: 5rem 0;
    background: var(--white);
}

.about-grid[b-u46fv6fmz2] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image-wrapper[b-u46fv6fmz2] {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

    .about-image-wrapper img[b-u46fv6fmz2] {
        width: 100%;
        height: 400px;
        object-fit: cover;
        display: block;
    }

.about-image-badge[b-u46fv6fmz2] {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(8px);
    padding: 0.8rem 1.5rem;
    border-radius: 40px;
    color: white;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    border: 1px solid rgba(255,255,255,0.1);
}

    .about-image-badge span:first-child[b-u46fv6fmz2] {
        font-size: 1.5rem;
    }

.about-text-wrapper .subtitle[b-u46fv6fmz2] {
    display: inline-block;
    background: rgba(0, 180, 216, 0.1);
    color: var(--aqua);
    padding: 0.25rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.about-text-wrapper h2[b-u46fv6fmz2] {
    font-size: 2.8rem;
    font-weight: 800;
    margin: 0.5rem 0 1.5rem;
    color: var(--gray-900);
}

.about-text-wrapper p[b-u46fv6fmz2] {
    color: var(--gray-700);
    margin-bottom: 1rem;
    line-height: 1.7;
    font-size: 1.05rem;
}

    .about-text-wrapper p strong[b-u46fv6fmz2] {
        color: var(--primary);
    }

/* ============================================ */
/* ANIMAÇÕES DE ENTRADA                         */
/* ============================================ */
.animate-slide-down[b-u46fv6fmz2] {
    opacity: 0;
    animation: slideDown-b-u46fv6fmz2 0.8s ease forwards;
}

.animate-slide-up[b-u46fv6fmz2] {
    opacity: 0;
    animation: slideUp-b-u46fv6fmz2 0.8s ease forwards;
}

.delay-1[b-u46fv6fmz2] {
    animation-delay: 0.2s;
}

.delay-2[b-u46fv6fmz2] {
    animation-delay: 0.4s;
}

.delay-3[b-u46fv6fmz2] {
    animation-delay: 0.6s;
}

@keyframes slideDown-b-u46fv6fmz2 {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp-b-u46fv6fmz2 {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in[b-u46fv6fmz2] {
    opacity: 0;
    animation: fadeIn-b-u46fv6fmz2 1s ease 0.3s forwards;
}

@keyframes fadeIn-b-u46fv6fmz2 {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ============================================ */
/* NÚMEROS / ESTATÍSTICAS                       */
/* ============================================ */
.numbers-modern[b-u46fv6fmz2] {
    padding: 5rem 0;
    background: var(--gray-bg);
}

.numbers-grid-modern[b-u46fv6fmz2] {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.number-item-modern[b-u46fv6fmz2] {
    background: var(--white);
    padding: 2rem;
    border-radius: 30px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

    .number-item-modern:hover[b-u46fv6fmz2] {
        transform: translateY(-10px);
        box-shadow: var(--shadow-xl);
    }

.number-icon[b-u46fv6fmz2] {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

.number-item-modern h2[b-u46fv6fmz2] {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--aqua));
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.number-item-modern p[b-u46fv6fmz2] {
    font-weight: 600;
    color: var(--gray-800);
    margin: 0.25rem 0;
}

.number-item-modern small[b-u46fv6fmz2] {
    color: var(--gray-600);
    font-size: 0.875rem;
}

/* ============================================ */
/* 1. SERVIÇOS – GLASSMORPHISM                  */
/* ============================================ */
.services-modern[b-u46fv6fmz2] {
    padding: 5rem 0;
    background: var(--white);
}

.services-grid-modern[b-u46fv6fmz2] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card-modern[b-u46fv6fmz2] {
    position: relative;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 24px;
    padding: 2rem;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 8px 30px rgba(0,0,0,0.03);
    overflow: hidden;
}

    .service-card-modern:hover[b-u46fv6fmz2] {
        transform: translateY(-12px);
        box-shadow: var(--shadow-xl);
        border-color: var(--aqua);
        background: rgba(255, 255, 255, 0.95);
    }

.service-icon-wrapper[b-u46fv6fmz2] {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.service-card-modern h3[b-u46fv6fmz2] {
    color: var(--primary);
    font-weight: 700;
    font-size: 1.3rem;
    margin: 0.5rem 0;
}

.service-card-modern p[b-u46fv6fmz2] {
    color: var(--gray-600);
    font-size: 0.95rem;
    margin: 0.5rem 0 1rem;
}

.service-features[b-u46fv6fmz2] {
    list-style: none;
    padding: 0;
    text-align: left;
    margin-bottom: 1.5rem;
}

    .service-features li[b-u46fv6fmz2] {
        font-size: 0.9rem;
        color: var(--gray-700);
        padding: 0.25rem 0;
    }

.service-link[b-u46fv6fmz2] {
    color: var(--aqua);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}

    .service-link:hover[b-u46fv6fmz2] {
        color: var(--aqua-dark);
    }

.card-shine[b-u46fv6fmz2] {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.2), transparent 60%);
    opacity: 0;
    transition: opacity 0.5s;
    pointer-events: none;
}

.service-card-modern:hover .card-shine[b-u46fv6fmz2] {
    opacity: 1;
}

/* ============================================ */
/* 2. DIFERENCIAIS                             */
/* ============================================ */
.diferenciais-modern[b-u46fv6fmz2] {
    padding: 5rem 0;
    background: var(--gray-bg);
}

.diferenciais-grid-modern[b-u46fv6fmz2] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.diferencial-item-modern[b-u46fv6fmz2] {
    background: var(--white);
    padding: 1.2rem 1.5rem;
    border-radius: 60px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    color: var(--primary);
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

    .diferencial-item-modern:hover[b-u46fv6fmz2] {
        transform: scale(1.05);
        border-color: var(--aqua);
        box-shadow: var(--shadow-lg);
    }

    .diferencial-item-modern span[b-u46fv6fmz2] {
        font-size: 1.5rem;
    }

    .diferencial-item-modern h4[b-u46fv6fmz2] {
        margin: 0;
        font-size: 1rem;
    }

/* ============================================ */
/* 3. GALERIA                                 */
/* ============================================ */
.galeria-modern[b-u46fv6fmz2] {
    padding: 5rem 0 3rem;
    background: var(--white);
}

    .galeria-modern .text-center[b-u46fv6fmz2] {
        margin-top: 3rem;
    }

/* ============================================ */
/* 4. PARCEIROS                                */
/* ============================================ */
.parceiros-modern[b-u46fv6fmz2] {
    padding: 5rem 0;
    background: var(--gray-bg);
}

.parceiros-grid-modern[b-u46fv6fmz2] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 2rem;
}

.parceiro-item-modern[b-u46fv6fmz2] {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 16px;
    text-align: center;
    font-weight: 700;
    color: var(--gray-700);
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
    font-size: 1.1rem;
}

    .parceiro-item-modern:hover[b-u46fv6fmz2] {
        filter: grayscale(0%);
        opacity: 1;
        transform: translateY(-5px);
        color: var(--primary);
    }

/* ============================================ */
/* 5. TESTEMUNHOS                              */
/* ============================================ */
.testimonials-modern[b-u46fv6fmz2] {
    padding: 5rem 0;
    background: var(--white);
}

.testimonials-grid-modern[b-u46fv6fmz2] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card-modern[b-u46fv6fmz2] {
    background: var(--gray-100);
    padding: 2.5rem;
    border-radius: 30px;
    text-align: center;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

    .testimonial-card-modern:hover[b-u46fv6fmz2] {
        transform: translateY(-8px);
        box-shadow: var(--shadow-lg);
    }

.testimonial-stars[b-u46fv6fmz2] {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #f59e0b;
}

.testimonial-card-modern p[b-u46fv6fmz2] {
    font-style: italic;
    color: var(--gray-700);
    line-height: 1.6;
    margin: 0;
}

.testimonial-author[b-u46fv6fmz2] {
    margin-top: 1.5rem;
}

    .testimonial-author h4[b-u46fv6fmz2] {
        color: var(--primary);
        margin: 0;
        font-size: 1.1rem;
    }

    .testimonial-author span[b-u46fv6fmz2] {
        color: var(--gray-600);
        font-size: 0.9rem;
    }

/* ============================================ */
/* 6. MERCADO-ALVO                             */
/* ============================================ */
.target-modern[b-u46fv6fmz2] {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    text-align: center;
}

    .target-modern h2[b-u46fv6fmz2] {
        font-size: 2.2rem;
        font-weight: 700;
        margin: 0;
    }

.target-description[b-u46fv6fmz2] {
    max-width: 700px;
    margin: 1rem auto 2rem;
    opacity: 0.9;
    font-size: 1.1rem;
    line-height: 1.6;
}

.target-grid[b-u46fv6fmz2] {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.target-tag[b-u46fv6fmz2] {
    background: rgba(255,255,255,0.12);
    padding: 0.6rem 1.5rem;
    border-radius: 40px;
    font-weight: 500;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s;
}

    .target-tag:hover[b-u46fv6fmz2] {
        background: rgba(255,255,255,0.25);
        transform: scale(1.05);
    }

/* ============================================ */
/* 7. MENSAGEM DO ADMINISTRADOR                */
/* ============================================ */
.final-message-modern[b-u46fv6fmz2] {
    padding: 5rem 0;
    background: var(--gray-bg);
}

.message-card-modern[b-u46fv6fmz2] {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    padding: 4rem;
    border-radius: 40px;
    text-align: center;
    box-shadow: var(--shadow-xl);
    position: relative;
    overflow: hidden;
}

    .message-card-modern[b-u46fv6fmz2]::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -20%;
        width: 400px;
        height: 400px;
        background: radial-gradient(circle, rgba(0,180,216,0.05), transparent);
        border-radius: 50%;
    }

.quote-icon[b-u46fv6fmz2] {
    font-size: 5rem;
    color: var(--aqua);
    opacity: 0.2;
    font-family: serif;
    position: absolute;
    top: 20px;
    left: 40px;
    line-height: 1;
}

.quote-text[b-u46fv6fmz2] {
    font-size: 1.3rem;
    color: var(--gray-700);
    line-height: 1.8;
    position: relative;
    margin: 0;
}

.signature-modern[b-u46fv6fmz2] {
    margin-top: 2rem;
}

    .signature-modern h4[b-u46fv6fmz2] {
        color: var(--gray-500);
        font-weight: 400;
        margin: 0;
    }

    .signature-modern p[b-u46fv6fmz2] {
        color: var(--primary);
        font-size: 1.2rem;
        margin: 0;
        font-weight: 600;
    }

    .signature-modern small[b-u46fv6fmz2] {
        color: var(--gray-600);
        display: block;
        margin-top: 0.2rem;
    }

/* ============================================ */
/* SECÇÃO HEADER (comum)                       */
/* ============================================ */
.section-header-modern[b-u46fv6fmz2] {
    text-align: center;
    margin-bottom: 3.5rem;
}

    .section-header-modern .subtitle[b-u46fv6fmz2] {
        display: inline-block;
        background: rgba(0, 180, 216, 0.1);
        color: var(--aqua);
        padding: 0.25rem 1.5rem;
        border-radius: 50px;
        font-weight: 600;
        font-size: 0.8rem;
        letter-spacing: 1px;
        text-transform: uppercase;
    }

    .section-header-modern h2[b-u46fv6fmz2] {
        font-size: 2.8rem;
        font-weight: 800;
        margin: 0.5rem 0;
        color: var(--gray-900);
    }

    .section-header-modern p[b-u46fv6fmz2] {
        color: var(--gray-600);
        font-size: 1.1rem;
        margin: 0.5rem 0 0;
    }

/* ============================================ */
/* CONTACTO & FORMULÁRIO                        */
/* ============================================ */
.contact-modern[b-u46fv6fmz2] {
    padding: 5rem 0;
    background: var(--white);
}

.contact-grid[b-u46fv6fmz2] {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    background: var(--gray-bg);
    padding: 3rem;
    border-radius: 40px;
    box-shadow: var(--shadow-xl);
}

.contact-info-side .subtitle[b-u46fv6fmz2] {
    display: inline-block;
    background: rgba(0, 180, 216, 0.1);
    color: var(--aqua);
    padding: 0.25rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.contact-info-side h2[b-u46fv6fmz2] {
    font-size: 2.6rem;
    font-weight: 800;
    margin: 0.5rem 0 1rem;
    color: var(--gray-900);
}

.contact-info-side p[b-u46fv6fmz2] {
    color: var(--gray-600);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.contact-info-list[b-u46fv6fmz2] {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

    .contact-info-list li[b-u46fv6fmz2] {
        font-size: 1.05rem;
        margin-bottom: 1rem;
        color: var(--gray-700);
        line-height: 1.6;
    }

.closing-time[b-u46fv6fmz2] {
    background: rgba(0, 180, 216, 0.05);
    padding: 1rem;
    border-radius: 60px;
    border-left: 4px solid var(--aqua);
    font-weight: 600;
    color: var(--primary);
    display: inline-block;
}

.contact-form-side h3[b-u46fv6fmz2] {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.form-group[b-u46fv6fmz2] {
    margin-bottom: 1.2rem;
}

    .form-group input[b-u46fv6fmz2], .form-group select[b-u46fv6fmz2] {
        width: 100%;
        padding: 0.9rem 1.2rem;
        border-radius: 60px;
        border: 1px solid var(--gray-300);
        background: var(--white);
        font-size: 1rem;
        transition: all 0.3s;
        outline: none;
    }

        .form-group input:focus[b-u46fv6fmz2], .form-group select:focus[b-u46fv6fmz2] {
            border-color: var(--aqua);
            box-shadow: 0 0 0 4px rgba(0, 180, 216, 0.1);
        }

/* ============================================ */
/* RESPONSIVIDADE                              */
/* ============================================ */
@media (max-width: 992px) {
    .hero-grid[b-u46fv6fmz2] {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content h1[b-u46fv6fmz2] {
        font-size: 2.8rem;
    }

    .hero-buttons[b-u46fv6fmz2], .trust-badges[b-u46fv6fmz2] {
        justify-content: center;
    }

    .hero-visual[b-u46fv6fmz2] {
        order: -1;
    }

    .floating-image-wrapper[b-u46fv6fmz2] {
        max-width: 400px;
        margin: 0 auto;
    }

    .about-grid[b-u46fv6fmz2] {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-text-wrapper[b-u46fv6fmz2] {
        order: 2;
    }

    .section-header-modern h2[b-u46fv6fmz2] {
        font-size: 2.2rem;
    }

    .message-card-modern[b-u46fv6fmz2] {
        padding: 2.5rem;
    }

    .contact-grid[b-u46fv6fmz2] {
        grid-template-columns: 1fr;
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .hero-content h1[b-u46fv6fmz2] {
        font-size: 2.2rem;
    }

    .hero-buttons[b-u46fv6fmz2] {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary-glow[b-u46fv6fmz2], .btn-outline-modern[b-u46fv6fmz2] {
        width: 100%;
        justify-content: center;
    }

    .numbers-grid-modern[b-u46fv6fmz2], .services-grid-modern[b-u46fv6fmz2], .diferenciais-grid-modern[b-u46fv6fmz2], .testimonials-grid-modern[b-u46fv6fmz2] {
        grid-template-columns: 1fr;
    }

    .parceiros-grid-modern[b-u46fv6fmz2] {
        grid-template-columns: repeat(2, 1fr);
    }

    .target-grid[b-u46fv6fmz2] {
        flex-direction: column;
        align-items: center;
    }

    .section-header-modern h2[b-u46fv6fmz2] {
        font-size: 1.8rem;
    }

    .quote-text[b-u46fv6fmz2] {
        font-size: 1.1rem;
    }

    .message-card-modern[b-u46fv6fmz2] {
        padding: 2rem;
    }

    .quote-icon[b-u46fv6fmz2] {
        font-size: 3rem;
        top: 10px;
        left: 20px;
    }

    .contact-grid[b-u46fv6fmz2] {
        padding: 1.5rem;
    }

    .contact-info-side h2[b-u46fv6fmz2] {
        font-size: 2rem;
    }

    .about-grid[b-u46fv6fmz2] {
        gap: 2rem;
    }

    .about-image-wrapper img[b-u46fv6fmz2] {
        height: 280px;
    }
}

@media (max-width: 480px) {
    .hero-content h1[b-u46fv6fmz2] {
        font-size: 1.8rem;
    }

    .section-header-modern h2[b-u46fv6fmz2] {
        font-size: 1.6rem;
    }

    .parceiros-grid-modern[b-u46fv6fmz2] {
        grid-template-columns: 1fr;
    }

    .diferencial-item-modern[b-u46fv6fmz2] {
        border-radius: 40px;
    }

    .service-card-modern[b-u46fv6fmz2] {
        padding: 1.5rem;
    }

    .target-modern h2[b-u46fv6fmz2] {
        font-size: 1.6rem;
    }

    .about-text-wrapper h2[b-u46fv6fmz2] {
        font-size: 2rem;
    }
}

/* /Components/Pages/Services.razor.rz.scp.css */
/* ============================================ */
/* PAGE HEADER COM IMAGEM DE FUNDO              */
/* ============================================ */
.page-header[b-7k2le23pun] {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 120px 0 4rem;
    text-align: center;
    color: #ffffff;
    min-height: 350px;
    display: flex;
    align-items: center;
}

/* Overlay escuro para legibilidade */
.page-header-overlay[b-7k2le23pun] {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10, 26, 58, 0.85) 0%, rgba(26, 77, 140, 0.75) 50%, rgba(58, 123, 213, 0.70) 100%);
    z-index: 1;
}

.page-header .container[b-7k2le23pun] {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.page-header h1[b-7k2le23pun] {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.page-header p[b-7k2le23pun] {
    font-size: 1.2rem;
    opacity: 0.9;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

/* ============================================ */
/* O RESTO DO SEU CSS PERMANECE IGUAL           */
/* ============================================ */

/* Section Header */
.section-header[b-7k2le23pun] {
    text-align: center;
    margin-bottom: 3rem;
}

    .section-header h2[b-7k2le23pun] {
        font-size: 2.5rem;
        font-weight: 700;
        color: var(--primary);
        margin-bottom: 0.5rem;
    }

    .section-header p[b-7k2le23pun] {
        color: var(--gray-600);
    }

/* Services */
.services-home[b-7k2le23pun] {
    padding: 5rem 0;
}

.services-grid[b-7k2le23pun] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.service-card[b-7k2le23pun] {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s;
}

    .service-card:hover[b-7k2le23pun] {
        transform: translateY(-8px);
        box-shadow: var(--shadow-lg);
    }

.service-image[b-7k2le23pun] {
    height: 400px;
    overflow: hidden;
}

    .service-image img[b-7k2le23pun] {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s;
    }

.service-card:hover .service-image img[b-7k2le23pun] {
    transform: scale(1.05);
}

.service-content[b-7k2le23pun] {
    padding: 1.5rem;
    text-align: center;
}

.card-icon[b-7k2le23pun] {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.service-list[b-7k2le23pun] {
    list-style: none;
    text-align: left;
    margin: 1rem 0;
    padding-left: 0;
}

    .service-list li[b-7k2le23pun] {
        font-size: 0.875rem;
        color: var(--gray-600);
        margin-bottom: 0.5rem;
        padding-left: 0.5rem;
    }

.service-content h3[b-7k2le23pun] {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.service-content p[b-7k2le23pun] {
    color: var(--gray-600);
    margin-bottom: 1rem;
}

.card-link[b-7k2le23pun] {
    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-7k2le23pun] {
        gap: 0.5rem;
        color: var(--aqua-dark);
    }
/* ======================================== */
/* SWIPER - ESTILOS PARA CARDS DE SERVIÇOS  */
/* ======================================== */
.service-swiper[b-7k2le23pun] {
    width: 100%;
    height: 400px;
    border-radius: 20px 20px 0 0;
    overflow: hidden;
    position: relative;
    background: #1a1a2e; /* fundo escuro para contrastar */
}

    .service-swiper .swiper-slide[b-7k2le23pun] {
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #1a1a2e; /* mesmo fundo para consistência */
    }

        .service-swiper .swiper-slide img[b-7k2le23pun] {
            width: 100%;
            height: 100%;
            object-fit: contain; /* ← MUDANÇA: mantém proporção sem esticar */
            display: block;
        }

    /* Paginação - bolinhas brancas com destaque */
    .service-swiper .swiper-pagination[b-7k2le23pun] {
        position: absolute;
        bottom: 10px;
        z-index: 10;
    }

    .service-swiper .swiper-pagination-bullet[b-7k2le23pun] {
        background: rgba(255, 255, 255, 0.6);
        opacity: 1;
        width: 20px;
        height: 20px;
    }

    .service-swiper .swiper-pagination-bullet-active[b-7k2le23pun] {
        background: #00b4d8;
        transform: scale(1.2);
    }

    /* Setas de navegação */
    .service-swiper .swiper-button-next[b-7k2le23pun],
    .service-swiper .swiper-button-prev[b-7k2le23pun] {
        color: white;
        background: rgba(0, 0, 0, 0.3);
        width: 60px;
        height: 60px;
        border-radius: 50%;
        backdrop-filter: blur(4px);
    }

        .service-swiper .swiper-button-next[b-7k2le23pun]::after,
        .service-swiper .swiper-button-prev[b-7k2le23pun]::after {
            font-size: 14px;
            font-weight: bold;
        }

    .service-swiper .swiper-button-next[b-7k2le23pun] {
        right: 8px;
    }

    .service-swiper .swiper-button-prev[b-7k2le23pun] {
        left: 8px;
    }
/* ============================================ */
/* RESPONSIVIDADE                               */
/* ============================================ */
@media (max-width: 768px) {
    .page-header[b-7k2le23pun] {
        padding: 100px 0 3rem;
        min-height: 280px;
    }

        .page-header h1[b-7k2le23pun] {
            font-size: 2rem;
        }

        .page-header p[b-7k2le23pun] {
            font-size: 1rem;
        }
}

@media (max-width: 576px) {
    .page-header[b-7k2le23pun] {
        padding: 80px 0 2.5rem;
        min-height: 220px;
    }

        .page-header h1[b-7k2le23pun] {
            font-size: 1.6rem;
        }
}
/* /Components/Shared/Footer.razor.rz.scp.css */
/* ========================================
   FOOTER - RODAPÉ PROFISSIONAL
   ======================================== */
.footer[b-6ofhkr8ohe] {
    background: linear-gradient(135deg, #0f172a 0%, #1a1a2e 100%);
    color: #cbd5e1;
    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);
    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 .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: #ffffff;
    }

    .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: #94a3b8;
}

/* 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: #ffffff;
    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;
    }

/* ========================================
   CORREÇÃO: LINKS COM CONTRASTE MELHOR
   ======================================== */
.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;
}

/* LINKS - COR MAIS CLARA E CONTRASTANTE */
.footer-links a[b-6ofhkr8ohe],
.footer-services a[b-6ofhkr8ohe] {
    color: #e2e8f0; /* ⬅️ Cinza claro, bem visível */
    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); /* ⬅️ Fica azul água ao passar o mouse */
        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;
    color: #cbd5e1;
}

    .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;
        color: #cbd5e1;
    }

        .footer-hours p span[b-6ofhkr8ohe] {
            color: #ffffff;
            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: #ffffff;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 1.2rem;
}

    .social-icon:hover[b-6ofhkr8ohe] {
        background: var(--aqua);
        color: #ffffff;
        transform: translateY(-3px);
    }

/* Copyright */
.footer-bottom[b-6ofhkr8ohe] {
    text-align: center;
    font-size: 0.75rem;
}

    .footer-bottom p[b-6ofhkr8ohe] {
        margin-bottom: 0.5rem;
        color: #94a3b8;
    }

    .footer-bottom i[b-6ofhkr8ohe] {
        color: #ff6b6b;
    }

    .footer-bottom .admin[b-6ofhkr8ohe] {
        color: var(--aqua);
        font-size: 0.7rem;
        margin-top: 0.5rem;
    }

/* ========================================
   RESPONSIVIDADE
   ======================================== */
@media (max-width: 1024px) {
    .footer-grid[b-6ofhkr8ohe] {
        gap: 1.5rem;
    }
}

@media (max-width: 900px) {
    .footer-grid[b-6ofhkr8ohe] {
        grid-template-columns: repeat(4, 1fr);
        gap: 1rem;
    }

    .footer-logo[b-6ofhkr8ohe] {
        font-size: 1.2rem;
    }

    .badge[b-6ofhkr8ohe] {
        font-size: 0.6rem;
        padding: 0.2rem 0.5rem;
    }
}

@media (max-width: 768px) {
    .footer[b-6ofhkr8ohe] {
        padding: 3rem 0 1.5rem;
    }

    .footer-grid[b-6ofhkr8ohe] {
        grid-template-columns: 1fr;
        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;
    }
}

@media (max-width: 480px) {
    .footer-logo[b-6ofhkr8ohe] {
        font-size: 1.2rem;
    }

    .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;
    }
}
/* /Components/Shared/SwiperCarousel.razor.rz.scp.css */
/* ======================================== */
/* SWIPER - ESTILOS PARA CARDS DE SERVIÇOS  */
/* ======================================== */
.service-swiper[b-zrc05fb24z] {
    width: 100%;
    height: 400px;
    border-radius: 20px 20px 0 0;
    overflow: hidden;
    position: relative;
    background: #1a1a2e; /* fundo escuro para contrastar */
}

    .service-swiper .swiper-slide[b-zrc05fb24z] {
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #1a1a2e; /* mesmo fundo para consistência */
    }

        .service-swiper .swiper-slide img[b-zrc05fb24z] {
            width: 100%;
            height: 100%;
            object-fit: fill; /* ← MUDANÇA: mantém proporção sem esticar */
            display: block;
        }

    /* Paginação - bolinhas brancas com destaque */
    .service-swiper .swiper-pagination[b-zrc05fb24z] {
        position: absolute;
        bottom: 10px;
        z-index: 10;
    }

    .service-swiper .swiper-pagination-bullet[b-zrc05fb24z] {
        background: rgba(255, 255, 255, 0.6);
        opacity: 1;
        width: 20px;
        height: 20px;
    }

    .service-swiper .swiper-pagination-bullet-active[b-zrc05fb24z] {
        background: #00b4d8;
        transform: scale(1.2);
    }

    /* Setas de navegação */
    .service-swiper .swiper-button-next[b-zrc05fb24z],
    .service-swiper .swiper-button-prev[b-zrc05fb24z] {
        color: white;
        background: rgba(0, 0, 0, 0.3);
        width: 60px;
        height: 60px;
        border-radius: 50%;
        backdrop-filter: blur(4px);
    }

        .service-swiper .swiper-button-next[b-zrc05fb24z]::after,
        .service-swiper .swiper-button-prev[b-zrc05fb24z]::after {
            font-size: 14px;
            font-weight: bold;
        }

    .service-swiper .swiper-button-next[b-zrc05fb24z] {
        right: 8px;
    }

    .service-swiper .swiper-button-prev[b-zrc05fb24z] {
        left: 8px;
    }
/* /Components/Shared/SwiperCarousel2.razor.rz.scp.css */
/* Garante que o contêiner do Swiper tenha a altura correta e não vaze */
.gallery-swiper[b-1rltzej875] {
    width: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

/* Corrige a exibição dos slides para que não fiquem em tiras verticais */
[b-1rltzej875] .swiper-slide {
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

    [b-1rltzej875] .swiper-slide img {
        width: 100%;
        height: 100%;
        object-fit: cover; /* Faz a imagem preencher todo o quadrado sem distorcer */
        display: block;
    }

/* Ajustes finos nas setas de navegação e paginação */
[b-1rltzej875] .swiper-pagination-bullet-active {
    background: #00b4d8 !important;
    transform: scale(1.2);
}

[b-1rltzej875] .swiper-button-next,
[b-1rltzej875] .swiper-button-prev {
    color: #fff !important;
    background: rgba(0, 0, 0, 0.3);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    backdrop-filter: blur(4px);
}

    [b-1rltzej875] .swiper-button-next:hover,
    [b-1rltzej875] .swiper-button-prev:hover {
        background: rgba(0, 0, 0, 0.6);
    }

    [b-1rltzej875] .swiper-button-next::after,
    [b-1rltzej875] .swiper-button-prev::after {
        font-size: 18px;
        font-weight: bold;
    }
/* /Components/Shared/WhatsAppButton.razor.rz.scp.css */
/* ============================================ */
/* BOTÃO FLUTUANTE DO WHATSAPP                   */
/* ============================================ */
.whatsapp-float[b-qcv2huxc3o] {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366; /* Cor oficial do WhatsApp */
    color: #ffffff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    z-index: 999;
    text-decoration: none;
}

    .whatsapp-float:hover[b-qcv2huxc3o] {
        transform: scale(1.10) translateY(-3px);
        box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
        color: #ffffff;
    }

/* Para telas pequenas, ajustar o tamanho */
@media (max-width: 480px) {
    .whatsapp-float[b-qcv2huxc3o] {
        width: 50px;
        height: 50px;
        font-size: 28px;
        bottom: 15px;
        right: 15px;
    }
}
