.faixa-borda-processo {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="50" height="50" fill="none" stroke="%23a8c5f0" stroke-width="1"><path d="M25 15a10 10 0 1 1 0 20a10 10 0 1 1 0-20z"/></svg>');
    background-repeat: repeat-x;
    height: 50px;
}

/* Área principal */
.secao-acompanhamento-processo {
    text-align: center;
    padding: 50px 20px;
}

.titulo-acompanhamento-processo {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.descricao-acompanhamento-processo {
    color: #666;
    margin-bottom: 20px;
}

/* Caixa de busca */
.caixa-busca-processo {
    display: inline-flex;
    width: 400px;
    max-width: 90%;
}

.input-numero-processo {
    flex: 1;
    padding: 10px;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-right: none;
    border-radius: 4px 0 0 4px;
    outline: none;
}

.botao-busca-processo {
    background-color: #1976d2;
    border: none;
    color: white;
    padding: 0 15px;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    font-size: 1rem;
}

.botao-busca-processo:hover {
    background-color: #125ca1;
}

/* Estilo do campo de busca na hero section */
.search-container {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 20px auto 0;
}

.search-box {
    display: flex;
    width: 100%;
    background: #fff;
    border-radius: 50px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

.search-input {
    flex: 1;
    padding: 14px 20px;
    border: none;
    font-size: 16px;
    background: transparent;
    outline: none;
    color: #333;
}

.search-button {
    position: absolute;
    right: 0;
    top: 0;
    width: 50px;
    height: 100%;
    border: none;
    background: #1976d2;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: background 0.2s ease;
    border-radius: 0 50px 50px 0;
    z-index: 2;
}

.search-button:hover {
    background: #125ca1;
}

/* Layout responsivo para o campo de busca */
@media (max-width: 576px) {
    .search-container {
        max-width: 90%;
    }

    .search-box {
        flex-direction: row-reverse;
        /* Inverte a ordem: primeiro botão, depois input */
        border-radius: 50px;
    }

    .search-input {
        padding: 12px 15px 12px 5px;
        font-size: 15px;
    }

    .search-button {
        width: 44px;
        height: 44px;
        border-radius: 50%;
        margin: 3px;
        font-size: 16px;
    }
}

/* Melhorias na Hero Section */
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
        url("../assets/img/assai_1.jpg") center 100%/cover no-repeat;
    background-attachment: fixed;
    background-position: center 60px;
    min-height: 400px;
    z-index: 2;
}

/* Links dos destaques */
.destaque-link {
    text-decoration: none;
    color: inherit;
    display: block;
    width: 100%;
    height: 100%;
}

.destaque-link:hover {
    text-decoration: none;
    color: inherit;
}

.destaque-link .destaque-card {
    transition: all 0.3s ease;
}

.destaque-link:hover .destaque-card {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Garantir que os cards de categorias/grupos tenham a mesma altura */
.categorias-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 20px;
}

.categoria-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
}

.categoria-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    padding: 25px 20px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    /* Garante altura 100% */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.categoria-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.categoria-icon {
    width: 70px;
    height: 70px;
    font-size: 28px;
    background: #4285f4;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.categoria-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.categoria-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .categorias-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 15px;
    }
}

@media (max-width: 480px) {
    /* ...existing code... */

    .categorias-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 15px;
    }

    .categoria-card {
        padding: 20px 15px;
        height: 100%;
    }

    .categoria-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
        margin-bottom: 12px;
    }

    .categoria-title {
        font-size: 16px;
    }

    .categoria-desc {
        font-size: 13px;
    }

    /* ...existing code... */
}

/* Melhorias no layout do carrossel */
.destaques-flex {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 30px;
    overflow: hidden;
    position: relative;
    width: 100%;
    margin-top: 20px;
}

.destaque-grande {
    flex: 0 0 300px;
    margin-bottom: 0;
}

.destaque-card-grande {
    height: 100%;
    min-height: 340px;
    padding: 35px 25px;
    font-size: 1.15em;
    background: white;
    border: none;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.12);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.destaque-card-grande:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #3b82f6, #1d4ed8);
    border-radius: 5px 5px 0 0;
}

