/**
 * PortalDoCurriculo - Templates Stylesheet
 * Estilos específicos para os templates de currículo
 */

/* ========================================
   Estilos Gerais dos Templates
   ======================================== */
.template-body {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    padding: 2rem;
    font-family: 'Poppins', sans-serif;
}

.template-actions {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.action-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: transparent;
    border: 2px solid #e5e7eb;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #374151;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.action-btn:hover {
    border-color: #6366f1;
    color: #6366f1;
    transform: translateY(-2px);
}

.action-buttons {
    display: flex;
    gap: 0.75rem;
}

.cv-container {
    margin-top: 80px;
    display: flex;
    justify-content: center;
    animation: fadeInUp 0.6s ease;
}

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

.cv-paper {
    background: #ffffff;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    max-width: 1000px;
    width: 100%;
}

/* Esconder ações na impressão */
@media print {
    .template-actions,
    .template-body {
        background: none;
        padding: 0;
    }
    
    .cv-container {
        margin: 0;
    }
    
    .cv-paper {
        box-shadow: none;
    }
}

/* ========================================
   Template Clássico
   ======================================== */
.classico {
    border-radius: 0;
}

.classico-header {
    padding: 3rem;
    background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
    color: #ffffff;
}

.classico-header .header-content {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.profile-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 4px solid rgba(255, 255, 255, 0.2);
}

.profile-photo i {
    font-size: 3.5rem;
    color: #ffffff;
}

.header-info {
    flex: 1;
}

.cv-name {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: -0.5px;
}

.cv-title {
    font-size: 1.125rem;
    opacity: 0.9;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.contact-info {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    opacity: 0.9;
}

.contact-item i {
    color: #a5b4fc;
}

.cv-divider {
    border: none;
    height: 4px;
    background: linear-gradient(90deg, #6366f1 0%, #8b5cf6 100%);
    margin: 0;
}

.cv-section {
    padding: 2rem 3rem;
    border-bottom: 1px solid #e5e7eb;
}

.cv-section:last-child {
    border-bottom: none;
}

.classico-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #e5e7eb;
}

.classico-title i {
    color: #6366f1;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    padding: 0.5rem;
    border-radius: 0.5rem;
}

.section-content {
    color: #4b5563;
    line-height: 1.8;
    font-size: 0.9375rem;
}

/* Experiência */
.experience-item {
    margin-bottom: 2rem;
}

.experience-item:last-child {
    margin-bottom: 0;
}

.experience-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.experience-role {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.25rem;
}

.experience-company {
    color: #6366f1;
    font-weight: 500;
    font-size: 0.9375rem;
}

.experience-period {
    font-size: 0.875rem;
    color: #6b7280;
    background: #f3f4f6;
    padding: 0.25rem 0.75rem;
    border-radius: 0.25rem;
    white-space: nowrap;
}

.experience-list {
    list-style: none;
}

.experience-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    color: #4b5563;
    font-size: 0.9375rem;
    line-height: 1.6;
}

.experience-list li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: #6366f1;
    font-weight: bold;
}

/* Educação */
.education-item {
    margin-bottom: 1.5rem;
}

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

.education-degree {
    font-size: 1.0625rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.25rem;
}

.education-school {
    color: #6b7280;
    font-size: 0.9375rem;
}

.education-period {
    font-size: 0.875rem;
    color: #6b7280;
    background: #f3f4f6;
    padding: 0.25rem 0.75rem;
    border-radius: 0.25rem;
}

/* Skills */
.skills-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.skill-category {
    background: #f9fafb;
    padding: 1.25rem;
    border-radius: 0.5rem;
    border-left: 3px solid #6366f1;
}

.skill-category-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: #6366f1;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.skill-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.skill-tag {
    padding: 0.375rem 0.75rem;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 0.25rem;
    font-size: 0.8125rem;
    color: #374151;
    transition: all 0.2s ease;
}

.skill-tag:hover {
    border-color: #6366f1;
    color: #6366f1;
}

/* Idiomas */
.languages-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.language-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

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

.language-name {
    font-weight: 600;
    color: #1f2937;
}

.language-level {
    font-size: 0.875rem;
    color: #6b7280;
}

.language-bar {
    height: 8px;
    background: #e5e7eb;
    border-radius: 4px;
    overflow: hidden;
}

