/* Variáveis de Cores personalizadas para Islab */
:root {
    --islab-green: #006b38;
    --islab-orange: #f78e1e;
    --islab-blue: #00839a;
    --islab-light-green: #e8f5f0;
    --grey-dark: #545454;
    --grey-light: #f5f5f5;
    --white: #ffffff;
    --primary-color: var(--islab-green);
    --secondary-color: var(--islab-blue);
    --islab-green-dark: #005432;
}

/* Reset e estilos gerais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    /*font-family: Arial, Helvetica, sans-serif;*/
    color: var(--grey-dark);
    line-height: 1.6;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

a {
    text-decoration: none;
}

ul {
    list-style: none;
}

/* Estilos do Header */
header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.top-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

.logo img {
    height: 60px;
}

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

/* Seletor de Cidade */
.cidade-selector {
    display: flex;
    flex-direction: column;
    font-size: 14px;
}

.cidade-selector span {
    color: var(--secondary-blue);
    margin-bottom: 5px;
}

.select-wrapper {
    position: relative;
    min-width: 180px;
}

.select-wrapper::after {
    content: '\f0d7';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--primary-green);
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

select {
    width: 100%;
    padding: 8px 30px 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    appearance: none;
    color: var(--grey-dark);
    background-color: var(--white);
    font-size: 14px;
}

/* Botões de Ação */
.action-buttons {
    display: flex;
    gap: 10px;
}

.btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 15px;
    border-radius: 10px;
    font-weight: bold;
    transition: all 0.3s ease;
    white-space: nowrap;
    font-size: 13px;
}

.btn-primary {
    background-color: var(--islab-blue) !important;
    border-color: var(--islab-blue) !important;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
    background-color: #006b85 !important;
    border-color: #006b85 !important;
}

.btn-secondary {
    background-color: var(--primary-green);
    color: var(--white);
}

.btn-secondary:hover {
    background-color: #005e32;
}

.btn i {
    font-size: 16px;
}

/* Campo de Busca */
.search {
    display: flex;
    position: relative;
}

.search input {
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 8px 40px 8px 12px;
    width: 180px;
    font-size: 14px;
}

.search button {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 36px;
    background-color: var(--secondary-blue);
    border: none;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
    color: var(--white);
    cursor: pointer;
}

/* Menu de Navegação Principal */
.main-nav {
    background-color: var(--primary-green);
    margin-top: 5px;
}

.main-nav ul {
    display: flex;
    flex-wrap: wrap;
}

.main-nav li {
    position: relative;
}

.main-nav li a {
    display: block;
    color: var(--white);
    padding: 15px;
    font-size: 13px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.main-nav li a:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.main-nav li:last-child a {
    background-color: var(--primary-orange);
}

/* Estilo para Menu Mobile */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--primary-green);
    cursor: pointer;
    margin-left: 20px;
}

/* Responsividade */
@media (max-width: 1024px) {
    .right-header {
        flex-wrap: wrap;
        justify-content: flex-end;
    }

    .action-buttons {
        order: 3;
        margin-top: 10px;
        width: 100%;
        justify-content: space-between;
    }

    .main-nav ul {
        overflow-x: auto;
        justify-content: flex-start;
    }
}

@media (max-width: 768px) {
    .top-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .logo {
        margin-bottom: 15px;
    }

    .right-header {
        width: 100%;
    }

    .cidade-selector {
        width: 100%;
        margin-bottom: 10px;
    }

    .action-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .search {
        width: 100%;
        margin-top: 10px;
    }

    .search input {
        width: 100%;
    }

    .main-nav ul {
        flex-direction: column;
    }

    .mobile-menu-btn {
        display: inline-block;
        position: absolute;
        right: 15px;
        top: 15px;
    }

    .top-header {
        position: relative;
        padding-right: 50px;
    }

    .main-nav {
        display: none;
    }

    .main-nav.active {
        display: block;
    }

    .main-nav li a {
        padding: 12px 15px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
}

/* Sobrescrevendo cores do Bootstrap para combinar com a identidade visual do Islab */
.btn-success {
    background-color: var(--islab-green) !important;
    border-color: var(--islab-green) !important;
}

.btn-success:hover,
.btn-success:focus,
.btn-success:active {
    background-color: #005e32 !important;
    border-color: #005e32 !important;
}

.text-primary {
    color: #0088cc !important;
}

.text-success {
    color: #006B3F !important;
}

.bg-success {
    background-color: var(--islab-green) !important;
}

.bg-warning {
    background-color: var(--islab-orange) !important;
}

/* Estilos personalizados adicionais */
.navbar-dark .navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.navbar-dark .navbar-nav .nav-link:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Para telas pequenas (mobile) */
@media (max-width: 992px) {
    .navbar-collapse {
        background-color: var(--islab-green);
        padding: 0;
        margin-top: 0;
    }

    .navbar-nav {
        flex-direction: column;
    }

    .contato-item {
        background-color: var(--islab-orange);
    }

    .navbar-toggler {
        padding: 0.25rem;
    }

    .navbar-toggler:focus {
        box-shadow: none;
    }
}

/* Cor do menu de navegação principal */
.bg-islab-green {
    background-color: var(--islab-green) !important;
}

/* Botão CONTATO em laranja */
.contato-item {
    background-color: var(--islab-orange);
}

/* Estilos para o Slider/Carousel */
.slider-section {
    margin-bottom: 0;
}

/* Garantir que o carousel ocupe 100% da largura da tela */
#carouselExampleIndicators {
    width: 100vw !important;
    max-width: 100vw !important;
    margin-left: calc(-50vw + 50%) !important;
    margin-right: calc(-50vw + 50%) !important;
    position: relative;
    left: 50%;
    right: 50%;
    transform: translateX(-50%);
    overflow: hidden;
}

/* Desktop: manter overflow hidden */
@media (min-width: 769px) {
    #carouselExampleIndicators {
        overflow: hidden;
    }
}

/* Garantir que o carousel-inner também ocupe 100% da largura */
#carouselExampleIndicators .carousel-inner {
    width: 100% !important;
    max-width: 100% !important;
}

/* Altura automática para dispositivos móveis */
@media (max-width: 768px) {
    #carouselExampleIndicators {
        height: auto !important;
        min-height: auto !important;
    }
    
    #carouselExampleIndicators .carousel-item {
        height: auto !important;
        min-height: auto !important;
    }
}

/* Garantir que o conteúdo do carousel seja responsivo */
#carouselExampleIndicators .carousel-item {
    overflow: hidden;
}

/* Ajustes para conteúdo dentro do carousel */
#carouselExampleIndicators .carousel-caption {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    width: 90%;
    max-width: 600px;
}

/* Classe utilitária para full-width em qualquer contexto */
.full-width-slider {
    width: 100vw !important;
    max-width: 100vw !important;
    margin-left: calc(-50vw + 50%) !important;
    margin-right: calc(-50vw + 50%) !important;
    position: relative;
    left: 50%;
    right: 50%;
    transform: translateX(-50%);
    overflow: hidden;
}

/* Garantir que não haja scroll horizontal no body */
body {
    overflow-x: hidden;
}

/* Estilo para o fallback do slider */
.fallback-slider {
    height: 400px;
}

/* Responsividade do fallback */
@media (max-width: 768px) {
    .fallback-slider {
        height: 60vh;
        min-height: 300px;
    }
}

@media (max-width: 576px) {
    .fallback-slider {
        height: 70vh;
        min-height: 250px;
    }
}

@media (max-width: 375px) {
    .fallback-slider {
        height: 80vh;
        min-height: 200px;
    }
}

.carousel-item {
    height: 65vh;
    min-height: 400px;
    background: no-repeat center center scroll;
    background-size: cover;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-item img,
.carousel-item video {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
}

.carousel-indicators {
    margin-bottom: 2rem;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 6px;
    background-color: rgba(255, 255, 255, 0.5);
    border: none;
}

.carousel-indicators button.active {
    background-color: var(--islab-green);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    background-size: 60%;
}

/* Animação para os slides */
.carousel-fade .carousel-item {
    opacity: 0;
    transition: opacity 0.9s ease-in-out;
}

.carousel-fade .carousel-item.active {
    opacity: 1;
}

/* Ajustes responsivos para o slider */
@media (max-width: 768px) {
    .carousel-item {
        height: auto;
        min-height: 60vh;
        padding: 20px 0;
    }
    
    .carousel-item img,
    .carousel-item video {
        height: auto;
        max-height: 60vh;
        object-fit: contain;
        width: 100%;
    }
    
    /* Slider mobile com altura dinâmica */
    #carouselExampleIndicatorsMobile .carousel-item {
        height: auto;
        min-height: auto;
        padding: 0;
    }
    
    #carouselExampleIndicatorsMobile .carousel-item img,
    #carouselExampleIndicatorsMobile .carousel-item video {
        height: auto;
        max-height: none;
        object-fit: cover;
        width: 100%;
    }
    
    #carouselExampleIndicators {
        width: 100vw !important;
        max-width: 100vw !important;
        margin-left: calc(-50vw + 50%) !important;
        margin-right: calc(-50vw + 50%) !important;
        overflow: hidden;
        position: relative;
    }
    
    #carouselExampleIndicators .carousel-inner {
        overflow: hidden;
    }
    
    /* Garantir que as setas fiquem dentro do slider */
    #carouselExampleIndicators .carousel-control-prev,
    #carouselExampleIndicators .carousel-control-next {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 10%;
        height: 100%;
        background: transparent;
        border: none;
        z-index: 10;
    }
    
    #carouselExampleIndicators .carousel-control-prev {
        left: 0;
    }
    
    #carouselExampleIndicators .carousel-control-next {
        right: 0;
    }
}

@media (max-width: 576px) {
    .carousel-item {
        height: auto;
        min-height: 70vh;
        padding: 0px 0;
    }
    
    .carousel-item img {
        height: auto;
        max-height: 70vh;
        object-fit: contain;
        width: 100%;
    }
    
    .carousel-item video {
        height: auto;
        width: 100%;
        object-fit: cover;
        display: block;
    }
    
    /* Slider mobile com altura dinâmica */
    #carouselExampleIndicatorsMobile .carousel-item {
        height: auto;
        min-height: auto;
        padding: 0;
    }
    
    #carouselExampleIndicatorsMobile .carousel-item img,
    #carouselExampleIndicatorsMobile .carousel-item video {
        height: auto;
        max-height: none;
        object-fit: cover;
        width: 100%;
    }
    
    #carouselExampleIndicators {
        width: 100vw !important;
        max-width: 100vw !important;
        margin-left: calc(-50vw + 50%) !important;
        margin-right: calc(-50vw + 50%) !important;
        overflow: hidden;
        position: relative;
    }
    
    #carouselExampleIndicators .carousel-inner {
        overflow: hidden;
    }
    
    /* Ajustar controles para mobile */
    #carouselExampleIndicators .carousel-control-prev,
    #carouselExampleIndicators .carousel-control-next,
    #carouselExampleIndicatorsMobile .carousel-control-prev,
    #carouselExampleIndicatorsMobile .carousel-control-next {
        width: 10%;
        opacity: 0.8;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        height: 100%;
        background: transparent;
        border: none;
        z-index: 10;
    }
    
    #carouselExampleIndicators .carousel-control-prev,
    #carouselExampleIndicatorsMobile .carousel-control-prev {
        left: 0;
    }
    
    #carouselExampleIndicators .carousel-control-next,
    #carouselExampleIndicatorsMobile .carousel-control-next {
        right: 0;
    }
    
    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        width: 30px;
        height: 30px;
        background-size: 50%;
    }
    
    /* CSS específico para o slider mobile */
    #carouselExampleIndicatorsMobile {
        width: 100vw !important;
        max-width: 100vw !important;
        margin-left: calc(-50vw + 50%) !important;
        margin-right: calc(-50vw + 50%) !important;
        overflow: hidden;
        position: relative;
        height: auto;
    }
    
    #carouselExampleIndicatorsMobile .carousel-inner {
        overflow: hidden;
        height: auto;
    }
    
    #carouselExampleIndicatorsMobile .carousel-item {
        height: auto;
        min-height: auto;
    }
    
    #carouselExampleIndicatorsMobile .carousel-item video {
        height: auto;
        width: 100%;
        object-fit: cover;
        display: block;
        max-height: none;
    }
    
    #carouselExampleIndicatorsMobile .carousel-item img {
        height: auto;
        width: 100%;
        object-fit: cover;
        display: block;
        max-height: none;
    }
    
    #carouselExampleIndicatorsMobile .carousel-control-prev,
    #carouselExampleIndicatorsMobile .carousel-control-next {
        width: 15%;
        opacity: 0.9;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        height: 100%;
        background: rgba(0, 0, 0, 0.1);
        border: none;
        z-index: 10;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    #carouselExampleIndicatorsMobile .carousel-control-prev {
        left: 0;
    }
    
    #carouselExampleIndicatorsMobile .carousel-control-next {
        right: 0;
    }
    
    #carouselExampleIndicatorsMobile .carousel-control-prev-icon,
    #carouselExampleIndicatorsMobile .carousel-control-next-icon {
        width: 25px;
        height: 25px;
        background-size: 100%;
        filter: drop-shadow(0 0 2px rgba(0, 0, 0, 0.5));
    }
    
    /* Ajustar indicadores para mobile */
    .carousel-indicators {
        margin-bottom: 1rem;
    }
    
    .carousel-indicators button {
        width: 8px;
        height: 8px;
        margin: 0 4px;
    }
}

/* Ajustes para dispositivos muito pequenos */
@media (max-width: 375px) {
    .carousel-item {
        height: auto;
        min-height: auto;
        padding: 10px 0;
    }
    
    #carouselExampleIndicatorsMobile .carousel-item {
        height: auto;
        min-height: auto;
    }
    
    #carouselExampleIndicatorsMobile .carousel-item video,
    #carouselExampleIndicatorsMobile .carousel-item img {
        height: auto;
        width: 100%;
        object-fit: cover;
        max-height: none;
    }
    
    /* Melhorar visibilidade das setas em telas muito pequenas */
    #carouselExampleIndicatorsMobile .carousel-control-prev,
    #carouselExampleIndicatorsMobile .carousel-control-next {
        width: 20%;
        opacity: 1;
        background: rgba(0, 0, 0, 0.2);
    }
    
    #carouselExampleIndicatorsMobile .carousel-control-prev-icon,
    #carouselExampleIndicatorsMobile .carousel-control-next-icon {
        width: 30px;
        height: 30px;
        filter: drop-shadow(0 0 3px rgba(0, 0, 0, 0.7));
    }
    }
    
    .carousel-item img,
    .carousel-item video {
        height: auto;
        max-height: 80vh;
        object-fit: contain;
        width: 100%;
    }
    
    #carouselExampleIndicators .carousel-control-prev,
    #carouselExampleIndicators .carousel-control-next {
        width: 8%;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        height: 100%;
        background: transparent;
        border: none;
        z-index: 10;
    }
    
    #carouselExampleIndicators .carousel-control-prev {
        left: 0;
    }
    
    #carouselExampleIndicators .carousel-control-next {
        right: 0;
    }
    
    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        width: 25px;
        height: 25px;
        background-size: 45%;
    }
    
    .carousel-indicators {
        margin-bottom: 0.5rem;
    }
    
    .carousel-indicators button {
        width: 6px;
        height: 6px;
        margin: 0 3px;
    }
}

/* Estilos para a busca em dispositivos móveis */
.mobile-search {
    width: 50%;
}

.mobile-search .input-group {
    max-width: 100%;
}

.mobile-search .form-control {
    height: 36px;
    font-size: 0.85rem;
}

.mobile-search .btn {
    height: 36px;
    padding: 0 10px;
}

@media (max-width: 576px) {
    .mobile-search {
        width: 60%;
    }

    .mobile-search .form-control {
        height: 32px;
        font-size: 0.8rem;
    }

    .mobile-search .btn {
        height: 32px;
        padding: 0 8px;
    }
}

/* Estilos para o botão de busca e cidade em dispositivos móveis */
.btn-search-mobile,
.btn-city-mobile {
    background: transparent;
    border: none;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.btn-search-mobile:focus,
.btn-city-mobile:focus {
    outline: none;
}

/* Estilos para os modais */
.modal-header {
    background-color: var(--islab-green);
    color: white;
    border-bottom: none;
}

.modal-header .btn-close {
    filter: brightness(0) invert(1);
}

.modal-content {
    border-radius: 8px;
    overflow: hidden;
    border: none;
}

.modal-body {
    padding: 1.5rem;
}

/* Estilos específicos para o modal de busca */
.modal-body .input-group .form-control {
    border-radius: 4px 0 0 4px;
    border: 1px solid #ddd;
    padding: 12px;
    font-size: 16px;
}

.modal-body .input-group .btn {
    border-radius: 0 4px 4px 0;
    padding: 0 20px;
}

/* Estilos específicos para o modal de cidades */
.city-list .form-select-lg {
    padding: 12px;
    font-size: 16px;
}

.city-list .btn-success {
    padding: 12px;
}

/* Estilos para a seção de botões de serviços */
.service-buttons {
    background-color: #f9f9f9;
    padding-top: 30px;
    padding-bottom: 50px;
    margin-top: 0;
}

.section-title {
    color: var(--islab-green);
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    font-size: 2rem;
}

.divider {
    height: 3px;
    width: 70px;
    background-color: var(--islab-green);
    margin-bottom: 30px;
}

.service-item {
    background-color: #fff;
    border-radius: 8px;
    padding: 25px 15px;
    text-align: center;
    height: 100%;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
}

.service-item.fade-in {
    opacity: 1;
    transform: translateY(0);
}

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

.service-item:nth-child(even) {
    background-color: var(--islab-light-green);
}

.icon-container {
    margin-bottom: 15px;
}

.icon-container i {
    font-size: 2.5rem;
    color: var(--islab-green);
}

.service-item .number {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--islab-green);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.1rem;
}

.service-item h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--islab-green);
    margin-bottom: 15px;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-item .divider {
    margin: 0 auto 10px;
    width: 40px;
    height: 2px;
}

/* Versão para tablets */
@media (min-width: 768px) and (max-width: 991px) {
    .service-item {
        padding: 20px 10px;
    }

    .service-item h3 {
        font-size: 0.9rem;
        min-height: 45px;
    }

    .icon-container i {
        font-size: 2rem;
    }
}

/* Versão para celulares */
@media (max-width: 767px) {
    .service-item {
        padding: 15px 10px;
    }

    .service-item h3 {
        font-size: 0.85rem;
        min-height: 40px;
    }

    .icon-container i {
        font-size: 1.8rem;
    }

    .service-item .number {
        width: 25px;
        height: 25px;
        font-size: 0.9rem;
    }
}

/* Ajuste para telas muito pequenas */
@media (max-width: 375px) {
    .service-item h3 {
        font-size: 0.75rem;
    }
}

/* Estilos para a seção de apresentação do Islab */
.about-islab {
    background-color: white;
    position: relative;
    overflow: hidden;
}

.about-islab::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.95) 50%, rgba(255, 255, 255, 0.8) 100%);
    z-index: 0;
}

.about-islab .container {
    position: relative;
    z-index: 1;
}

.subtitle {
    display: inline-block;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--islab-green);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.subtitle::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--islab-orange);
}

.title-lg {
    color: var(--islab-green);
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
}

.about-content p.lead {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.7;
}

.features-list {
    margin-top: 30px;
}

.feature-item {
    display: flex;
    margin-bottom: 20px;
    padding: 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.feature-item:hover {
    background-color: var(--islab-light-green);
    border-left-color: var(--islab-green);
    transform: translateX(5px);
}

.feature-icon {
    min-width: 60px;
    height: 60px;
    background-color: rgba(0, 107, 56, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.feature-icon i {
    font-size: 1.5rem;
    color: var(--islab-green);
}

.feature-text h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--islab-green);
    margin-bottom: 5px;
}

.feature-text p {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 0;
}

.about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.video-container {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0, 107, 63, 0.3), rgba(58, 173, 215, 0.3));
    z-index: 1;
}

.video-frame {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    z-index: 2;
}

.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: #fff;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.play-btn i {
    color: #006B3F;
    font-size: 30px;
    margin-left: 5px;
}

.play-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.experience-badge {
    position: absolute;
    bottom: 30px;
    right: -30px;
    background: #006B3F;
    color: #fff;
    padding: 20px 30px;
    border-radius: 15px;
    transform: rotate(-90deg);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 4;
}

.experience-badge .number {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
    display: block;
    margin-bottom: 5px;
}

.experience-badge .text {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
}

@media (max-width: 991.98px) {
    .about-image {
        margin-top: 40px;
    }

    .experience-badge {
        right: -20px;
        bottom: 20px;
        padding: 15px 25px;
    }

    .experience-badge .number {
        font-size: 2rem;
    }

    .experience-badge .text {
        font-size: 0.8rem;
    }
}

.hero-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.hero-image img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.hero-image:hover img {
    transform: scale(1.05);
}

