/* Template 06 - Minimalista (Minimalist Gray) */
/* Less is more - content focused design */

/* ====================== */
/* TEMPLATE VARIABLES     */
/* ====================== */
.template-06 {
    --t-primary: #2d3748;
    --t-primary-light: #4a5568;
    --t-secondary: #718096;
    --t-text: #1a202c;
    --t-text-light: #718096;
    --t-bg: #ffffff;
    --t-border: #e2e8f0;

    --t-font-main: 'Open Sans', sans-serif;
    --t-font-heading: 'Montserrat', sans-serif;
    --t-font-size-base: 10pt;
    --t-font-size-sm: 9pt;
    --t-font-size-xs: 8pt;
    --t-font-size-name: 22pt;
    --t-font-size-section: 9pt;

    --t-spacing-base: 10px;
    --t-spacing-sm: 6px;
    --t-spacing-xs: 4px;
    --t-spacing-lg: 14px;
    --t-spacing-xl: 20px;
}

/* ====================== */
/* TEMPLATE BASE          */
/* ====================== */
.template-06 {
    font-family: var(--t-font-main);
    font-size: var(--t-font-size-base);
    color: var(--t-text);
    background: var(--t-bg);
    line-height: 1.5;
    padding: 0;
    width: 100%;
}

/* ====================== */
/* HEADER                 */
/* ====================== */
.template-06 .cv-header {
    background: var(--t-primary);
    color: white;
    padding: var(--t-spacing-base) var(--t-spacing-lg);
}

.template-06 .cv-contact-bar {
    display: flex;
    flex-wrap: wrap;
    gap: var(--t-spacing-lg);
    font-size: var(--t-font-size-xs);
    padding-bottom: var(--t-spacing-sm);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.template-06 .cv-contact-item {
    display: flex;
    align-items: center;
    gap: 4px;
    opacity: 0.9;
}

.template-06 .cv-contact-item svg {
    width: 10px;
    height: 10px;
    fill: currentColor;
    opacity: 0.7;
}

.template-06 .cv-cnh {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 2px 8px;
    border-radius: 2px;
    font-size: var(--t-font-size-xs);
    font-weight: 500;
    display: inline-block;
    margin-top: var(--t-spacing-xs);
}

.template-06 .cv-name {
    font-family: var(--t-font-heading);
    font-size: var(--t-font-size-name);
    font-weight: 300;
    letter-spacing: 6px;
    text-transform: uppercase;
    text-align: left;
    padding: var(--t-spacing-base) 0 var(--t-spacing-sm);
}

/* ====================== */
/* MAIN CONTENT           */
/* ====================== */
.template-06 .cv-body {
    padding: var(--t-spacing-lg);
}

.template-06 .cv-section {
    margin-bottom: var(--t-spacing-xl);
    overflow: hidden;
    transition: margin 0.4s ease-out, opacity 0.3s ease;
}

.template-06 .cv-section:last-child {
    margin-bottom: 0;
}

.template-06 .cv-section-header {
    color: var(--t-primary);
    font-family: var(--t-font-heading);
    font-size: var(--t-font-size-section);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    padding-bottom: var(--t-spacing-xs);
    margin-bottom: var(--t-spacing-base);
    border-bottom: 1px solid var(--t-primary);
}

.template-06 .cv-section-content {
    padding-left: 0;
}

/* ====================== */
/* EXPERIENCE ENTRIES     */
/* ====================== */
.template-06 .cv-entry {
    margin-bottom: var(--t-spacing-lg);
    padding-bottom: var(--t-spacing-lg);
    border-bottom: 1px solid var(--t-border);
}

.template-06 .cv-entry:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.template-06 .cv-entry-period {
    font-size: var(--t-font-size-xs);
    color: var(--t-secondary);
    margin-bottom: var(--t-spacing-xs);
}

.template-06 .cv-entry-title {
    font-weight: 600;
    font-size: 11pt;
    color: var(--t-text);
    margin-bottom: 2px;
}

.template-06 .cv-entry-company {
    color: var(--t-primary);
    font-weight: 500;
    font-size: var(--t-font-size-sm);
    margin-bottom: var(--t-spacing-sm);
}

.template-06 .cv-entry-location {
    font-weight: 400;
    color: var(--t-text-light);
}

.template-06 .cv-entry-activities {
    margin-top: var(--t-spacing-sm);
}

.template-06 .cv-entry-activities li {
    position: relative;
    padding-left: var(--t-spacing-base);
    margin-bottom: 3px;
    font-size: var(--t-font-size-sm);
    line-height: 1.5;
}

.template-06 .cv-entry-activities li::before {
    content: '–';
    position: absolute;
    left: 0;
    color: var(--t-secondary);
}

/* ====================== */
/* EDUCATION ENTRIES      */
/* ====================== */
.template-06 .cv-education-entry {
    margin-bottom: var(--t-spacing-base);
}

.template-06 .cv-education-entry:last-child {
    margin-bottom: 0;
}

.template-06 .cv-education-level {
    font-weight: 600;
    margin-bottom: 2px;
}

.template-06 .cv-education-institution {
    font-size: var(--t-font-size-sm);
    color: var(--t-text-light);
}

/* ====================== */
/* SKILLS SECTION         */
/* ====================== */
.template-06 .cv-skills-list {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: var(--t-spacing-xs) var(--t-spacing-lg);
}

.template-06 .cv-skill-item {
    font-size: var(--t-font-size-sm);
    color: var(--t-text);
}

/* ====================== */
/* OBJECTIVE              */
/* ====================== */
.template-06 .cv-objective-text {
    font-size: var(--t-font-size-sm);
    line-height: 1.6;
    color: var(--t-text);
}

/* ====================== */
/* HIDDEN & ANIMATIONS    */
/* ====================== */
.template-06 .cv-section.hidden {
    display: none;
}

.template-06 .cv-section.hiding {
    animation: sectionHideGlow 0.8s ease-out forwards;
}

.template-06 .cv-section.showing {
    animation: sectionShowGlow 0.8s ease-out forwards;
}

@media print {
    .template-06 {
        -webkit-print-color-adjust: exact !important;
        print-color-adjust: exact !important;
    }
}