* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(135deg, #0f0c29 0%, #302b63 50%, #24243e 100%);
    min-height: 100vh;
    color: white;
    overflow-x: hidden;
}

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

/* ===== NAVBAR ===== */
.navbar {
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    position: sticky;
    top: 0;
    background: rgba(15, 12, 41, 0.9);
    backdrop-filter: blur(20px);
    z-index: 1000;
}

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

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 700;
}

.nav-brand .brand-icon {
    font-size: 30px;
}

.nav-brand .brand-text {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-menu a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s;
}

.nav-menu a:hover {
    color: white;
}

.btn-nav {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white !important;
    padding: 10px 24px;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s;
    -webkit-text-fill-color: white !important;
}

.btn-nav:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.4);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 2px;
    background: white;
    transition: all 0.3s;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== HERO ===== */
.hero {
    padding: 80px 0;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-badge {
    display: inline-block;
    background: rgba(102, 126, 234, 0.2);
    color: #667eea;
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid rgba(102, 126, 234, 0.2);
}

.hero h1 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
}

.hero h1 span {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 30px;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.4);
    color: white;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-secondary:hover {
    border-color: white;
    background: rgba(255, 255, 255, 0.05);
    color: white;
}

.hero-stats {
    display: flex;
    gap: 48px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 28px;
    font-weight: 700;
    color: white;
}

.stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 4px;
}

/* ===== PREVIEW CARD ===== */
.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.preview-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 24px;
    backdrop-filter: blur(10px);
    width: 100%;
    max-width: 420px;
}

.cv-preview {
    background: white;
    padding: 24px;
    border-radius: 12px;
    min-height: 260px;
    color: #1a1a2e;
}

.cv-name {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a2e;
    text-align: center;
}

.cv-divider {
    height: 2px;
    background: #1a1a2e;
    margin: 12px 0;
    opacity: 0.1;
}

.cv-section {
    margin-bottom: 12px;
}

.cv-section-title {
    font-size: 11px;
    font-weight: 600;
    color: #4a4a6a;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.cv-text {
    font-size: 13px;
    color: #555;
    line-height: 1.5;
}

.cv-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.cv-tag {
    background: #f0f2f5;
    color: #4a4a6a;
    padding: 3px 12px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 500;
}

.cv-score-badge {
    display: inline-block;
    background: #10b981;
    color: white;
    padding: 4px 14px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    margin-top: 12px;
}


.features {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.02);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-badge {
    display: inline-block;
    background: rgba(102, 126, 234, 0.15);
    color: #667eea;
    padding: 4px 16px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 12px;
}

.section-header h2 span {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-header p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 18px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(102, 126, 234, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.feature-icon {
    font-size: 40px;
    margin-bottom: 16px;
    display: block;
}

.feature-card h3 {
    font-size: 18px;
    margin-bottom: 8px;
    font-weight: 600;
}

.feature-card p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

/* ===== HOW IT WORKS ===== */
.how-it-works {
    padding: 80px 0;
}

.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 20px;
}

.step {
    text-align: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 40px 24px;
    transition: all 0.3s;
}

.step:hover {
    transform: translateY(-5px);
    border-color: rgba(102, 126, 234, 0.2);
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    margin: 0 auto 16px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    font-size: 20px;
    font-weight: 700;
    color: white;
}

.step h4 {
    font-size: 18px;
    margin-bottom: 8px;
    font-weight: 600;
}

.step p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

/* ===== CTA ===== */
.cta {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.02);
}

.cta-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 48px 56px;
    border-radius: 20px;
    gap: 40px;
}

.cta-text h2 {
    font-size: 32px;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
}

.cta-text h2 span {
    color: #ffd700;
}

.cta-text p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 40px;
    background: white;
    color: #667eea;
    border: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
    flex-shrink: 0;
}

.btn-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