.experience-badge {
    position: absolute;
    top: 30px;
    right: -25px;
    background: linear-gradient(135deg, #006B3F 0%, #3AADD7 100%);
    color: white;
    padding: 15px 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    text-align: center;
    transform: rotate(90deg);
    transform-origin: right bottom;
    transition: transform 0.3s ease;
    z-index: 2;
}

.experience-badge .number {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 5px;
}

.experience-badge .text {
    font-size: 0.9rem;
    font-weight: 500;
    white-space: nowrap;
}

.experience-badge:hover {
    transform: rotate(90deg) scale(1.05);
}

@media (max-width: 991.98px) {
    .hero-image {
        padding: 1rem;
        margin-top: 2rem;
    }

    .experience-badge {
        bottom: -15px;
        right: 20px;
        padding: 0.75rem 1rem;
    }

    .experience-badge .number {
        font-size: 2rem;
    }
}

/* Missão, Visão e Valores */
.mission-section {
    padding: 80px 0;
    background-color: var(--grey-light);
}

.mission-card {
    background-color: white;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.mission-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.mission-icon {
    width: 80px;
    height: 80px;
    background-color: var(--islab-light-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.mission-icon i {
    font-size: 2rem;
    color: var(--islab-green);
}

.mission-card h3 {
    color: var(--islab-green);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.mission-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Galeria de Fotos */
.gallery-section {
    padding: 80px 0;
    background-color: white;
}

.gallery-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    display: block;
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: all 0.5s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 107, 56, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.gallery-overlay i {
    color: white;
    font-size: 2rem;
    transform: scale(0);
    transition: all 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-overlay i {
    transform: scale(1);
}

/* Features Section */
.features-section {
    padding: 80px 0;
    background-color: var(--grey-light);
}

.features-content {
    padding-right: 50px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    padding: 20px;
    border-radius: 10px;
    background-color: white;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    min-width: 60px;
    height: 60px;
    background-color: var(--islab-light-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
}

.feature-icon i {
    font-size: 1.5rem;
    color: var(--islab-green);
}

.feature-text h4 {
    color: var(--islab-green);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.feature-text p {
    color: #666;
    margin-bottom: 0;
    line-height: 1.6;
}

/* Animações */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-on-scroll.fade-in {
    opacity: 1;
    transform: translateY(0);
}

/* Responsividade */
@media (max-width: 991.98px) {
    .islab-hero {
        padding: 60px 0;
    }

    .features-content {
        padding-right: 0;
        margin-bottom: 40px;
    }

    .stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 767.98px) {
    .islab-hero {
        padding: 40px 0;
    }

    .title-lg {
        font-size: 2rem;
    }

    .hero-stats {
        margin-top: 20px;
    }

    .stat-item {
        padding: 15px;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .gallery-item img {
        height: 250px;
    }

    .feature-item {
        padding: 15px;
    }

    .feature-icon {
        min-width: 50px;
        height: 50px;
    }

    .feature-text h4 {
        font-size: 1.1rem;
    }
}

/* Estilos da Página de Contato */
.contact-hero {
    background-color: var(--islab-green);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 107, 63, 0.95) 0%, rgba(0, 107, 63, 0.8) 100%);
    z-index: 1;
}

.contact-hero .container {
    position: relative;
    z-index: 2;
    color: #fff;
    text-align: center;
}

.contact-hero .subtitle {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.contact-hero .title-lg {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #fff;
    line-height: 1.2;
}

.contact-hero .lead {
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.contact-hero .divider {
    width: 80px;
    height: 4px;
    background-color: var(--islab-orange);
    margin: 0 auto 2rem;
    border-radius: 2px;
}

.contact-channels {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.contact-channel-card {
    background-color: #fff;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
}

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

.channel-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(0, 107, 63, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--islab-green);
    transition: all 0.3s ease;
}

.channel-icon.whatsapp {
    background-color: rgba(37, 211, 102, 0.1);
    color: #25d366;
}

.channel-icon.phone {
    background-color: rgba(0, 107, 63, 0.1);
    color: var(--islab-green);
}

.channel-icon.email {
    background-color: rgba(255, 152, 0, 0.1);
    color: var(--islab-orange);
}

.contact-channel-card:hover .channel-icon {
    transform: scale(1.1);
}

.contact-channel-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.contact-channel-card p {
    color: #666;
    margin-bottom: 0;
    line-height: 1.6;
}

.contact-form-section {
    padding: 80px 0;
    background-color: #fff;
}

.contact-form {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form .form-label {
    font-weight: 500;
    color: #333;
    margin-bottom: 0.5rem;
}

.contact-form .form-control {
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus {
    border-color: var(--islab-green);
    box-shadow: 0 0 0 0.2rem rgba(0, 107, 63, 0.1);
}

.contact-form textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.contact-form .btn-submit {
    background-color: var(--islab-green);
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    border: none;
    transition: all 0.3s ease;
    width: 100%;
}

.contact-form .btn-submit:hover {
    background-color: #005a34;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 107, 63, 0.2);
}

.contact-form .btn-submit:active {
    transform: translateY(0);
}

.form-check {
    margin-bottom: 1.5rem;
}

.form-check-label {
    color: #666;
    font-size: 0.9rem;
}

.form-check-input:checked {
    background-color: var(--islab-green);
    border-color: var(--islab-green);
}

.form-text {
    color: #666;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.invalid-feedback {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

@media (max-width: 768px) {
    .contact-form {
        padding: 25px;
    }

    .contact-form .btn-submit {
        padding: 0.75rem 1.5rem;
    }
}

.contact-info-card {
    background: #fff;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.info-section {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e9ecef;
}

.info-section:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

/* Estilos para redes sociais */
.social-links {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-link {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transform: scale(0);
    transition: transform 0.3s ease;
    border-radius: 50%;
}

.social-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    color: #fff;
}

.social-link:hover::before {
    transform: scale(1);
}

.search-box {
    background: rgba(255, 255, 255, 0.15);
    padding: 1.5rem;
    border-radius: 1rem;
    backdrop-filter: blur(5px);
    margin-bottom: 2rem;
}

.search-box .form-control {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    border-radius: 0.5rem 0 0 0.5rem !important;
}

.search-box .btn-warning {
    background-color: #F7941D;
    border-color: #F7941D;
    color: #fff;
    font-size: 1rem;
    padding: 0.5rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.search-box .btn-warning:hover {
    background-color: #e58719;
    border-color: #e58719;
}

.search-box .btn-warning i {
    font-size: 1rem;
}

.search-box .input-group {
    background: #fff;
    border-radius: 0.5rem;
    overflow: hidden;
}

.letter-navigation {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin: 2rem 0;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 1rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.letter-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    color: var(--grey-dark);
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    text-decoration: none;
    background: white;
}

.letter-link:hover {
    background-color: var(--islab-blue);
    border-color: var(--islab-blue);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.letter-link.active {
    background-color: var(--islab-green);
    border-color: var(--islab-green);
    color: white;
    box-shadow: 0 4px 8px rgba(0, 107, 56, 0.2);
}

@media (max-width: 768px) {
    .letter-navigation {
        padding: 1rem;
        gap: 0.35rem;
    }

    .letter-link {
        width: 35px;
        height: 35px;
        font-size: 0.8rem;
    }
}

.alphabet-nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: white;
    padding: 1rem 0;
    border-bottom: 1px solid #e9ecef;
}

.alphabet-nav .btn-group {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border-radius: 0.5rem;
    overflow: hidden;
}

.alphabet-nav .btn-outline-primary {
    border: none;
    padding: 0.75rem 1rem;
    color: var(--grey-dark);
    font-weight: 500;
    transition: all 0.3s ease;
}

.alphabet-nav .btn-outline-primary:hover,
.alphabet-nav .btn-outline-primary:focus,
.alphabet-nav .btn-outline-primary.active {
    background-color: var(--islab-blue);
    color: white;
    box-shadow: none;
}

.alphabet-nav .btn-outline-primary:not(:last-child) {
    border-right: 1px solid #e9ecef;
}

/* Estilos Islab Kids */
.kids-hero {
    background: linear-gradient(135deg, var(--islab-green) 0%, var(--islab-green) 100%);
    position: relative;
    padding: 60px 0;
    overflow: hidden;
}

.kids-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../imagens/pattern.png') repeat;
    opacity: 0.1;
}

.kids-hero-content {
    position: relative;
    z-index: 2;
}

.kids-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: #fff;
    font-weight: 700;
}

.kids-title span {
    color: var(--islab-orange);
    text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.1);
}

.kids-subtitle {
    font-size: 1.25rem;
    color: #fff;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.kids-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 2rem 0;
}

.feature-item {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: transform 0.3s ease;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-item i {
    font-size: 1.5rem;
    color: var(--islab-green);
    background: var(--islab-light-green);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
}

.feature-item:nth-child(2) i {
    color: var(--islab-green);
    background: var(--islab-light-green);
}

.feature-item:nth-child(3) i {
    color: var(--islab-orange);
    background: rgba(247, 148, 29, 0.1);
}

.feature-item span {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2C3E50;
}

.kids-hero-image {
    position: relative;
    padding: 1rem;
}

.kids-hero-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 3px solid #F7941D;
    border-radius: 2rem;
    transform: rotate(-2deg);
    z-index: 1;
}

.kids-hero-image img {
    position: relative;
    border-radius: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    z-index: 2;
    transition: transform 0.3s ease;
}

.kids-hero-image:hover img {
    transform: scale(1.02);
}

@media (max-width: 991.98px) {
    .kids-hero-image {
        padding: 0.75rem;
        margin-top: 2rem;
    }

    .kids-hero-image::before {
        border-width: 2px;
        border-radius: 1.5rem;
    }

    .kids-hero-image img {
        border-radius: 1rem;
    }
}

.wave-shape {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
}

.wave-shape svg {
    width: 100%;
    height: 150px;
    fill: #fff;
}

.btn-agendar {
    background: var(--islab-orange);
    color: #fff;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 10px 20px rgba(247, 148, 29, 0.3);
    transition: all 0.3s ease;
}

.btn-agendar:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(247, 148, 29, 0.4);
    background: #e58719;
    color: #fff;
}

.btn-agendar i {
    margin-right: 10px;
}

/* Responsividade */
@media (max-width: 991.98px) {
    .kids-title {
        font-size: 2.5rem;
    }

    .kids-hero-image {
        margin-top: 3rem;
    }

    .kids-hero-image img {
        max-width: 100%;
    }

    .feature-item {
        width: calc(50% - 0.5rem);
    }
}

@media (max-width: 767.98px) {
    .kids-title {
        font-size: 2rem;
    }

    .feature-item {
        width: 100%;
    }

    .kids-hero {
        padding: 40px 0;
    }
}

.kids-services {
    background-color: #fff;
    position: relative;
}

.section-header {
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2C3E50;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, var(--islab-green) 0%, var(--islab-green) 100%);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
}

.service-card {
    background: #fff;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: #3aadd7;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--islab-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.service-icon i {
    font-size: 2rem;
    color: #fff;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
    background: var(--islab-green);
}

.service-card h3 {
    color: var(--islab-green);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-card p {
    color: #666;
    margin-bottom: 0;
    line-height: 1.6;
}

@media (max-width: 991.98px) {
    .service-card {
        padding: 1.5rem;
    }

    .service-card h3 {
        font-size: 1.25rem;
    }
}

@media (max-width: 767.98px) {
    .service-icon {
        width: 60px;
        height: 60px;
    }

    .service-icon i {
        font-size: 1.5rem;
    }
}

/* Estilos para Breadcrumb */
.breadcrumb {
    padding: 0;
    margin: 0;
    background: transparent;
}

.breadcrumb-item a {
    color: var(--islab-green);
    font-weight: 500;
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
    color: var(--islab-green);
}

.breadcrumb-item.active {
    color: var(--grey-dark);
}

.breadcrumb-item+.breadcrumb-item::before {
    content: ">";
    color: var(--grey-dark);
}

/* Estilos para a seção Por que escolher */
.why-choose-us {
    background-color: #f8faf8;
    position: relative;
    overflow: hidden;
}

.why-choose-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../imagens/pattern.png') repeat;
    opacity: 0.05;
}

.why-choose-card {
    background: #fff;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.why-choose-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--islab-green);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.why-choose-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* Estilos para a seção de depoimentos */
.testimonials {
    background-color: #f8f9fa;
}

.testimonial-card {
    background: #fff;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    height: 100%;
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-quote {
    color: #006B3F;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.testimonial-content {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 1.5rem;
    min-height: 100px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #006B3F;
}

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

.author-info h4 {
    margin: 0;
    color: #333;
    font-size: 1.1rem;
    font-weight: 600;
}

.author-info p {
    margin: 0;
    color: #666;
    font-size: 0.9rem;
}

.testimonials-pagination {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.testimonials-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #ccc;
    opacity: 1;
}

.testimonials-pagination .swiper-pagination-bullet-active {
    background: #006B3F;
}

@media (max-width: 768px) {
    .testimonial-card {
        padding: 1.5rem;
    }

    .testimonial-content {
        font-size: 0.95rem;
        min-height: auto;
    }

    .author-avatar {
        width: 50px;
        height: 50px;
    }
}

/* Estilos da página de convênios */
.convenios-hero {
    position: relative;
    padding: 80px 0;
    background-color: var(--islab-green);
    overflow: hidden;
}

.convenios-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 107, 63, 0.95) 0%, rgba(0, 107, 63, 0.8) 100%);
    z-index: 1;
}

.convenios-hero .container {
    position: relative;
    z-index: 2;
}

.convenios-grid {
    background: #fff;
}

.convenio-card {
    background: #fff;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.convenio-card img {
    max-width: 100%;
    height: auto;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.convenio-card:hover img {
    filter: grayscale(0%);
}

.info-card {
    background: #fff;
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    height: 100%;
    transition: transform 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
}

.info-icon {
    width: 80px;
    height: 80px;
    background: #006B3F;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.info-icon i {
    font-size: 2rem;
    color: #fff;
}

.info-card h3 {
    color: #333;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.info-card p {
    color: #666;
    margin-bottom: 0;
    line-height: 1.6;
}

@media (max-width: 991.98px) {
    .convenios-hero {
        padding: 3rem 0;
    }

    .info-card {
        padding: 1.5rem;
    }

    .info-icon {
        width: 60px;
        height: 60px;
    }

    .info-icon i {
        font-size: 1.5rem;
    }
}

@media (max-width: 767.98px) {
    .convenios-hero {
        padding: 2rem 0;
    }

    .convenio-card {
        padding: 1rem;
    }

    .info-card {
        margin-bottom: 1rem;
    }
}

/* Blog Hero Styles */
.blog-hero {
    position: relative;
    padding: 80px 0;
    background-color: var(--islab-green);
    overflow: hidden;
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 107, 63, 0.95) 0%, rgba(0, 107, 63, 0.8) 100%);
    z-index: 1;
}

.blog-hero .container {
    position: relative;
    z-index: 2;
}

.blog-hero-content {
    color: #fff;
}

.hero-tag {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(4px);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.blog-categories-hero {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.category-tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    text-decoration: none;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.category-tag:hover,
.category-tag.active {
    background: #F7941D;
    color: #fff;
    transform: translateY(-2px);
}

.blog-hero .search-box {
    background: rgba(255, 255, 255, 0.15);
    padding: 1rem;
    border-radius: 1rem;
    backdrop-filter: blur(8px);
}

.blog-hero .search-box .form-control {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    padding: 0.75rem 1.25rem;
    font-size: 1rem;
}

.blog-hero .search-box .btn-warning {
    background: #F7941D;
    border-color: #F7941D;
    color: #fff;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
}

.blog-hero .search-box .btn-warning:hover {
    background: #e58719;
    border-color: #e58719;
}

.blog-hero-image {
    position: relative;
    height: 100%;
}

.floating-cards {
    position: relative;
    height: 400px;
}

.floating-cards>div {
    position: absolute;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.floating-cards>div:hover {
    transform: translateY(-10px);
}

.floating-cards .card-1 {
    width: 60%;
    top: 0;
    right: 0;
    z-index: 3;
}

.floating-cards .card-2 {
    width: 50%;
    top: 20%;
    left: 0;
    z-index: 2;
}

.floating-cards .card-3 {
    width: 45%;
    bottom: 0;
    right: 15%;
    z-index: 1;
}

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

@media (max-width: 991.98px) {
    .blog-hero {
        padding: 4rem 0;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.125rem;
    }

    .category-tag {
        padding: 0.4rem 0.875rem;
    }
}

@media (max-width: 767.98px) {
    .blog-hero {
        padding: 3rem 0;
        text-align: center;
    }

    .blog-categories-hero {
        justify-content: center;
    }

    .hero-title {
        font-size: 2rem;
    }

    .blog-hero .search-box {
        margin: 0 auto;
        max-width: 100%;
    }
}

.blog-categories {
    display: flex;
    flex-wrap: nowrap;
    gap: 0.75rem;
    overflow-x: auto;
    padding-bottom: 0.5rem;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.blog-categories::-webkit-scrollbar {
    display: none;
}

.blog-category {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    background: #f8f9fa;
    color: #333;
    text-decoration: none;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.blog-category:hover,
.blog-category.active {
    background: #006B3F;
    color: #fff;
    transform: translateY(-2px);
}

/* Lightbox Styles */
.custom-lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90vh;
    margin: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox-close {
    position: absolute;
    top: 15px;
    right: 25px;
    color: #fff;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    z-index: 10001;
}

.lightbox-close:hover {
    color: #bbb;
}

.lightbox-prev,
.lightbox-next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 20px;
    transition: all 0.3s ease;
    border-radius: 3px;
    user-select: none;
    -webkit-user-select: none;
    background: none;
    border: none;
    z-index: 10001;
}

.lightbox-prev {
    left: 2%;
}

.lightbox-next {
    right: 2%;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.gallery-item {
    cursor: pointer;
    overflow: hidden;
    position: relative;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 107, 63, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    color: #fff;
    font-size: 2rem;
}

/* Estilos para o carrossel de unidades */
.units-carousel-section {
    padding: 60px 0;
}

.units-slider-container {
    position: relative;
    padding: 0 40px;
}

.unit-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

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

.unit-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

.unit-card:hover .unit-image img {
    transform: scale(1.05);
}

.unit-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: all 0.3s ease;
}

.unit-card:hover .unit-overlay {
    opacity: 1;
}

.unit-info {
    padding: 20px;
}

.unit-info h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.unit-info p {
    color: #666;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.btn-ver-unidade {
    display: inline-block;
    padding: 8px 20px;
    background: #ff8c00;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.btn-ver-unidade:hover {
    background: #ff7600;
    color: #fff;
}

.unit-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #ff8c00;
    color: #fff;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.swiper-button-next,
.swiper-button-prev {
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    color: #006B3F;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: #006B3F;
    color: #fff;
}

.swiper-button-next::after,
.swiper-button-prev::after {
    display: none;
}

.swiper-button-next i,
.swiper-button-prev i {
    font-size: 1rem;
}

.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #ccc;
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: #006B3F;
}

@media (max-width: 991.98px) {
    .unit-image {
        height: 180px;
    }

    .unit-info h3 {
        font-size: 1.1rem;
    }
}

@media (max-width: 767.98px) {
    .units-slider-container {
        padding: 0 20px;
    }

    .unit-image {
        height: 160px;
    }

    .unit-info h3 {
        font-size: 1rem;
    }

    .unit-info p {
        font-size: 0.85rem;
    }
}

/* Estilos para a seção do Blog */
.blog-section {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.blog-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

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

.blog-card-featured {
    height: 100%;
}

.blog-image {
    position: relative;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-date {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #fff;
    padding: 10px 15px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.blog-date .day {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #006B3F;
    line-height: 1;
}

.blog-date .month {
    display: block;
    font-size: 0.9rem;
    color: #666;
    text-transform: uppercase;
}

.blog-content {
    padding: 25px;
}

.blog-category {
    display: inline-block;
    padding: 5px 15px;
    background: #e9f7f2;
    color: #006B3F;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.blog-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.4;
}

.blog-excerpt {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.blog-meta {
    display: flex;
    gap: 20px;
    color: #888;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.blog-meta span i {
    margin-right: 5px;
}

/* Estilos para cards horizontais */
.blog-card-horizontal {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.blog-card-horizontal:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.12);
}

.blog-image-horizontal {
    height: 100%;
    min-height: 200px;
}

.blog-image-horizontal img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-content-horizontal {
    padding: 20px;
}

.blog-category-sm {
    font-size: 0.8rem;
    color: #006B3F;
    margin-bottom: 10px;
    display: block;
}

.blog-title-sm {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
    line-height: 1.4;
}

.blog-meta-sm {
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 10px;
}

.blog-link {
    color: #006B3F;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
}

.blog-link:hover {
    color: #004d2d;
}

/* Estilos para cards pequenos */
.blog-card-small {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.blog-image-small {
    position: relative;
}

.blog-image-small img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-category-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #006B3F;
    color: #fff;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
}

.blog-content-small {
    padding: 20px;
}

.blog-title-small {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
    line-height: 1.4;
}

.blog-meta-small {
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 15px;
}

.blog-link-sm {
    color: #006B3F;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.blog-link-sm:hover {
    color: #004d2d;
}

/* Newsletter */
.blog-newsletter {
    background: linear-gradient(135deg, #006B3F 0%, #3AADD7 100%);
    border-radius: 15px;
    padding: 30px;
    height: 100%;
    display: flex;
    align-items: center;
}

.newsletter-content {
    color: #fff;
    text-align: center;
}

.newsletter-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.newsletter-content h4 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.newsletter-content p {
    margin-bottom: 20px;
    opacity: 0.9;
}

.newsletter-form .form-control {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    padding: 12px;
}

.newsletter-social {
    margin-top: 25px;
}

.newsletter-social span {
    display: block;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.social-icon {
    color: #fff;
    font-size: 1.2rem;
    margin: 0 10px;
    transition: all 0.3s ease;
}

.icon-redes{
    padding-top: 15px;
    padding-right: 0px !important;
}

.social-icon:hover {
    color: rgba(255, 255, 255, 0.7);
    transform: translateY(-3px);
}

/* Responsividade */
@media (max-width: 991.98px) {
    .blog-card-featured {
        margin-bottom: 30px;
    }

    .blog-image img {
        height: 250px;
    }
}

@media (max-width: 767.98px) {
    .blog-card-horizontal {
        margin-bottom: 20px;
    }

    .blog-image-horizontal {
        min-height: 180px;
    }

    .blog-newsletter {
        margin-top: 30px;
    }
}

.footer-main {
    background-color: #006B3F;
    padding: 50px 0;
    color: #fff;
}

.footer-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #fff;
}

.quality-logos,
.accreditation-logo,
.certification-logo {
    background: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.quality-logos img,
.accreditation-logo img,
.certification-logo img {
    max-width: 100%;
    height: auto;
    filter: brightness(0) invert(1);
}

.contact-info {
    color: #fff;
}

.contact-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.contact-subtitle {
    font-size: 1rem;
    margin-bottom: 15px;
}

.hours-info p,
.vaccine-info p {
    margin-bottom: 5px;
    font-size: 0.95rem;
}

.footer-bottom {
    background-color: #005432;
    padding: 20px 0;
    color: #fff;
}

.technical-info p {
    margin-bottom: 5px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
}

.important-links {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: flex-end;
}

.footer-link {
    color: #fff;
    text-decoration: none;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 10px;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.footer-link:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.footer-link i {
    font-size: 1rem;
}

@media (max-width: 991.98px) {
    .important-links {
        justify-content: center;
        margin-top: 20px;
    }

    .technical-info {
        text-align: center;
    }
}

@media (max-width: 767.98px) {
    .footer-link {
        font-size: 0.8rem;
    }

    .quality-logos,
    .accreditation-logo,
    .certification-logo {
        margin-bottom: 30px;
    }
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background-color: #006B3F;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: #005432;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 107, 63, 0.2);
}

.back-to-top i {
    font-size: 20px;
}

@media (max-width: 767.98px) {
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
    }
}

.appointment-bar {
    background-color: #f8f9fa;
    padding: 20px 0;
    border-top: 1px solid #dee2e6;
}

.appointment-text p {
    margin: 0;
    color: #6c757d;
    font-size: 1rem;
    line-height: 1.5;
}

.appointment-buttons {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    align-items: center;
}

.appointment-buttons .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.appointment-buttons .btn i {
    font-size: 1rem;
}

@media (max-width: 991.98px) {
    .appointment-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .appointment-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    .appointment-text {
        text-align: center;
        margin-bottom: 15px;
    }
}

@media (max-width: 767.98px) {
    .appointment-bar {
        padding: 15px 0;
    }

    .appointment-text p {
        font-size: 0.9rem;
    }

    .appointment-buttons .btn {
        font-size: 0.85rem;
        padding: 8px 15px;
    }
}

h1 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

h6 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.h4 {
    font-weight: 600;
    color: #006B3F;
}

.text-secondary {
    color: #666666 !important;
}

.stat-item {
    transition: transform 0.3s ease;
    padding: 15px;
    border-radius: 10px;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-item span.fw-bold {
    font-family: 'Arial', sans-serif;
    letter-spacing: -0.5px;
}

.divider {
    border-radius: 2px;
    transition: width 0.3s ease;
}

.divider:hover {
    width: 100px !important;
}

.text-primary {
    color: #0088cc !important;
}

.text-success {
    color: #006B3F !important;
}

.text-secondary {
    color: #666666 !important;
}

.vaccine-categories {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.vaccine-category-card {
    position: relative;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

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

.category-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #006B3F 0%, #00A65A 100%);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.category-icon i {
    font-size: 24px;
    color: white;
}

.vaccine-category-card:hover .category-icon {
    transform: scale(1.1);
}

.category-info {
    flex: 1;
}

.category-info h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: #333;
}

.category-info p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

.hover-effect {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 107, 63, 0.1) 0%, rgba(0, 166, 90, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 15px;
}

.vaccine-category-card:hover .hover-effect {
    opacity: 1;
}

@media (max-width: 768px) {
    .vaccine-categories {
        grid-template-columns: 1fr;
    }

    .category-icon {
        width: 50px;
        height: 50px;
    }

    .category-icon i {
        font-size: 20px;
    }

    .category-info h3 {
        font-size: 1.1rem;
    }

    .category-info p {
        font-size: 0.85rem;
    }
}

.exam-categories {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 20px;
}

.exam-category-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.exam-category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.exam-category-card .category-icon {
    width: 60px;
    height: 60px;
    background: #006B3F;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

.exam-category-card .category-icon i {
    font-size: 24px;
    color: white;
}

.exam-category-card:hover .category-icon {
    transform: scale(1.1);
}

.exam-category-card .category-info {
    text-align: center;
    z-index: 1;
}

.exam-category-card .category-info h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

.exam-category-card .category-info p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

.exam-category-card .hover-effect {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 107, 63, 0.1) 0%, rgba(0, 107, 63, 0.2) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.exam-category-card:hover .hover-effect {
    opacity: 1;
}

@media (max-width: 768px) {
    .exam-categories {
        grid-template-columns: 1fr;
    }

    .exam-category-card .category-icon {
        width: 50px;
        height: 50px;
    }

    .exam-category-card .category-icon i {
        font-size: 20px;
    }

    .exam-category-card .category-info h3 {
        font-size: 1rem;
    }

    .exam-category-card .category-info p {
        font-size: 0.85rem;
    }
}

@media (max-width: 767.98px) {
    .alphabet-nav {
        display: none;
    }
}

.blog-breadcrumb {
    background-color: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
}

.blog-breadcrumb .breadcrumb {
    margin-bottom: 0;
    padding: 0;
}

.client-area-hero {
    position: relative;
    padding: 80px 0;
    background-color: var(--islab-green);
    overflow: hidden;
}

.client-area-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 107, 63, 0.95) 0%, rgba(0, 107, 63, 0.8) 100%);
    z-index: 1;
}

.client-area-hero .container {
    position: relative;
    z-index: 2;
}

.login-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    padding: 40px;
    transition: all 0.3s ease;
}

.login-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.login-title {
    color: var(--islab-green);
    font-size: 1.75rem;
    font-weight: 600;
    text-align: center;
}

.login-card .form-label {
    color: #495057;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.login-card .input-group-text {
    background-color: #f8f9fa;
    border-right: none;
    color: #6c757d;
}

.login-card .form-control {
    border-left: none;
    padding: 0.75rem 1rem;
}

.login-card .form-control:focus {
    box-shadow: none;
    border-color: #ced4da;
}

.login-card .input-group:focus-within {
    box-shadow: 0 0 0 0.2rem rgba(0, 107, 63, 0.15);
    border-radius: 0.375rem;
}

.login-card .btn-outline-secondary {
    border-left: none;
    color: #6c757d;
}

.login-card .btn-outline-secondary:hover {
    background-color: transparent;
    color: var(--islab-green);
}

.login-card .form-check-input:checked {
    background-color: var(--islab-green);
    border-color: var(--islab-green);
}

@media (max-width: 991.98px) {
    .login-card {
        margin-top: 2rem;
        padding: 30px;
    }
}

@media (max-width: 767.98px) {
    .client-area-hero {
        padding: 60px 0;
    }

    .login-card {
        padding: 25px;
    }
}

.feedback-hero {
    position: relative;
    padding: 80px 0;
    background-color: var(--islab-green);
    overflow: hidden;
}

.feedback-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 107, 63, 0.95) 0%, rgba(0, 107, 63, 0.8) 100%);
    z-index: 1;
}

.feedback-hero .container {
    position: relative;
    z-index: 2;
}

.feedback-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    padding: 40px;
    transition: all 0.3s ease;
}

.feedback-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.feedback-form .form-label {
    color: #495057;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.feedback-form .input-group-text {
    background-color: #f8f9fa;
    border-right: none;
    color: #6c757d;
}

.feedback-form .form-control,
.feedback-form .form-select {
    border-left: none;
    padding: 0.75rem 1rem;
}

.feedback-form .form-control:focus,
.feedback-form .form-select:focus {
    box-shadow: none;
    border-color: #ced4da;
}

.feedback-form .input-group:focus-within {
    box-shadow: 0 0 0 0.2rem rgba(0, 107, 63, 0.15);
    border-radius: 0.375rem;
}

.feedback-form textarea.form-control {
    min-height: 120px;
    border-left: 1px solid #ced4da;
}

.feedback-form .btn-success {
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.feedback-form .btn-success:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 107, 63, 0.2);
}

@media (max-width: 991.98px) {
    .feedback-card {
        margin-top: 2rem;
        padding: 30px;
    }
}

@media (max-width: 767.98px) {
    .feedback-hero {
        padding: 60px 0;
    }

    .feedback-card {
        padding: 25px;
    }
}

/* Estilos para a página de Coleta Móvel */
.mobile-collection-hero {
    position: relative;
    padding: 80px 0;
    background-color: var(--islab-green);
    overflow: hidden;
}

.mobile-collection-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 107, 63, 0.95) 0%, rgba(0, 107, 63, 0.8) 100%);
    z-index: 1;
}

.mobile-collection-hero .container {
    position: relative;
    z-index: 2;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.hero-features .feature-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem 1.5rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 1rem;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.hero-features .feature-item:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.15);
}

.hero-features .feature-item i {
    font-size: 1.5rem;
    color: var(--islab-orange);
}

.hero-features .feature-item span {
    color: #fff;
    font-weight: 500;
}

.hero-image-container {
    position: relative;
    padding: 1rem;
}

.hero-image-container img {
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.hero-image-container:hover img {
    transform: scale(1.02);
}

/* Estilos para a seção de benefícios */
.benefits-section {
    background-color: #fff;
}

.benefit-card {
    background: #fff;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 2px solid transparent;
}

.benefit-card:hover {
    transform: translateY(-5px);
    border-color: var(--islab-green);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: var(--islab-light-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.benefit-icon i {
    font-size: 2rem;
    color: var(--islab-green);
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1);
    background: var(--islab-green);
}

.benefit-card:hover .benefit-icon i {
    color: #fff;
}

.benefit-card h3 {
    color: var(--islab-green);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.benefit-card p {
    color: #666;
    margin-bottom: 0;
    line-height: 1.6;
}

/* Estilos para a seção de agendamento */
.schedule-section {
    background-color: #fff;
}

.schedule-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.step-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.step-item:hover {
    transform: translateX(10px);
    background: var(--islab-light-green);
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--islab-green);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.2rem;
}

.step-content h4 {
    color: var(--islab-green);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.step-content p {
    color: #666;
    margin-bottom: 0;
}

.schedule-info {
    margin-top: 2rem;
}

.schedule-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.schedule-item i {
    font-size: 1.5rem;
    color: var(--islab-green);
}

.schedule-item div {
    flex: 1;
}

.schedule-item strong {
    display: block;
    color: #333;
    margin-bottom: 0.25rem;
}

.schedule-item p {
    margin: 0;
    color: #666;
}

@media (max-width: 991.98px) {
    .mobile-collection-hero {
        padding: 60px 0;
    }

    .hero-features {
        justify-content: center;
    }

    .hero-image-container {
        margin-top: 2rem;
    }

    .benefit-card {
        padding: 1.5rem;
    }

    .benefit-icon {
        width: 60px;
        height: 60px;
    }

    .benefit-icon i {
        font-size: 1.5rem;
    }
}

@media (max-width: 767.98px) {
    .mobile-collection-hero {
        padding: 40px 0;
    }

    .hero-features .feature-item {
        width: 100%;
    }

    .step-item {
        padding: 1rem;
    }

    .step-number {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .contact-info-card {
        margin-top: 2rem;
    }
}

/* Estilos para a página do Cartão Islab */
.card-hero {
    position: relative;
    padding: 80px 0;
    background: linear-gradient(135deg, var(--islab-green) 0%, #004d2d 100%);
    overflow: hidden;
    color: #fff;
}

.card-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../imagens/patterns/dots.png');
    opacity: 0.1;
    z-index: 1;
}

.card-hero .container {
    position: relative;
    z-index: 2;
}

.card-hero .subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.card-hero .title-lg {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #fff;
}

.card-hero .lead {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.benefits-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.benefit-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem 1.5rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 1rem;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.15);
}

.benefit-item i {
    font-size: 1.5rem;
    color: var(--islab-orange);
}

.benefit-item span {
    color: #fff;
    font-weight: 500;
}

.card-image-container {
    position: relative;
    padding: 2rem;
    perspective: 1000px;
}

.card-image-container img {
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    transition: all 0.5s ease;
    transform: rotateY(-15deg);
}

.card-image-container:hover img {
    transform: rotateY(0deg);
}

.discount-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--islab-orange);
    color: #fff;
    padding: 1rem;
    border-radius: 50%;
    width: 100px;
    height: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform: rotate(15deg);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    animation: float 3s ease-in-out infinite;
}

.discount-badge .number {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.discount-badge .text {
    font-size: 1rem;
    font-weight: 500;
}

/* Estilos do Formulário */
.registration-section {
    background: #f8f9fa;
}

.registration-card {
    background: #fff;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.registration-card h2 {
    color: var(--islab-green);
    font-weight: 600;
}

.form-section {
    background: #fff;
    border-radius: 10px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.section-title {
    color: var(--islab-green);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
    padding-left: 1rem;
}

.section-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: var(--islab-green);
    border-radius: 2px;
}

.form-label {
    color: #495057;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.form-control,
.form-select {
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--islab-green);
    box-shadow: 0 0 0 0.2rem rgba(0, 107, 63, 0.1);
}

.form-check-input:checked {
    background-color: var(--islab-green);
    border-color: var(--islab-green);
}

.form-check-label {
    color: #495057;
}

.btn-success {
    background: var(--islab-green);
    border: none;
    padding: 1rem 2rem;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.btn-success:hover {
    background: #005a34;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 107, 63, 0.2);
}

@keyframes float {
    0% {
        transform: rotate(15deg) translateY(0px);
    }

    50% {
        transform: rotate(15deg) translateY(-10px);
    }

    100% {
        transform: rotate(15deg) translateY(0px);
    }
}

@media (max-width: 991.98px) {
    .card-hero {
        padding: 60px 0;
    }

    .card-hero .title-lg {
        font-size: 2.5rem;
    }

    .card-image-container {
        margin-top: 3rem;
        padding: 1rem;
    }

    .discount-badge {
        width: 80px;
        height: 80px;
    }

    .discount-badge .number {
        font-size: 1.5rem;
    }

    .registration-card {
        padding: 2rem;
    }
}

@media (max-width: 767.98px) {
    .card-hero {
        padding: 40px 0;
    }

    .card-hero .title-lg {
        font-size: 2rem;
    }

    .benefits-list {
        flex-direction: column;
    }

    .benefit-item {
        width: 100%;
    }

    .card-image-container img {
        transform: rotateY(0);
    }

    .discount-badge {
        width: 70px;
        height: 70px;
    }

    .registration-card {
        padding: 1.5rem;
    }

    .form-section {
        padding: 1.5rem;
    }
}

.social-icon-link {
    color: var(--islab-green);
    transition: all 0.3s ease;
}

.social-icon-link:hover {
    color: var(--islab-green-dark);
    transform: translateY(-2px);
}

/* ==========================================================================
 * PÁGINA 404 - ESTILOS MODERNOS E RESPONSIVOS
 * ========================================================================== */

/* Container principal da página 404 */
.error-404-page {
    background: linear-gradient(135deg, #f8faf8 0%, #ffffff 50%, #f0f8f5 100%);
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

.error-404-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="%23006b38" opacity="0.1"/><circle cx="80" cy="40" r="1.5" fill="%23f78e1e" opacity="0.1"/><circle cx="40" cy="80" r="1" fill="%2300839a" opacity="0.1"/></svg>') repeat;
    opacity: 0.3;
    z-index: 0;
}

.error-404-content {
    position: relative;
    z-index: 1;
    padding: 2rem 0;
}

/* Animação do ícone e número 404 */
.error-animation {
    position: relative;
    margin: 2rem 0;
}

.error-icon-container {
    position: relative;
    display: inline-block;
    padding: 2rem;
}

.error-icon {
    font-size: 4rem;
    color: var(--islab-green);
    opacity: 0;
    animation: fadeInIcon 1s ease-out 0.5s forwards;
    position: relative;
    z-index: 2;
}

.error-number {
    font-size: 8rem;
    font-weight: 700;
    color: var(--islab-orange);
    opacity: 0.1;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    animation: slideInNumber 1.2s ease-out forwards;
    line-height: 1;
}

/* Elementos flutuantes decorativos */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-dot {
    position: absolute;
    border-radius: 50%;
    opacity: 0;
    animation: floating 3s ease-in-out infinite;
}

.dot-1 {
    width: 12px;
    height: 12px;
    background: var(--islab-green);
    top: 20%;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 3s;
}

.dot-2 {
    width: 8px;
    height: 8px;
    background: var(--islab-orange);
    top: 30%;
    right: 15%;
    animation-delay: 1s;
    animation-duration: 4s;
}

.dot-3 {
    width: 10px;
    height: 10px;
    background: var(--islab-blue);
    bottom: 25%;
    left: 20%;
    animation-delay: 2s;
    animation-duration: 5s;
}

.dot-4 {
    width: 6px;
    height: 6px;
    background: var(--islab-green);
    bottom: 40%;
    right: 25%;
    animation-delay: 1.5s;
    animation-duration: 3.5s;
}

/* Mensagem de erro */
.error-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--islab-green);
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 1s forwards;
    line-height: 1.2;
}

.error-subtitle {
    font-size: 1.2rem;
    color: #666;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 1.2s forwards;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Sugestões */
.error-suggestions {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    padding: 1.5rem;
    margin: 2rem auto;
    max-width: 500px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-left: 4px solid var(--islab-green);
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 1.4s forwards;
}

.suggestions-title {
    color: var(--islab-green);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.suggestions-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.suggestions-list li {
    padding: 0.5rem 0;
    color: #666;
    position: relative;
    padding-left: 1.5rem;
}

.suggestions-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--islab-green);
    font-weight: bold;
}

/* Botões de ação */
.error-actions {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 1.6s forwards;
}

.error-btn-home {
    background: linear-gradient(135deg, var(--islab-green) 0%, #005a34 100%);
    border: none;
    padding: 1rem 2rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 107, 56, 0.2);
}

.error-btn-home:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 107, 56, 0.3);
    background: linear-gradient(135deg, #005a34 0%, var(--islab-green) 100%);
}

.error-btn-contact {
    border: 2px solid var(--islab-green);
    color: var(--islab-green);
    padding: 1rem 2rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    background: transparent;
}

.error-btn-contact:hover {
    background: var(--islab-green);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 107, 56, 0.2);
}

/* Campo de busca */
.error-search {
    max-width: 400px;
    margin: 0 auto;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 1.8s forwards;
}

.error-search .form-control {
    border-radius: 50px 0 0 50px;
    border: 2px solid #e9ecef;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.error-search .form-control:focus {
    border-color: var(--islab-green);
    box-shadow: 0 0 0 0.2rem rgba(0, 107, 56, 0.1);
}

.error-search .btn-warning {
    background: var(--islab-orange);
    border-color: var(--islab-orange);
    border-radius: 0 50px 50px 0;
    padding: 0.75rem 1.5rem;
    transition: all 0.3s ease;
}

.error-search .btn-warning:hover {
    background: #e58719;
    border-color: #e58719;
    transform: scale(1.05);
}

/* Links populares */
.popular-links {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 2s forwards;
}

.popular-title {
    color: var(--islab-green);
    font-weight: 600;
    font-size: 1.1rem;
}

.popular-links .btn-outline-secondary {
    border-color: #dee2e6;
    color: #666;
    border-radius: 20px;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.popular-links .btn-outline-secondary:hover {
    background: var(--islab-green);
    border-color: var(--islab-green);
    color: white;
    transform: translateY(-2px);
}

/* Animações */
@keyframes fadeInIcon {
    0% {
        opacity: 0;
        transform: scale(0.5) rotate(-180deg);
    }

    100% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

@keyframes slideInNumber {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.5);
    }

    100% {
        opacity: 0.15;
        transform: translate(-50%, -50%) scale(1);
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes floating {

    0%,
    100% {
        opacity: 0.3;
        transform: translateY(0px) scale(1);
    }

    50% {
        opacity: 0.8;
        transform: translateY(-20px) scale(1.1);
    }
}

/* Responsividade */
@media (max-width: 991.98px) {
    .error-title {
        font-size: 2rem;
    }

    .error-subtitle {
        font-size: 1.1rem;
    }

    .error-number {
        font-size: 6rem;
    }

    .error-icon {
        font-size: 3rem;
    }

    .error-btn-home,
    .error-btn-contact {
        width: 100%;
        margin-bottom: 1rem;
    }
}

@media (max-width: 767.98px) {
    .error-404-content {
        padding: 1rem 0;
    }

    .error-title {
        font-size: 1.8rem;
    }

    .error-subtitle {
        font-size: 1rem;
    }

    .error-number {
        font-size: 4rem;
    }

    .error-icon {
        font-size: 2.5rem;
    }

    .error-suggestions {
        padding: 1rem;
        margin: 1.5rem auto;
    }

    .error-btn-home,
    .error-btn-contact {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }

    .popular-links .btn-outline-secondary {
        margin-bottom: 0.5rem;
        width: 100%;
    }

    /* Ajustar elementos flutuantes para mobile */
    .floating-dot {
        display: none;
    }
}

@media (max-width: 575.98px) {
    .error-title {
        font-size: 1.5rem;
    }

    .error-number {
        font-size: 3rem;
    }

    .error-icon {
        font-size: 2rem;
    }

    .error-search .form-control,
    .error-search .btn-warning {
        border-radius: 25px;
        margin-bottom: 0.5rem;
    }

    .error-search .input-group {
        flex-direction: column;
    }

    .suggestions-list {
        text-align: center;
    }
}

/* Acessibilidade - Reduzir animações se preferido pelo usuário */
@media (prefers-reduced-motion: reduce) {

    .error-icon,
    .error-number,
    .error-title,
    .error-subtitle,
    .error-suggestions,
    .error-actions,
    .error-search,
    .popular-links {
        animation: none;
        opacity: 1;
    }

    .floating-dot {
        animation: none;
        opacity: 0.3;
    }

    .error-btn-home:hover,
    .error-btn-contact:hover,
    .error-search .btn-warning:hover {
        transform: none;
    }
}

/* Estados de foco para acessibilidade */
.error-btn-home:focus,
.error-btn-contact:focus,
.error-search .form-control:focus,
.error-search .btn-warning:focus,
.popular-links .btn-outline-secondary:focus {
    outline: 3px solid var(--islab-green);
    outline-offset: 2px;
}

/* ==========================================================================
 * PÁGINA DE DETALHES DA UNIDADE - ESTILOS MODERNOS E RESPONSIVOS
 * ========================================================================== */

/* Hero da Unidade */
.unit-hero {
    position: relative;
    min-height: 500px;
    overflow: hidden;
}

.unit-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0, 107, 63, 0.1) 0%, rgba(0, 107, 63, 0.05) 100%);
    z-index: 1;
}

.unit-hero-content {
    position: relative;
    z-index: 2;
}

/* Melhorias nos botões de ação rápida */
.unit-quick-actions .btn {
    font-weight: 600;
    border: 2px solid transparent;
    min-width: 180px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.unit-quick-actions .btn i {
    font-size: 1.1em;
    font-weight: 900;
}

.unit-quick-actions .btn span {
    font-weight: 600;
    white-space: nowrap;
}

.unit-quick-actions .btn-warning {
    background: var(--islab-orange);
    border-color: var(--islab-orange);
    color: #000;
}

.unit-quick-actions .btn-warning:hover {
    background: #e89b1a;
    border-color: #e89b1a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(247, 148, 30, 0.4);
}

.unit-quick-actions .btn-outline-light {
    border-color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: #fff;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.unit-quick-actions .btn-outline-light i {
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.4));
}

.unit-quick-actions .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.95);
    border-color: #fff;
    color: var(--islab-green);
    text-shadow: none;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.4);
}

