/* ==================== PARTICLES BACKGROUND ==================== */
#particles-js {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    background: linear-gradient(135deg, #00B5E2 0%, #4DD0E1 50%, #0096BF 100%);
    opacity: 0.05;
}

/* ==================== HERO CAROUSEL STYLES ==================== */
.hero {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

.hero-swiper {
    height: 100vh;
}

.hero-slide {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 100px 0 120px;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}

/* Overlay escuro sutil para legibilidade */
.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 1;
}

/* Overlay elegante com gradiente suave */
.hero-slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.1) 0%,
        transparent 30%,
        transparent 70%,
        rgba(0, 0, 0, 0.15) 100%
    );
    z-index: 2;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 10;
    animation: fadeInUp 1s ease-out;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 50px;
    color: white;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: white;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 
        0 2px 10px rgba(0, 0, 0, 0.3),
        0 4px 20px rgba(0, 0, 0, 0.2),
        0 8px 40px rgba(0, 0, 0, 0.1);
}

.hero-title .highlight {
    background: linear-gradient(135deg, #fff 0%, rgba(255,255,255,0.95) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.3));
}

.hero-description {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(255, 255, 255, 0.95);
    max-width: 600px;
    margin-bottom: 2rem;
    line-height: 1.6;
    text-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.3),
        0 4px 16px rgba(0, 0, 0, 0.2);
    font-weight: 400;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    line-height: 1;
    text-shadow: 
        0 2px 10px rgba(0, 0, 0, 0.4),
        0 4px 20px rgba(0, 0, 0, 0.3);
}

.stat-label {
    display: block;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.95);
    margin-top: 0.5rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    font-weight: 500;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: white;
    font-size: 1rem;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    font-weight: 500;
}

.feature i {
    font-size: 1.25rem;
    color: #FFB74D;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

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

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 5;
}

.hero-wave svg {
    display: block;
    width: 100%;
    height: auto;
}

/* Swiper Navigation */
.swiper-button-next,
.swiper-button-prev {
    color: white !important;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 20px;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: white;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    width: 30px;
    border-radius: 6px;
}

/* ==================== DROPDOWN MENU ==================== */
.nav-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    min-width: 500px;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
    margin-top: 1rem;
    z-index: 1000;
}

.dropdown-menu.show {
    display: flex;
    opacity: 1;
    gap: 2rem;
}

.dropdown-section {
    flex: 1;
}

.dropdown-section h4 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--border-color);
}

.dropdown-section h4 i {
    color: var(--primary-color);
}

.dropdown-section a {
    display: block;
    padding: 0.5rem 0.75rem;
    color: var(--text-secondary);
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-size: 0.875rem;
}

.dropdown-section a:hover {
    background: var(--bg-secondary);
    color: var(--primary-color);
    transform: translateX(5px);
}

/* ==================== CURSO BADGES ==================== */
.curso-card {
    position: relative;
    overflow: visible;
}

.curso-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.375rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    z-index: 10;
}