.destaque-card-grande:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(59, 130, 246, 0.18);
}

.destaque-grande .destaque-icon {
    width: 80px;
    height: 80px;
    font-size: 32px;
    margin-bottom: 25px;
    background: #3b82f6;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.25);
}

.destaque-grande .destaque-title {
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 700;
    color: #111827;
}

.destaque-grande .destaque-desc {
    font-size: 17px;
    line-height: 1.5;
    color: #4b5563;
}

.destaques-carousel {
    flex: 1 1 0;
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    min-height: 420px;
    height: 100%;
    margin-bottom: 30px;
    padding: 0 5px;
    /* Reduzido de 10px para 5px para compensar a nova posição das setas */
}

.destaques-carousel-inner {
    width: 100%;
    min-height: 420px;
    position: relative;
    box-sizing: border-box;
    background: transparent;
    display: flex;
    padding: 0 5px;
    /* Reduzido de 10px para 5px para compensar a nova posição das setas */
}

.destaques-carousel-page {
    display: none;
    width: 100%;
    height: 100%;
}

.destaques-carousel-page.active {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 20px;
    min-height: 340px;
    align-items: center;
    justify-items: center;
}

.destaques-card-wrapper {
    min-width: 0;
    width: 100%;
    max-width: 220px;
    height: 100%;
    display: flex;
    align-items: stretch;
}

.carousel-controls {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    transform: translateY(-50%);
    z-index: 30;
    pointer-events: none;
    padding: 0;
    box-sizing: border-box;
}

.carousel-arrow {
    width: 44px;
    height: 44px;
    background: white;
    color: #4285f4;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1em;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
    transition: all 0.2s ease;
    pointer-events: auto;
    opacity: 0.95;
    position: absolute;
    /* Posicionamento absoluto para controle exato */
    z-index: 20;
    top: 50%;
    transform: translateY(-50%);
}

.carousel-arrow:hover {
    background: #4285f4;
    color: white;
    opacity: 1;
    box-shadow: 0 5px 15px rgba(66, 133, 244, 0.3);
}

/* Ajustando posição para mais perto do centro */
.carousel-arrow-left {
    left: 5px;
    /* Ajustado de -5px para 5px - movido mais 10px para dentro */
}

.carousel-arrow-right {
    right: 5px;
    /* Ajustado de -5px para 5px - movido mais 10px para dentro */
}

/* Ajustes responsivos para o carrossel */
@media (max-width: 1200px) {
    .destaques-flex {
        gap: 25px;
    }

    .destaque-grande {
        flex: 0 0 280px;
    }

    .destaques-card-wrapper {
        max-width: 200px;
    }
}

@media (max-width: 992px) {
    .destaques-flex {
        gap: 20px;
    }

    .destaque-grande {
        flex: 0 0 250px;
    }

    .destaques-carousel-page.active {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(3, 1fr);
        gap: 15px;
    }

    .destaques-card-wrapper {
        max-width: 180px;
    }
}

@media (max-width: 768px) {
    .destaques-flex {
        flex-direction: column;
        gap: 25px;
    }

    .destaque-grande {
        flex: none;
        width: 100%;
        max-width: 350px;
        margin: 0 auto 20px;
    }

    .destaque-card-grande {
        min-height: 200px;
    }

    .destaques-carousel-page.active {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(4, 1fr);
        gap: 16px;
        min-height: 340px;
        align-items: center;
        justify-items: center;
    }

    .carousel-arrow-left {
        margin-left: 0;
    }

    .carousel-arrow-right {
        margin-right: 0;
    }
}