.unit-quick-actions .btn-outline-light:hover i {
    filter: none;
}

.unit-quick-actions .btn-success {
    background: #25d366;
    border-color: #25d366;
    color: #fff !important;
}

.unit-quick-actions .btn-success i {
    color: #fff !important;
}

.unit-quick-actions .btn-success span {
    color: #fff !important;
}

.unit-quick-actions .btn-success:hover {
    background: #20ba5a;
    border-color: #20ba5a;
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.unit-quick-actions .btn-success:hover i,
.unit-quick-actions .btn-success:hover span {
    color: #fff !important;
}

/* Correções gerais para botões WhatsApp */
.btn-success {
    color: #fff !important;
}

.btn-success i,
.btn-success span {
    color: #fff !important;
}

.btn-success:hover,
.btn-success:focus,
.btn-success:active {
    color: #fff !important;
}

.btn-success:hover i,
.btn-success:hover span,
.btn-success:focus i,
.btn-success:focus span,
.btn-success:active i,
.btn-success:active span {
    color: #fff !important;
}

.unit-tag-container {
    animation: fadeInUp 0.8s ease-out 0.5s forwards;
    opacity: 0;
    position: relative;
}

.unit-tag {
    position: relative;
    display: inline-block;
    transition: all 0.3s ease;
    cursor: default;
}

.unit-tag:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 20px rgba(247, 148, 30, 0.4) !important;
}