.curso-badge:not(.ead-badge) {
    background: linear-gradient(135deg, #00B5E2 0%, #0096BF 100%);
    color: white;
}

.curso-badge.ead-badge {
    background: linear-gradient(135deg, #66D4F1 0%, #4DD0E1 100%);
    color: white;
}

.curso-card.presencial {
    border-top: 3px solid #00B5E2;
}

.curso-card.ead {
    border-top: 3px solid #66D4F1;
}

/* ==================== SECTION BADGES ==================== */
.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-badge.ead {
    background: linear-gradient(135deg, #66D4F1 0%, #4DD0E1 100%);
}

.section-badge i {
    font-size: 1rem;
}

/* ==================== CURSOS EAD SECTION ==================== */
.cursos-ead {
    background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
}

/* ==================== DEPOIMENTOS CAROUSEL ==================== */
.depoimentos {
    background: linear-gradient(135deg, #00B5E2 0%, #0096BF 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.depoimentos .section-title,
.depoimentos .section-subtitle {
    color: white;
}

.depoimentos-swiper {
    padding: 2rem 0 4rem;
}

.depoimento-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: 100%;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.depoimento-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.depoimento-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 181, 226, 0.15);
}

.depoimento-card:hover::before {
    transform: scaleX(1);
}

.depoimento-rating {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
    color: #FFB74D;
}

.depoimento-text {
    flex: 1;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.depoimento-card:hover .depoimento-text {
    color: var(--text-primary);
}

.depoimento-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.depoimento-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--border-light);
    transition: all 0.3s ease;
}

.depoimento-card:hover .depoimento-author img {
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.author-info h4 {
    font-size: 1rem;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.author-info p {
    font-size: 0.875rem;
    color: var(--text-light);
}

/* ==================== POR QUE IBSA SECTION ==================== */
.por-que-ibsa {
    padding: 6rem 0;
    background: url('https://images.unsplash.com/photo-1576091160399-112ba8d25d1d?w=1920&q=80') center/cover fixed;
    position: relative;
}

/* Overlay escuro sutil sobre a imagem médica */
.por-que-ibsa::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.45) 100%);
    z-index: 0;
    pointer-events: none;
}

/* Overlay elegante com gradiente radial sutil */
.por-que-ibsa::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(
        ellipse at center,
        rgba(255, 255, 255, 0.05) 0%,
        transparent 70%
    );
    pointer-events: none;
    z-index: 1;
}

.por-que-ibsa .container {
    position: relative;
    z-index: 2;
}

/* Header da seção com fundo verde */
.por-que-ibsa .section-header {
    margin-bottom: 4rem;
    padding-bottom: 3rem;
    position: relative;
}

/* Linha decorativa após o header */
.por-que-ibsa .section-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
    border-radius: 2px;
}

.por-que-ibsa .section-header .section-title {
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3),
                 0 4px 20px rgba(0, 0, 0, 0.2);
}

.por-que-ibsa .section-header .section-subtitle {
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto;
}

/* Badge Destaque */
.badge-destaque {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15),
                0 8px 24px rgba(0, 0, 0, 0.1);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.badge-destaque i {
    font-size: 1rem;
    animation: pulse 2s infinite;
}

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

/* Grid de Benefícios */
.beneficios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
    margin-bottom: 4rem;
}

.beneficio-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15),
                0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.beneficio-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, #00B5E2 0%, #0096BF 100%);
    transform: scaleY(0);
    transition: transform 0.4s ease;
}

.beneficio-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2),
                0 15px 30px rgba(180, 201, 224, 0.15),
                0 8px 16px rgba(0, 0, 0, 0.1);
    border-color: rgba(180, 201, 224, 0.5);
}

.beneficio-card:hover::before {
    transform: scaleY(1);
}

/* Card em Destaque */
.card-destaque {
    background: linear-gradient(135deg, #ffffff 0%, #eff6ff 100%);
    border: 3px solid #00B5E2;
    box-shadow: 0 8px 24px rgba(180, 201, 224, 0.12);
}

.card-destaque-secundario {
    background: linear-gradient(135deg, #ffffff 0%, #E0F7FA 100%);
    border-color: #FFB74D;
}

/* Ícone do Benefício */
.beneficio-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #00B5E2 0%, #0096BF 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 6px 20px rgba(180, 201, 224, 0.3);
    transition: all 0.3s ease;
}

.beneficio-card:hover .beneficio-icon {
    transform: rotateY(360deg);
    box-shadow: 0 8px 28px rgba(180, 201, 224, 0.4);
}

.beneficio-icon i {
    font-size: 2rem;
    color: white;
}

/* Título e Texto */
.beneficio-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #92a8c8;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.beneficio-card p {
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.beneficio-card strong {
    color: #b4c9e0;
    font-weight: 700;
}

/* Mini Lista */
.mini-lista {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.mini-lista li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #374151;
    padding: 0.5rem 0;
    font-size: 0.95rem;
}

.mini-lista i {
    color: #b4c9e0;
    font-size: 1rem;
}

/* Social Proof */
.social-proof {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: #eff6ff;
    border-radius: 10px;
    margin-top: 1.5rem;
    border-left: 4px solid #b4c9e0;
}

.social-proof i {
    color: #b4c9e0;
    font-size: 1.5rem;
}

.social-proof span {
    color: #92a8c8;
    font-size: 0.9rem;
}

/* Destaque Número */
.destaque-numero {
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
    padding: 1.25rem;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border-radius: 12px;
    margin-top: 1.5rem;
}

.destaque-numero .numero {
    font-size: 3rem;
    font-weight: 800;
    color: #b4c9e0;
    line-height: 1;
}

.destaque-numero .texto {
    color: #92a8c8;
    font-weight: 600;
    font-size: 0.95rem;
}

/* Badges */
.badge-vantagem,
.badge-novo {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-top: 1rem;
}

.badge-vantagem {
    background: #dbeafe;
    color: #b4c9e0;
}

.badge-novo {
    background: linear-gradient(135deg, #26A69A 0%, #4DD0E1 100%);
    color: white;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(247, 194, 151, 0.4);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Resultados IBSA */
.resultados-ibsa {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    margin: 4rem 0;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15),
                0 8px 25px rgba(0, 0, 0, 0.1);
}

.resultado-header {
    text-align: center;
    margin-bottom: 3rem;
}

.resultado-header h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #92a8c8;
    margin-bottom: 0.5rem;
}

.resultado-header p {
    color: #6b7280;
    font-size: 1.125rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(240px, 100%), 1fr));
    gap: clamp(1rem, 3vw, 2rem);
}

