/* Tema Qualificar - Azul Profissional */
:root {
    --cor-primaria: #0099CC !important;
    --cor-primaria-escura: #006699 !important;
    --cor-secundaria: #2C3E50 !important;
    --cor-secundaria-escura: #1A252F !important;
    --cor-destaque: #33B5E5 !important;
    --cor-clara: #E8F4F8 !important;
}

/* Barra de Acessibilidade */
.accessibility-bar {
    background: linear-gradient(135deg, #0099CC 0%, #006699 100%) !important;
    position: sticky !important;
    top: 0 !important;
    z-index: 1001 !important;
    transition: transform 0.3s ease !important;
}

/* Header e Navegação Moderna */
.main-header {
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(10px) !important;
    box-shadow: 0 4px 20px rgba(0, 153, 204, 0.1) !important;
    border-bottom: 2px solid rgba(0, 153, 204, 0.1) !important;
    transition: all 0.3s ease !important;
    position: sticky !important;
    top: 0 !important;
    z-index: 1000 !important;
}

.header-content {
    padding: 1rem 0 !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    min-height: 80px !important;
}

/* Quando rola a página, compactar o header */
.main-header.scrolled {
    box-shadow: 0 6px 25px rgba(0, 153, 204, 0.15) !important;
    border-bottom-color: rgba(0, 153, 204, 0.2) !important;
}

.main-header.scrolled .header-content {
    padding: 0.5rem 0 !important;
    min-height: 70px !important;
}

.main-header.scrolled .logo img {
    max-height: 50px !important;
}

/* Logo com efeito moderno */
.logo a {
    display: inline-block !important;
    transition: all 0.3s ease !important;
}

.logo img {
    filter: drop-shadow(0 2px 4px rgba(0, 153, 204, 0.2)) !important;
    transition: all 0.3s ease !important;
}

.logo a:hover img {
    filter: drop-shadow(0 4px 8px rgba(0, 153, 204, 0.4)) !important;
    transform: scale(1.05) !important;
}

/* Menu de Navegação Moderno */
.main-nav ul {
    display: flex !important;
    gap: 0.5rem !important;
    align-items: center !important;
}

.main-nav a {
    position: relative !important;
    padding: 0.75rem 1.5rem !important;
    color: #2C3E50 !important;
    font-weight: 500 !important;
    font-size: 0.95rem !important;
    text-decoration: none !important;
    border-radius: 25px !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    overflow: hidden !important;
}

/* Efeito de fundo animado */
.main-nav a::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: linear-gradient(135deg, #0099CC 0%, #33B5E5 100%) !important;
    opacity: 0 !important;
    transition: opacity 0.3s ease !important;
    z-index: -1 !important;
}

.main-nav a:hover::before,
.main-nav a.active::before {
    opacity: 1 !important;
}

.main-nav a:hover,
.main-nav a.active {
    color: white !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(0, 153, 204, 0.3) !important;
}

/* Indicador inferior animado */
.main-nav a::after {
    content: '' !important;
    position: absolute !important;
    bottom: 5px !important;
    left: 50% !important;
    transform: translateX(-50%) scaleX(0) !important;
    width: 60% !important;
    height: 2px !important;
    background: white !important;
    transition: transform 0.3s ease !important;
}

.main-nav a:hover::after,
.main-nav a.active::after {
    transform: translateX(-50%) scaleX(1) !important;
}

/* Efeito de brilho no hover */
.main-nav a:hover {
    box-shadow: 0 4px 15px rgba(0, 153, 204, 0.4), 
                0 0 20px rgba(51, 181, 229, 0.2) !important;
}

/* Menu Mobile Moderno */
.mobile-menu-toggle {
    display: none !important;
    flex-direction: column !important;
    gap: 5px !important;
    background: transparent !important;
    border: none !important;
    cursor: pointer !important;
    padding: 8px !important;
    border-radius: 8px !important;
    transition: all 0.3s ease !important;
}

.mobile-menu-toggle:hover {
    background: rgba(0, 153, 204, 0.1) !important;
}

.mobile-menu-toggle span {
    width: 28px !important;
    height: 3px !important;
    background: linear-gradient(135deg, #0099CC 0%, #33B5E5 100%) !important;
    border-radius: 3px !important;
    transition: all 0.3s ease !important;
}

.mobile-menu-toggle:hover span {
    background: linear-gradient(135deg, #006699 0%, #0099CC 100%) !important;
}

/* Animação do menu mobile */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex !important;
    }
    
    .main-nav {
        position: absolute !important;
        top: 100% !important;
        left: 0 !important;
        right: 0 !important;
        background: rgba(255, 255, 255, 0.98) !important;
        backdrop-filter: blur(10px) !important;
        box-shadow: 0 10px 30px rgba(0, 153, 204, 0.2) !important;
        max-height: 0 !important;
        overflow: hidden !important;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    }
    
    .main-nav.active {
        max-height: 500px !important;
        padding: 1rem 0 !important;
    }
    
    .main-nav ul {
        flex-direction: column !important;
        gap: 0.5rem !important;
        padding: 0 1rem !important;
    }
    
    .main-nav a {
        width: 100% !important;
        text-align: center !important;
        padding: 1rem !important;
    }
}

/* Header fixo com efeito de scroll */
.main-header.scrolled {
    box-shadow: 0 6px 25px rgba(0, 153, 204, 0.15) !important;
    border-bottom-color: rgba(0, 153, 204, 0.2) !important;
}

/* Animação de entrada do menu */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.main-nav ul li {
    animation: slideDown 0.3s ease forwards !important;
}

.main-nav ul li:nth-child(1) { animation-delay: 0.05s !important; }
.main-nav ul li:nth-child(2) { animation-delay: 0.1s !important; }
.main-nav ul li:nth-child(3) { animation-delay: 0.15s !important; }
.main-nav ul li:nth-child(4) { animation-delay: 0.2s !important; }
.main-nav ul li:nth-child(5) { animation-delay: 0.25s !important; }
.main-nav ul li:nth-child(6) { animation-delay: 0.3s !important; }
.main-nav ul li:nth-child(7) { animation-delay: 0.35s !important; }
.main-nav ul li:nth-child(8) { animation-delay: 0.4s !important; }

/* Botões */
.btn-primary {
    background: linear-gradient(135deg, #0099CC 0%, #006699 100%) !important;
    box-shadow: 0 4px 15px rgba(0, 153, 204, 0.3) !important;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #33B5E5 0%, #0099CC 100%) !important;
    box-shadow: 0 6px 20px rgba(0, 153, 204, 0.5) !important;
    transform: translateY(-2px) !important;
}

.btn-secondary {
    color: #0099CC !important;
    border-color: #0099CC !important;
}

.btn-secondary:hover {
    background: #0099CC !important;
    color: white !important;
}

.btn-link {
    color: #0099CC !important;
}

.btn-link:hover {
    color: #006699 !important;
}

/* Slider */
.slider {
    background: linear-gradient(135deg, #6B7FD7 0%, #8B5FBF 100%) !important;
    min-height: 380px !important;
    height: 380px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.slide {
    width: 100% !important;
    height: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.slide img {
    display: none !important;
}

.slide-content {
    text-shadow: none !important;
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    background: rgba(75, 85, 130, 0.6) !important;
    backdrop-filter: blur(10px) !important;
    border-radius: 12px !important;
    padding: 2.5rem 4rem !important;
    max-width: 650px !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2) !important;
    border: none !important;
    position: relative !important;
    top: auto !important;
    left: auto !important;
    transform: none !important;
}

.slide-content h2 {
    text-align: center !important;
    width: 100% !important;
    font-size: 2.5rem !important;
    font-weight: 700 !important;
    margin-bottom: 1rem !important;
    line-height: 1.2 !important;
    color: #2C3E50 !important;
    text-shadow: none !important;
}

.slide-content p {
    text-align: center !important;
    width: 100% !important;
    font-size: 1rem !important;
    margin-bottom: 1.5rem !important;
    color: white !important;
    font-weight: 400 !important;
    line-height: 1.5 !important;
}

.slide-content .btn-primary {
    background: #0099CC !important;
    padding: 0.75rem 2rem !important;
    font-size: 0.95rem !important;
    font-weight: 600 !important;
    border-radius: 6px !important;
    box-shadow: 0 4px 12px rgba(0, 153, 204, 0.3) !important;
    transition: all 0.3s ease !important;
    text-transform: none !important;
}

.slide-content .btn-primary:hover {
    background: #007AA3 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 16px rgba(0, 153, 204, 0.4) !important;
}

/* Esconder controles do slider */
.slider-prev,
.slider-next {
    display: none !important;
}

/* Responsivo para slider */
@media (max-width: 768px) {
    .slider {
        min-height: 320px !important;
        height: 320px !important;
    }
    
    .slide-content {
        padding: 2rem 2.5rem !important;
        max-width: 90% !important;
    }
    
    .slide-content h2 {
        font-size: 1.8rem !important;
    }
    
    .slide-content p {
        font-size: 0.9rem !important;
    }
}

/* Seções */
.sobre-resumo h2,
.cursos-destaque h2,
.beneficios h2,
.ultimas-noticias h2,
.galeria-destaque h2,
.proximos-eventos h2,
.depoimentos h2 {
    color: #0099CC !important;
    position: relative !important;
    padding-bottom: 15px !important;
}

.sobre-resumo h2::after,
.cursos-destaque h2::after,
.beneficios h2::after,
.ultimas-noticias h2::after,
.galeria-destaque h2::after,
.proximos-eventos h2::after,
.depoimentos h2::after {
    content: '' !important;
    position: absolute !important;
    bottom: 0 !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: 80px !important;
    height: 4px !important;
    background: linear-gradient(90deg, #0099CC 0%, #33B5E5 100%) !important;
    border-radius: 2px !important;
}

/* Cards de Curso */
.curso-card {
    border-top: 4px solid #0099CC !important;
    transition: all 0.3s ease !important;
}

.curso-card:hover {
    border-top-color: #33B5E5 !important;
    box-shadow: 0 8px 25px rgba(0, 153, 204, 0.25) !important;
    transform: translateY(-5px) !important;
}

.carga-horaria {
    color: #0099CC !important;
    font-weight: 700 !important;
}

/* Benefícios - Design Minimalista Moderno */
.beneficios {
    background: linear-gradient(180deg, #ffffff 0%, #f8fbfd 100%) !important;
    padding: 5rem 0 !important;
}

.beneficio-icon {
    background: rgba(0, 153, 204, 0.06) !important;
    border: 1px solid rgba(0, 153, 204, 0.1) !important;
    box-shadow: none !important;
}

.beneficio-item {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    padding: 2.5rem 1.5rem !important;
    border-radius: 20px !important;
    background: white !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04) !important;
    border: 1px solid rgba(0, 153, 204, 0.08) !important;
    position: relative !important;
    overflow: hidden !important;
}

.beneficio-item::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    height: 3px !important;
    background: linear-gradient(90deg, #0099CC, #33B5E5) !important;
    transform: scaleX(0) !important;
    transform-origin: left !important;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.beneficio-item:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 12px 24px rgba(0, 153, 204, 0.12) !important;
    border-color: rgba(0, 153, 204, 0.2) !important;
}

.beneficio-item:hover::before {
    transform: scaleX(1) !important;
}

.beneficio-item:hover .beneficio-icon {
    background: rgba(0, 153, 204, 0.1) !important;
    border-color: rgba(0, 153, 204, 0.2) !important;
}

.beneficio-item h3 {
    color: #2C3E50 !important;
    font-size: 1.15rem !important;
    font-weight: 600 !important;
    margin-bottom: 0.75rem !important;
    transition: color 0.3s ease !important;
}

.beneficio-item:hover h3 {
    color: #0099CC !important;
}

.beneficio-item p {
    color: #64748b !important;
    font-size: 0.95rem !important;
    line-height: 1.6 !important;
}

.beneficio-item:hover {
    transform: translateY(-10px) !important;
    box-shadow: 0 10px 30px rgba(0, 153, 204, 0.2) !important;
}

/* Estatísticas */
.estatisticas {
    background: linear-gradient(135deg, #0099CC 0%, #006699 100%) !important;
    position: relative !important;
    overflow: hidden !important;
}

.estatisticas::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="40" fill="rgba(255,255,255,0.05)"/></svg>') !important;
    opacity: 0.3 !important;
}

/* Eventos */
.evento-data,
.evento-data-box {
    background: linear-gradient(135deg, #0099CC 0%, #006699 100%) !important;
    box-shadow: 0 4px 10px rgba(0, 153, 204, 0.3) !important;
}

.evento-card:hover {
    box-shadow: 0 8px 20px rgba(0, 153, 204, 0.25) !important;
    transform: translateY(-3px) !important;
}

.status-programado {
    background: #E8F4F8 !important;
    color: #006699 !important;
    font-weight: 600 !important;
}

/* Galeria */
.galeria-overlay {
    background: linear-gradient(to top, rgba(0, 153, 204, 0.95), rgba(0, 102, 153, 0.7), transparent) !important;
}

.galeria-card:hover {
    box-shadow: 0 10px 30px rgba(0, 153, 204, 0.35) !important;
    transform: scale(1.02) !important;
}

/* Depoimentos */
.depoimento-foto img {
    border-color: #0099CC !important;
    box-shadow: 0 4px 10px rgba(0, 153, 204, 0.2) !important;
}

.depoimento-stars {
    color: #FFB300 !important;
}

.depoimento-card {
    border-top: 3px solid #0099CC !important;
}

.depoimento-card:hover {
    box-shadow: 0 8px 20px rgba(0, 153, 204, 0.2) !important;
    transform: translateY(-5px) !important;
}

.depoimento-curso {
    color: #0099CC !important;
    font-weight: 600 !important;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #0099CC 0%, #006699 100%) !important;
    position: relative !important;
    overflow: hidden !important;
}

.page-header::before {
    content: '' !important;
    position: absolute !important;
    top: -50% !important;
    right: -10% !important;
    width: 500px !important;
    height: 500px !important;
    background: rgba(255, 255, 255, 0.1) !important;
    border-radius: 50% !important;
}

/* Footer */
.main-footer {
    background: linear-gradient(135deg, #2C3E50 0%, #1A252F 100%) !important;
}

.main-footer h3 {
    color: #0099CC !important;
}

.main-footer a:hover {
    color: #33B5E5 !important;
}

/* Notícias */
.noticia-card {
    border-left: 4px solid transparent !important;
    transition: all 0.3s ease !important;
}

.noticia-card:hover {
    border-left-color: #0099CC !important;
    box-shadow: 0 8px 25px rgba(0, 153, 204, 0.25) !important;
    transform: translateX(5px) !important;
}

.noticia-data {
    color: #0099CC !important;
    font-weight: 600 !important;
}

/* Forms */
input:focus,
textarea:focus,
select:focus {
    border-color: #0099CC !important;
    box-shadow: 0 0 0 3px rgba(0, 153, 204, 0.15) !important;
    outline: none !important;
}

/* Links */
a {
    color: #0099CC;
    transition: all 0.3s ease;
}

a:hover {
    color: #006699;
}

/* Badges e Status */
.badge {
    background: #0099CC !important;
    color: white !important;
    padding: 5px 12px !important;
    border-radius: 20px !important;
    font-weight: 600 !important;
}

.badge-ativo {
    background: #0099CC !important;
}

.badge-destaque {
    background: #33B5E5 !important;
}

.badge-inativo {
    background: #95A5A6 !important;
}

/* Animações e Transições */
.curso-card,
.evento-card,
.galeria-card,
.noticia-card,
.depoimento-card {
    transition: all 0.3s ease;
}

/* Responsivo - Ajustes para mobile */
@media (max-width: 768px) {
    .logo img {
        max-height: 45px;
    }
    
    .main-nav {
        background: linear-gradient(135deg, #00BCD4 0%, #FF9800 100%);
    }
}

/* Scrollbar personalizada */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #E8F4F8;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #0099CC 0%, #006699 100%);
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #33B5E5 0%, #0099CC 100%);
}

/* Seleção de texto */
::selection {
    background: #0099CC;
    color: white;
}

::-moz-selection {
    background: #0099CC;
    color: white;
}

/* Efeitos adicionais */
.container {
    position: relative;
}

/* Animação de entrada */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.curso-card,
.evento-card,
.galeria-card,
.noticia-card,
.depoimento-card {
    animation: fadeInUp 0.6s ease-out;
}

/* Destaque em foco */
*:focus-visible {
    outline: 3px solid #0099CC !important;
    outline-offset: 2px !important;
}


/* ========================================
   SEÇÃO MISSÃO, VISÃO E VALORES - MODERNA
   ======================================== */

.valores-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin: 3rem 0;
}

.valor-item {
    background: linear-gradient(135deg, #ffffff 0%, #f8fbfd 100%);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    box-shadow: 0 10px 40px rgba(0, 153, 204, 0.08);
    border: 2px solid rgba(0, 153, 204, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

/* Efeito de brilho no hover */
.valor-item::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(0, 153, 204, 0.05),
        transparent
    );
    transform: rotate(45deg);
    transition: all 0.6s ease;
}

.valor-item:hover::before {
    left: 100%;
}

.valor-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 153, 204, 0.15);
    border-color: rgba(0, 153, 204, 0.3);
}

/* Ícone moderno com gradiente */
.valor-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #0099CC 0%, #33B5E5 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(0, 153, 204, 0.25);
    transition: all 0.4s ease;
    position: relative;
}

/* Efeito de pulso no ícone */
.valor-icon::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    background: linear-gradient(135deg, #0099CC 0%, #33B5E5 100%);
    opacity: 0;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.3;
    }
}

.valor-item:hover .valor-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 35px rgba(0, 153, 204, 0.35);
}

.valor-icon svg {
    width: 40px;
    height: 40px;
    color: #ffffff;
    stroke-width: 2.5;
    position: relative;
    z-index: 1;
}

/* Título do card */
.valor-item h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0099CC;
    margin-bottom: 1rem;
    text-align: center;
    position: relative;
    padding-bottom: 0.75rem;
}

/* Linha decorativa sob o título */
.valor-item h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #0099CC, transparent);
    border-radius: 2px;
}