.unit-tag::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.05));
    border-radius: inherit;
    pointer-events: none;
}

/* Pequeno destaque pulsante sutil */
@keyframes tagGlow {

    0%,
    100% {
        box-shadow: 0 4px 15px rgba(247, 148, 30, 0.3), 0 0 0 rgba(247, 148, 30, 0.4);
    }

    50% {
        box-shadow: 0 4px 15px rgba(247, 148, 30, 0.4), 0 0 10px rgba(247, 148, 30, 0.2);
    }
}

.unit-tag {
    animation: tagGlow 3s ease-in-out infinite;
}

.unit-title {
    animation: fadeInUp 0.8s ease-out 0.7s forwards;
    opacity: 0;
}

.unit-subtitle {
    animation: fadeInUp 0.8s ease-out 0.9s forwards;
    opacity: 0;
}

.unit-quick-actions {
    animation: fadeInUp 0.8s ease-out 1.1s forwards;
    opacity: 0;
}

.unit-hero-image {
    animation: fadeInRight 0.8s ease-out 0.6s forwards;
    opacity: 0;
}

/* Informações da Unidade */
.unit-info {
    background: #fff;
}

.info-card,
.services-card {
    background: #fff;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.info-card:hover,
.services-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.info-title {
    color: var(--islab-green);
    font-weight: 600;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.info-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--islab-orange);
    border-radius: 2px;
}

/* Info Items */
.info-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 1.5rem;
    border-radius: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.info-item .info-icon {
    margin-top: 0;
    align-self: flex-start;
    position: relative;
    top: 0;
}

/* Garantir alinhamento consistente de todos os ícones */
.info-card .info-item:first-child .info-icon,
.info-card .info-item:nth-child(2) .info-icon,
.info-card .info-item:nth-child(3) .info-icon {
    margin-top: 0;
    vertical-align: top;
}

.info-item:hover {
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    border-color: var(--islab-green);
    box-shadow: 0 8px 25px rgba(0, 107, 63, 0.08);
    transform: translateY(-2px);
}

.info-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(145deg, #ffffff, #f8f9fa);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--islab-green);
    font-size: 1.4rem;
    font-weight: 600;
    flex-shrink: 0;
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border: 2px solid #e8f5f0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.info-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(145deg, var(--islab-green), var(--islab-blue));
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 18px;
    transform: scale(0.8);
}

.info-icon::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border-radius: 18px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.info-icon i {
    position: relative;
    z-index: 3;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
}

.info-icon:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 
        0 12px 30px rgba(0, 107, 63, 0.2),
        0 4px 15px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border-color: var(--islab-green);
}

.info-icon:hover::before {
    opacity: 1;
    transform: scale(1);
}

.info-icon:hover::after {
    opacity: 1;
}

.info-icon:hover i {
    color: white;
    transform: scale(1.15);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.info-content h5 {
    color: var(--islab-green);
    font-weight: 700;
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
    letter-spacing: 0.3px;
}

.info-content p {
    color: #555;
    margin-bottom: 0;
    line-height: 1.7;
    font-size: 0.95rem;
}

.info-content a {
    color: var(--islab-green);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.info-content a:hover {
    color: var(--islab-green-dark);
    border-bottom-color: var(--islab-green);
}

/* Schedule */
.schedule-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 12px;
    border: 1px solid #e9ecef;
}

.schedule-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    background: white;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.schedule-item:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transform: translateX(2px);
}

.schedule-item:last-child {
    border-bottom: none;
}

.schedule-item .days {
    font-weight: 600;
    color: var(--islab-green);
    font-size: 0.95rem;
}

.schedule-item .hours {
    font-weight: 500;
    color: #555;
    font-size: 0.9rem;
}

/* Botões modernizados */
.info-content .btn {
    border-radius: 12px;
    font-weight: 600;
    padding: 0.5rem 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.info-content .btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.info-content .btn-outline-primary {
    border-color: var(--islab-green);
    color: var(--islab-green);
}

.info-content .btn-outline-primary:hover {
    background-color: var(--islab-green);
    border-color: var(--islab-green);
}

.info-content .btn-success {
    background: linear-gradient(135deg, #28a745, #20c997);
    border: none;
}

.info-content .btn-success:hover {
    background: linear-gradient(135deg, #218838, #1ea085);
}

/* Efeitos adicionais para melhorar a experiência */
.info-item {
    position: relative;
}

.info-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--islab-green), var(--islab-blue));
    border-radius: 16px 16px 0 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.info-item:hover::before {
    opacity: 1;
}

/* Animação de entrada para os ícones */
@keyframes iconFadeIn {
    from {
        opacity: 0;
        transform: scale(0.8) translateY(10px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.info-icon {
    animation: iconFadeIn 0.6s ease-out;
}

/* Melhorias de acessibilidade */
.info-icon:focus {
    outline: 2px solid var(--islab-green);
    outline-offset: 2px;
}

.info-content a:focus {
    outline: 2px solid var(--islab-green);
    outline-offset: 2px;
    border-radius: 4px;
}

.schedule-item .hours {
    color: #666;
}

/* Services Grid */
.services-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 1rem !important;
    margin-bottom: 1.5rem !important;
}

.service-item {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    gap: 0.75rem !important;
    padding: 1.25rem 1rem !important;
    background: #f8f9fa !important;
    border-radius: 10px !important;
    transition: all 0.3s ease !important;
    border: 2px solid transparent !important;
    min-height: 120px !important;
    justify-content: center !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

.service-item:hover {
    background: var(--islab-light-green) !important;
    border-color: var(--islab-green) !important;
    transform: translateY(-2px) !important;
}

.service-item i {
    font-size: 1.5rem !important;
    margin-bottom: 0.25rem !important;
    display: block !important;
}

.service-item span {
    font-weight: 500 !important;
    color: #333 !important;
    font-size: 0.9rem !important;
    line-height: 1.3 !important;
    display: block !important;
}

/* Cores específicas para os serviços */
.service-item .text-purple {
    color: #6f42c1 !important;
}

/* Garantia de exibição dos serviços */
.services-card .services-grid {
    visibility: visible !important;
    opacity: 1 !important;
    height: auto !important;
}

.services-card .service-item {
    visibility: visible !important;
    opacity: 1 !important;
    position: relative !important;
}

/* Hover específico para serviços com estilo inline */
.services-grid .service-item:hover {
    background: #e8f5e8 !important;
    border-color: #006b3f !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 15px rgba(0, 107, 63, 0.15) !important;
}

/* Facilities */
.facilities-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.facility-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: #f8f9fa;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.facility-item:hover {
    background: var(--islab-light-green);
}

.facility-item i {
    font-size: 1.2rem;
}

.facility-item span {
    color: #555;
    font-weight: 500;
}

/* Mapa */
.unit-map {
    background: #f8f9fa;
}

.map-container {
    background: #fff;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.map-embed {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.map-actions .btn {
    transition: all 0.3s ease;
}

.map-actions .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.transport-info {
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
}

.transport-info:hover {
    border-color: var(--islab-green);
    background: var(--islab-light-green) !important;
}

/* Galeria */
.unit-gallery {
    background: #fff;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    aspect-ratio: 16/10;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 107, 63, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    color: #fff;
    font-size: 2rem;
    transform: scale(0);
    transition: all 0.3s ease;
}

.gallery-item:hover .gallery-overlay i {
    transform: scale(1);
}

/* CTA Fixo */
.cta-floating {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #fff;
    border-radius: 15px;
    padding: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border: 2px solid var(--islab-green);
    z-index: 1000;
    max-width: 300px;
    animation: slideInRight 0.5s ease-out;
}

.cta-content {
    display: flex;
    flex-direction: column; /* coloca em coluna */
    align-items: center;    /* centraliza horizontalmente */
}

.cta-text h6 {
    color: var(--islab-green);
    font-weight: 600;
    margin: 0;
    font-size: 0.9rem;
}

.cta-text small {
    color: #666;
    font-size: 0.8rem;
}

.cta-actions {
    display: flex;
    gap: 0.5rem;
    flex-shrink: 0;
}

.cta-actions .btn {
    font-size: 0.8rem;
    padding: 0.5rem 0.75rem;
    transition: all 0.3s ease;
}

.cta-actions .btn:hover {
    transform: translateY(-2px);
}

/* Correções específicas para CTA flutuante */
.cta-actions .btn-success {
    background: #25d366 !important;
    border-color: #25d366 !important;
    color: #fff !important;
}

.cta-actions .btn-success i,
.cta-actions .btn-success span {
    color: #fff !important;
}

.cta-actions .btn-success:hover {
    background: #20ba5a !important;
    border-color: #20ba5a !important;
    color: #fff !important;
}

.cta-actions .btn-success:hover i,
.cta-actions .btn-success:hover span {
    color: #fff !important;
}

/* Animações */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    0% {
        opacity: 0;
        transform: translateX(30px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    0% {
        opacity: 0;
        transform: translateX(100%);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsividade */
@media (max-width: 991.98px) {
    .unit-hero {
        min-height: 400px;
    }

    .unit-title {
        font-size: 2.5rem;
    }

    .unit-quick-actions {
        flex-direction: column;
    }

    .unit-quick-actions .btn {
        width: 100%;
    }

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

    .map-container {
        padding: 1rem;
    }

    .cta-floating {
        right: 10px;
        bottom: 10px;
        max-width: 280px;
    }

    .cta-content {
        display: flex;
        flex-direction: column; /* coloca em coluna */
        align-items: center;    /* centraliza horizontalmente */
    }

    .cta-actions {
        margin-top: 8px; /* espaço entre texto e botões */
    }
}

@media (max-width: 767.98px) {
    .unit-hero {
        min-height: 350px;
        text-align: center;
        padding: 3rem 0;
    }

    .unit-tag-container {
        margin-bottom: 1.5rem !important;
    }

    .unit-tag {
        font-size: 0.8rem !important;
        padding: 8px 20px !important;
        letter-spacing: 0.3px !important;
    }

    .unit-title {
        font-size: 2rem;
    }

    .unit-hero-image {
        margin-top: 2rem;
    }

    .unit-quick-actions {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .unit-quick-actions .btn {
        width: 100%;
        max-width: 280px;
        min-width: auto;
        padding: 12px 20px;
        font-size: 1rem;
    }

    .unit-quick-actions .btn i {
        font-size: 1.2em;
    }

    .info-card,
    .services-card {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }

    .info-item {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }

    .info-icon {
        margin-bottom: 1rem;
    }

    .schedule-item {
        flex-direction: column;
        text-align: center;
        gap: 0.25rem;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .service-item {
        justify-content: center;
        text-align: center;
        min-height: 100px;
        padding: 1rem 0.75rem;
    }

    .service-item i {
        font-size: 1.3rem;
    }

    .service-item span {
        font-size: 0.85rem;
    }

    .facility-item {
        justify-content: center;
        text-align: center;
    }

    .map-actions .btn {
        margin-bottom: 1rem;
    }

    .cta-floating {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        border-radius: 15px 15px 0 0;
        max-width: none;
        margin: 0;
        animation: slideInUp 0.5s ease-out;
    }
}

@media (max-width: 575.98px) {
    .unit-title {
        font-size: 1.8rem;
    }

    .unit-quick-actions .btn {
        font-size: 0.9rem;
        padding: 0.75rem;
    }

    .gallery-item {
        aspect-ratio: 4/3;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }

    .service-item {
        min-height: 90px;
        padding: 0.75rem 0.5rem;
    }

    .service-item i {
        font-size: 1.2rem;
    }

    .service-item span {
        font-size: 0.8rem;
    }
}

@keyframes slideInUp {
    0% {
        opacity: 0;
        transform: translateY(100%);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Acessibilidade - Reduzir animações se preferido pelo usuário */
@media (prefers-reduced-motion: reduce) {

    .unit-tag,
    .unit-title,
    .unit-subtitle,
    .unit-quick-actions,
    .unit-hero-image,
    .cta-floating {
        animation: none;
        opacity: 1;
        transform: none;
    }

    .info-card:hover,
    .services-card:hover,
    .gallery-item:hover,
    .service-item:hover {
        transform: none;
    }
}

/* ==========================================================================
 * ESTILOS ESPECÍFICOS PARA PÁGINA DE DETALHES DA UNIDADE
 * ========================================================================== */

/* Seção de mapa */
.unit-map {
    background-color: #f8f9fa;
}

/* Iframe do mapa */
.map-iframe {
    border: 0;
    border-radius: 10px;
}

/* Galeria de imagens */
.gallery-img {
    height: 250px;
    object-fit: cover;
    width: 100%;
}

.gallery-type {
    font-size: 0.9rem;
}

/* Info Items */
.facility-item {
    display: flex;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
}

.facility-item:last-child {
    border-bottom: none;
}

.facility-item i {
    margin-right: 10px;
    width: 20px;
}

/* Schedule */
.schedule-item {
    display: flex;
    justify-content: space-between;
    padding: 5px 0;
    border-bottom: 1px solid #f0f0f0;
}

.schedule-item:last-child {
    border-bottom: none;
}

/* Gallery overlay */
.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
    cursor: pointer;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

/* No gallery message */
.no-gallery-message {
    height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* CTA flutuante */
.cta-floating {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    padding: 15px 20px;
    z-index: 1000;
    max-width: 300px;
}

.cta-content {
    display: flex;
    flex-direction: column; /* coloca em coluna */
    align-items: center;    /* centraliza horizontalmente */
}

/* Responsividade do CTA */
@media (max-width: 768px) {
    .cta-floating {
        bottom: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
    }

    .cta-content {
        display: flex;
        flex-direction: column; /* coloca em coluna */
        align-items: center;    /* centraliza horizontalmente */
    }
}

/* ==========================================================================
 * ESTILOS ESPECÍFICOS PARA PÁGINA DE UNIDADES - PESQUISA AJAX
 * ========================================================================== */

/* Hero da página de unidades */
.units-hero {
    background: linear-gradient(rgba(0, 107, 63, 0.95), rgba(0, 107, 63, 0.9)), url('../imagens/bg/bg-units.jpg') center/cover;
    padding: 80px 0;
}

.units-subtitle {
    font-size: 1.2rem;
    letter-spacing: 2px;
}

.units-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.units-divider {
    width: 80px;
    height: 4px;
}

.units-lead {
    font-size: 1.25rem;
}

/* Seção de filtro/pesquisa */
.units-filter {
    background-color: #f8f9fa;
}

.filter-title {
    color: #006B3F;
}

/* Container de pesquisa moderno */
.search-container {
    position: relative;
    margin-bottom: 1rem;
}

.search-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    background: #ffffff;
    border: 2px solid #e9ecef;
    border-radius: 16px;
    padding: 4px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.search-input-wrapper:focus-within {
    border-color: var(--islab-green);
    box-shadow: 0 0 0 4px rgba(0, 107, 63, 0.1), 0 8px 25px rgba(0, 0, 0, 0.12);
    transform: translateY(-1px);
}

.search-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--islab-green), var(--islab-blue));
    border-radius: 12px;
    margin-right: 8px;
    transition: all 0.3s ease;
}

.search-icon {
    color: white;
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.search-input-wrapper:focus-within .search-icon {
    transform: scale(1.1);
}

.search-input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 16px 20px;
    font-size: 1rem;
    color: #333;
    outline: none;
    transition: all 0.3s ease;
}

.search-input::placeholder {
    color: #999;
    font-weight: 400;
}

.clear-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #f8f9fa;
    border: none;
    border-radius: 10px;
    color: #6c757d;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-left: 8px;
    opacity: 0.7;
}

.clear-btn:hover {
    background: linear-gradient(135deg, #ff6b6b, #ee5a52);
    color: white;
    transform: scale(1.1);
    opacity: 1;
    box-shadow: 0 4px 12px rgba(238, 90, 82, 0.3);
}

.clear-btn:active {
    transform: scale(0.95);
}

.clear-btn i {
    font-size: 0.9rem;
    transition: transform 0.2s ease;
}

.clear-btn:hover i {
    transform: rotate(90deg);
}

/* Efeitos de loading e estados */
.search-input-wrapper.loading {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    }
    50% {
        box-shadow: 0 4px 20px rgba(0, 107, 63, 0.2);
    }
    100% {
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    }
}

/* Melhorias de acessibilidade */
.search-input:focus {
    background: rgba(0, 107, 63, 0.02);
}

.clear-btn:focus {
    outline: 2px solid var(--islab-green);
    outline-offset: 2px;
}

/* Estado vazio do botão de limpar */
.clear-btn:not(:hover):not(:focus) {
    opacity: 0.5;
}

.clear-btn:not(:hover):not(:focus):hover {
    opacity: 0.8;
}

/* Status de pesquisa moderno */
.search-status {
    text-align: center;
    min-height: 24px;
    margin-top: 12px;
    padding: 8px 16px;
    border-radius: 20px;
    background: rgba(0, 107, 63, 0.05);
    transition: all 0.3s ease;
}

.search-count {
    color: var(--islab-green);
    font-size: 0.9rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.search-count::before {
    content: '\f002';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.8rem;
    opacity: 0.7;
}



/* Lista de unidades */
.units-list {
    background-color: #fff;
}

/* Card de unidade */
.unit-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.unit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Imagem da unidade */
.unit-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

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

.unit-card:hover .unit-img {
    transform: scale(1.05);
}

.unit-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #006B3F;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.8rem;
}

/* Detalhes da unidade */
.unit-details {
    padding: 25px;
}

.unit-title {
    color: #006B3F;
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.unit-info {
    margin-bottom: 20px;
}

.unit-info-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    color: #555;
}

.unit-info-item i {
    margin-right: 10px;
    width: 20px;
    font-size: 1rem;
}

/* Ações da unidade */
.unit-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.unit-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    min-width: 120px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.unit-btn:hover {
    transform: translateY(-2px);
}

/* Botão WhatsApp personalizado */
.btn-whatsapp {
    background-color: #25D366 !important;
    border-color: #25D366 !important;
}

.btn-whatsapp:hover {
    background-color: #20BA5A !important;
    border-color: #20BA5A !important;
}

/* Estados de filtro/pesquisa */
.unit-item.hidden {
    display: none;
}

.unit-item.highlighted {
    position: relative;
}

.unit-item.highlighted::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #006B3F, #f7941e);
    border-radius: 17px;
    z-index: -1;
    animation: highlightPulse 2s ease-in-out infinite;
}

@keyframes highlightPulse {

    0%,
    100% {
        opacity: 0.7;
    }

    50% {
        opacity: 1;
    }
}

/* Mensagem de nenhum resultado */
.no-results {
    text-align: center;
    padding: 60px 20px;
    color: #666;
}

.no-results i {
    font-size: 4rem;
    margin-bottom: 20px;
    color: #ddd;
}

.no-results h4 {
    margin-bottom: 10px;
}

/* Loading state */
.search-loading {
    position: relative;
}

.search-loading::after {
    content: '';
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    border: 2px solid #f3f3f3;
    border-top: 2px solid #006B3F;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: translateY(-50%) rotate(0deg);
    }

    100% {
        transform: translateY(-50%) rotate(360deg);
    }
}

/* Responsividade */
@media (max-width: 991.98px) {
    .units-title {
        font-size: 2.5rem;
    }

    .unit-actions {
        flex-direction: column;
    }

    .unit-btn {
        flex: none;
        width: 100%;
    }
}

@media (max-width: 767.98px) {
    .units-hero {
        padding: 60px 0;
    }

    .units-title {
        font-size: 2rem;
    }

    .units-subtitle {
        font-size: 1rem;
    }

    .units-lead {
        font-size: 1.1rem;
    }



    .unit-details {
        padding: 20px;
    }

    .unit-title {
        font-size: 1.3rem;
    }

    .unit-actions {
        gap: 8px;
    }

    .unit-btn {
        padding: 10px;
        font-size: 0.85rem;
    }
}



/* ======================================================
 * SISTEMA DE EXPANSÃO DE CONTEÚDO DE EXAMES
 * ====================================================== */

.exam-content {
    transition: all 0.3s ease;
}

.exam-title{
    height: 50px;
}

.exam-full-content {
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.btn-toggle-content {
    transition: all 0.3s ease;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 140px;
}

.btn-toggle-content .toggle-icon {
    transition: transform 0.3s ease;
    margin-left: 8px;
}

.btn-toggle-content.expanded {
    background-color: var(--islab-green) !important;
    color: white !important;
    border-color: var(--islab-green) !important;
}

.btn-toggle-content.expanded:hover {
    background-color: var(--islab-green-dark) !important;
    opacity: 0.9;
}

.content-transitioning {
    overflow: hidden;
}

.exam-preview,
.exam-full-content {
    min-height: 50px;
}

.sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

/* ======================================================
 * FUNCIONALIDADES DE PESQUISA - EXAMES
 * ====================================================== */



/* Status da Pesquisa */
.search-status-container {
    animation: fadeInDown 0.3s ease;
}

.search-status-container .alert {
    border-radius: 10px;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 107, 56, 0.1);
}
}

/* Animações de Pesquisa */
.exam-item {
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.exam-item .exam-card {
    flex: 1;
}

.exam-item.hidden {
    display: none !important;
}

.exam-item.highlighted {
    animation: highlightPulse 1s ease-in-out;
}

.exam-item.highlighted .exam-card {
    border: 2px solid var(--islab-green);
    box-shadow: 0 8px 25px rgba(0, 107, 56, 0.15);
    transform: translateY(-5px);
}

@keyframes highlightPulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(0, 107, 56, 0.4);
    }

    50% {
        box-shadow: 0 0 0 15px rgba(0, 107, 56, 0);
    }
}

/* Estado de carregamento da pesquisa */
.exam-search-loading {
    position: relative;
}

.exam-search-loading::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 15px;
    width: 16px;
    height: 16px;
    border: 2px solid #f3f3f3;
    border-top: 2px solid var(--islab-green);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* Mensagem de nenhum resultado */
.no-exams-found {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--grey-dark);
    animation: fadeInUp 0.5s ease;
}

.no-exams-found i {
    font-size: 4rem;
    color: var(--islab-green);
    margin-bottom: 1rem;
    opacity: 0.7;
}

.no-exams-found h4 {
    color: var(--islab-green);
    margin-bottom: 0.5rem;
}

.no-exams-found p {
    color: var(--grey-dark);
    opacity: 0.8;
}





/* Responsividade para botões de ação */

@media (max-width: 768px) {
    .search-box .input-group {
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .search-box .form-control {
        border-bottom-right-radius: 0.375rem;
        border-top-right-radius: 0.375rem;
        margin-bottom: 0.5rem;
    }

    .search-box .btn {
        border-top-left-radius: 0.375rem;
        border-bottom-left-radius: 0.375rem;
        flex: 1;
    }

    .search-status-container .alert {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    #clearSearchBtn {
        margin-top: 0.5rem;
        margin-left: 0;
        align-self: flex-end;
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ======================================================
 * FUNCIONALIDADES DE PESQUISA - PLANOS DE SAÚDE
 * ====================================================== */

/* Status da Pesquisa */
.search-status-container {
    animation: fadeInDown 0.3s ease;
}

.search-status-container .alert {
    border-radius: 10px;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 107, 56, 0.1);
}

#clearSearchBtn {
    border-radius: 20px;
    padding: 0.25rem 0.75rem;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

#clearSearchBtn:hover {
    background-color: var(--islab-green);
    border-color: var(--islab-green);
    color: white;
}

/* Animações de Pesquisa */
.health-plan-item {
    transition: all 0.3s ease;
}

/* Esconder planos não correspondentes à busca */
.convenios-grid .health-plan-item.hidden {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
}

.health-plan-item.highlighted {
    animation: highlightPulse 1s ease-in-out;
}

.health-plan-item.highlighted .health-plan-card {
    border: 2px solid var(--islab-green);
    box-shadow: 0 8px 25px rgba(0, 107, 56, 0.15);
    transform: translateY(-5px);
}

@keyframes highlightPulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(0, 107, 56, 0.4);
    }

    50% {
        box-shadow: 0 0 0 15px rgba(0, 107, 56, 0);
    }
}

/* Estado de carregamento da pesquisa */
.health-plan-search-loading {
    position: relative;
}

.health-plan-search-loading::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 15px;
    width: 16px;
    height: 16px;
    border: 2px solid #f3f3f3;
    border-top: 2px solid var(--islab-green);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* Mensagem de nenhum resultado */
.no-health-plans-found {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--grey-dark);
    animation: fadeInUp 0.5s ease;
}

