/* ESTILOS GENERALES */
body { 
    background-color: #f8f9fa; 
    font-family: 'Inter', sans-serif; 
    color: #333; 
}

.main-cv-container { 
    max-width: 900px; 
    background: white; 
    margin: 20px auto; 
    display: flex; 
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.sidebar { 
    background-color: #2c3e50; 
    color: white;
    width: 35%;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
}

.main-content { 
    width: 65%; 
    padding: 40px; 
}

.sidebar-title { 
    color: #3498db; 
    font-weight: 700; 
    text-transform: uppercase; 
    font-size: 0.85rem; 
    border-bottom: 1px solid rgba(255,255,255,0.1); 
    padding-bottom: 5px; 
    margin-bottom: 12px; 
    margin-top: 20px; 
}

.profile-photo { 
    width: 110px; 
    height: 110px; 
    border-radius: 50%; 
    object-fit: cover; 
    border: 3px solid white; 
    margin-bottom: 10px;
}

.contact-link { 
    color: #d1d1d1; 
    text-decoration: none; 
    font-size: 0.7rem; 
    display: block; 
    margin-bottom: 8px; 
    word-break: break-all; 
}

.skill-category { 
    font-size: 0.8rem; 
    font-weight: 700; 
    color: #3498db; 
    margin-bottom: 2px; 
    margin-top: 8px; 
}

.text-light-gray { 
    color: #d1d1d1; 
    font-size: 0.75rem; 
    line-height: 1.3; 
}

.section-heading { 
    border-left: 5px solid #2c3e50; 
    padding-left: 15px; 
    margin-bottom: 15px; 
    font-weight: 700; 
    color: #2c3e50;
}

.project-card { 
    margin-bottom: 15px; 
}

.destaque { 
    border-left: 3px solid #3498db; 
    padding: 8px 12px; 
    background: #f8fbff; 
    border-radius: 0 4px 4px 0; 
}

.small-justify { 
    font-size: 0.85rem; 
    text-align: justify; 
    line-height: 1.4; 
}

/* PRINT / PDF CONFIGURATION */
@media print {
    @page { size: letter; margin: 0; }
    body { background-color: white !important; -webkit-print-color-adjust: exact; }
    
    .main-cv-container { 
        margin: 0 !important; 
        box-shadow: none !important; 
        width: 100% !important;
        height: 279.4mm !important; 
        page-break-after: always;
        overflow: hidden; 
    }

    .sidebar { 
        background-color: #ffffff !important; 
        color: #333 !important; 
        border-right: 1px solid #eee !important;
    }
    
    .sidebar-title { color: #007bff !important; border-bottom: 2px solid #eee !important; }
    .contact-link, .text-light-gray { color: #444 !important; }
    .skill-category { color: #007bff !important; }
    .profile-photo { border: 3px solid #eee !important; }
    .d-print-none { display: none !important; }
    .project-card { page-break-inside: avoid; }
}