.stat-card {
    text-align: center;
    padding: clamp(1.5rem, 3vw, 2rem);
    background: linear-gradient(135deg, #f9fafb 0%, #eff6ff 100%);
    border-radius: clamp(12px, 2vw, 16px);
    border: 2px solid #e5e7eb;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: #b4c9e0;
    box-shadow: 0 12px 28px rgba(180, 201, 224, 0.15);
}

.stat-icon {
    width: clamp(50px, 8vw, 60px);
    height: clamp(50px, 8vw, 60px);
    background: linear-gradient(135deg, #00B5E2 0%, #0096BF 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto clamp(1rem, 2vw, 1.5rem);
}

.stat-icon i {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    color: white;
}

.stat-numero {
    font-size: clamp(1.25rem, 4vw, 1.75rem);
    font-weight: 700;
    color: #00B5E2;
    line-height: 1.2;
    margin-bottom: clamp(0.5rem, 1vw, 0.75rem);
}

.stat-texto {
    color: #374151;
    font-weight: 500;
    font-size: clamp(0.875rem, 2vw, 1rem);
    line-height: 1.5;
}

/* CTA Inline */
.cta-inline {
    background: linear-gradient(135deg, #92a8c8 0%, #0f172a 100%);
    padding: 3rem;
    border-radius: 20px;
    margin: 4rem 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2),
                0 8px 20px rgba(0, 0, 0, 0.15);
}

.cta-inline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.08) 0%,
        rgba(255, 255, 255, 0.02) 50%,
        rgba(255, 255, 255, 0.08) 100%
    );
}

.cta-inline-content {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.cta-inline-text h3 {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.cta-inline-text p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.125rem;
    line-height: 1.6;
}

.urgencia {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: #FFB74D;
    color: #78350f;
    border-radius: 6px;
    font-weight: 700;
    font-size: 1rem;
    margin-left: 0.5rem;
}

.cta-inline-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.certificacao-badge {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    margin-top: 2rem;
    transition: all 0.3s ease;
}

.certificacao-badge:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.02);
}

.certificacao-badge i {
    font-size: 2.5rem;
    color: #FFB74D;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.certificacao-badge div {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.certificacao-badge strong {
    color: white;
    font-size: 1.125rem;
    font-weight: 700;
}

.certificacao-badge span {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

/* Depoimento Destaque */
.depoimento-destaque {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15),
                0 8px 25px rgba(0, 0, 0, 0.1);
    position: relative;
    margin-top: 4rem;
}

.depoimento-aspas {
    position: absolute;
    top: -20px;
    left: 3rem;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #00B5E2 0%, #0096BF 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(180, 201, 224, 0.3);
}