@media (max-width: 576px) {

    /* Melhorias no layout do carrossel para mobile */
    .destaques-carousel {
        overflow: visible;
        padding-bottom: 60px;
        /* Mais espaço para os controles */
        min-height: auto;
    }

    .destaques-carousel-inner {
        min-height: auto;
        overflow: visible;
        margin-bottom: 15px;
        padding: 0 15px;
        /* Ajustado para mobile */
    }

    .destaques-carousel-page.active {
        display: flex;
        flex-direction: column;
        gap: 15px;
        min-height: unset;
        height: auto;
        padding: 0 10px;
    }

    /* Escondendo todos os cards exceto o primeiro em mobile */
    .destaques-card-wrapper:not(:first-child) {
        display: none;
    }

    /* Ajustando o primeiro card para ocupar toda a largura */
    .destaques-card-wrapper:first-child {
        width: 100%;
        max-width: none;
        min-height: 140px;
        height: auto;
        margin: 0 auto;
    }

    .destaque-card {
        width: 100%;
        height: auto;
        min-height: 140px;
        padding: 20px 15px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        background: #fff;
        border-radius: 12px;
        box-shadow: 0 4px 12px rgba(25, 118, 210, 0.12);
        margin-bottom: 10px;
        text-align: center;
    }

    .destaque-icon {
        width: 55px;
        /* Diminuído de 70px para 55px */
        height: 55px;
        /* Diminuído de 70px para 55px */
        min-width: 55px;
        font-size: 22px;
        /* Diminuído de 28px para 22px */
        margin: 0 auto 12px;
        /* Centralizado com margin auto horizontal */
        margin-bottom: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: #4285f4;
        color: white;
        border-radius: 50%;
    }

    .destaque-card-content {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        /* Centraliza o conteúdo */
        justify-content: center;
        text-align: center;
        overflow: hidden;
    }

    .destaque-title {
        font-size: 16px;
        /* Diminuído de 18px para 16px */
        font-weight: 700;
        margin-bottom: 6px;
        line-height: 1.3;
        text-align: center;
        width: 100%;
    }

    .destaque-desc {
        font-size: 13px;
        /* Diminuído de 14px para 13px */
        line-height: 1.4;
        color: #666;
        margin: 0;
        text-align: center;
        width: 100%;
    }

    /* Controles do carrossel em layout fixo abaixo do carrossel */
    .carousel-controls {
        position: static;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        margin: 15px 0;
        transform: none;
        padding: 0;
    }

    .carousel-arrow {
        position: static;
        width: 40px;
        /* Aumentado para facilitar o toque em dispositivos móveis */
        height: 40px;
        /* Aumentado para facilitar o toque em dispositivos móveis */
        margin: 0 15px;
        /* Espaçamento maior entre os botões */
        background: white;
        /* Alterado de #4285f4 para white */
        color: #4285f4;
        /* Alterado de white para #4285f4 */
        box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
        /* Ajustado para ser mais sutil */
    }

    .carousel-arrow:hover {
        background: #4285f4;
        color: white;
        box-shadow: 0 3px 12px rgba(66, 133, 244, 0.25);
    }

    .carousel-ratio {
        position: static;
        display: flex;
        justify-content: center;
        margin-top: 15px;
        gap: 8px;
        /* Espaçamento consistente entre os dots */
    }

    .carousel-ratio-dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: #e0e7ef;
        transition: all 0.2s ease;
    }

    .carousel-ratio-dot.active {
        background: #4285f4;
        transform: scale(1.2);
    }
}

/* Exibir botão menu hambúrguer em telas pequenas */
@media (max-width: 1024px) {
    .menu-hamburger {
        display: flex !important;
        position: fixed;
        top: 20px;
        left: 20px;
        z-index: 10001;
        background: #4285f4;
        color: #fff;
        border-radius: 50%;
        width: 48px;
        height: 48px;
        align-items: center;
        justify-content: center;
        border: none;
        box-shadow: 0 3px 10px rgba(0,0,0,0.15);
        font-size: 22px;
        cursor: pointer;
        transition: background 0.2s;
    }
    .menu-hamburger:hover {
        background: #3367d6;
    }
}