.no-health-plans-found i {
    font-size: 4rem;
    color: var(--islab-green);
    margin-bottom: 1rem;
    opacity: 0.7;
}

.no-health-plans-found h4 {
    color: var(--islab-green);
    margin-bottom: 0.5rem;
}

.no-health-plans-found p {
    color: var(--grey-dark);
    opacity: 0.8;
}

/* Responsividade para botões de ação */
@media (max-width: 768px) {
    .search-box .input-group {
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .search-box .form-control {
        border-bottom-right-radius: 0.375rem;
        border-top-right-radius: 0.375rem;
        margin-bottom: 0.5rem;
    }

    .search-box .btn {
        border-top-left-radius: 0.375rem;
        border-bottom-left-radius: 0.375rem;
        flex: 1;
    }

    .search-status-container .alert {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    #clearSearchBtn {
        margin-top: 0.5rem;
        margin-left: 0;
        align-self: flex-end;
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ======================================================
 * PÁGINA DE MANUTENÇÃO - MAINTENANCE PAGE REDESIGN
 * ====================================================== */

.maintenance-page {
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}

/* Animated Background */
.maintenance-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0a4d2e 0%, var(--islab-green) 25%, var(--islab-blue) 75%, #004d5c 100%);
    z-index: -1;
}

.animated-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    animation: floatShapes 20s infinite linear;
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: -150px;
    left: -150px;
    animation-delay: 0s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    top: 20%;
    right: -100px;
    animation-delay: -5s;
}

.shape-3 {
    width: 150px;
    height: 150px;
    bottom: 10%;
    left: 10%;
    animation-delay: -10s;
}

.shape-4 {
    width: 250px;
    height: 250px;
    top: 50%;
    left: 50%;
    animation-delay: -15s;
}

.shape-5 {
    width: 100px;
    height: 100px;
    top: 80%;
    right: 20%;
    animation-delay: -7s;
}

.shape-6 {
    width: 180px;
    height: 180px;
    top: 10%;
    left: 70%;
    animation-delay: -12s;
}

.particles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--islab-orange);
    border-radius: 50%;
    animation: particleFloat 15s infinite linear;
    opacity: 0.6;
}

.particle:nth-child(1) {
    left: 10%;
    animation-delay: 0s;
}

.particle:nth-child(2) {
    left: 20%;
    animation-delay: -2s;
}

.particle:nth-child(3) {
    left: 30%;
    animation-delay: -4s;
}

.particle:nth-child(4) {
    left: 40%;
    animation-delay: -6s;
}

.particle:nth-child(5) {
    left: 50%;
    animation-delay: -8s;
}

.particle:nth-child(6) {
    left: 60%;
    animation-delay: -10s;
}

.particle:nth-child(7) {
    left: 70%;
    animation-delay: -12s;
}

.particle:nth-child(8) {
    left: 80%;
    animation-delay: -14s;
}

/* Hero Section */
.maintenance-hero {
    position: relative;
    color: var(--white);
    padding: 2rem 0;
}

.maintenance-content {
    animation: slideInLeft 1s ease-out;
}

/* Badge */
.maintenance-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(247, 142, 30, 0.2);
    color: var(--islab-orange);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid rgba(247, 142, 30, 0.3);
    backdrop-filter: blur(10px);
}