/* ===== FOOTER ===== */
.footer {
    padding: 60px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-content {
    display: grid;
    grid-template-columns: minmax(180px, 1.1fr) minmax(0, 2.4fr);
    gap: 40px;
    margin-bottom: 40px;
    align-items: start;
}

.footer-brand .brand-icon {
    font-size: 28px;
}

.footer-brand .brand-text {
    font-size: 20px;
    font-weight: 700;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-left: 8px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    margin-top: 8px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.footer-column h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 12px;
    color: white;
}

.footer-column a {
    display: block;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 14px;
    padding: 4px 0;
    transition: all 0.3s;
}

.footer-column a:hover {
    color: white;
    padding-left: 4px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

.footer-social {
    display: flex;
    gap: 16px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: all 0.3s;
}

.footer-social a:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    transform: translateY(-3px);
}

@media (max-width: 1024px) {
    .hero h1 {
        font-size: 38px;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(15, 12, 41, 0.98);
        flex-direction: column;
        padding: 20px;
        gap: 16px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }
    
    .nav-menu.show {
        display: flex;
    }
    
    .nav-menu a {
        width: 100%;
        text-align: center;
        padding: 12px;
    }
    
    .hero {
        padding: 40px 0;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero h1 {
        font-size: 32px;
    }
    
    .hero p {
        font-size: 16px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .hero-stats {
        gap: 24px;
        flex-wrap: wrap;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .steps {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .cta-content {
        flex-direction: column;
        text-align: center;
        padding: 32px 24px;
    }
    
    .btn-cta {
        width: 100%;
        justify-content: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

/* Mobile pequeno */
@media (max-width: 480px) {
    .hero h1 {
        font-size: 26px;
    }
    
    .section-header h2 {
        font-size: 24px;
    }
    
    .feature-card {
        padding: 24px 16px;
    }
    
    .step {
        padding: 24px 16px;
    }
    
    .cta-content {
        padding: 24px 16px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

/* ============================================
   MODAL DE LOGIN (DENTRO DA INDEX)
   ============================================ */

/* ===== OVERLAY ===== */
.login-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 20px;
}

.login-overlay.active {
    display: flex;
}

/* ===== MODAL ===== */
.login-modal {
    position: relative;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 48px 40px;
    max-width: 460px;
    width: 100%;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: modalSlideIn 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* ===== BOTÃO FECHAR ===== */
.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border: none;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 50%;
    font-size: 18px;
    color: #666;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    background: rgba(0, 0, 0, 0.1);
    color: #333;
    transform: rotate(90deg);
}

/* ===== CONTEÚDO ===== */
.modal-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.modal-icon {
    font-size: 48px;
    margin-bottom: 16px;
    display: block;
    animation: bounceIcon 2s ease-in-out infinite;
}

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

.modal-content h1 {
    font-size: 30px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 10px;
}

.modal-content .subtitle {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 28px;
}

.modal-content .subtitle strong {
    color: #4a3f8c;
}

/* ===== BOTÃO GOOGLE ===== */
.g_id_signin {
    display: flex;
    justify-content: center;
    margin-bottom: 8px;
    width: 100%;
}

.g_id_signin > div {
    width: 100% !important;
}

/* ===== DIVIDER ===== */
.divider {
    display: flex;
    align-items: center;
    margin: 20px 0;
    color: #999;
    font-size: 13px;
    width: 100%;
}

.divider::before,
.divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #e0e0e0;
}

.divider::before {
    margin-right: 16px;
}

.divider::after {
    margin-left: 16px;
}

/* ===== BOTÕES SOCIAIS ===== */
.social-buttons {
    display: flex;
    gap: 10px;
    margin-bottom: 14px;
    width: 100%;
}

.social-btn {
    flex: 1;
    padding: 11px 12px;
    border: 2px solid #e8e8e8;
    border-radius: 12px;
    background: white;
    color: #333;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.social-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.social-btn.github:hover {
    border-color: #333;
    background: #f8f8f8;
}

.social-btn.linkedin:hover {
    border-color: #0a66c2;
    background: #f0f7ff;
}

.social-btn.email:hover {
    border-color: #667eea;
    background: #f5f3ff;
}

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

.social-btn.github i { color: #333; }
.social-btn.linkedin i { color: #0a66c2; }
.social-btn.email i { color: #667eea; }

/* ===== MODO DESENVOLVEDOR ===== */
.btn-dev-mode {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 12px;
    background: #f5f5f5;
    color: #666;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 14px;
}

.btn-dev-mode:hover {
    background: #e8e8e8;
    color: #333;
}

/* ===== TERMOS ===== */
.terms {
    text-align: center;
    font-size: 12px;
    color: #888;
    line-height: 1.6;
    width: 100%;
}

.terms a {
    color: #4a3f8c;
    text-decoration: none;
    font-weight: 500;
}

.terms a:hover {
    text-decoration: underline;
}

/* ===== MODAL EMAIL (INTERNO) ===== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 20px;
}

.modal-overlay.active {
    display: flex;
}

.modal {
    background: white;
    padding: 32px;
    border-radius: 20px;
    max-width: 420px;
    width: 100%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideUp 0.3s ease;
}

@keyframes modalSlideUp {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal h2 {
    font-size: 20px;
    color: #1a1a2e;
    margin-bottom: 6px;
}

.modal p {
    color: #666;
    font-size: 14px;
    margin-bottom: 18px;
}

.modal .form-group {
    margin-bottom: 18px;
}

.modal .form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 6px;
}

.modal .form-group input {
    width: 100%;
    padding: 11px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 15px;
    transition: border-color 0.3s;
}

.modal .form-group input:focus {
    outline: none;
    border-color: #667eea;
}

.modal .btn-group {
    display: flex;
    gap: 10px;
}

.modal .btn-primary,
.modal .btn-secondary {
    flex: 1;
    padding: 11px 20px;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

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

.modal .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(102, 126, 234, 0.4);
}

.modal .btn-secondary {
    background: #f0f0f0;
    color: #666;
}

.modal .btn-secondary:hover {
    background: #e0e0e0;
}

/* ============================================
   RESPONSIVO DO MODAL
   ============================================ */

@media (max-width: 580px) {
    .login-modal {
        padding: 32px 20px;
        border-radius: 20px;
        margin: 10px;
    }

    .modal-content h1 {
        font-size: 24px;
    }

    .modal-content .subtitle {
        font-size: 14px;
    }

    .social-buttons {
        flex-direction: column;
        gap: 8px;
    }

    .social-btn {
        padding: 12px;
        font-size: 14px;
    }

    .modal-icon {
        font-size: 36px;
    }

    .modal-close {
        top: 12px;
        right: 12px;
        width: 32px;
        height: 32px;
        font-size: 16px;
    }
}

@media (max-width: 400px) {
    .login-modal {
        padding: 24px 16px;
    }

    .modal-content h1 {
        font-size: 20px;
    }

    .modal-content .subtitle {
        font-size: 13px;
    }

    .modal-icon {
        font-size: 28px;
    }

    .terms {
        font-size: 11px;
    }
}

/* ===== LANGUAGES ===== */
.languages {
    padding: 80px 0;
}

.languages-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
    margin-top: 20px;
}

.language-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 24px 16px;
    text-align: center;
    transition: all 0.3s;
}

.language-card:hover {
    transform: translateY(-5px);
    border-color: rgba(102, 126, 234, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.language-card .lang-flag {
    font-size: 32px;
    display: block;
    margin-bottom: 8px;
}

.language-card .lang-name {
    font-size: 14px;
    font-weight: 600;
    display: block;
    margin-bottom: 4px;
}

.language-card .lang-status {
    font-size: 11px;
    color: #10b981;
    font-weight: 500;
}

@media (max-width: 1024px) {
    .languages-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 580px) {
    .languages-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .language-card {
        padding: 16px 12px;
    }
    
    .language-card .lang-flag {
        font-size: 24px;
    }
}

.lang-selector-wrapper {
    position: relative;
}

.lang-selector {
    padding: 8px 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.8);
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s;
}

.lang-selector:hover {
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.1);
}

.lang-selector option {
    background: #1a1a2e;
    color: white;
}

@media (max-width: 768px) {
    .lang-selector-wrapper {
        width: 100%;
        margin: 8px 0;
    }
    
    .lang-selector {
        width: 100%;
        padding: 12px;
        text-align: center;
    }
}
/* ===== HERO ===== */
.hero {
    padding: 60px 0 80px;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* ===== PREVIEW CARD ===== */
.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.preview-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 16px;
    backdrop-filter: blur(10px);
    width: 100%;
    max-width: 480px;
    transition: all 0.3s;
}

.preview-card:hover {
    transform: translateY(-5px);
    border-color: rgba(102, 126, 234, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* ===== CV PREVIEW ===== */
.cv-preview {
    background: white;
    padding: 24px;
    border-radius: 12px;
    min-height: 480px;
    max-height: 650px;
    overflow-y: auto;
    color: #1a1a2e;
    font-size: 12px;
    text-align: left;
}

.cv-preview::-webkit-scrollbar {
    width: 4px;
}

.cv-preview::-webkit-scrollbar-thumb {
    background: #667eea;
    border-radius: 4px;
}

.cv-preview::-webkit-scrollbar-track {
    background: #f0f0f0;
}

/* Header */
.cv-header {
    text-align: left;
    margin-bottom: 16px;
}

.cv-name {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a2e;
    text-align: left;
}

.cv-title {
    font-size: 14px;
    color: #667eea;
    font-weight: 600;
    margin: 4px 0 8px;
    text-align: left;
}

.cv-contact {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 12px;
    color: #555;
    justify-content: flex-start;
}

.cv-links {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 12px;
    color: #667eea;
    justify-content: flex-start;
}

.cv-divider {
    height: 2px;
    background: #1a1a2e;
    margin: 12px 0;
    opacity: 0.1;
}

/* Section */
.cv-section {
    margin-bottom: 14px;
    text-align: left;
}

.cv-section-title {
    font-size: 13px;
    font-weight: 700;
    color: #2c3e50;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 2px solid #667eea;
    padding-bottom: 4px;
    margin-bottom: 8px;
    text-align: left;
}

.cv-text {
    font-size: 12px;
    color: #444;
    line-height: 1.7;
    text-align: left;
}

/* Experience - SEM BARRAS */
.cv-experience {
    display: flex;
    flex-direction: column;
    gap: 16px;
    text-align: left;
}

.cv-job {
    padding-left: 0;
    text-align: left;
}

.cv-job-header {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 4px;
    text-align: left;
}

.cv-job-title {
    font-weight: 600;
    font-size: 13px;
    color: #1a1a2e;
}

.cv-job-company {
    font-size: 12px;
    color: #667eea;
    font-weight: 500;
}

.cv-job-date {
    font-size: 11px;
    color: #888;
}

.cv-job-desc {
    font-size: 12px;
    color: #555;
    line-height: 1.6;
    text-align: left;
}

/* Skills */
.cv-skills-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px 16px;
    text-align: left;
}

.cv-skill-category {
    display: flex;
    align-items: baseline;
    gap: 6px;
    flex-wrap: wrap;
    text-align: left;
}

.cv-skill-label {
    font-weight: 600;
    font-size: 12px;
    color: #2c3e50;
    min-width: 70px;
}

.cv-skill-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}

.cv-tag {
    background: #f0f2f5;
    color: #4a4a6a;
    padding: 2px 10px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 500;
}

/* Education */
.cv-education {
    display: flex;
    flex-direction: column;
    gap: 6px;
    text-align: left;
}

.cv-edu-item {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: baseline;
    font-size: 12px;
    text-align: left;
}

.cv-edu-course {
    font-weight: 600;
    color: #1a1a2e;
}

.cv-edu-school {
    color: #667eea;
    font-weight: 500;
}

.cv-edu-date {
    font-size: 11px;
    color: #888;
}

/* Languages */
.cv-languages {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    text-align: left;
}

.cv-lang-item {
    display: flex;
    align-items: baseline;
    gap: 6px;
    font-size: 12px;
    background: #f8f9fa;
    padding: 3px 12px;
    border-radius: 100px;
}

.cv-lang-name {
    font-weight: 600;
    color: #1a1a2e;
}

.cv-lang-level {
    color: #667eea;
    font-size: 11px;
}

/* Certifications */
.cv-certifications {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    text-align: left;
}

.cv-cert {
    background: #e8f0fe;
    color: #1a56db;
    padding: 3px 12px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 500;
}

/* Score */
.cv-score-badge {
    display: inline-block;
    background: #10b981;
    color: white;
    padding: 5px 16px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    margin-top: 12px;
    text-align: center;
    width: 100%;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-content {
        gap: 40px;
    }
    
    .preview-card {
        max-width: 420px;
    }
    
    .cv-preview {
        min-height: 320px;
        max-height: 480px;
        padding: 16px;
    }
}

@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .preview-card {
        max-width: 100%;
    }
    
    .cv-preview {
        min-height: 280px;
        max-height: 400px;
        padding: 14px;
        font-size: 10px;
    }
    
    .cv-name {
        font-size: 17px;
    }
    
    .cv-title {
        font-size: 12px;
    }
    
    .cv-contact {
        font-size: 9px;
        gap: 6px;
    }
    
    .cv-links {
        font-size: 9px;
        gap: 6px;
    }
    
    .cv-section-title {
        font-size: 10px;
    }
    
    .cv-skills-grid {
        grid-template-columns: 1fr;
        gap: 4px;
    }
    
    .cv-job-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 2px;
    }
    
    .cv-edu-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 2px;
    }
    
    .cv-languages {
        gap: 4px;
    }
    
    .cv-lang-item {
        font-size: 10px;
        padding: 2px 6px;
    }
}

@media (max-width: 480px) {
    .cv-preview {
        min-height: 240px;
        max-height: 350px;
        padding: 10px;
        font-size: 9px;
    }
    
    .cv-name {
        font-size: 15px;
    }
    
    .cv-title {
        font-size: 11px;
    }
    
    .cv-contact {
        font-size: 8px;
    }
    
    .cv-section-title {
        font-size: 9px;
        padding-bottom: 3px;
        margin-bottom: 4px;
    }
    
    .cv-job-title {
        font-size: 10px;
    }
    
    .cv-job-desc {
        font-size: 9px;
    }
    
    .cv-tag {
        font-size: 8px;
        padding: 1px 5px;
    }
    
    .cv-skill-label {
        font-size: 9px;
        min-width: 50px;
    }
    
    .cv-score-badge {
        font-size: 10px;
        padding: 3px 10px;
    }
}

/* ============================================
   MODAL DE TERMOS E PRIVACIDADE
   ============================================ */

.terms-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 20px;
}

.terms-modal-overlay.active {
    display: flex;
}

.terms-modal {
    position: relative;
    background: white;
    border-radius: 24px;
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5);
    animation: modalSlideIn 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
}

.terms-modal .modal-close {
    position: sticky;
    top: 16px;
    right: 16px;
    float: right;
    z-index: 10;
    margin: 16px;
    width: 36px;
    height: 36px;
    border: none;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 50%;
    font-size: 18px;
    color: #666;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.terms-modal .modal-close:hover {
    background: rgba(0, 0, 0, 0.1);
    color: #333;
    transform: rotate(90deg);
}

.terms-modal-content {
    padding: 0 20px 40px 20px;
    max-height: 80vh;
    overflow-y: auto;
}

.terms-modal-content::-webkit-scrollbar {
    width: 6px;
}

.terms-modal-content::-webkit-scrollbar-thumb {
    background: #667eea;
    border-radius: 4px;
}

.terms-modal-content::-webkit-scrollbar-track {
    background: #f0f0f0;
}

/* Loading e Error */
.terms-loading {
    text-align: center;
    padding: 60px 20px;
    font-size: 18px;
    color: #666;
}

.terms-error {
    text-align: center;
    padding: 60px 20px;
}

.terms-error h2 {
    color: #e74c3c;
    margin-bottom: 12px;
}

.terms-error p {
    color: #666;
    margin-bottom: 20px;
}

.btn-retry {
    padding: 12px 32px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-retry:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.4);
}

/* Responsivo */
@media (max-width: 580px) {
    .terms-modal {
        max-width: 100%;
        border-radius: 16px;
        margin: 10px;
        max-height: 95vh;
    }
    
    .terms-modal-content {
        padding: 0 16px 30px 16px;
    }
    
    .terms-modal .modal-close {
        top: 12px;
        right: 12px;
        margin: 12px;
        width: 32px;
        height: 32px;
        font-size: 16px;
    }
}
/* ===== BOTÃO GOOGLE DRIVE NO MODAL ===== */
.btn-google-drive-modal {
    width: 100%;
    padding: 14px;
    border: 2px solid #34a853;
    border-radius: 12px;
    background: white;
    color: #1a1a2e;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.3s;
    margin-bottom: 12px;
}

.btn-google-drive-modal:hover {
    background: #f0faf0;
    border-color: #2d9248;
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(52, 168, 83, 0.3);
}

.btn-google-drive-modal i {
    font-size: 22px;
    color: #34a853;
}

.btn-google-drive-modal span {
    font-size: 15px;
}

.divider-modal {
    display: flex;
    align-items: center;
    margin: 16px 0;
    color: #999;
    font-size: 13px;
    width: 100%;
}

.divider-modal::before,
.divider-modal::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #e0e0e0;
}

.divider-modal::before {
    margin-right: 16px;
}

.divider-modal::after {
    margin-left: 16px;
}

@media (max-width: 580px) {
    .btn-google-drive-modal {
        padding: 12px;
        font-size: 14px;
    }
    .btn-google-drive-modal i {
        font-size: 18px;
    }
}

/* ===== PRICING (mesmo visual das features) ===== */
.pricing {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.02);
}