/* Sidebar responsiva */
@media (max-width: 1024px) {
    .sidebar {
        width: 220px;
        left: -220px;
        top: 64px; /* Ajuste para header fixo de 64px */
        height: calc(100% - 64px);
        transition: left 0.3s;
    }
    .sidebar.active {
        left: 0;
    }
    .sidebar-overlay {
        display: block;
        top: 64px;
        height: calc(100% - 64px);
    }
    /* Oculta o menu-hamburger quando o menu está aberto */
    .sidebar.active ~ .menu-hamburger,
    .sidebar-overlay.active ~ .menu-hamburger {
        display: none !important;
    }
}

/* Esconder menu hambúrguer em desktop */
@media (min-width: 1025px) {
    .menu-hamburger {
        display: none !important;
    }
    .sidebar {
        left: -220px !important;
    }
    .sidebar-overlay {
        display: none !important;
    }
}

/* Ajuste do header fixo para garantir que o menu lateral não sobrescreva */
.menu-hamburger {
    top: 20px;
    left: 20px;
    z-index: 10001;
}

/* Menu Hambúrguer e Menu Lateral */
    .menu-hamburger {
        display: none;
    }

.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(3px);
}

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

.sidebar {
    position: fixed;
    top: 0;
    left: -280px;
    width: 280px;
    height: 100%;
    background-color: white;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    z-index: 999;
    transition: all 0.3s ease;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.sidebar.active {
    left: 0;
}

.sidebar-header {
    padding: 20px;
    background-color: #4285f4;
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.sidebar-header h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
}

.close-sidebar {
    background: none;
    border: none;
    color: white;
    font-size: 22px;
    cursor: pointer;
    padding: 0;
}

.sidebar-content {
    padding: 15px 0;
    flex: 1;
}

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

.sidebar-menu li {
    margin-bottom: 1px;
}

.sidebar-menu a {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    color: #333;
    text-decoration: none;
    transition: all 0.2s ease;
    font-weight: 500;
}

.sidebar-menu a i {
    margin-right: 12px;
    width: 20px;
    text-align: center;
    font-size: 16px;
    color: #4285f4;
}

.sidebar-menu a:hover {
    background-color: rgba(66, 133, 244, 0.1);
    color: #4285f4;
}

.sidebar-footer {
    padding: 15px 20px;
    border-top: 1px solid #eee;
    display: flex;
    justify-content: space-around;
}

.sidebar-footer a {
    color: #666;
    font-size: 14px;
    text-decoration: none;
}

.sidebar-footer a:hover {
    color: #4285f4;
}

@media (max-width: 576px) {
    .menu-hamburger {
        position: fixed;

        margin-top: 10px;
        /* Ajustado de 15px para 25px para abaixar um pouco */
        left: 15px;
        width: 44px;
        height: 44px;
        background-color: #4285f4;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        cursor: pointer;
        z-index: 9999;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
        transition: all 0.3s ease;
        border: none;
    }

    .menu-hamburger i {
        font-size: 20px;
    }

    .sidebar {
        width: 180px; /* Menor ainda em mobile */
        top: 56px; /* Ajusta para header menor em mobile */
        height: calc(100% - 56px);
    }
}

/* Fix para ícones com emoji - remove fundo quando há emoji */
.categoria-icon-emoji {
    background: transparent !important;
    width: auto !important;
    height: auto !important;
    border-radius: 0 !important;
}

/* Ajuste na altura dos cards de destaque */
.destaque-card {
    width: 100%;
    height: 100%;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    /* Mudado para flex-start para alinhar a partir do topo */
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(25, 118, 210, 0.12);
    padding: 20px 15px;
    text-align: center;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.destaque-icon {
    width: 55px;
    height: 55px;
    min-width: 55px;
    font-size: 22px;
    margin: 0 auto;
    /* Removido margin-bottom para padronização */
    margin-top: 20px;
    /* Espaçamento superior fixo */
    margin-bottom: 15px;
    /* Espaçamento inferior fixo */
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #4285f4;
    color: white;
    border-radius: 50%;
}

.destaque-card-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    /* Alinhamento a partir do topo */
    text-align: center;
    overflow: hidden;
    flex: 1;
    /* Ocupa o espaço restante */
    padding-top: 5px;
    /* Espaçamento superior do conteúdo */
}

.destaque-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.3;
    text-align: center;
    width: 100%;
}