/* Texto do card */
.valor-item p {
    color: #2C3E50;
    line-height: 1.8;
    font-size: 1rem;
    text-align: center;
}

/* Lista de valores */
.valor-item ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.valor-item ul li {
    color: #2C3E50;
    padding: 0.75rem 0;
    font-size: 1rem;
    line-height: 1.6;
    position: relative;
    padding-left: 2rem;
    transition: all 0.3s ease;
}

.valor-item ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #0099CC;
    font-weight: bold;
    font-size: 1.2rem;
    width: 24px;
    height: 24px;
    background: rgba(0, 153, 204, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.valor-item ul li:hover {
    padding-left: 2.5rem;
    color: #0099CC;
}

.valor-item ul li:hover::before {
    background: #0099CC;
    color: #ffffff;
    transform: scale(1.2);
}

/* Responsividade */
@media (max-width: 768px) {
    .valores-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .valor-item {
        padding: 2rem 1.5rem;
    }
    
    .valor-icon {
        width: 70px;
        height: 70px;
    }
    
    .valor-icon svg {
        width: 35px;
        height: 35px;
    }
    
    .valor-item h3 {
        font-size: 1.3rem;
    }
}

/* Animação de entrada */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.valor-item {
    animation: fadeInUp 0.6s ease forwards;
}

.valor-item:nth-child(1) {
    animation-delay: 0.1s;
}

.valor-item:nth-child(2) {
    animation-delay: 0.2s;
}

.valor-item:nth-child(3) {
    animation-delay: 0.3s;
}


/* ========================================
   SLIDER/BANNER MODERNO - ESTILO TRANSFORMAÇÃO DIGITAL
   ======================================== */

.slider {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    background: #000;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

.slide img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Overlay escuro sobre a imagem */
.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 153, 204, 0.7) 0%,
        rgba(44, 62, 80, 0.8) 100%
    );
    z-index: 1;
}