/* Title */
.maintenance-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.text-gradient {
    background: linear-gradient(135deg, var(--islab-orange) 0%, #ffb347 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.maintenance-subtitle {
    font-size: 1.2rem;
    line-height: 1.6;
    opacity: 0.9;
    max-width: 500px;
}

/* Progress Bar */
.progress-container {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.progress-label {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    font-weight: 600;
}

.progress-percent {
    color: var(--islab-orange);
}

.progress-bar-custom {
    height: 8px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.progress-fill {
    height: 100%;
    width: 95%;
    background: linear-gradient(90deg, var(--islab-orange) 0%, #ffb347 100%);
    border-radius: 10px;
    animation: progressAnimation 2s ease-out;
    position: relative;
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.3) 50%, transparent 100%);
    animation: shimmer 2s infinite;
}

/* Exam Results Button */
.btn-exam-results {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, var(--islab-orange) 0%, #e67e1a 100%);
    color: var(--white);
    padding: 20px 25px;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(247, 142, 30, 0.3);
    transition: all 0.3s ease;
    border: none;
    width: 100%;
    max-width: 400px;
}

.btn-exam-results:hover {
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(247, 142, 30, 0.4);
}

.btn-content {
    display: flex;
    align-items: center;
}

.btn-content i {
    font-size: 2rem;
    margin-right: 15px;
    color: rgba(255, 255, 255, 0.9);
}

.btn-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.btn-title {
    font-size: 1.1rem;
    font-weight: 700;
}

.btn-subtitle {
    font-size: 0.85rem;
    opacity: 0.8;
}

.btn-arrow {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.btn-exam-results:hover .btn-arrow {
    transform: translateX(5px);
}

/* Contact Cards */
.contact-cards {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.contact-card {
    flex: 1;
    min-width: 200px;
}

.contact-card-link {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 12px;
    text-decoration: none;
    color: var(--white);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-card-link:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.contact-icon {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    font-size: 1.3rem;
}

.phone-card .contact-icon {
    background: rgba(0, 123, 255, 0.2);
    color: #007bff;
}

.whatsapp-card .contact-icon {
    background: rgba(37, 211, 102, 0.2);
    color: #25d366;
}

.contact-info {
    display: flex;
    flex-direction: column;
}

.contact-label {
    font-size: 0.8rem;
    opacity: 0.7;
    margin-bottom: 2px;
}

.contact-value {
    font-size: 1rem;
    font-weight: 600;
}

/* Visual Illustration */
.maintenance-visual {
    animation: slideInRight 1s ease-out;
}

.illustration-container {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-illustration {
    position: relative;
    width: 300px;
    height: 300px;
}

/* Lab Equipment */
.lab-equipment {
    position: relative;
    width: 100%;
    height: 100%;
}

.microscope {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.microscope-base {
    width: 80px;
    height: 60px;
    background: linear-gradient(135deg, #4a5568 0%, #2d3748 100%);
    border-radius: 10px;
    position: relative;
}

.microscope-arm {
    width: 8px;
    height: 100px;
    background: linear-gradient(135deg, #4a5568 0%, #2d3748 100%);
    position: absolute;
    top: -90px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 4px;
}

.microscope-lens {
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, var(--islab-blue) 0%, #004d5c 100%);
    border-radius: 50%;
    position: absolute;
    top: -120px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 20px rgba(0, 131, 154, 0.5);
}

.test-tubes {
    position: absolute;
    top: 20%;
    right: 10%;
    display: flex;
    gap: 8px;
}

.tube {
    width: 12px;
    height: 60px;
    border-radius: 6px 6px 2px 2px;
    position: relative;
}

.tube-1 {
    background: linear-gradient(180deg, var(--islab-green) 0%, #004d2e 100%);
    animation: bubbleEffect 3s infinite ease-in-out;
}

.tube-2 {
    background: linear-gradient(180deg, var(--islab-orange) 0%, #cc5500 100%);
    animation: bubbleEffect 3s infinite ease-in-out 1s;
}

.tube-3 {
    background: linear-gradient(180deg, var(--islab-blue) 0%, #003d4d 100%);
    animation: bubbleEffect 3s infinite ease-in-out 2s;
}

.dna-helix {
    position: absolute;
    top: 10%;
    left: 10%;
    width: 60px;
    height: 80px;
}

.helix-strand {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid;
    border-radius: 50%;
    animation: rotateHelix 4s infinite linear;
}

.strand-1 {
    border-color: var(--islab-orange);
    animation-direction: normal;
}

.strand-2 {
    border-color: var(--islab-blue);
    animation-direction: reverse;
    animation-delay: 2s;
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
}

.float-element {
    position: absolute;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.element-1 {
    top: 10%;
    right: 20%;
    color: #ff6b6b;
    animation: floatElement 6s infinite ease-in-out;
}

.element-2 {
    bottom: 20%;
    right: 10%;
    color: #4ecdc4;
    animation: floatElement 6s infinite ease-in-out 1.5s;
}

.element-3 {
    top: 30%;
    left: 5%;
    color: #45b7d1;
    animation: floatElement 6s infinite ease-in-out 3s;
}

.element-4 {
    bottom: 40%;
    left: 15%;
    color: #96ceb4;
    animation: floatElement 6s infinite ease-in-out 4.5s;
}

/* Social Footer */
.social-footer {
    margin-top: 3rem;
}

.social-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

.social-links-modern {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 2rem;
}

.social-link {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.social-link.facebook {
    background: rgba(24, 119, 242, 0.2);
    color: #1877f2;
}

.social-link.facebook:hover {
    background: #1877f2;
    color: var(--white);
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 25px rgba(24, 119, 242, 0.4);
}

.social-link.instagram {
    background: rgba(225, 48, 108, 0.2);
    color: #e1306c;
}

.social-link.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: var(--white);
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 25px rgba(225, 48, 108, 0.4);
}

.social-link.whatsapp {
    background: rgba(37, 211, 102, 0.2);
    color: #25d366;
}

.social-link.whatsapp:hover {
    background: #25d366;
    color: var(--white);
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
}

.brand-footer {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Animations */
@keyframes floatShapes {
    0% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(180deg);
    }

    100% {
        transform: translateY(0px) rotate(360deg);
    }
}

@keyframes particleFloat {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }

    10% {
        opacity: 0.6;
    }

    90% {
        opacity: 0.6;
    }

    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes progressAnimation {
    from {
        width: 0%;
    }

    to {
        width: 95%;
    }
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

@keyframes bubbleEffect {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

@keyframes rotateHelix {
    from {
        transform: rotateY(0deg);
    }

    to {
        transform: rotateY(360deg);
    }
}

@keyframes floatElement {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }
}

/* Responsividade */
@media (max-width: 991.98px) {
    .maintenance-title {
        font-size: 2.8rem;
    }

    .maintenance-subtitle {
        font-size: 1.1rem;
    }

    .contact-cards {
        flex-direction: column;
    }

    .illustration-container {
        height: 400px;
    }

    .main-illustration {
        width: 250px;
        height: 250px;
    }
}

@media (max-width: 767.98px) {
    .maintenance-hero {
        padding: 1rem 0;
    }

    .maintenance-title {
        font-size: 2.2rem;
    }

    .maintenance-subtitle {
        font-size: 1rem;
    }

    .btn-exam-results {
        max-width: 100%;
    }

    .contact-cards {
        gap: 10px;
    }

    .contact-card {
        min-width: 100%;
    }

    .illustration-container {
        height: 300px;
        margin-bottom: 2rem;
    }

    .main-illustration {
        width: 200px;
        height: 200px;
    }

    .social-links-modern {
        gap: 15px;
    }

    .social-link {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

@media (max-width: 575.98px) {
    .maintenance-title {
        font-size: 1.8rem;
    }

    .btn-content i {
        font-size: 1.5rem;
        margin-right: 10px;
    }

    .btn-title {
        font-size: 1rem;
    }

    .btn-subtitle {
        font-size: 0.8rem;
    }

    .contact-card-link {
        padding: 12px;
    }

    .contact-icon {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
}

/* Acessibilidade */
@media (prefers-reduced-motion: reduce) {

    .shape,
    .particle,
    .progress-fill::after,
    .tube,
    .helix-strand,
    .float-element {
        animation: none;
    }

    .btn-exam-results:hover,
    .contact-card-link:hover,
    .social-link:hover {
        transform: none;
    }
}

/* ========================================================================== 
 * ESTILOS ESPECÍFICOS PARA PÁGINA BLOG-INTERNO.PHP 
 * ========================================================================== */

/* Hero da página interna do blog */
.blog-article-hero {
    position: relative;
    height: 60vh;
    min-height: 400px;
    background: linear-gradient(rgba(0, 107, 63, 0.3), rgba(0, 107, 63, 0.5));
    display: flex;
    align-items: center;
    overflow: hidden;
}

.blog-article-hero img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.blog-article-hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.blog-article-hero .blog-category {
    display: inline-block;
    background: var(--islab-orange);
    color: #fff;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-article-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.blog-article-meta {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    font-size: 1rem;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto;
}

.blog-article-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 20px;
    backdrop-filter: blur(5px);
}

.blog-article-meta i {
    font-size: 1rem;
    color: var(--islab-orange);
}

/* Conteúdo principal do artigo */
.blog-article-main {
    background: #fff;
}

.blog-article-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
}

.blog-article-content h2,
.blog-article-content h3,
.blog-article-content h4 {
    color: var(--islab-green);
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.blog-article-content h2 {
    font-size: 1.8rem;
    border-bottom: 2px solid var(--islab-orange);
    padding-bottom: 0.5rem;
}

.blog-article-content h3 {
    font-size: 1.5rem;
}

.blog-article-content h4 {
    font-size: 1.3rem;
}

.blog-article-content p {
    margin-bottom: 1.5rem;
    text-align: justify;
}

.blog-article-content img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 2rem 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.blog-article-content blockquote {
    background: var(--islab-light-green);
    border-left: 4px solid var(--islab-green);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0 10px 10px 0;
    font-style: italic;
}

.blog-article-content ul,
.blog-article-content ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.blog-article-content li {
    margin-bottom: 0.5rem;
}

/* Tags do artigo */
.blog-article-tags {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 1.5rem;
    border: 1px solid #e9ecef;
}

.tags-label {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.tags-label i {
    color: var(--islab-green);
    font-size: 1.2rem;
}

.tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.tag-item {
    background: linear-gradient(135deg, var(--islab-green), #005a34);
    color: #fff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 107, 63, 0.2);
}

.tag-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 107, 63, 0.3);
    color: #fff;
}

/* Botões de ação do artigo */
.article-actions {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e9ecef;
}

.action-btn {
    background: #fff;
    border: 2px solid var(--islab-green);
    color: var(--islab-green);
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 0.9rem;
}

.action-btn:hover {
    background: var(--islab-green);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 107, 63, 0.2);
}

.action-btn i {
    font-size: 1rem;
}

/* Compartilhamento */
.blog-article-share {
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 15px;
    padding: 2rem;
    margin-top: 3rem;
}

.blog-article-share h4 {
    color: var(--islab-green);
    font-weight: 600;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.share-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.share-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 12px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    color: #fff;
    font-size: 0.9rem;
}

.share-facebook {
    background: #1877f2;
}

.share-facebook:hover {
    background: #166fe5;
    color: #fff;
    transform: translateY(-2px);
}

.share-twitter {
    background: #1da1f2;
}

.share-twitter:hover {
    background: #0d8bd9;
    color: #fff;
    transform: translateY(-2px);
}

.share-linkedin {
    background: #0077b5;
}

.share-linkedin:hover {
    background: #005885;
    color: #fff;
    transform: translateY(-2px);
}

.share-whatsapp {
    background: #25d366;
}

.share-whatsapp:hover {
    background: #20ba5a;
    color: #fff;
    transform: translateY(-2px);
}

/* Navegação entre posts */
.blog-article-navigation {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid #e9ecef;
}

.nav-post {
    padding: 1rem;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.nav-post:hover {
    background: #fff;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.nav-label {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
    display: block;
    margin-bottom: 0.5rem;
}

.nav-title {
    color: var(--islab-green);
    font-weight: 600;
    text-decoration: none;
    font-size: 1.1rem;
    line-height: 1.4;
}

.nav-title:hover {
    color: var(--islab-green-dark);
}

/* Sidebar */
.blog-sidebar {
    padding-left: 2rem;
}

.sidebar-widget {
    background: #fff;
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid #e9ecef;
}

.widget-title {
    color: var(--islab-green);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.widget-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--islab-orange);
    border-radius: 2px;
}

/* Posts recentes */
.recent-posts {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.recent-post-item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.recent-post-item:hover {
    background: var(--islab-light-green);
}

.recent-post-image {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
}

.recent-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recent-post-content {
    flex: 1;
}

.recent-post-title {
    color: var(--islab-green);
    font-weight: 600;
    text-decoration: none;
    font-size: 0.95rem;
    line-height: 1.4;
    display: block;
    margin-bottom: 0.5rem;
}

.recent-post-title:hover {
    color: var(--islab-green-dark);
}

.recent-post-date {
    color: #666;
    font-size: 0.85rem;
}

/* Lista de categorias */
.categories-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.category-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.category-item:hover {
    background: var(--islab-light-green);
    border-color: var(--islab-green);
}

.category-name {
    color: #333;
    font-weight: 500;
}

.category-count {
    color: #666;
    font-size: 0.9rem;
    background: #f8f9fa;
    padding: 4px 8px;
    border-radius: 15px;
    font-weight: 600;
}

.category-item:hover .category-name {
    color: var(--islab-green);
}

/* Newsletter widget */
.newsletter-widget {
    background: linear-gradient(135deg, var(--islab-green), #005a34);
    color: #fff;
    text-align: center;
}

.newsletter-widget .widget-title {
    color: #fff;
}

.newsletter-widget .widget-title::after {
    background: var(--islab-orange);
}

.newsletter-form {
    margin-top: 1.5rem;
}

.newsletter-form .form-control {
    border: none;
    border-radius: 25px;
    padding: 12px 20px;
    margin-bottom: 1rem;
    background: rgba(255, 255, 255, 0.9);
}

.newsletter-form .btn {
    background: var(--islab-orange);
    border: none;
    border-radius: 25px;
    padding: 12px 30px;
    font-weight: 600;
    color: #fff;
    width: 100%;
}

.newsletter-form .btn:hover {
    background: #e58719;
    color: #fff;
}

/* Redes sociais widget */
.social-widget {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.social-widget-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 15px;
    border-radius: 10px;
    text-decoration: none;
    color: #fff;
    font-weight: 600;
    transition: all 0.3s ease;
}

.social-widget-item i {
    font-size: 1.5rem;
    width: 30px;
    text-align: center;
}

.social-widget-item.facebook {
    background: #1877f2;
}

.social-widget-item.facebook:hover {
    background: #166fe5;
    color: #fff;
    transform: translateX(5px);
}

.social-widget-item.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-widget-item.instagram:hover {
    transform: translateX(5px);
    color: #fff;
}

.social-widget-item.youtube {
    background: #ff0000;
}

.social-widget-item.youtube:hover {
    background: #cc0000;
    color: #fff;
    transform: translateX(5px);
}

/* Posts relacionados */
.related-posts {
    background: #f8f9fa;
}

.related-posts .section-title {
    color: var(--islab-green);
    font-size: 2.2rem;
    font-weight: 700;
}

.related-posts .divider {
    width: 60px;
    height: 4px;
    background: var(--islab-orange);
    border-radius: 2px;
}

.related-posts .blog-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

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

.related-posts .blog-image {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.related-posts .blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.related-posts .blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.related-posts .blog-content {
    padding: 1.5rem;
}

.related-posts .blog-category {
    display: inline-block;
    background: var(--islab-light-green);
    color: var(--islab-green);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.related-posts .blog-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.related-posts .blog-title a {
    color: #333;
    text-decoration: none;
}

.related-posts .blog-title a:hover {
    color: var(--islab-green);
}

.related-posts .blog-excerpt {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.related-posts .blog-meta {
    color: #999;
    font-size: 0.9rem;
}

.related-posts .blog-meta i {
    margin-right: 5px;
    color: var(--islab-green);
}

/* Responsividade para blog-interno */
@media (max-width: 991.98px) {
    .blog-article-hero h1 {
        font-size: 2.5rem;
    }

    .blog-sidebar {
        padding-left: 0;
        margin-top: 3rem;
    }

    .blog-article-meta {
        gap: 1rem;
    }
}

@media (max-width: 767.98px) {
    .blog-article-hero {
        height: 50vh;
        min-height: 350px;
        text-align: center;
    }

    .blog-article-hero h1 {
        font-size: 2rem;
    }

    .blog-article-meta {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }

    .blog-article-content {
        font-size: 1rem;
    }

    .share-buttons {
        justify-content: center;
    }

    .share-button {
        flex: 1;
        min-width: calc(50% - 0.5rem);
        justify-content: center;
    }

    .nav-post {
        text-align: center;
        margin-bottom: 1rem;
    }

    .recent-post-item {
        flex-direction: column;
        text-align: center;
    }

    .recent-post-image {
        width: 100%;
        height: 150px;
        align-self: center;
    }

    .tags-list {
        justify-content: center;
    }

    .article-actions {
        text-align: center;
    }

    .action-btn {
        width: 100%;
        justify-content: center;
        margin-bottom: 0.5rem;
    }
}

@media (max-width: 575.98px) {
    .blog-article-hero h1 {
        font-size: 1.8rem;
    }

    .sidebar-widget {
        padding: 1.5rem;
    }

    .share-button {
        width: 100%;
    }

    .blog-article-meta span {
        font-size: 0.9rem;
        padding: 6px 12px;
    }
}

/* Barra de progresso de leitura para blog-interno */
.reading-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, var(--islab-green), var(--islab-orange));
    z-index: 9999;
    transition: width 0.3s ease;
}

/* Toast notifications para blog-interno */
.blog-toast {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--islab-green);
    color: #fff;
    padding: 15px 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

.blog-toast.show {
    transform: translateX(0);
}

.blog-toast.success {
    background: #28a745;
}

.blog-toast.error {
    background: #dc3545;
}

/* Índice automático para blog-interno */
.blog-toc {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 10px;
    padding: 1.5rem;
    margin: 2rem 0;
    position: sticky;
    top: 20px;
}

.blog-toc h4 {
    color: var(--islab-green);
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

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

.blog-toc li {
    margin-bottom: 0.5rem;
}

.blog-toc a {
    color: #666;
    text-decoration: none;
    font-size: 0.9rem;
    display: block;
    padding: 5px 10px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.blog-toc a:hover,
.blog-toc a.active {
    background: var(--islab-light-green);
    color: var(--islab-green);
    font-weight: 600;
}

/* ========================================================================== 
 * FIM DOS ESTILOS ESPECÍFICOS PARA PÁGINA BLOG-INTERNO.PHP 
 * ========================================================================== */

/* ========================================================================== 
 * SISTEMA DE PESQUISA - BLOG
 * ========================================================================== */

/* Status da Pesquisa */
.search-status-container {
    animation: fadeInDown 0.3s ease;
}

.search-status-container .alert {
    border-radius: 10px;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 107, 56, 0.1);
}

#clearBlogSearchBtn {
    border-radius: 20px;
    padding: 0.25rem 0.75rem;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

#clearBlogSearchBtn:hover {
    background-color: var(--islab-green);
    border-color: var(--islab-green);
    color: white;
}

/* Animações de Pesquisa */
.blog-item {
    transition: all 0.3s ease;
}

.blog-item.hidden {
    display: none !important;
}

.blog-item.highlighted {
    animation: highlightPulse 1s ease-in-out;
}

.blog-item.highlighted .blog-card {
    border: 2px solid var(--islab-green);
    box-shadow: 0 8px 25px rgba(0, 107, 56, 0.15);
    transform: translateY(-5px);
}

@keyframes highlightPulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(0, 107, 56, 0.4);
    }

    50% {
        box-shadow: 0 0 0 15px rgba(0, 107, 56, 0);
    }
}

/* Estado de carregamento da pesquisa */
.blog-search-loading {
    position: relative;
}

.blog-search-loading::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 15px;
    width: 16px;
    height: 16px;
    border: 2px solid #f3f3f3;
    border-top: 2px solid var(--islab-green);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* Mensagem de nenhum resultado */
.no-blog-posts-found {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--grey-dark);
    animation: fadeInUp 0.5s ease;
}

.no-blog-posts-found i {
    font-size: 4rem;
    color: var(--islab-green);
    margin-bottom: 1rem;
    opacity: 0.7;
}

.no-blog-posts-found h4 {
    color: var(--islab-green);
    margin-bottom: 0.5rem;
}

.no-blog-posts-found p {
    color: var(--grey-dark);
    opacity: 0.8;
}

/* Responsividade para botões de ação */
@media (max-width: 768px) {
    .search-box .input-group {
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .search-box .form-control {
        border-bottom-right-radius: 0.375rem;
        border-top-right-radius: 0.375rem;
        margin-bottom: 0.5rem;
    }

    .search-box .btn {
        border-top-left-radius: 0.375rem;
        border-bottom-left-radius: 0.375rem;
        flex: 1;
    }

    .search-status-container .alert {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    #clearBlogSearchBtn {
        margin-top: 0.5rem;
        margin-left: 0;
        align-self: flex-end;
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes spin {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* Category Active State */
.blog-categories-hero .category-tag.active {
    background: linear-gradient(135deg, var(--islab-green) 0%, #0e8f2e 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 107, 56, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.blog-categories-hero .category-tag.active:hover {
    background: linear-gradient(135deg, #0e8f2e 0%, var(--islab-green) 100%);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 107, 56, 0.4);
}

/* Categorias escondidas */
.blog-categories-hero .category-tag[style*="display: none"] {
    display: none !important;
}

/* ========================================================================== 
 * FIM DO SISTEMA DE PESQUISA - BLOG
 * ========================================================================== */

/* === INÍCIO ISLAB KIDS === */

/* Variáveis específicas para Kids */
:root {
    --kids-primary: #ff6b9d;
    --kids-secondary: #4ecdc4;
    --kids-accent: #ffbe0b;
    --kids-light: #f8f9ff;
    --kids-purple: #a8dadc;
    --kids-blue: #457b9d;
    --kids-green: #2a9d8f;
    --kids-orange: #f4a261;
}

/* Cores de texto kids */
.text-kids-primary {
    color: var(--kids-primary) !important;
}

.text-kids-secondary {
    color: var(--kids-accent) !important;
}

.text-kids-accent {
    color: var(--kids-accent) !important;
}

/* Backgrounds kids */
.bg-kids-light {
    background-color: var(--kids-light) !important;
}

.bg-kids-primary {
    background-color: var(--kids-primary) !important;
}

/* Hero Section */
.kids-hero {
    background: linear-gradient(135deg, #006b38 0%, #006b38 50%, #006b38 100%);
    position: relative;
    overflow: hidden;
}

.kids-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    z-index: 1;
}

.kids-hero .container {
    position: relative;
    z-index: 2;
}

.kids-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.9);
    color: var(--kids-primary);
    padding: 8px 16px;
    border-radius: 25px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.kids-title {
    font-size: 3.5rem;
    font-weight: 600;
    line-height: 1.2;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    margin-bottom: 1.5rem;
}

.kids-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.kids-cta-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.btn-kids-primary {
    background: linear-gradient(135deg, var(--kids-accent) 0%, #f4a261 100%);
    border: none;
    color: white;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 25px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 190, 11, 0.3);
}

.btn-kids-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 190, 11, 0.4);
    color: white;
}

.btn-kids-outline {
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid white;
    color: var(--kids-primary);
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.btn-kids-outline:hover {
    background: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    color: var(--kids-primary);
}

.kids-features {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.kids-features .feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    font-weight: 500;
}

.kids-features .feature-item i {
    background: rgba(255, 255, 255, 0.2);
    padding: 8px;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Hero Image com elementos flutuantes */
.kids-hero-image {
    position: relative;
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.float-element {
    position: absolute;
    font-size: 2rem;
    animation: float 3s ease-in-out infinite;
}

.float-element.heart {
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.float-element.star {
    top: 20%;
    left: 10%;
    animation-delay: 1s;
}

.float-element.rainbow {
    bottom: 30%;
    right: 20%;
    animation-delay: 2s;
}

.float-element.balloon {
    bottom: 10%;
    left: 20%;
    animation-delay: 1.5s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Wave separator */
.kids-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.kids-wave svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 60px;
}

.kids-wave .shape-fill {
    fill: #FFFFFF;
}

/* Seções comuns */
.kids-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--islab-green);
    margin-bottom: 1rem;
    text-align: center;
}

.kids-section-subtitle {
    font-size: 1.1rem;
    color: #666;
    text-align: center;
    margin-bottom: 2rem;
}

/* Missão Section */
.kids-mission {
    padding: 80px 0;
}

.mission-icon {
    font-size: 4rem;
    color: var(--kids-secondary);
}

.kids-mission-text {
    font-size: 1.3rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 2rem;
}

.mission-mascot {
    max-width: 200px;
    margin: 0 auto;
}

/* Diferenciais */
.differential-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    border: 3px solid transparent;
}

.differential-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-color: var(--islab-green-dark);
}

.differential-icon {
    background: linear-gradient(135deg, var(--islab-green) 0%, var(--islab-green-dark) 100%);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.differential-card h4 {
    color: var(--islab-green-dark);
    font-weight: 700;
    margin-bottom: 1rem;
}

.differential-card p {
    color: #666;
    line-height: 1.6;
}

/* Vídeo Section */
.video-content h2 {
    text-align: left;
}

.video-features {
    list-style: none;
    padding: 0;
}

.video-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: #555;
}

.video-features i {
    color: var(--kids-secondary);
    font-size: 1.2rem;
}

.video-container {
    position: relative;
}

.video-placeholder {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: transform 0.3s ease;
}

.video-placeholder:hover {
    transform: scale(1.02);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 107, 157, 0.9);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    z-index: 2;
    transition: all 0.3s ease;
}

.play-button:hover {
    background: var(--kids-primary);
    transform: translate(-50%, -50%) scale(1.1);
}

.video-duration {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.9rem;
}

/* Galeria */
.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 2rem 1.5rem 1.5rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h5 {
    font-weight: 700;
    margin-bottom: 0.5rem;
}

/* Educação para Pais */
.education-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    height: 100%;
    border-left: 5px solid var(--kids-secondary);
}

.education-icon {
    background: var(--kids-light);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--kids-primary);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.education-card h4 {
    color: var(--kids-primary);
    font-weight: 700;
    margin-bottom: 1rem;
}

.education-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.education-card li {
    padding: 0.5rem 0;
    color: #555;
    position: relative;
    padding-left: 20px;
}

.education-card li::before {
    content: "•";
    color: var(--kids-secondary);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Exames Cards */
.exam-card {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.exam-card .card-body {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.exam-card .text-center {
    margin-top: auto;
    padding-top: 1rem;
}

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

.exam-icon {
    background: linear-gradient(135deg, var(--kids-accent) 0%, var(--kids-orange) 100%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.5rem;
}

.exam-card h6 {
    color: var(--kids-primary);
    font-weight: 600;
    margin: 0;
}

/* Unidades Cards */
.unit-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: all 0.3s ease;
    height: 100%;
}

.unit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.unit-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: var(--kids-primary);
    color: white;
    padding: 8px 16px;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}

.unit-card h5 {
    color: var(--kids-primary);
    font-weight: 700;
    margin-bottom: 1rem;
    margin-top: 1rem;
}

.unit-address {
    color: #666;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.unit-address i {
    color: var(--kids-secondary);
}

.unit-features {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.unit-features span {
    background: var(--kids-light);
    color: var(--kids-primary);
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.unit-actions {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

/* Agendamento Section */
.kids-schedule {
    position: relative;
    overflow: hidden;
}

.kids-schedule::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--kids-primary) 0%, var(--kids-secondary) 100%);
    z-index: 1;
}

.kids-schedule .container {
    position: relative;
    z-index: 2;
}

.schedule-features {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.schedule-features .feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
}

.schedule-features .feature-item i {
    background: rgba(255, 255, 255, 0.2);
    padding: 10px;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-kids-whatsapp {
    background: #25d366;
    border: none;
    color: white;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-kids-whatsapp:hover {
    background: #20b858;
    transform: translateY(-2px);
    color: white;
}

.btn-kids-secondary {
    background: white;
    color: var(--kids-primary);
    font-weight: 600;
    border: none;
    transition: all 0.3s ease;
}

.btn-kids-secondary:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    color: var(--kids-primary);
}

/* Depoimentos */
.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    height: 100%;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.stars {
    color: var(--kids-accent);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.testimonial-content p {
    color: #555;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author h6 {
    color: var(--kids-primary);
    font-weight: 700;
    margin: 0;
}

.testimonial-author small {
    color: #888;
}

/* Downloads */
.download-items {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.download-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.download-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.download-icon {
    background: var(--kids-light);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--kids-primary);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.download-content h6 {
    color: var(--kids-primary);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.download-content p {
    color: #666;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

/* Responsive Design */
@media (max-width: 991px) {
    .kids-title {
        font-size: 2.5rem;
    }

    .kids-cta-buttons {
        justify-content: center;
    }

    .kids-features {
        justify-content: center;
    }

    .schedule-features {
        justify-content: center;
    }

    .download-item {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 767px) {
    .kids-title {
        font-size: 2rem;
    }

    .kids-section-title {
        font-size: 2rem;
    }

    .kids-cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .kids-features {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .schedule-features {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .unit-actions {
        flex-direction: column;
    }

    .float-element {
        font-size: 1.5rem;
    }
}

/* === FIM ISLAB KIDS === */

/* =================================================
   MODAL TERMOS DO CONTRATO - CARTÃO ISLAB
   ================================================= */

/* Link dos termos no checkbox */
.terms-link {
    color: #28a745;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.terms-link:hover {
    color: #1e7e34;
    text-decoration: underline;
}

/* Modal personalizado */
#termsModal .modal-content {
    border: none;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

#termsModal .modal-header {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    border-radius: 15px 15px 0 0;
    border-bottom: none;
    padding: 1.5rem;
}

#termsModal .modal-title {
    font-size: 1.3rem;
    font-weight: 600;
}

#termsModal .btn-close {
    filter: brightness(0) invert(1);
    opacity: 0.8;
}

#termsModal .btn-close:hover {
    opacity: 1;
}

/* Conteúdo do modal */
#termsModal .modal-body {
    padding: 2rem;
    max-height: 60vh;
    overflow-y: auto;
}

.terms-content h6 {
    color: #28a745;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    font-size: 1rem;
}

.terms-content h6:first-child {
    margin-top: 0;
}

.terms-content p {
    margin-bottom: 1rem;
    line-height: 1.6;
    color: #555;
    text-align: justify;
}

.terms-content ul {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.terms-content li {
    margin-bottom: 0.5rem;
    line-height: 1.5;
    color: #555;
}

/* Footer do modal */
#termsModal .modal-footer {
    padding: 1.5rem;
    border-top: 1px solid #e9ecef;
    background-color: #f8f9fa;
    border-radius: 0 0 15px 15px;
}

#termsModal .modal-footer .btn {
    padding: 0.6rem 1.5rem;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s ease;
}

#termsModal .modal-footer .btn-success {
    background: linear-gradient(135deg, #28a745, #20c997);
    border: none;
}

#termsModal .modal-footer .btn-success:hover {
    background: linear-gradient(135deg, #1e7e34, #198a72);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
}

#termsModal .modal-footer .btn-secondary {
    background-color: #6c757d;
    border: none;
}

#termsModal .modal-footer .btn-secondary:hover {
    background-color: #545b62;
    transform: translateY(-1px);
}

/* Scrollbar personalizada */
#termsModal .modal-body::-webkit-scrollbar {
    width: 6px;
}

#termsModal .modal-body::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

#termsModal .modal-body::-webkit-scrollbar-thumb {
    background: #28a745;
    border-radius: 3px;
}

#termsModal .modal-body::-webkit-scrollbar-thumb:hover {
    background: #1e7e34;
}

/* Responsividade */
@media (max-width: 768px) {
    #termsModal .modal-dialog {
        margin: 1rem;
    }

    #termsModal .modal-body {
        padding: 1.5rem;
        max-height: 50vh;
    }

    #termsModal .modal-header,
    #termsModal .modal-footer {
        padding: 1rem;
    }

    #termsModal .modal-title {
        font-size: 1.1rem;
    }

    .terms-content h6 {
        font-size: 0.95rem;
    }
}

/* Animação de entrada */
#termsModal.fade .modal-dialog {
    transform: scale(0.8) translateY(-50px);
    transition: all 0.3s ease;
}

#termsModal.show .modal-dialog {
    transform: scale(1) translateY(0);
}

/* =================================================
   MODAL LGPD - TERMOS DE CONSENTIMENTO
   ================================================= */

/* Link LGPD no checkbox */
.lgpd-link {
    color: #007bff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.lgpd-link:hover {
    color: #0056b3;
    text-decoration: underline;
}

/* Modal LGPD personalizado */
#lgpdModal .modal-content {
    border: none;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

#lgpdModal .modal-header {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    border-radius: 15px 15px 0 0;
    border-bottom: none;
    padding: 1.5rem;
}

#lgpdModal .modal-title {
    font-size: 1.3rem;
    font-weight: 600;
}

#lgpdModal .btn-close {
    filter: brightness(0) invert(1);
    opacity: 0.8;
}

#lgpdModal .btn-close:hover {
    opacity: 1;
}

/* Conteúdo LGPD */
#lgpdModal .modal-body {
    padding: 2rem;
    max-height: 60vh;
    overflow-y: auto;
}

.lgpd-content h6 {
    color: #007bff;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    font-size: 1rem;
}

.lgpd-content h6:first-child {
    margin-top: 0;
}

.lgpd-content p {
    margin-bottom: 1rem;
    line-height: 1.6;
    color: #555;
    text-align: justify;
}

.lgpd-content ul {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.lgpd-content li {
    margin-bottom: 0.5rem;
    line-height: 1.5;
    color: #555;
}

.lgpd-content strong {
    color: #333;
    font-weight: 600;
}

/* Alertas personalizados no modal LGPD */
#lgpdModal .alert-info {
    background-color: #e3f2fd;
    border-color: #2196f3;
    color: #1976d2;
}

#lgpdModal .alert-success {
    background-color: #e8f5e8;
    border-color: #4caf50;
    color: #388e3c;
}

/* Footer do modal LGPD */
#lgpdModal .modal-footer {
    padding: 1.5rem;
    border-top: 1px solid #e9ecef;
    background-color: #f8f9fa;
    border-radius: 0 0 15px 15px;
}

#lgpdModal .modal-footer .btn {
    padding: 0.6rem 1.5rem;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s ease;
}

#lgpdModal .modal-footer .btn-success {
    background: linear-gradient(135deg, #28a745, #20c997);
    border: none;
}

#lgpdModal .modal-footer .btn-success:hover {
    background: linear-gradient(135deg, #1e7e34, #198a72);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
}

#lgpdModal .modal-footer .btn-secondary {
    background-color: #6c757d;
    border: none;
}

#lgpdModal .modal-footer .btn-secondary:hover {
    background-color: #545b62;
    transform: translateY(-1px);
}

/* Scrollbar personalizada LGPD */
#lgpdModal .modal-body::-webkit-scrollbar {
    width: 6px;
}

#lgpdModal .modal-body::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

#lgpdModal .modal-body::-webkit-scrollbar-thumb {
    background: #007bff;
    border-radius: 3px;
}

#lgpdModal .modal-body::-webkit-scrollbar-thumb:hover {
    background: #0056b3;
}

/* Responsividade LGPD */
@media (max-width: 768px) {
    #lgpdModal .modal-dialog {
        margin: 1rem;
    }

    #lgpdModal .modal-body {
        padding: 1.5rem;
        max-height: 50vh;
    }

    #lgpdModal .modal-header,
    #lgpdModal .modal-footer {
        padding: 1rem;
    }

    #lgpdModal .modal-title {
        font-size: 1.1rem;
    }

    .lgpd-content h6 {
        font-size: 0.95rem;
    }
}