.pricing-grid {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: stretch;
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 12px;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 28px 18px;
    text-align: center;
    transition: all 0.3s;
    position: relative;
    flex: 1 1 0;
    min-width: 0;
    max-width: 250px;
}

.pricing-card:hover {
    transform: translateY(-5px);
    border-color: rgba(102, 126, 234, 0.25);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.pricing-card-featured {
    border-color: rgba(102, 126, 234, 0.45);
    box-shadow: 0 12px 32px rgba(102, 126, 234, 0.15);
    background: rgba(102, 126, 234, 0.08);
}

.pricing-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    font-size: 11px;
    padding: 3px 12px;
    border-radius: 20px;
    font-weight: 600;
}

.pricing-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #667eea;
    margin-bottom: 10px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.pricing-value {
    font-size: clamp(22px, 2.6vw, 36px);
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    white-space: nowrap;
}

.pricing-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.75);
    margin: 10px 0 8px;
    line-height: 1.35;
}

.pricing-note {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.35;
}

.pricing-footer {
    text-align: center;
    margin-top: 28px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 900px) {
    .pricing-grid {
        flex-wrap: wrap;
        max-width: 560px;
    }
    .pricing-card {
        flex: 1 1 calc(50% - 12px);
        max-width: none;
        min-width: 140px;
    }
}

