/* ===== RESET E BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: #fff;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== MENU INFERIOR ===== */
.menu-inferior {
    display: none; /* Esconde por padrão (desktop) */
}

@media (max-width: 767px) {
    .menu-inferior {
        display: block; /* Mostra apenas no mobile */
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
        border-top: 1px solid rgba(255, 255, 255, 0.2);
        z-index: 1000;
        padding: 12px 0;
        transition: all 0.3s ease;
        box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.1);
    }
    
    .btn-participar {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: white;
        border: none;
        padding: 14px 24px;
        border-radius: 50px;
        font-size: 14px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        min-height: 48px;
        display: block;
        width: 85%;
        max-width: 300px;
        margin: 0 auto;
        text-decoration: none;
        position: relative;
        overflow: hidden;
        box-shadow: 0 6px 20px rgba(102, 126, 234, 0.2);
    }
    
    .btn-participar::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
        transition: left 0.5s;
    }
    
    .btn-participar:hover::before {
        left: 100%;
    }
    
    .btn-participar:hover {
        transform: translateY(-3px) scale(1.05);
        box-shadow: 0 15px 35px rgba(102, 126, 234, 0.4);
    }
}

@media (max-width: 767px) {
    .header-fixo {
        padding: 4px 0;
    }
    
    .logo h2 {
        font-size: 12px;
    }
    
    .desktop-text {
        display: none;
    }
    
    .mobile-text {
        display: inline;
    }
    
    .header-content .btn-primary {
        font-size: 12px;
        padding: 8px 16px;
        min-height: 40px;
    }
}

.desktop-text {
    display: inline;
}

.mobile-text {
    display: none;
}

.header-fixo.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@media (max-width: 767px) {
    .header-content {
        gap: 10px;
    }
}

.logo h2 {
    font-size: 24px;
    font-weight: 800;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
}

/* ===== BOTÕES PREMIUM ===== */
.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    min-height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.2);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.4);
}

.btn-hero {
    font-size: 18px;
    padding: 20px 40px;
    margin-top: 40px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

@media (max-width: 767px) {
    .btn-hero {
        font-size: 16px;
        padding: 16px 32px;
        margin-top: 30px;
    }
}

/* ===== HERO SECTION PREMIUM ===== */
.hero {
    padding: 140px 0 100px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

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

.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="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.2;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-title {
    font-size: 32px;
    font-weight: 800;
    color: white;
    margin-bottom: 32px;
    line-height: 1.2;
    letter-spacing: -1px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 50px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    font-weight: 400;
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 24px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
}

.video-container {
    margin: 50px 0;
    position: relative;
}

.video-placeholder {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: white;
    padding: 80px 40px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
}

.video-placeholder:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.video-placeholder i {
    font-size: 64px;
    color: #ffd700;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.mini-prova {
    margin: 40px 0;
}

.selo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 16px 28px;
    border-radius: 50px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    font-weight: 700;
    color: #1a1a1a;
    border: 1px solid rgba(102, 126, 234, 0.1);
    transition: all 0.3s ease;
}