/* Animação de entrada LGPD */
#lgpdModal.fade .modal-dialog {
    transform: scale(0.8) translateY(-50px);
    transition: all 0.3s ease;
}

#lgpdModal.show .modal-dialog {
    transform: scale(1) translateY(0);
}

/* ====================================
   SEÇÃO NOSSA HISTÓRIA
   ==================================== */

.nossa-historia-section {
    background-color: var(--white);
    padding: 80px 0;
}

/* Título da Seção */
.historia-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.title-part {
    color: var(--grey-dark);
}

.title-highlight {
    color: var(--islab-green);
}

.historia-subtitle {
    font-size: 1.1rem;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Timeline Container */
.timeline-container {
    position: relative;
    padding-left: 30px;
}

.timeline-line {
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--islab-green), var(--islab-blue));
    border-radius: 2px;
}

/* Timeline Items */
.timeline-item {
    position: relative;
    margin-bottom: 40px;
    padding-left: 40px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-icon {
    position: absolute;
    left: -15px;
    top: 0;
    width: 36px;
    height: 36px;
    background: var(--islab-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
    box-shadow: 0 4px 12px rgba(0, 107, 56, 0.3);
    z-index: 2;
}

.timeline-content {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 12px;
    border-left: 4px solid var(--islab-green);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

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

.timeline-content h4 {
    color: var(--islab-green);
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.timeline-content p {
    color: var(--grey-dark);
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

/* Texto Descritivo */
.historia-texto {
    padding: 20px 0;
}

.historia-texto p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: var(--grey-dark);
    font-size: 1rem;
}

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

.historia-texto strong {
    color: var(--islab-green);
    font-weight: 600;
}

/* Estatísticas */
.estatisticas-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    margin-top: 60px;
    padding: 40px 0;
    background: linear-gradient(135deg, var(--islab-light-green), #f0f8f5);
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 107, 56, 0.1);
}

.estatistica-item {
    text-align: center;
    flex: 1;
    max-width: 200px;
}

.estatistica-numero {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--islab-green);
    line-height: 1;
    margin-bottom: 8px;
    text-shadow: 0 2px 4px rgba(0, 107, 56, 0.2);
}

.estatistica-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--grey-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ====================================
   RESPONSIVIDADE NOSSA HISTÓRIA
   ==================================== */

@media (max-width: 991px) {
    .nossa-historia-section {
        padding: 60px 0;
    }

    .historia-title {
        font-size: 2.5rem;
    }

    .timeline-container {
        margin-bottom: 40px;
    }

    .estatisticas-container {
        flex-direction: column;
        gap: 30px;
        padding: 30px 20px;
    }

    .estatistica-item {
        max-width: none;
    }
}

@media (max-width: 768px) {
    .nossa-historia-section {
        padding: 40px 0;
    }

    .historia-title {
        font-size: 2rem;
    }

    .historia-subtitle {
        font-size: 1rem;
        padding: 0 20px;
    }

    .timeline-container {
        padding-left: 20px;
    }

    .timeline-line {
        left: 10px;
    }

    .timeline-item {
        padding-left: 30px;
    }

    .timeline-icon {
        left: -10px;
        width: 30px;
        height: 30px;
        font-size: 12px;
    }

    .timeline-content {
        padding: 15px;
    }

    .timeline-content h4 {
        font-size: 1rem;
    }

    .timeline-content p {
        font-size: 0.9rem;
    }

    .historia-texto {
        padding: 0 10px;
    }

    .historia-texto p {
        font-size: 0.95rem;
    }

    .estatistica-numero {
        font-size: 2.5rem;
    }

    .estatistica-label {
        font-size: 0.8rem;
    }
}

@media (max-width: 576px) {
    .historia-title {
        font-size: 1.8rem;
    }

    .estatisticas-container {
        margin-top: 40px;
        padding: 20px 15px;
    }

    .estatistica-numero {
        font-size: 2rem;
    }

    .estatistica-label {
        font-size: 0.75rem;
    }
}

/* ====================================
   ANIMAÇÕES NOSSA HISTÓRIA
   ==================================== */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Aplicar animações quando a seção estiver visível */
.nossa-historia-section .historia-title {
    animation: fadeInUp 0.8s ease-out;
}

.nossa-historia-section .historia-subtitle {
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.nossa-historia-section .timeline-container {
    animation: slideInLeft 0.8s ease-out 0.4s both;
}

.nossa-historia-section .historia-texto {
    animation: slideInRight 0.8s ease-out 0.4s both;
}

.nossa-historia-section .estatisticas-container {
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

/* Hover effects */
.timeline-item:hover .timeline-icon {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 107, 56, 0.4);
}

.estatistica-item:hover .estatistica-numero {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

/* ====================================
   SEÇÃO MISSÃO, VISÃO E VALORES
   ==================================== */

.missao-visao-valores-section {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 80px 0;
}

/* Boxes principais */
.mv-box {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    text-align: center;
    height: 100%;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.mv-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--islab-green), var(--islab-blue));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.mv-box:hover::before {
    transform: scaleX(1);
}

.mv-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Ícones */
.mv-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
    position: relative;
    z-index: 2;
}

.missao-box .mv-icon {
    background: linear-gradient(135deg, var(--islab-green), #28a745);
    box-shadow: 0 8px 20px rgba(0, 107, 56, 0.3);
}

.visao-box .mv-icon {
    background: linear-gradient(135deg, var(--islab-blue), #17a2b8);
    box-shadow: 0 8px 20px rgba(0, 131, 154, 0.3);
}

.valores-box .mv-icon {
    background: linear-gradient(135deg, #dc3545, #e83e8c);
    box-shadow: 0 8px 20px rgba(220, 53, 69, 0.3);
}

/* Títulos */
.mv-box h3 {
    color: var(--grey-dark);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
}

.mv-box h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: var(--islab-green);
    border-radius: 2px;
}

/* Texto */
.mv-box p {
    color: var(--grey-dark);
    line-height: 1.7;
    font-size: 1rem;
    margin: 0;
}

/* Lista de valores */
.valores-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.valores-list li {
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
    color: var(--grey-dark);
    line-height: 1.6;
    font-size: 0.95rem;
}

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

.valores-list strong {
    color: var(--islab-green);
    font-weight: 600;
}

/* ====================================
   RESPONSIVIDADE MISSÃO, VISÃO E VALORES
   ==================================== */

@media (max-width: 991px) {
    .missao-visao-valores-section {
        padding: 60px 0;
    }

    .mv-box {
        padding: 30px 25px;
        margin-bottom: 30px;
    }

    .mv-icon {
        width: 70px;
        height: 70px;
        font-size: 28px;
        margin-bottom: 20px;
    }

    .mv-box h3 {
        font-size: 1.6rem;
    }
}

@media (max-width: 768px) {
    .missao-visao-valores-section {
        padding: 40px 0;
    }

    .mv-box {
        padding: 25px 20px;
    }

    .mv-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
        margin-bottom: 15px;
    }

    .mv-box h3 {
        font-size: 1.4rem;
        margin-bottom: 15px;
    }

    .mv-box p {
        font-size: 0.95rem;
    }

    .valores-list li {
        font-size: 0.9rem;
        padding: 6px 0;
    }
}

@media (max-width: 576px) {
    .mv-box {
        padding: 20px 15px;
    }

    .mv-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .mv-box h3 {
        font-size: 1.3rem;
    }

    .mv-box p {
        font-size: 0.9rem;
    }
}

/* ====================================
   ANIMAÇÕES MISSÃO, VISÃO E VALORES
   ==================================== */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.missao-visao-valores-section .mv-box {
    animation: fadeInUp 0.8s ease-out;
}

.missao-visao-valores-section .mv-box:nth-child(1) {
    animation-delay: 0.1s;
}

.missao-visao-valores-section .mv-box:nth-child(2) {
    animation-delay: 0.2s;
}

.missao-visao-valores-section .mv-box:nth-child(3) {
    animation-delay: 0.3s;
}

/* Hover effects adicionais */
.mv-box:hover .mv-icon {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

.mv-box:hover h3 {
    color: var(--islab-green);
    transition: color 0.3s ease;
}

/* ====================================
   SEÇÃO NOSSA ESTRUTURA - GALERIA
   ==================================== */

.nossa-estrutura-section {
    background-color: var(--white);
    padding: 80px 0;
}

/* Título da Seção */
.estrutura-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.estrutura-subtitle {
    font-size: 1.1rem;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Container da Galeria */
.galeria-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    cursor: pointer;
}

.galeria-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

/* Container da Imagem */
.galeria-image-container {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}

.galeria-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.4s ease;
    cursor: pointer;
    position: relative;
    z-index: 1;
}

.galeria-item:hover .galeria-image {
    transform: scale(1.1);
}

/* Overlay da Imagem */
.galeria-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 107, 56, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 15px;
    cursor: pointer;
    z-index: 2;
}

.galeria-item:hover .galeria-overlay {
    opacity: 1;
}

.galeria-overlay i {
    color: white;
    font-size: 2rem;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.galeria-item:hover .galeria-overlay i {
    transform: scale(1);
}

/* Modal da Galeria */
#galeriaModal .modal-content {
    border: none;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

#galeriaModal .modal-header {
    background: linear-gradient(135deg, var(--islab-green), var(--islab-blue));
    color: white;
    border: none;
    padding: 1.5rem;
}

#galeriaModal .modal-title {
    font-weight: 600;
    font-size: 1.3rem;
}

#galeriaModal .btn-close {
    filter: invert(1);
    opacity: 0.8;
}

#galeriaModal .btn-close:hover {
    opacity: 1;
}

#galeriaModal .modal-body {
    padding: 2rem;
    background-color: #f8f9fa;
}

#modalImage {
    max-height: 500px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

#modalImageTitle {
    color: var(--islab-green);
    font-weight: 600;
    margin-top: 1rem;
}

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

@media (max-width: 991px) {
    .nossa-estrutura-section {
        padding: 60px 0;
    }

    .estrutura-title {
        font-size: 2.5rem;
    }

    .galeria-image {
        height: 220px;
    }
}

@media (max-width: 768px) {
    .nossa-estrutura-section {
        padding: 40px 0;
    }

    .estrutura-title {
        font-size: 2rem;
    }

    .estrutura-subtitle {
        font-size: 1rem;
        padding: 0 20px;
    }

    .galeria-image {
        height: 200px;
    }

    #galeriaModal .modal-body {
        padding: 1.5rem;
    }

    #modalImage {
        max-height: 400px;
    }
}

@media (max-width: 576px) {
    .estrutura-title {
        font-size: 1.8rem;
    }

    .galeria-image {
        height: 180px;
    }

    #galeriaModal .modal-body {
        padding: 1rem;
    }

    #modalImage {
        max-height: 300px;
    }

    /* ====================================
   MODAL PERSONALIZADO DA GALERIA
   ==================================== */

    .simple-modal {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.95);
        z-index: 99999;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        opacity: 0;
        transition: opacity 0.3s ease;
        backdrop-filter: blur(5px);
    }

    .simple-modal.show {
        opacity: 1;
    }

    .simple-modal .modal-content {
        max-width: 90%;
        max-height: 90%;
        position: relative;
        transform: scale(0.8);
        transition: transform 0.3s ease;
        text-align: center;
    }

    .simple-modal.show .modal-content {
        transform: scale(1);
    }

    .simple-modal img {
        width: 100%;
        height: auto;
        border-radius: 15px;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
        max-height: 80vh;
        object-fit: contain;
    }

    .simple-modal h4 {
        color: white;
        text-align: center;
        margin-top: 20px;
        font-size: 1.3rem;
        font-weight: 600;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    }

    .simple-modal .close-btn {
        position: absolute;
        top: -60px;
        right: 0;
        background: none;
        border: none;
        color: white;
        font-size: 3rem;
        cursor: pointer;
        padding: 0;
        width: 60px;
        height: 60px;
        line-height: 1;
        transition: transform 0.2s ease;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    }

    .simple-modal .close-btn:hover {
        transform: scale(1.1);
    }

    .simple-modal .close-text {
        position: absolute;
        top: -60px;
        left: 0;
        color: white;
        font-size: 0.9rem;
        opacity: 0.8;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    }

    /* Responsividade do modal personalizado */
    @media (max-width: 768px) {
        .simple-modal .modal-content {
            max-width: 95%;
            max-height: 95%;
        }

        .simple-modal img {
            max-height: 70vh;
        }

        .simple-modal h4 {
            font-size: 1.1rem;
            margin-top: 15px;
        }

        .simple-modal .close-btn {
            top: -50px;
            font-size: 2.5rem;
            width: 50px;
            height: 50px;
        }

        .simple-modal .close-text {
            top: -50px;
            font-size: 0.8rem;
        }
    }

    @media (max-width: 576px) {
        .simple-modal img {
            max-height: 60vh;
            border-radius: 10px;
        }

        .simple-modal h4 {
            font-size: 1rem;
            margin-top: 10px;
        }
    }

    /* ====================================
   ANIMAÇÕES GALERIA
   ==================================== */

    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .nossa-estrutura-section .estrutura-title {
        animation: fadeInUp 0.8s ease-out;
    }

    .nossa-estrutura-section .estrutura-subtitle {
        animation: fadeInUp 0.8s ease-out 0.2s both;
    }

    .nossa-estrutura-section .galeria-item {
        animation: fadeInUp 0.8s ease-out;
    }

    .nossa-estrutura-section .galeria-item:nth-child(1) {
        animation-delay: 0.3s;
    }

    .nossa-estrutura-section .galeria-item:nth-child(2) {
        animation-delay: 0.4s;
    }

    .nossa-estrutura-section .galeria-item:nth-child(3) {
        animation-delay: 0.5s;
    }

    .nossa-estrutura-section .galeria-item:nth-child(4) {
        animation-delay: 0.6s;
    }

    .nossa-estrutura-section .galeria-item:nth-child(5) {
        animation-delay: 0.7s;
    }

    .nossa-estrutura-section .galeria-item:nth-child(6) {
        animation-delay: 0.8s;
    }

    /* ====================================
   SEÇÃO NOSSA HISTÓRIA
   ==================================== */

    .nossa-historia-section {
        background-color: var(--white);
        padding: 80px 0;
    }

    /* ===== Estilos do Footer 02 ===== */

    .footer2 {
        background-color: #006B3F !important;
        color: var(--white);
    }

    .footer2-main {
        padding: 600px 0 40px;
        background-color: #006B3F !important;
    
    }

    .footer2-title {
        font-size: 1.3rem;
        font-weight: 600;
        margin-bottom: 20px;
        color: var(--white);
        position: relative;
    }

    .footer2-title::after {
        content: '';
        position: absolute;
        bottom: -8px;
        left: 0;
        width: 40px;
        height: 3px;
        background-color: var(--islab-orange);
        border-radius: 2px;
    }

    .footer2-brand .footer2-description {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 20px;
        color: rgba(255, 255, 255, 0.9);
    }

    .footer2-brand .btn-outline-light {
        border: 2px solid var(--white);
        color: var(--white);
        font-weight: 500;
        padding: 8px 20px;
        border-radius: 25px;
        transition: all 0.3s ease;
        margin-bottom: 25px;
    }

    .footer2-brand .btn-outline-light:hover {
        background-color: var(--white);
        color: var(--islab-green);
        transform: translateY(-2px);
    }

    .footer2-social {
        display: flex;
        gap: 12px;
        margin-top: 20px;
    }

    .social-link {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        background-color: rgba(255, 255, 255, 0.1);
        color: var(--white);
        border-radius: 50%;
        text-decoration: none;
        transition: all 0.3s ease;
        font-size: 1.1rem;
    }

    .social-link:hover {
        background-color: var(--islab-orange);
        color: var(--white);
        transform: translateY(-3px);
        box-shadow: 0 4px 12px rgba(247, 142, 30, 0.3);
    }

    .footer2-section {
        height: 100%;
    }

    .footer2-links-scroll,
    .footer2-exams-scroll,
    .footer2-units-scroll {
        max-height: 280px;
        overflow-y: auto;
        scrollbar-width: thin;
        scrollbar-color: var(--islab-orange) rgba(255, 255, 255, 0.1);
    }

    .footer2-links-scroll::-webkit-scrollbar,
    .footer2-exams-scroll::-webkit-scrollbar,
    .footer2-units-scroll::-webkit-scrollbar {
        width: 6px;
    }

    .footer2-links-scroll::-webkit-scrollbar-track,
    .footer2-exams-scroll::-webkit-scrollbar-track,
    .footer2-units-scroll::-webkit-scrollbar-track {
        background: rgba(255, 255, 255, 0.1);
        border-radius: 3px;
    }

    .footer2-links-scroll::-webkit-scrollbar-thumb,
    .footer2-exams-scroll::-webkit-scrollbar-thumb,
    .footer2-units-scroll::-webkit-scrollbar-thumb {
        background: var(--islab-orange);
        border-radius: 3px;
    }

    .footer2-links-scroll::-webkit-scrollbar-thumb:hover,
    .footer2-exams-scroll::-webkit-scrollbar-thumb:hover,
    .footer2-units-scroll::-webkit-scrollbar-thumb:hover {
        background: #e67e00;
    }

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

    .footer2-links li {
        margin-bottom: 12px;
    }

    .footer2-links a {
        color: rgba(255, 255, 255, 0.85);
        text-decoration: none;
        font-size: 0.9rem;
        transition: all 0.3s ease;
        display: block;
        padding: 4px 0;
        position: relative;
    }

    .footer2-links a::before {
        content: '›';
        color: var(--islab-orange);
        margin-right: 8px;
        font-weight: bold;
        transition: all 0.3s ease;
    }

    .footer2-links a:hover {
        color: var(--white);
        transform: translateX(5px);
    }

    .footer2-links a:hover::before {
        transform: translateX(3px);
    }

    .footer2-bottom {
        background-color: #005432 !important;
        padding: 25px 0;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .footer2-technical {
        color: rgba(255, 255, 255, 0.85);
        font-size: 0.9rem;
    }

    .footer2-technical p {
        margin-bottom: 8px;
    }

    .footer2-brand-logo {
        text-align: right;
        color: rgba(255, 255, 255, 0.7);
        font-size: 0.85rem;
    }

    .meet-digital-logo {
        height: 40px;
        width: auto;
        filter: brightness(0) invert(1);
        opacity: 0.8;
        transition: opacity 0.3s ease;
    }

    .meet-digital-logo:hover {
        opacity: 1;
    }

    /* Responsividade do Footer 02 */
    @media (max-width: 991.98px) {
        .footer2-main {
            padding: 40px 0 30px;
        }

        .footer2-title {
            font-size: 1.2rem;
            margin-bottom: 15px;
        }

        .footer2-links-scroll,
        .footer2-exams-scroll,
        .footer2-units-scroll {
            max-height: 200px;
        }

        .footer2-brand-logo {
            text-align: center;
            margin-top: 20px;
        }
    }

    @media (max-width: 767.98px) {
        .footer2-main {
            padding: 30px 0 20px;
        }

        .footer2-title {
            font-size: 1.1rem;
            margin-bottom: 12px;
        }

        .footer2-brand .footer2-description {
            font-size: 0.9rem;
        }

        .footer2-links a {
            font-size: 0.85rem;
        }

        .footer2-links-scroll,
        .footer2-exams-scroll,
        .footer2-units-scroll {
            max-height: 150px;
        }

        .social-link {
            width: 35px;
            height: 35px;
            font-size: 1rem;
        }

        .footer2-technical {
            text-align: center;
            font-size: 0.85rem;
        }

        .footer2-brand-logo {
            text-align: center;
            margin-top: 15px;
        }

        .meet-digital-logo {
            height: 35px;
        }
    }

    @media (max-width: 575.98px) {
        .footer2-main {
            padding: 25px 0 15px;
        }

        .footer2-title {
            font-size: 1rem;
            margin-bottom: 10px;
        }

        .footer2-links-scroll,
        .footer2-exams-scroll,
        .footer2-units-scroll {
            max-height: 120px;
        }

        .footer2-social {
            justify-content: center;
            gap: 10px;
        }

        .social-link {
            width: 32px;
            height: 32px;
            font-size: 0.9rem;
        }
    }
    
    /* ====================================
    FAQ SECTION
    ==================================== */
    .faq-section {
        background-color: var(--white);
        padding: 80px 0;
    }

    .faq-section .subtitle {
        color: var(--islab-green);
        font-weight: 600;
        letter-spacing: .5px;
        text-transform: uppercase;
    }

    .faq-section .title-lg {
        font-weight: 700;
        margin-bottom: 10px;
    }

    .faq-section .divider {
        width: 80px;
        height: 4px;
        background: var(--islab-orange);
        border-radius: 2px;
        margin: 12px auto 0;
    }

    .faq-section .accordion-button {
        font-weight: 600;
        padding: 18px 16px;
    }

    .faq-section .accordion-button:not(.collapsed) {
        color: var(--islab-green);
        background-color: rgba(0, 107, 63, 0.06);
        box-shadow: none;
    }

    .faq-section .accordion-item {
        border: 1px solid rgba(0,0,0,.06);
        border-radius: .5rem;
        overflow: hidden;
        margin-bottom: 10px;
        background: #fff;
    }

    .faq-section .accordion-body {
        color: #444;
        line-height: 1.7;
    }

    .faq-cta .btn {
        padding-left: 22px;
        padding-right: 22px;
    }
}

/* ====================================
PRIVACY POLICY PAGE STYLES
==================================== */

/* Breadcrumb Section */
.breadcrumb-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 20px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
}

.breadcrumb-item a {
    color: var(--islab-green);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
    color: var(--islab-orange);
}

.breadcrumb-item.active {
    color: #6c757d;
    font-weight: 600;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: ">";
    color: #6c757d;
    font-weight: 600;
    margin: 0 8px;
}