@media (max-width: 520px) {
    .pricing-grid {
        flex-direction: column;
        flex-wrap: nowrap;
        max-width: 320px;
        align-items: stretch;
    }
    .pricing-card {
        flex: 1 1 auto;
        max-width: none;
        width: 100%;
    }
}


/* Brand logo images */
.brand-icon-img,
.nav-brand .brand-icon-img,
.footer-brand .brand-icon-img {
    width: 36px;
    height: 36px;
    object-fit: contain;
    border-radius: 8px;
    display: block;
    flex-shrink: 0;
}
.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}
.footer-brand {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
.footer-brand .brand-icon-img {
    width: 40px;
    height: 40px;
}


/* Skip link + desktop-only banner + focus */
.skip-to-content {
    position: absolute;
    left: -9999px;
    top: 0;
    z-index: 100000;
    padding: 12px 16px;
    background: #fff;
    color: #1a1a2e;
    font-weight: 600;
    border-radius: 0 0 8px 0;
}
.skip-to-content:focus {
    left: 0;
    outline: 3px solid #667eea;
}
.desktop-only-banner {
    background: linear-gradient(135deg, #1e3a5f 0%, #312e81 100%);
    color: #fff;
    padding: 12px 16px;
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,0.12);
}
.desktop-only-banner[hidden] { display: none !important; }
.desktop-only-inner { max-width: 820px; margin: 0 auto; }
.desktop-only-inner strong { display: block; font-size: 15px; margin-bottom: 4px; }
.desktop-only-inner p { margin: 0; font-size: 13px; line-height: 1.45; opacity: 0.92; }
a:focus-visible, button:focus-visible, .btn-primary:focus-visible, .btn-secondary:focus-visible, .btn-nav:focus-visible, .btn-cta:focus-visible {
    outline: 3px solid #a5b4fc;
    outline-offset: 2px;
}
body.is-mobile-device .hero-buttons .btn-primary {
    opacity: 0.95;
}