@media (max-width: 767px) {
    .selo {
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .selo i {
        font-size: 16px;
    }
}

.selo:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.selo i {
    color: #667eea;
    font-size: 20px;
}

/* ===== SEÇÕES GERAIS PREMIUM ===== */
section {
    padding: 80px 0;
    position: relative;
}

section:nth-child(even) {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

section:nth-child(even) h2 {
    color: white;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

/* ===== SEÇÃO DE BENEFÍCIOS DESTAQUE ===== */
.beneficios-destaque {
    background: white;
    color: #1a1a1a;
    padding: 100px 0;
    position: relative;
}

.beneficios-destaque h2 {
    color: #1a1a1a;
    text-shadow: none;
    margin-bottom: 60px;
    font-size: 36px;
    font-weight: 800;
    text-align: center;
}

.beneficios-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .beneficios-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (min-width: 1024px) {
    .beneficios-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

.beneficio-item {
    text-align: center;
    padding: 50px 30px;
    border-radius: 15px;
    background: white;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
    position: relative;
    height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.beneficio-item:hover {
    transform: translateY(-8px);
    border-color: #667eea;
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.15);
}

.beneficio-icon {
    margin-bottom: 20px;
}

.beneficio-icon i {
    font-size: 40px;
    color: #667eea;
    transition: all 0.3s ease;
}

.beneficio-item:hover .beneficio-icon i {
    transform: scale(1.1);
    color: #764ba2;
}

.beneficio-item h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
    line-height: 1.3;
    letter-spacing: -0.3px;
}

.beneficio-item p {
    font-size: 15px;
    color: #666;
    line-height: 1.5;
    font-weight: 400;
    margin: 0;
}

/* ===== SEÇÃO DA ESCADA DE GESTÃO ===== */
.escada-gestao {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 100px 0;
    position: relative;
}

.escada-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.escada-texto {
    margin-bottom: 60px;
}

.escada-texto h2 {
    font-size: 32px;
    font-weight: 700;
    color: white;
    margin-bottom: 30px;
    line-height: 1.3;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.escada-texto .destaque {
    font-size: 24px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    line-height: 1.4;
}

.escada-texto .destaque strong {
    color: #ffd700;
    font-weight: 800;
    text-shadow: 0 2px 10px rgba(255, 215, 0, 0.3);
}

.escada-visual {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 20px;
    margin-top: 60px;
    position: relative;
}

.escada-visual::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #ffd700, transparent);
}

.degrau {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px 20px;
    border: 2px solid #ffd700;
    border-radius: 10px;
    background: rgba(255, 215, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    min-width: 200px;
}

.degrau:hover {
    background: rgba(255, 215, 0, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.degrau-1 {
    height: 120px;
}

.degrau-2 {
    height: 160px;
}

.degrau-3 {
    height: 200px;
}

.degrau .label {
    font-size: 18px;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 10px;
}

.degrau .linha {
    width: 40px;
    height: 2px;
    background: #ffd700;
    margin: 10px 0;
}

.degrau .tipo {
    font-size: 14px;
    font-weight: 600;
    color: white;
    text-align: center;
    line-height: 1.3;
}

.escada-mobile {
    display: none;
    margin-top: 40px;
    text-align: center;
}

.escada-mobile img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .escada-visual {
        display: none;
    }
    
    .escada-mobile {
        display: block;
    }
    
    .escada-texto h2 {
        font-size: 24px;
    }
    
    .escada-texto .destaque {
        font-size: 20px;
    }
}

/* ===== SEÇÕES COM CARROSSEL ===== */
.falsas-solucoes, .objecoes, .beneficios {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 80px 0;
}

.falsas-solucoes h2, .objecoes h2, .beneficios h2 {
    color: white;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    margin-bottom: 60px;
}

/* ===== SEÇÃO DEPOIMENTOS ===== */
.depoimentos {
    background: white;
    color: #1a1a1a;
    padding: 80px 0;
}

.depoimentos h2 {
    color: #1a1a1a;
    text-shadow: none;
    margin-bottom: 60px;
}

section h2 {
    font-size: 36px;
    font-weight: 800;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 60px;
    line-height: 1.2;
    letter-spacing: -1px;
}





/* ===== GRID DE ITENS ===== */
.itens-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 0;
}

@media (min-width: 768px) {
    .itens-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }
}

.item {
    text-align: center;
    padding: 40px 30px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

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

.item i {
    font-size: 48px;
    color: white;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.item:hover i {
    transform: scale(1.1);
    color: rgba(255, 255, 255, 0.9);
}

.item h3, .item h4 {
    font-size: 20px;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
    line-height: 1.3;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.item p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
    font-weight: 400;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}

.item .foto {
    margin-bottom: 20px;
}

.item .foto i {
    font-size: 60px;
    color: white;
    transition: all 0.3s ease;
}

.item:hover .foto i {
    transform: scale(1.1);
    color: rgba(255, 255, 255, 0.9);
}

/* ===== ITENS DA SEÇÃO DEPOIMENTOS ===== */
.depoimentos .item {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.depoimentos .item:hover {
    background: white;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.depoimentos .item i {
    color: #667eea;
}

.depoimentos .item:hover i {
    color: #764ba2;
}

.depoimentos .item h3, 
.depoimentos .item h4 {
    color: #1a1a1a;
    text-shadow: none;
}

.depoimentos .item p {
    color: #666;
    text-shadow: none;
}

.depoimentos .item .foto i {
    color: #667eea;
}

.depoimentos .item:hover .foto i {
    color: #764ba2;
}



.carrossel-item {
    min-width: 100%;
    width: 100%;
    flex-shrink: 0;
    padding: 0 10px;
}

/* Setas de navegação */
.carrossel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #667eea;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    z-index: 10;
}

.carrossel-arrow:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.carrossel-arrow.prev {
    left: 10px;
}

.carrossel-arrow.next {
    right: 10px;
}

.carrossel-arrow:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.carrossel-item {
    min-width: 100%;
    width: 100%;
    flex-shrink: 0;
    padding: 40px 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

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

.carrossel-item i {
    font-size: 48px;
    color: white;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.carrossel-item:hover i {
    transform: scale(1.1);
    color: rgba(255, 255, 255, 0.9);
}

.carrossel-item h3 {
    font-size: 20px;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
    line-height: 1.3;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.carrossel-item p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
    font-weight: 400;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}

.carrossel-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 25px;
}

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

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

.dot.active {
    background: white;
    transform: scale(1.1);
    border-color: white;
}

/* ===== DEPOIMENTOS SIMPLES ===== */
.card-depoimento {
    background: transparent;
    padding: 40px 30px;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
}

.card-depoimento::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 30px;
    font-size: 60px;
    color: white;
    opacity: 0.3;
    font-family: serif;
    font-weight: bold;
}

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

.foto {
    margin-bottom: 20px;
}

.foto i {
    font-size: 60px;
    color: white;
    transition: all 0.3s ease;
}

.card-depoimento:hover .foto i {
    transform: scale(1.1);
    color: rgba(255, 255, 255, 0.9);
}

.card-depoimento h4 {
    font-size: 18px;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.card-depoimento p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
    line-height: 1.5;
    font-weight: 400;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}

/* ===== OFERTA PREMIUM ===== */
.oferta {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    text-align: center;
    position: relative;
}

.processo-lista {
    max-width: 900px;
    margin: 0 auto 60px;
}

.processo-item {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    margin-bottom: 40px;
    text-align: left;
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.processo-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.numero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 800;
    flex-shrink: 0;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.conteudo h3 {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
    line-height: 1.3;
}

.conteudo p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    font-weight: 400;
}

.selo-oferta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: white;
    padding: 20px 32px;
    border-radius: 50px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.selo-oferta:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.selo-oferta i {
    color: #ffd700;
    font-size: 24px;
}

/* ===== FAQ PREMIUM ===== */
.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 20px;
    margin-bottom: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.faq-pergunta {
    padding: 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.faq-pergunta:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.faq-pergunta h3 {
    font-size: 20px;
    font-weight: 700;
    color: inherit;
    line-height: 1.4;
}

.faq-pergunta i {
    color: inherit;
    transition: transform 0.3s ease;
    font-size: 20px;
}

.faq-resposta {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: white;
}

.faq-resposta.active {
    padding: 30px;
    max-height: 300px;
}

.faq-resposta p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    font-weight: 400;
}

.faq-item.active .faq-pergunta i {
    transform: rotate(180deg);
}

/* ===== FORMULÁRIO PREMIUM ===== */
.candidatura {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

@media (max-width: 767px) {
    .candidatura {
        padding-bottom: 80px; /* Padding extra apenas no mobile para o menu inferior */
    }
}

/* ===== PÁGINA DE AGRADECIMENTO ===== */
.obrigado-page {
    min-height: 100vh;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 0;
}

.obrigado-content {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 48px;
    text-align: center;
    max-width: 600px;
    width: 100%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.obrigado-icon {
    font-size: 80px;
    color: #10b981;
    margin-bottom: 24px;
    animation: pulse 2s infinite;
}

.obrigado-content h1 {
    color: #1f2937;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.2;
}

.obrigado-mensagem {
    color: #6b7280;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 32px;
}

.proximos-passos {
    background: #f8fafc;
    border-radius: 16px;
    padding: 24px;
    margin: 32px 0;
    text-align: left;
}

.proximos-passos h2 {
    color: #1f2937;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
    text-align: center;
}

.proximos-passos ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.proximos-passos li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 16px;
    color: #4b5563;
    line-height: 1.5;
}

.proximos-passos li:last-child {
    margin-bottom: 0;
}

.proximos-passos li i {
    color: #667eea;
    font-size: 18px;
    margin-right: 12px;
    margin-top: 2px;
    flex-shrink: 0;
}

.obrigado-cta {
    margin: 32px 0;
}

.obrigado-cta p {
    color: #6b7280;
    margin-bottom: 16px;
}

.obrigado-info {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid #e5e7eb;
    color: #6b7280;
}

.obrigado-info a {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
}

.obrigado-info a:hover {
    text-decoration: underline;
}

@media (max-width: 767px) {
    .obrigado-content {
        padding: 32px 24px;
        margin: 20px;
    }
    
    .obrigado-content h1 {
        font-size: 24px;
    }
    
    .obrigado-mensagem {
        font-size: 16px;
    }
    
    .obrigado-icon {
        font-size: 60px;
    }
}

.candidatura::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="form-pattern" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23form-pattern)"/></svg>');
}

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

.candidatura h2 {
    color: white;
    margin-bottom: 20px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    font-weight: 800;
}

.subtexto {
    font-size: 20px;
    text-align: center;
    margin-bottom: 60px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    font-weight: 400;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    padding: 50px;
    border-radius: 25px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.form-group {
    margin-bottom: 30px;
    position: relative;
}

.form-group label {
    display: block;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
    font-size: 16px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: #f8fafc;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
    background: white;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
}

.form-group input.error,
.form-group textarea.error {
    border-color: #e74c3c;
    box-shadow: 0 0 0 4px rgba(231, 76, 60, 0.1);
}

.error-message {
    color: #e74c3c;
    font-size: 14px;
    margin-top: 8px;
    display: none;
    font-weight: 500;
}

.investimento-opcoes {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 16px;
}

.opcao-investimento {
    padding: 20px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    font-weight: 600;
    background: #f8fafc;
    font-size: 16px;
    color: #1a1a1a;
}

.opcao-investimento:hover {
    border-color: #667eea;
    background: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.15);
    color: #1a1a1a;
}

.opcao-investimento.selected {
    border-color: #667eea;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.contador-caracteres {
    font-size: 14px;
    color: #666;
    text-align: right;
    margin-top: 8px;
    font-weight: 500;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-top: 16px;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 4px;
    transform: scale(1.2);
}

.checkbox-group label {
    margin-bottom: 0;
    font-size: 16px;
    line-height: 1.5;
    font-weight: 500;
}

.checkbox-group a {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
}

.checkbox-group a:hover {
    text-decoration: underline;
}

.btn-submit {
    width: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 20px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    margin-top: 30px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.btn-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-submit:hover::before {
    left: 100%;
}

.btn-submit:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.4);
}

.btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* ===== FOOTER PREMIUM ===== */
.footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2c3e50 100%);
    color: white;
    padding: 60px 0 40px;
    text-align: center;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 8px;
}

.footer-links a:hover {
    color: white;
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* ===== RESPONSIVIDADE MOBILE-FIRST ===== */
@media (max-width: 767px) {
    section {
        padding: 60px 0;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .hero-text {
        text-align: center;
    }
    
    .hero-image img {
        max-width: 280px;
    }
    
    .hero-image:hover img {
        transform: translateY(-5px) scale(1.03);
    }
    
    section h2 {
        font-size: 28px;
        margin-bottom: 40px;
    }
}

@media (min-width: 768px) {
    section {
        padding: 100px 0;
    }
    
    .hero-title {
        font-size: 48px;
    }
    
    .hero-subtitle {
        font-size: 22px;
    }
    
    section h2 {
        font-size: 48px;
    }
    
    .hero-title {
        font-size: 48px;
    }
    
    .hero-subtitle {
        font-size: 22px;
    }
    
    section {
        padding: 100px 0;
    }
    
    section h2 {
        font-size: 48px;
    }
    
    .carrossel-container {
        max-width: 500px;
    }
    
    .carrossel-item {
        min-width: 100%;
        width: 100%;
    }
    
    .investimento-opcoes {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

@media (min-width: 1024px) {
    .carrossel-container {
        max-width: 600px;
    }
    
    .carrossel-item {
        min-width: 100%;
        width: 100%;
    }
    
    .investimento-opcoes {
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }
    
    .hero-title {
        font-size: 56px;
    }
    
    .hero-subtitle {
        font-size: 24px;
    }
}

/* ===== ANIMAÇÕES PREMIUM ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

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

.fade-in-up {
    animation: fadeInUp 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.pulse {
    animation: pulse 2s infinite;
}

/* ===== ESTADOS DE LOADING PREMIUM ===== */
.loading {
    opacity: 0.6;
    pointer-events: none;
    position: relative;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid #667eea;
    border-top: 2px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ===== MENSAGENS PREMIUM ===== */
.message {
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 30px;
    font-weight: 600;
    font-size: 16px;
    border: 1px solid;
    position: relative;
    overflow: hidden;
}

.message::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
}

.message.success {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    color: #155724;
    border-color: #c3e6cb;
}

.message.success::before {
    background: #27ae60;
}

.message.error {
    background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%);
    color: #721c24;
    border-color: #f5c6cb;
}

.message.error::before {
    background: #e74c3c;
}

/* ===== SCROLLBAR PREMIUM ===== */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 6px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #5a6fd8 0%, #6a4190 100%);
}

/* ===== SELEÇÃO DE TEXTO PREMIUM ===== */
::selection {
    background: rgba(102, 126, 234, 0.3);
    color: #1a1a1a;
}

::-moz-selection {
    background: rgba(102, 126, 234, 0.3);
    color: #1a1a1a;
}