.depoimento-aspas i {
    font-size: 1.75rem;
    color: white;
}

.depoimento-destaque blockquote {
    font-size: 1.375rem;
    line-height: 1.7;
    color: #1f2937;
    font-style: italic;
    margin: 2rem 0 2.5rem;
    padding-left: 1rem;
    border-left: 4px solid #b4c9e0;
}

.depoimento-autor {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.depoimento-autor img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #b4c9e0;
}

.autor-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.autor-info strong {
    color: #92a8c8;
    font-size: 1.125rem;
}

.autor-info span {
    color: #6b7280;
    font-size: 0.95rem;
}

.rating {
    display: flex;
    gap: 0.25rem;
    margin-top: 0.5rem;
}

.rating i {
    color: #FFB74D;
    font-size: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
    .beneficios-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-inline-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-inline-buttons {
        width: 100%;
        flex-direction: column;
    }
    
    .cta-inline-buttons .btn {
        width: 100%;
    }
    
    .depoimento-autor {
        flex-direction: column;
        text-align: center;
    }
}

/* ==================== CTA SECTION ==================== */
.cta {
    background: linear-gradient(135deg, #00B5E2 0%, #0096BF 100%);
    padding: 5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::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 1200 120"><path fill="rgba(255,255,255,0.1)" d="M321.39,56.44c58-10.79,114.16-30.13,172-41.86,82.39-16.72,168.19-17.73,250.45-.39C823.78,31,906.67,72,985.66,92.83c70.05,18.48,146.53,26.09,214.34,3V0H0V27.35A600.21,600.21,0,0,0,321.39,56.44Z"></path></svg>') no-repeat center;
    background-size: cover;
    opacity: 0.3;
}

.cta-content {
    position: relative;
    z-index: 10;
}

.cta h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: white;
    margin-bottom: 1rem;
    font-weight: 800;
}

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

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Button large movido para style.css - Sistema unificado */

/* ==================== BACK TO TOP BUTTON ==================== */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(180, 201, 224, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
}

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

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(180, 201, 224, 0.5);
}

/* ==================== ANIMATIONS ==================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-in {
    animation: fadeInUp 0.6s ease-out;
}

/* ==================== HEADER SCROLLED STATE ==================== */
.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.header {
    transition: all 0.3s ease;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 768px) {
    .hero-slide {
        padding: 80px 0 100px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-stats {
        gap: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .dropdown-menu {
        position: fixed;
        top: auto;
        left: 0;
        right: 0;
        bottom: 0;
        transform: none;
        min-width: auto;
        border-radius: 20px 20px 0 0;
        flex-direction: column;
        max-height: 80vh;
        overflow-y: auto;
    }
    
    .swiper-button-next,
    .swiper-button-prev {
        display: none;
    }
    
    .cta h2 {
        font-size: 1.75rem;
    }
    
    .cta p {
        font-size: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn-large {
        width: 100%;\n        display: flex;
    }
}

/* ==================== CURSO DESTAQUE E PÚBLICO ==================== */
.curso-destaque {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem;
    background: #f9fafb;
    border-radius: 8px;
    margin: 1rem 0;
    color: #b4c9e0;
    font-weight: 600;
    font-size: 0.9rem;
}

.curso-destaque i {
    color: #26A69A;
}

.curso-publico {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #6b7280;
    font-size: 0.9rem;
    font-weight: 500;
}

.curso-publico i {
    color: #b4c9e0;
}

/* ==================== DIFERENCIAIS SECTION ==================== */
.diferenciais {
    padding: 5rem 0;
    background: #f9fafb;
    position: relative;
}

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

.diferencial-item {
    text-align: center;
    padding: 2rem;
    background: #f9fafb;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.diferencial-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    background: white;
    border-color: #b4c9e0;
}

.diferencial-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #00B5E2 0%, #0096BF 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.diferencial-icon i {
    font-size: 2.5rem;
    color: white;
}

.diferencial-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.75rem;
}

.diferencial-item p {
    color: #6b7280;
    line-height: 1.6;
    font-size: 0.9375rem;
}

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