.language-progress {
    height: 100%;
    background: linear-gradient(90deg, #6366f1 0%, #8b5cf6 100%);
    border-radius: 4px;
    transition: width 1s ease;
}

/* Certificações */
.certifications-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.certification-item {
    padding: 1rem;
    background: #f9fafb;
    border-radius: 0.5rem;
    border-left: 3px solid #10b981;
}

.certification-name {
    font-size: 1rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.25rem;
}

.certification-issuer {
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 0.5rem;
}

.certification-date {
    font-size: 0.8125rem;
    color: #10b981;
    font-weight: 500;
}

/* Footer */
.cv-footer {
    padding: 1.5rem 3rem;
    background: #f9fafb;
    text-align: center;
}

.cv-footer p {
    color: #6b7280;
    font-size: 0.875rem;
}

/* ========================================
   Template Moderno
   ======================================== */
.moderno {
    display: grid;
    grid-template-columns: 300px 1fr;
    border-radius: 1rem;
    overflow: hidden;
}

.cv-sidebar {
    background: linear-gradient(180deg, #1e1b4b 0%, #312e81 100%);
    color: #ffffff;
    padding: 2.5rem 2rem;
}

.sidebar-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.sidebar-profile {
    text-align: center;
}

.profile-photo-moderno {
    width: 140px;
    height: 140px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 4px solid rgba(255, 255, 255, 0.2);
}

.profile-photo-moderno i {
    font-size: 4rem;
    color: #ffffff;
}

.sidebar-title {
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    color: #a5b4fc;
}

.sidebar-contact {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.sidebar-contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.8125rem;
    color: #e0e7ff;
}

.sidebar-contact-item i {
    color: #818cf8;
    width: 16px;
}

.sidebar-skills {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.sidebar-skill-item {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}

.sidebar-skill-name {
    font-size: 0.8125rem;
    color: #e0e7ff;
}

.sidebar-skill-bar {
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
}

.sidebar-skill-progress {
    height: 100%;
    background: linear-gradient(90deg, #6366f1 0%, #8b5cf6 100%);
    border-radius: 3px;
    transition: width 1s ease;
}

.sidebar-languages {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.sidebar-language-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8125rem;
    color: #e0e7ff;
}

.sidebar-language-level {
    color: #818cf8;
    font-weight: 500;
}

.sidebar-interests {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.interest-tag {
    padding: 0.375rem 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 9999px;
    font-size: 0.75rem;
    color: #e0e7ff;
    transition: all 0.2s ease;
}

.interest-tag:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Main Content */
.cv-main {
    background: #ffffff;
    padding: 2.5rem;
}

.cv-header-moderno {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #e5e7eb;
}

.cv-name-moderno {
    font-family: 'Inter', sans-serif;
    font-size: 2.75rem;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 0.5rem;
    letter-spacing: -1px;
}

.cv-title-moderno {
    font-size: 1.25rem;
    color: #6366f1;
    font-weight: 500;
}

.cv-section-moderno {
    margin-bottom: 2.5rem;
}

.cv-section-moderno:last-child {
    margin-bottom: 0;
}

.section-title-moderno {
    font-family: 'Inter', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.section-title-moderno i {
    color: #6366f1;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    padding: 0.5rem;
    border-radius: 0.5rem;
}

.section-content-moderno {
    color: #4b5563;
    line-height: 1.8;
    font-size: 0.9375rem;
}

/* Timeline */
.timeline-moderno {
    position: relative;
    padding-left: 2rem;
}

.timeline-moderno::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, #6366f1 0%, #8b5cf6 100%);
}

.timeline-item-moderno {
    position: relative;
    margin-bottom: 2rem;
}

.timeline-item-moderno:last-child {
    margin-bottom: 0;
}

.timeline-marker {
    position: absolute;
    left: -2.375rem;
    top: 0;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #6366f1;
    border: 3px solid #ffffff;
    box-shadow: 0 0 0 3px #e0e7ff;
}

.timeline-content {
    background: #f9fafb;
    padding: 1.5rem;
    border-radius: 0.75rem;
    border-left: 3px solid #6366f1;
}

.timeline-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.timeline-role {
    font-size: 1.0625rem;
    font-weight: 600;
    color: #1f2937;
}

.timeline-period {
    font-size: 0.8125rem;
    color: #6366f1;
    font-weight: 600;
    background: rgba(99, 102, 241, 0.1);
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
}

.timeline-company {
    color: #6b7280;
    font-size: 0.9375rem;
    margin-bottom: 1rem;
}

.timeline-list {
    list-style: none;
}

.timeline-list li {
    position: relative;
    padding-left: 1.25rem;
    margin-bottom: 0.5rem;
    color: #4b5563;
    font-size: 0.875rem;
    line-height: 1.6;
}

.timeline-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #6366f1;
    font-size: 1.25rem;
    line-height: 1.2;
}

/* Educação Moderno */
.education-moderno {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.education-item-moderno {
    padding: 1.25rem;
    background: #f9fafb;
    border-radius: 0.75rem;
    border-left: 3px solid #8b5cf6;
}

.education-header-moderno {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.5rem;
}

.education-degree-moderno {
    font-size: 1.0625rem;
    font-weight: 600;
    color: #1f2937;
}

.education-period-moderno {
    font-size: 0.8125rem;
    color: #8b5cf6;
    font-weight: 600;
}

.education-school-moderno {
    color: #6b7280;
    font-size: 0.9375rem;
}

/* Projetos */
.projects-moderno {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.project-item-moderno {
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, rgba(139, 92, 246, 0.05) 100%);
    border-radius: 0.75rem;
    border: 1px solid #e5e7eb;
}

.project-title-moderno {
    font-size: 1.0625rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.75rem;
}

.project-description-moderno {
    color: #4b5563;
    font-size: 0.9375rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.project-tags-moderno {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.project-tag-moderno {
    padding: 0.25rem 0.75rem;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 9999px;
    font-size: 0.75rem;
    color: #6366f1;
    font-weight: 500;
}

/* Certificações Moderno */
.certifications-moderno {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.certification-item-moderno {
    padding: 1rem;
    background: #f9fafb;
    border-radius: 0.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.certification-name-moderno {
    font-size: 0.9375rem;
    font-weight: 600;
    color: #1f2937;
}

.certification-issuer-moderno {
    font-size: 0.8125rem;
    color: #6b7280;
}

.certification-date-moderno {
    font-size: 0.8125rem;
    color: #10b981;
    font-weight: 600;
    background: rgba(16, 185, 129, 0.1);
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
}

/* ========================================
   Template Criativo
   ======================================== */
.criativo {
    border-radius: 1.5rem;
    overflow: hidden;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a3e 50%, #0f0f23 100%);
}

.criativo-header {
    padding: 3rem;
    background: linear-gradient(135deg, #1e1b4b 0%, #312e81 50%, #1e1b4b 100%);
    position: relative;
    overflow: hidden;
}

.criativo-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.3) 0%, transparent 70%);
    border-radius: 50%;
}

.criativo-header-content {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    position: relative;
    z-index: 1;
}

.profile-photo-criativo {
    width: 160px;
    height: 160px;
    border-radius: 1.5rem;
    background: linear-gradient(135deg, #f59e0b 0%, #ef4444 50%, #8b5cf6 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transform: rotate(-5deg);
    transition: transform 0.3s ease;
}

.profile-photo-criativo:hover {
    transform: rotate(0deg) scale(1.05);
}

.profile-photo-criativo i {
    font-size: 4.5rem;
    color: #ffffff;
}

.criativo-intro {
    flex: 1;
}

.criativo-greeting {
    font-size: 1rem;
    color: #a5b4fc;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.criativo-name {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #f59e0b 0%, #ef4444 50%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.75rem;
    letter-spacing: -2px;
}

.criativo-title {
    font-size: 1.25rem;
    color: #e0e7ff;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.criativo-tagline {
    display: flex;
    gap: 1.5rem;
}

.tagline-item {
    font-size: 0.875rem;
    color: #e0e7ff;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    backdrop-filter: blur(10px);
}

.criativo-social {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    position: relative;
    z-index: 1;
}

.criativo-social-link {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    color: #e0e7ff;
    font-size: 1.25rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.criativo-social-link:hover {
    background: linear-gradient(135deg, #f59e0b 0%, #ef4444 100%);
    color: #ffffff;
    transform: translateY(-5px);
}

.criativo-contact {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.criativo-contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #a5b4fc;
    font-size: 0.9375rem;
}

.criativo-contact-item i {
    color: #8b5cf6;
}

/* Seções Criativo */
.criativo-skills-section,
.criativo-about,
.criativo-experience,
.criativo-education,
.criativo-tools,
.criativo-languages,
.criativo-awards {
    padding: 2.5rem 3rem;
}

.criativo-section-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.title-icon {
    font-size: 1.5rem;
}

/* Skills Grid */
.criativo-skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.criativo-skill-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    text-align: center;
}

.criativo-skill-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
    border-color: rgba(139, 92, 246, 0.5);
}

.skill-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.criativo-skill-card h3 {
    color: #ffffff;
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.criativo-skill-card p {
    color: #a5b4fc;
    font-size: 0.8125rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.skill-level {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.skill-bar-criativo {
    flex: 1;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.skill-progress-criativo {
    height: 100%;
    background: linear-gradient(90deg, #f59e0b 0%, #ef4444 100%);
    border-radius: 4px;
    transition: width 1s ease;
}

.skill-level span {
    color: #f59e0b;
    font-weight: 600;
    font-size: 0.875rem;
}

/* About */
.about-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
}

.about-text {
    color: #e0e7ff;
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 0.9375rem;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    align-content: start;
}

.stat-card-criativo {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.2) 0%, rgba(239, 68, 68, 0.2) 100%);
    padding: 1.5rem;
    border-radius: 1rem;
    text-align: center;
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.stat-number-criativo {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #f59e0b 0%, #ef4444 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label-criativo {
    color: #a5b4fc;
    font-size: 0.8125rem;
}

/* Experience Criativo */
.experience-criativo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.experience-card-criativo {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    transition: all 0.3s ease;
}

.experience-card-criativo:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(139, 92, 246, 0.5);
    transform: translateY(-5px);
}

.experience-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #ffffff;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
}

.experience-year {
    color: #8b5cf6;
    font-size: 0.8125rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.experience-role-criativo {
    color: #ffffff;
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.experience-company-criativo {
    color: #a5b4fc;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.experience-list-criativo {
    list-style: none;
}

.experience-list-criativo li {
    position: relative;
    padding-left: 1.25rem;
    margin-bottom: 0.5rem;
    color: #e0e7ff;
    font-size: 0.8125rem;
    line-height: 1.5;
}

.experience-list-criativo li::before {
    content: '✨';
    position: absolute;
    left: 0;
    font-size: 0.75rem;
}

/* Education Criativo */
.education-criativo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.education-card-criativo {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 4px solid #f59e0b;
}

.education-year-criativo {
    color: #f59e0b;
    font-size: 0.8125rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.education-degree-criativo {
    color: #ffffff;
    font-size: 1.0625rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.education-school-criativo {
    color: #a5b4fc;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.education-extra-criativo {
    color: #6b7280;
    font-size: 0.8125rem;
    font-style: italic;
}

/* Tools */
.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.tool-category {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.tool-category-title {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.tool-category-title i {
    color: #8b5cf6;
}

.tool-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tool-tag {
    padding: 0.375rem 0.75rem;
    background: rgba(139, 92, 246, 0.2);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 9999px;
    font-size: 0.75rem;
    color: #e0e7ff;
    transition: all 0.2s ease;
}

.tool-tag:hover {
    background: rgba(139, 92, 246, 0.4);
    border-color: #8b5cf6;
}

/* Languages Criativo */
.languages-criativo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.language-card-criativo {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.language-card-criativo:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: scale(1.02);
}

.language-flag {
    font-size: 2.5rem;
}

.language-info h4 {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.language-info p {
    color: #a5b4fc;
    font-size: 0.8125rem;
}

/* Awards */
.awards-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.award-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem 1.5rem;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.award-icon {
    font-size: 2rem;
}

.award-info h4 {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.award-info p {
    color: #a5b4fc;
    font-size: 0.8125rem;
}

/* Footer Criativo */
.criativo-footer {
    padding: 3rem;
    background: rgba(0, 0, 0, 0.3);
    text-align: center;
}

.footer-quote {
    margin-bottom: 2rem;
}

.footer-quote p {
    color: #e0e7ff;
    font-size: 1.25rem;
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.footer-quote span {
    color: #8b5cf6;
    font-size: 0.9375rem;
}

.footer-cta p {
    color: #ffffff;
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}

.footer-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #f59e0b 0%, #ef4444 100%);
    color: #ffffff;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.footer-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.4);
}

/* ========================================
   Responsividade Templates
   ======================================== */
@media (max-width: 992px) {
    .moderno {
        grid-template-columns: 1fr;
    }
    
    .cv-sidebar {
        padding: 2rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .about-stats {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .template-body {
        padding: 1rem;
    }
    
    .template-actions {
        padding: 0.75rem 1rem;
    }
    
    .action-btn span {
        display: none;
    }
    
    .action-buttons {
        gap: 0.5rem;
    }
    
    .cv-container {
        margin-top: 60px;
    }
    
    .classico-header .header-content {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-info {
        justify-content: center;
    }
    
    .cv-section {
        padding: 1.5rem;
    }
    
    .skills-grid {
        grid-template-columns: 1fr;
    }
    
    .criativo-header-content {
        flex-direction: column;
        text-align: center;
    }
    
    .criativo-tagline {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .criativo-social {
        justify-content: center;
    }
    
    .criativo-contact {
        justify-content: center;
    }
    
    .criativo-skills-section,
    .criativo-about,
    .criativo-experience,
    .criativo-education,
    .criativo-tools,
    .criativo-languages,
    .criativo-awards {
        padding: 1.5rem;
    }
    
    .about-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media print {
    .template-body {
        background: #ffffff;
        padding: 0;
    }
    
    .template-actions {
        display: none;
    }
    
    .cv-container {
        margin: 0;
    }
    
    .cv-paper {
        box-shadow: none;
        max-width: 100%;
    }
    
    /* Ajustes específicos para impressão */
    .moderno {
        display: block;
    }
    
    .cv-sidebar {
        background: #1e1b4b;
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }
    
    .criativo {
        background: #0f0f23;
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }
}