/* Conteúdo do slide - centralizado com card */
.slide-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    text-align: center;
    animation: slideInUp 0.8s ease-out;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0099CC;
    margin-bottom: 1rem;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.slide-content p {
    font-size: 1.2rem;
    color: #2C3E50;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.slide-content .btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #0099CC 0%, #006699 100%);
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 153, 204, 0.3);
    border: none;
    cursor: pointer;
}

.slide-content .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 153, 204, 0.4);
    background: linear-gradient(135deg, #006699 0%, #004466 100%);
}

/* Controles do slider - modernos e discretos */
.slider-prev,
.slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(255, 255, 255, 0.9);
    color: #0099CC;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.slider-prev:hover,
.slider-next:hover {
    background: #0099CC;
    color: #ffffff;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 153, 204, 0.4);
}

.slider-prev {
    left: 2rem;
}

.slider-next {
    right: 2rem;
}

/* Indicadores de slide (dots) */
.slider-dots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 0.75rem;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.8);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: #0099CC;
    border-color: #0099CC;
    transform: scale(1.3);
}

.slider-dot:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

/* Responsividade do slider */
@media (max-width: 1024px) {
    .slider {
        height: 450px;
    }
    
    .slide-content {
        max-width: 600px;
        padding: 2.5rem;
    }
    
    .slide-content h2 {
        font-size: 2rem;
    }
    
    .slide-content p {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .slider {
        height: 400px;
    }
    
    .slide-content {
        max-width: 90%;
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }
    
    .slide-content h2 {
        font-size: 1.75rem;
    }
    
    .slide-content p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .slide-content .btn-primary {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
    
    .slider-prev,
    .slider-next {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .slider-prev {
        left: 1rem;
    }
    
    .slider-next {
        right: 1rem;
    }
}

@media (max-width: 480px) {
    .slider {
        height: 350px;
    }
    
    .slide-content {
        padding: 1.5rem 1rem;
    }
    
    .slide-content h2 {
        font-size: 1.5rem;
    }
    
    .slide-content p {
        font-size: 0.95rem;
    }
    
    .slider-prev,
    .slider-next {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
}

/* Animação de transição entre slides */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.slide.active .slide-content {
    animation: slideInUp 0.8s ease-out;
}

/* Efeito parallax suave na imagem */
.slide.active img {
    animation: zoomIn 10s ease-out forwards;
}

@keyframes zoomIn {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(1.05);
    }
}