.destaque-desc {
    font-size: 13px;
    line-height: 1.4;
    color: #666;
    margin: 0;
    text-align: center;
    width: 100%;
}

/* Novo estilo para o card INSCREVA-SE no estilo FIQUE EM DIA */
.fique-em-dia-style {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(#125ca1 0%, #0b4f8c 100%);
    border: none;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(25, 135, 62, 0.2);
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    color: white;
}

.fique-em-dia-style:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 8px;
    background: linear-gradient(90deg, #19873E, #40BC65);
    border-radius: 8px 8px 0 0;
}

.destaque-icon-grande {
    width: 90px;
    /* Aumentado de tamanho */
    height: 90px;
    font-size: 42px;
    margin-bottom: 20px;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    background-color: rgba(255, 255, 255, 0.15);
    /* Fundo levemente transparente */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2), inset 0 0 15px rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.destaque-icon-grande::after {
    content: '';
    position: absolute;
    top: -10%;
    left: -10%;
    width: 120%;
    height: 120%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.3) 40%, rgba(255, 255, 255, 0.3) 60%, transparent 70%);
    transform: rotate(25deg);
    transition: all 0.6s ease;
}

.fique-em-dia-style:hover .destaque-icon-grande {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25), inset 0 0 20px rgba(255, 255, 255, 0.3);
}

.fique-em-dia-style:hover .destaque-icon-grande::after {
    left: 120%;
}

.destaque-title-grande {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 12px;
    color: white;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    letter-spacing: 1px;
}

.destaque-desc-grande {
    font-size: 16px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.4;
    max-width: 240px;
    margin: 0 auto;
}

.fique-em-dia-style:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 28px rgba(25, 135, 62, 0.25);
}

/* Responsividade para o novo estilo */
@media (max-width: 768px) {
    .fique-em-dia-style {
        padding: 25px 20px;
    }

    .destaque-icon-grande {
        width: 80px;
        /* Ajustado para telas menores */
        height: 80px;
        font-size: 38px;
        margin-bottom: 16px;
    }

    .destaque-title-grande {
        font-size: 28px;
        margin-bottom: 10px;
    }

    .destaque-desc-grande {
        font-size: 15px;
        max-width: 220px;
    }
}

@media (max-width: 576px) {
    .fique-em-dia-style {
        padding: 20px 15px;
        max-width: 280px;
        margin: 0 auto;
    }

    .destaque-icon-grande {
        width: 70px;
        /* Ajustado para mobile */
        height: 70px;
        font-size: 34px;
        margin-bottom: 14px;
    }

    .destaque-title-grande {
        font-size: 24px;
        margin-bottom: 8px;
    }

    .destaque-desc-grande {
        font-size: 14px;
        max-width: 200px;
    }
}

/* Ajuste para os botões flutuantes - WhatsApp e Scroll Up */
.floating-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 999;
}

.floating-button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    font-size: 20px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    background-color: #4285f4;
    /* Alterado: agora tem fundo azul igual aos ícones de destaque */
    color: white;
    /* Alterado: texto branco para contrastar com fundo azul */
}

/* Estilo específico para o botão de WhatsApp */
.floating-button.whatsapp {
    background-color: #4285f4;
    /* Alterado: mesma cor de fundo azul dos ícones */
    color: white;
}

/* Estilo específico para o botão de scroll up */
#scroll-up {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    background-color: #4285f4;
    /* Alterado: mesma cor de fundo azul dos ícones */
    color: white;
}

.floating-button:hover {
    transform: translateY(-3px);
    background-color: #3367d6;
    /* Azul ligeiramente mais escuro ao passar o mouse */
    color: white;
    box-shadow: 0 6px 15px rgba(66, 133, 244, 0.3);
}

@media (max-width: 576px) {
    .floating-buttons {
        bottom: 15px;
        right: 15px;
        gap: 10px;
    }

    .floating-button {
        width: 45px;
        height: 45px;
        font-size: 18px;
        background-color: #4285f4;
        /* Garantindo a mesma cor em mobile */
        color: white;
    }
}