/* Privacy Hero Section */
.privacy-hero {
    background: linear-gradient(135deg, var(--islab-green) 0%, #004d2e 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.privacy-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.privacy-hero-content {
    position: relative;
    z-index: 2;
}

.privacy-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.privacy-badge i {
    font-size: 1rem;
}

.privacy-title {
    color: white;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.privacy-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 600px;
}

.privacy-meta {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.meta-item i {
    font-size: 1.1rem;
    color: var(--islab-orange);
}

.privacy-hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
}

.privacy-icon-container {
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    animation: float 6s ease-in-out infinite;
}

.privacy-icon-container i {
    font-size: 4rem;
    color: white;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Privacy Content Section */
.privacy-content-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.privacy-content {
    background: white;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.privacy-section {
    margin-bottom: 50px;
}

.privacy-section:last-child {
    margin-bottom: 0;
}

.section-title {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--islab-green);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 25px;
    padding-bottom: 15px;
   
}

.section-title i {
    font-size: 1.6rem;
    color: var(--islab-orange);
}

.privacy-content p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.privacy-content strong {
    color: var(--islab-green);
    font-weight: 600;
}

/* Company Info Card */
.company-info-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
    padding: 30px;
    border-left: 5px solid var(--islab-green);
    margin: 20px 0;
}

.company-details h4 {
    color: var(--islab-green);
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.company-details p {
    margin-bottom: 10px;
    color: #555;
    font-size: 1rem;
}

.company-details strong {
    color: var(--islab-green);
    font-weight: 600;
}

/* Data Categories */
.data-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.data-category {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 107, 63, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.data-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.data-category h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--islab-green);
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.data-category h4 i {
    color: var(--islab-orange);
    font-size: 1.1rem;
}

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

.data-category li {
    padding: 8px 0;
    color: #555;
    position: relative;
    padding-left: 20px;
}

.data-category li::before {
    content: "•";
    color: var(--islab-orange);
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Purposes Grid */
.purposes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.purpose-item {
    background: white;
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 107, 63, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.purpose-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.purpose-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--islab-green), var(--islab-orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 1.5rem;
}

.purpose-item h5 {
    color: var(--islab-green);
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.purpose-item p {
    color: #666;
    font-size: 0.95rem;
    margin: 0;
}

/* Legal Bases */
.legal-bases {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.legal-basis {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border-left: 4px solid var(--islab-orange);
    transition: transform 0.3s ease;
}

.legal-basis:hover {
    transform: translateX(5px);
}

.legal-basis h5 {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--islab-green);
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.legal-basis h5 i {
    color: var(--islab-orange);
    font-size: 1rem;
}

.legal-basis p {
    color: #555;
    margin: 0;
    font-size: 0.95rem;
}

/* Sharing Partners */
.sharing-partners {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.partner-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: white;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.partner-item:hover {
    transform: translateY(-3px);
}

.partner-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--islab-green), var(--islab-orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.partner-info h5 {
    color: var(--islab-green);
    font-weight: 600;
    margin-bottom: 5px;
    font-size: 1rem;
}

.partner-info p {
    color: #666;
    margin: 0;
    font-size: 0.9rem;
}

/* Security Features */
.security-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.security-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: white;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.security-item:hover {
    transform: translateY(-3px);
}

.security-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--islab-green), var(--islab-orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.security-content h5 {
    color: var(--islab-green);
    font-weight: 600;
    margin-bottom: 5px;
    font-size: 1rem;
}

.security-content p {
    color: #666;
    margin: 0;
    font-size: 0.9rem;
}

.retention-info {
    background: linear-gradient(135deg, #e8f5e8 0%, #f0f8f0 100%);
    border-radius: 15px;
    padding: 25px;
    margin: 30px 0;
    border-left: 4px solid var(--islab-green);
}

.retention-info h5 {
    color: var(--islab-green);
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.retention-info p {
    color: #555;
    margin: 0;
    font-size: 0.95rem;
}

/* Rights Grid */
.rights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.right-item {
    background: white;
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 107, 63, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.right-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.right-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--islab-green), var(--islab-orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 1.5rem;
}

.right-item h5 {
    color: var(--islab-green);
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.right-item p {
    color: #666;
    font-size: 0.95rem;
    margin: 0;
}

.rights-exercise {
    background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
    border-radius: 15px;
    padding: 25px;
    margin: 30px 0;
    border-left: 4px solid var(--islab-orange);
}

.rights-exercise h5 {
    color: var(--islab-green);
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.rights-exercise p {
    color: #555;
    margin: 0;
    font-size: 0.95rem;
}

/* Cookies Types */
.cookies-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.cookie-type {
    background: white;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 107, 63, 0.1);
    transition: transform 0.3s ease;
}

.cookie-type:hover {
    transform: translateY(-3px);
}

.cookie-type h5 {
    color: var(--islab-green);
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 1rem;
}

.cookie-type p {
    color: #666;
    margin: 0;
    font-size: 0.9rem;
}

.cookie-controls {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    border-radius: 15px;
    padding: 25px;
    margin: 30px 0;
    border-left: 4px solid #2196f3;
}

.cookie-controls h5 {
    color: var(--islab-green);
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.cookie-controls p {
    color: #555;
    margin: 0;
    font-size: 0.95rem;
}

/* Marketing Digital Section */
.marketing-compliance {
    margin: 30px 0;
}

.compliance-item {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 20px;
    border-left: 4px solid var(--islab-green);
    transition: all 0.3s ease;
}

.compliance-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 107, 63, 0.1);
}

.compliance-item h5 {
    color: var(--islab-green);
    margin-bottom: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.compliance-item h5 i {
    font-size: 1.2em;
    color: var(--islab-orange);
}

.compliance-item p {
    color: #555;
    line-height: 1.6;
    margin: 0;
}

.marketing-transparency {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 30px;
    border-radius: 12px;
    margin-top: 30px;
    border: 1px solid rgba(0, 107, 63, 0.1);
}

.marketing-transparency h5 {
    color: var(--islab-green);
    margin-bottom: 20px;
    font-weight: 600;
    font-size: 1.1em;
}

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

.marketing-transparency li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: #555;
    line-height: 1.5;
}

.marketing-transparency li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--islab-green);
    font-weight: bold;
    font-size: 1.1em;
}

/* Contact Methods */
.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 15px;
    background: white;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.contact-method:hover {
    transform: translateY(-3px);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--islab-green), var(--islab-orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-info h5 {
    color: var(--islab-green);
    font-weight: 600;
    margin-bottom: 5px;
    font-size: 1rem;
}

.contact-info p {
    color: #666;
    margin: 0;
    font-size: 0.9rem;
}

/* Privacy Sidebar */
.privacy-sidebar {
    position: sticky;
    top: 20px;
}

.sidebar-widget {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 25px;
}

.widget-title {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--islab-green);
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.widget-title i {
    color: var(--islab-orange);
    font-size: 1.1rem;
}

/* Quick Navigation */
.quick-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #555;
    text-decoration: none;
    padding: 10px 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.nav-link:hover {
    background: rgba(0, 107, 63, 0.1);
    color: var(--islab-green);
    transform: translateX(5px);
}

.nav-link i {
    color: var(--islab-orange);
    font-size: 0.9rem;
    width: 16px;
}

/* Download Card */
.download-card {
    text-align: center;
    background: linear-gradient(135deg, var(--islab-green) 0%, #004d2e 100%);
    color: white;
    border-radius: 15px;
    padding: 30px 20px;
    margin: 0 -10px;
}

.download-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
}

.download-card h5 {
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.download-card p {
    margin-bottom: 20px;
    opacity: 0.9;
    font-size: 0.95rem;
}

.btn-download {
    background: var(--islab-orange);
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-download:hover {
    background: #e67e22;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(230, 126, 34, 0.4);
}

/* Company Sidebar Info */
.company-sidebar-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 15px;
    background: rgba(0, 107, 63, 0.05);
    border-radius: 10px;
    transition: background 0.3s ease;
}

.info-item:hover {
    background: rgba(0, 107, 63, 0.1);
}

.info-item i {
    color: var(--islab-orange);
    font-size: 1.1rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.info-item div {
    flex: 1;
}

.info-item strong {
    display: block;
    color: var(--islab-green);
    font-weight: 600;
    margin-bottom: 3px;
    font-size: 0.9rem;
}

.info-item small {
    color: #666;
    font-size: 0.85rem;
    line-height: 1.4;
}

/* Compliance Badges */
.compliance-badges {
    display: flex;
    justify-content: space-around;
    gap: 10px;
}

.badge-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 15px 10px;
    background: rgba(0, 107, 63, 0.05);
    border-radius: 10px;
    transition: all 0.3s ease;
    flex: 1;
}

.badge-item:hover {
    background: rgba(0, 107, 63, 0.1);
    transform: translateY(-3px);
}

.badge-item i {
    color: var(--islab-orange);
    font-size: 1.5rem;
}

.badge-item span {
    color: var(--islab-green);
    font-weight: 600;
    font-size: 0.85rem;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 991.98px) {
    .privacy-hero {
        padding: 60px 0;
    }
    
    .privacy-title {
        font-size: 2.5rem;
    }
    
    .privacy-subtitle {
        font-size: 1.1rem;
    }
    
    .privacy-meta {
        gap: 20px;
    }
    
    .privacy-icon-container {
        width: 150px;
        height: 150px;
    }
    
    .privacy-icon-container i {
        font-size: 3rem;
    }
    
    .privacy-content {
        padding: 30px;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .data-categories,
    .purposes-grid,
    .legal-bases,
    .sharing-partners,
    .security-features,
    .rights-grid {
        grid-template-columns: 1fr;
    }
    
    .privacy-sidebar {
        position: static;
        margin-top: 30px;
    }
}

@media (max-width: 767.98px) {
    .privacy-hero {
        padding: 40px 0;
    }
    
    .privacy-title {
        font-size: 2rem;
    }
    
    .privacy-subtitle {
        font-size: 1rem;
    }
    
    .privacy-meta {
        flex-direction: column;
        gap: 15px;
    }
    
    .privacy-icon-container {
        width: 120px;
        height: 120px;
    }
    
    .privacy-icon-container i {
        font-size: 2.5rem;
    }
    
    .privacy-content {
        padding: 20px;
        border-radius: 15px;
    }
    
    .section-title {
        font-size: 1.3rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .company-info-card {
        padding: 20px;
    }
    
    .company-details h4 {
        font-size: 1.3rem;
    }
    
    .sidebar-widget {
        padding: 20px;
    }
    
    .widget-title {
        font-size: 1.1rem;
    }
    
    .compliance-badges {
        flex-direction: column;
        gap: 10px;
    }
    
    .badge-item {
        flex-direction: row;
        justify-content: flex-start;
        padding: 12px 15px;
    }
}

@media (max-width: 575.98px) {
    .privacy-title {
        font-size: 1.8rem;
    }
    
    .privacy-content {
        padding: 15px;
    }
    
    .section-title {
        font-size: 1.2rem;
    }
    
    .data-category,
    .purpose-item,
    .legal-basis,
    .partner-item,
    .security-item,
    .right-item {
        padding: 20px;
    }
    
    .sidebar-widget {
        padding: 15px;
    }
    
    .download-card {
        padding: 25px 15px;
    }
    
    .download-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .download-card h5 {
        font-size: 1.1rem;
    }
}

/* Animation Classes */
.privacy-section {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.privacy-section:nth-child(1) { animation-delay: 0.1s; }
.privacy-section:nth-child(2) { animation-delay: 0.2s; }
.privacy-section:nth-child(3) { animation-delay: 0.3s; }
.privacy-section:nth-child(4) { animation-delay: 0.4s; }
.privacy-section:nth-child(5) { animation-delay: 0.5s; }
.privacy-section:nth-child(6) { animation-delay: 0.6s; }
.privacy-section:nth-child(7) { animation-delay: 0.7s; }
.privacy-section:nth-child(8) { animation-delay: 0.8s; }
.privacy-section:nth-child(9) { animation-delay: 0.9s; }
.privacy-section:nth-child(10) { animation-delay: 1.0s; }
.privacy-section:nth-child(11) { animation-delay: 1.1s; }
.privacy-section:nth-child(12) { animation-delay: 1.2s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Smooth Scrolling for Privacy Policy */
html {
    scroll-behavior: smooth;
}

/* Active Navigation Link */
.nav-link.active {
    background: rgba(0, 107, 63, 0.15);
    color: var(--islab-green);
    font-weight: 600;
}

/* Section Scroll Offset */
.privacy-section {
    scroll-margin-top: 100px;
}

/* Print Styles */
@media print {
    .privacy-hero {
        background: white !important;
        color: black !important;
    }
    
    .privacy-title,
    .privacy-subtitle,
    .privacy-meta {
        color: black !important;
    }
    
    .privacy-sidebar {
        display: none;
    }
    
    .privacy-content {
        box-shadow: none;
        border: 1px solid #ddd;
    }
    
    .section-title {
        color: black !important;
        border-bottom-color: #333 !important;
    }
    
    .section-title i {
        color: #333 !important;
    }
}

/* ====================================
COOKIES POLICY PAGE STYLES
==================================== */

/* Cookies Hero Section */
.cookies-hero {
    position: relative;
    padding: 80px 0;
    background: linear-gradient(135deg, var(--islab-green) 0%, #004d2e 100%);
    overflow: hidden;
}

.cookies-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="cookie-pattern" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="2" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23cookie-pattern)"/></svg>');
    opacity: 0.3;
}

.cookies-hero .container {
    position: relative;
    z-index: 2;
}

.cookies-hero-content {
    color: white;
}

.cookies-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.cookies-badge i {
    color: var(--islab-orange);
}

.cookies-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

.cookies-subtitle {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cookies-meta {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    opacity: 0.8;
}

.meta-item i {
    color: var(--islab-orange);
}

.cookies-hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.cookies-icon-container {
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    animation: float 3s ease-in-out infinite;
}

.cookies-icon-container i {
    font-size: 4rem;
    color: var(--islab-orange);
}

/* Cookies Content Section */
.cookies-content-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.cookies-content {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.cookies-section {
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e9ecef;
}

.cookies-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

/* Cookie Categories */
.cookie-categories {
    display: grid;
    gap: 25px;
    margin: 30px 0;
}

.cookie-category {
    background: #f8f9fa;
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.cookie-category:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.category-header {
    background: linear-gradient(135deg, var(--islab-green), #004d2e);
    color: white;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.category-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.category-header h4 {
    margin: 0;
    font-size: 1.3rem;
    font-weight: 600;
    flex-grow: 1;
}

.category-badge {
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.category-badge.essential {
    background: #dc3545;
    color: white;
}

.category-badge.analytics {
    background: #17a2b8;
    color: white;
}

.category-badge.functional {
    background: #28a745;
    color: white;
}

.category-badge.marketing {
    background: #ffc107;
    color: #212529;
}

.category-content {
    padding: 25px;
}

.category-content p {
    color: #555;
    margin-bottom: 15px;
    line-height: 1.6;
}

.category-content ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.category-content li {
    padding: 5px 0;
    padding-left: 20px;
    position: relative;
    color: #666;
}

.category-content li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--islab-green);
    font-weight: bold;
}

.category-details {
    background: white;
    padding: 15px;
    border-radius: 10px;
    border: 1px solid #e9ecef;
}

.detail-item {
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.detail-item:last-child {
    margin-bottom: 0;
}

/* Third Party Cookies */
.third-party-cookies {
    display: grid;
    gap: 20px;
    margin: 30px 0;
}

.third-party-item {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    gap: 20px;
    transition: transform 0.3s ease;
}

.third-party-item:hover {
    transform: translateY(-2px);
}

.third-party-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--islab-green), var(--islab-orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    flex-shrink: 0;
}

.third-party-info h5 {
    color: var(--islab-green);
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.third-party-info p {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.5;
}

.third-party-details {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.third-party-details span {
    font-size: 0.9rem;
    color: #777;
}

.third-party-details a {
    color: var(--islab-green);
    text-decoration: none;
    font-weight: 500;
}

.third-party-details a:hover {
    text-decoration: underline;
}

/* Storage Periods */
.storage-periods {
    display: grid;
    gap: 20px;
    margin: 30px 0;
}

.storage-item {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    gap: 20px;
    transition: transform 0.3s ease;
}

.storage-item:hover {
    transform: translateY(-2px);
}

.storage-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--islab-green), var(--islab-orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.storage-content h5 {
    color: var(--islab-green);
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.storage-content p {
    color: #666;
    margin-bottom: 10px;
    line-height: 1.5;
}

.storage-duration {
    background: var(--islab-green);
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
}

/* Management Methods */
.management-methods {
    display: grid;
    gap: 25px;
    margin: 30px 0;
}

.method-item {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border-left: 4px solid var(--islab-green);
}

.method-item h5 {
    color: var(--islab-green);
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.method-item h5 i {
    color: var(--islab-orange);
}

.method-item p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.browser-links {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.browser-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 20px;
    color: #666;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.browser-link:hover {
    background: var(--islab-green);
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
}

.browser-link i {
    font-size: 1.1rem;
}

/* Cookie Notice */
.cookie-notice {
    background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
    border: 1px solid #ffeaa7;
    border-radius: 15px;
    padding: 25px;
    margin: 30px 0;
}

.cookie-notice h5 {
    color: #856404;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.cookie-notice p {
    color: #856404;
    margin: 0;
    line-height: 1.6;
}

/* Cookie Settings Card */
.cookie-settings-card {
    background: linear-gradient(135deg, var(--islab-green) 0%, #004d2e 100%);
    color: white;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
}

.settings-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 1.5rem;
    color: var(--islab-orange);
}

.cookie-settings-card h5 {
    color: white;
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.cookie-settings-card p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.btn-settings {
    background: var(--islab-orange);
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    color: white;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-settings:hover {
    background: #e67e22;
    transform: translateY(-2px);
    color: white;
}

/* Cookies Sidebar */
.cookies-sidebar {
    position: sticky;
    top: 20px;
}

/* Responsive Design */
@media (max-width: 991.98px) {
    .cookies-hero {
        padding: 60px 0;
    }
    
    .cookies-title {
        font-size: 2.5rem;
    }
    
    .cookies-subtitle {
        font-size: 1.1rem;
    }
    
    .cookies-icon-container {
        width: 150px;
        height: 150px;
    }
    
    .cookies-icon-container i {
        font-size: 3rem;
    }
    
    .cookies-content {
        padding: 30px;
    }
    
    .category-header {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .third-party-item {
        flex-direction: column;
        text-align: center;
    }
    
    .storage-item {
        flex-direction: column;
        text-align: center;
    }
    
    .cookies-sidebar {
        position: static;
        margin-top: 30px;
    }
}

@media (max-width: 767.98px) {
    .cookies-hero {
        padding: 40px 0;
    }
    
    .cookies-title {
        font-size: 2rem;
    }
    
    .cookies-subtitle {
        font-size: 1rem;
    }
    
    .cookies-meta {
        flex-direction: column;
        gap: 15px;
    }
    
    .cookies-icon-container {
        width: 120px;
        height: 120px;
    }
    
    .cookies-icon-container i {
        font-size: 2.5rem;
    }
    
    .cookies-content {
        padding: 20px;
    }
    
    .category-header h4 {
        font-size: 1.1rem;
    }
    
    .category-content {
        padding: 20px;
    }
    
    .third-party-details {
        flex-direction: column;
        gap: 10px;
    }
    
    .browser-links {
        flex-direction: column;
    }
    
    .browser-link {
        justify-content: center;
    }
}

/* Responsividade para o campo de pesquisa */
@media (max-width: 768px) {
    .search-input-wrapper {
        border-radius: 12px;
        padding: 3px;
    }
    
    .search-icon-wrapper {
        width: 44px;
        height: 44px;
        border-radius: 10px;
    }
    
    .search-input {
        padding: 14px 16px;
        font-size: 0.95rem;
    }
    
    .clear-btn {
        width: 36px;
        height: 36px;
        border-radius: 8px;
    }
    
    .search-status {
        margin-top: 10px;
        padding: 6px 12px;
    }
    
    .search-count {
        font-size: 0.85rem;
    }
}

/* Responsividade para a seção de informações da unidade */
@media (max-width: 768px) {
    .info-item {
        padding: 1.25rem;
        gap: 1.25rem;
    }
    
    .info-icon {
        width: 56px;
        height: 56px;
        font-size: 1.2rem;
        border-radius: 16px;
    }
    
    .info-content h5 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .info-content p {
        font-size: 0.9rem;
    }
    
    .schedule-list {
        padding: 0.75rem;
        gap: 0.5rem;
    }
    
    .schedule-item {
        padding: 0.5rem 0.75rem;
    }
    
    .info-content .btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 575.98px) {
    .info-item {
        padding: 1rem;
        gap: 1rem;
        flex-direction: column;
        text-align: center;
    }
    
    .info-icon {
        width: 52px;
        height: 52px;
        font-size: 1.1rem;
        margin: 0 auto 0.5rem;
        border-radius: 14px;
    }
    
    .info-content h5 {
        font-size: 0.95rem;
        text-align: center;
    }
    
    .info-content p {
        font-size: 0.85rem;
        text-align: center;
    }
    
    .schedule-list {
        padding: 0.5rem;
    }
    
    .schedule-item {
        flex-direction: column;
        gap: 0.25rem;
        text-align: center;
    }
    
    .info-content .btn {
        width: 100%;
        margin-top: 0.5rem;
    }
    
    .search-input-wrapper {
        border-radius: 10px;
        padding: 2px;
    }
    
    .search-icon-wrapper {
        width: 40px;
        height: 40px;
        border-radius: 8px;
        margin-right: 6px;
    }
    
    .search-input {
        padding: 12px 14px;
        font-size: 0.9rem;
    }
    
    .clear-btn {
        width: 32px;
        height: 32px;
        border-radius: 6px;
        margin-left: 6px;
    }
    
    .search-status {
        margin-top: 8px;
        padding: 4px 10px;
    }
    
    .search-count {
        font-size: 0.8rem;
    }
    
    .cookies-title {
        font-size: 1.8rem;
    }
    
    .cookies-content {
        padding: 15px;
    }
    
    .category-header {
        padding: 15px;
    }
    
    .category-content {
        padding: 15px;
    }
    
    .third-party-item {
        padding: 20px;
    }
    
    .storage-item {
        padding: 20px;
    }
    
    .method-item {
        padding: 20px;
    }
}