/* ================================================
   CURRÍCULO PRO - Professional Styles
   ================================================ */

:root {
    /* Colors */
    --primary: #6366f1;
    --primary-dark: #4f46e5;
    --primary-light: #818cf8;
    --secondary: #0ea5e9;
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;

    /* Neutrals */
    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;

    /* Premium Gradients */
    --gradient-primary: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #d946ef 100%);
    --gradient-secondary: linear-gradient(135deg, #0ea5e9 0%, #06b6d4 50%, #14b8a6 100%);
    --gradient-success: linear-gradient(135deg, #10b981 0%, #059669 50%, #047857 100%);
    --gradient-warm: linear-gradient(135deg, #f59e0b 0%, #ef4444 50%, #ec4899 100%);
    --gradient-dark: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    --gradient-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    --gradient-hero: linear-gradient(180deg, #f8fafc 0%, #eef2ff 50%, #e0e7ff 100%);

    /* Typography */
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Playfair Display', serif;

    /* Spacing */
    --container-width: 1200px;
    --section-padding: 100px;

    /* Premium Effects */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-glow: 0 0 40px rgba(99, 102, 241, 0.3);
    --shadow-glow-lg: 0 0 60px rgba(99, 102, 241, 0.4), 0 0 100px rgba(139, 92, 246, 0.2);

    /* Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.3);
    --glass-blur: blur(20px);

    --radius-sm: 6px;
    --radius: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* ================================================
   RESET & BASE
   ================================================ */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-800);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
}

input,
textarea,
button {
    font-family: inherit;
    font-size: inherit;
}

/* ================================================
   UTILITIES
   ================================================ */

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hidden {
    display: none !important;
}

/* ================================================
   BUTTONS
   ================================================ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border: none;
    border-radius: var(--radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

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

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

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(99, 102, 241, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: var(--shadow-glow-lg);
}

.btn-primary:active {
    transform: translateY(-1px) scale(0.98);
}

.btn-secondary {
    background: var(--white);
    color: var(--gray-700);
    border: 2px solid var(--gray-200);
}

.btn-secondary:hover {
    background: var(--gray-50);
    border-color: var(--primary-light);
    color: var(--primary);
    transform: translateY(-2px);
}

.btn-success {
    background: var(--gradient-success);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(16, 185, 129, 0.4);
}

.btn-success:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 6px 30px rgba(16, 185, 129, 0.5);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--gray-300);
    color: var(--gray-600);
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(99, 102, 241, 0.05);
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1.1rem;
    border-radius: var(--radius-lg);
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.875rem;
}

.btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none !important;
}

/* ================================================
   HEADER
   ================================================ */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-bottom: 1px solid var(--glass-border);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.5rem;
    font-weight: 700;
}

.logo-icon {
    font-size: 1.8rem;
}

.logo-highlight {
    color: var(--primary);
}

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

.nav-link {
    color: var(--gray-600);
    font-weight: 500;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--primary);
}

.btn-nav {
    background: var(--gradient-primary);
    color: var(--white) !important;
    padding: 10px 20px;
    border-radius: var(--radius);
}

.mobile-menu {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* ================================================
   HERO
   ================================================ */

.hero {
    padding: 160px 0 100px;
    background: var(--gradient-hero);
    overflow: hidden;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(99, 102, 241, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(217, 70, 239, 0.05) 0%, transparent 40%);
    pointer-events: none;
}

#particles-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    animation: slideInUp 0.8s ease-out;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes pulse-glow {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(99, 102, 241, 0.4);
    }

    50% {
        box-shadow: 0 0 40px rgba(99, 102, 241, 0.6), 0 0 60px rgba(139, 92, 246, 0.3);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% center;
    }

    100% {
        background-position: 200% center;
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary);
    box-shadow: var(--shadow-md);
    margin-bottom: 24px;
    animation: float 3s ease-in-out infinite;
}

.hero-badge span {
    animation: pulse-glow 2s ease-in-out infinite;
    padding: 4px 8px;
    border-radius: 20px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--gray-900);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--gray-600);
    margin-bottom: 32px;
    max-width: 500px;
}

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

.hero-stats {
    display: flex;
    gap: 40px;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--gray-500);
}

/* Resume Preview Card */
.hero-image {
    display: flex;
    justify-content: center;
}

.resume-preview-card {
    width: 280px;
    height: 380px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    transform: rotate(3deg);
    transition: var(--transition);
}

.resume-preview-card:hover {
    transform: rotate(0deg) scale(1.02);
}

.preview-header {
    height: 80px;
    background: var(--gradient-primary);
}

.preview-avatar {
    width: 60px;
    height: 60px;
    background: var(--white);
    border-radius: 50%;
    margin: -30px auto 20px;
    box-shadow: var(--shadow);
}

.preview-lines {
    padding: 0 24px;
}

.preview-line {
    height: 12px;
    background: var(--gray-200);
    border-radius: 6px;
    margin-bottom: 12px;
}

.preview-line.w80 {
    width: 80%;
}

.preview-line.w60 {
    width: 60%;
}

.preview-line.w90 {
    width: 90%;
}

.preview-line.w70 {
    width: 70%;
}

.preview-line.w85 {
    width: 85%;
}

/* ================================================
   FEATURES
   ================================================ */

.features {
    padding: var(--section-padding) 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--gray-900);
}

.section-subtitle {
    text-align: center;
    color: var(--gray-500);
    margin-bottom: 60px;
}

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

.feature-card {
    text-align: center;
    padding: 40px 32px;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-100);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-xl), var(--shadow-glow);
    border-color: transparent;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
    display: inline-block;
    transition: var(--transition-bounce);
}

.feature-card:hover .feature-icon {
    transform: scale(1.2) rotate(-5deg);
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--gray-800);
}

.feature-card p {
    color: var(--gray-500);
    line-height: 1.6;
}

/* ================================================
   TEMPLATES SECTION
   ================================================ */

.templates-section {
    padding: var(--section-padding) 0;
    background: var(--gray-50);
}

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

.template-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    position: relative;
}

.template-card::after {
    content: 'Selecionar';
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: var(--gradient-primary);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    opacity: 0;
    transition: var(--transition);
}

.template-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-xl), var(--shadow-glow);
}

.template-card:hover::after {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.template-card.selected {
    border-color: var(--primary);
    box-shadow: var(--shadow-glow);
}

.template-preview {
    height: 200px;
    border-radius: var(--radius);
    margin-bottom: 16px;
    overflow: hidden;
    background: var(--gray-100);
}

/* Template Moderno */
.template-moderno {
    display: flex;
}

.template-moderno .tp-sidebar {
    width: 35%;
    background: var(--primary);
}

.template-moderno .tp-content {
    flex: 1;
    padding: 20px;
}

/* Template Clássico */
.template-classico .tp-header-bar {
    height: 40px;
    background: var(--gray-800);
}

.template-classico .tp-body {
    padding: 20px;
}

/* Template Criativo */
.template-criativo {
    display: flex;
}

.template-criativo .tp-accent {
    width: 8px;
    background: linear-gradient(180deg, #f59e0b, #ef4444, #8b5cf6);
}

.template-criativo .tp-main {
    flex: 1;
    padding: 20px;
}

.template-criativo .tp-circle {
    width: 50px;
    height: 50px;
    background: var(--gray-300);
    border-radius: 50%;
    margin-bottom: 16px;
}

.tp-line {
    height: 10px;
    background: var(--gray-200);
    border-radius: 5px;
    margin-bottom: 10px;
}

.tp-line.short {
    width: 60%;
}

.template-card h4 {
    font-size: 1.1rem;
    margin-bottom: 4px;
    color: var(--gray-800);
}

.template-card p {
    font-size: 0.875rem;
    color: var(--gray-500);
}

/* ================================================
   BUILDER SECTION
   ================================================ */

.builder-section {
    padding: var(--section-padding) 0;
}

.builder-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

/* Form Panel */
.form-panel {
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    padding: 32px;
}

/* Progress Steps */
.form-progress {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    position: relative;
}

.form-progress::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: var(--gray-200);
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-200);
    color: var(--gray-500);
    border-radius: 50%;
    font-weight: 600;
    transition: var(--transition);
}

.progress-step.active .step-number,
.progress-step.completed .step-number {
    background: var(--gradient-primary);
    color: var(--white);
}

.step-label {
    font-size: 0.75rem;
    color: var(--gray-500);
    font-weight: 500;
}

.progress-step.active .step-label {
    color: var(--primary);
}

/* Form Steps */
.form-step {
    display: none;
}

.form-step.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-step-title {
    font-size: 1.5rem;
    margin-bottom: 24px;
    color: var(--gray-800);
}

/* Form Groups */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 500;
    color: var(--gray-700);
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius);
    transition: var(--transition);
    background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-400);
}

.form-group small {
    display: block;
    margin-top: 4px;
    font-size: 0.75rem;
    color: var(--gray-400);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

/* Photo Upload */
.form-row-photo {
    grid-template-columns: 1fr auto;
    align-items: flex-start;
}

.photo-upload-group {
    flex-shrink: 0;
}

.photo-upload-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.photo-preview {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--gray-100);
    border: 3px dashed var(--gray-300);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    transition: var(--transition);
    cursor: pointer;
}

.photo-preview:hover {
    border-color: var(--primary);
    background: rgba(99, 102, 241, 0.05);
}

.photo-preview.has-photo {
    border: 3px solid var(--primary);
}

.photo-placeholder {
    font-size: 2rem;
    color: var(--gray-400);
}

.photo-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.photo-actions {
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: center;
}

.photo-btn,
.photo-remove {
    font-size: 0.75rem !important;
    padding: 6px 12px !important;
    white-space: nowrap;
}

.photo-remove {
    color: var(--danger) !important;
    border-color: var(--danger) !important;
}

.photo-remove:hover {
    background: var(--danger) !important;
    color: white !important;
}



/* Experience & Education Items */
.experience-item,
.education-item {
    background: var(--gray-50);
    border-radius: var(--radius);
    padding: 20px;
    margin-bottom: 16px;
    border: 1px solid var(--gray-200);
}

.btn-add {
    width: 100%;
    margin-bottom: 24px;
}

.form-buttons {
    display: flex;
    gap: 16px;
    justify-content: flex-end;
    padding-top: 24px;
    border-top: 1px solid var(--gray-100);
}

/* Template Selector */
.template-selector {
    margin: 24px 0;
    padding: 20px;
    background: var(--gray-50);
    border-radius: var(--radius);
}

.template-selector label {
    display: block;
    margin-bottom: 12px;
    font-weight: 600;
}

.template-options {
    display: flex;
    gap: 12px;
}

.template-option {
    flex: 1;
    padding: 12px;
    text-align: center;
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
}

.template-option:hover {
    border-color: var(--primary-light);
}

.template-option.active {
    border-color: var(--primary);
    background: rgba(99, 102, 241, 0.05);
}

.template-option input {
    display: none;
}

.template-option span {
    font-weight: 500;
}

/* ================================================
   PREVIEW PANEL
   ================================================ */

.preview-panel {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.preview-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.preview-header h3 {
    font-size: 1.1rem;
    color: var(--gray-700);
}

.preview-container {
    background: var(--gray-100);
    border-radius: var(--radius-lg);
    min-height: 600px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.preview-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 600px;
    color: var(--gray-400);
    text-align: center;
    padding: 40px;
}

.preview-placeholder span {
    font-size: 3rem;
    margin-bottom: 16px;
}

/* ================================================
   RESUME TEMPLATES
   ================================================ */

.resume-template {
    background: var(--white);
    width: 100%;
    min-height: 800px;
    font-size: 11px;
    line-height: 1.4;
}

/* Template Moderno */
.resume-moderno {
    display: flex;
}

.resume-moderno .sidebar {
    width: 35%;
    background: linear-gradient(180deg, #6366f1 0%, #4f46e5 100%);
    color: var(--white);
    padding: 30px 20px;
}

.resume-moderno .main {
    flex: 1;
    padding: 30px;
}

.resume-moderno .profile-section {
    text-align: center;
    margin-bottom: 30px;
}

.resume-moderno .profile-avatar {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.resume-moderno .profile-name {
    font-size: 1.3em;
    font-weight: 700;
    margin-bottom: 5px;
}

.resume-moderno .profile-title {
    font-size: 0.9em;
    opacity: 0.9;
}

.resume-moderno .sidebar-section {
    margin-bottom: 25px;
}

.resume-moderno .sidebar-title {
    font-size: 0.85em;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
}

.resume-moderno .contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    font-size: 0.85em;
}

.resume-moderno .skill-tag {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 4px 10px;
    border-radius: 12px;
    margin: 3px;
    font-size: 0.8em;
}

.resume-moderno .main-title {
    font-size: 1.8em;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 5px;
}

.resume-moderno .main-subtitle {
    color: var(--primary);
    font-size: 1em;
    margin-bottom: 20px;
}

.resume-moderno .section {
    margin-bottom: 25px;
}

.resume-moderno .section-title {
    font-size: 1em;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--primary);
}

.resume-moderno .summary {
    color: var(--gray-600);
    font-size: 0.9em;
}

.resume-moderno .exp-item,
.resume-moderno .edu-item {
    margin-bottom: 15px;
}

.resume-moderno .exp-header,
.resume-moderno .edu-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
}

.resume-moderno .exp-title,
.resume-moderno .edu-title {
    font-weight: 600;
    color: var(--gray-800);
}

.resume-moderno .exp-company,
.resume-moderno .edu-school {
    color: var(--primary);
    font-size: 0.9em;
}

.resume-moderno .exp-date,
.resume-moderno .edu-date {
    color: var(--gray-500);
    font-size: 0.85em;
}

.resume-moderno .exp-desc {
    color: var(--gray-600);
    font-size: 0.85em;
}

/* Template Clássico */
.resume-classico {
    padding: 0;
}

.resume-classico .header-bar {
    background: var(--gray-800);
    color: var(--white);
    padding: 30px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.resume-classico .header-info {
    text-align: left;
}

.resume-classico .header-name {
    font-size: 2em;
    font-weight: 700;
    margin-bottom: 5px;
}

.resume-classico .header-title {
    font-size: 1.1em;
    opacity: 0.9;
}

.resume-classico .contact-bar {
    background: var(--gray-100);
    padding: 15px 30px;
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    font-size: 0.85em;
    color: var(--gray-600);
}

.resume-classico .contact-bar span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.resume-classico .content {
    padding: 30px;
}

.resume-classico .section {
    margin-bottom: 25px;
}

.resume-classico .section-title {
    font-size: 1.1em;
    font-weight: 700;
    color: var(--gray-800);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--gray-800);
}

.resume-classico .summary {
    color: var(--gray-600);
    line-height: 1.6;
}

.resume-classico .exp-item,
.resume-classico .edu-item {
    margin-bottom: 18px;
    padding-left: 15px;
    border-left: 3px solid var(--gray-300);
}

.resume-classico .exp-title,
.resume-classico .edu-title {
    font-weight: 600;
    color: var(--gray-800);
}

.resume-classico .exp-meta,
.resume-classico .edu-meta {
    color: var(--gray-500);
    font-size: 0.9em;
    margin: 3px 0;
}

.resume-classico .exp-desc {
    color: var(--gray-600);
    font-size: 0.9em;
    margin-top: 5px;
}

.resume-classico .skills-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.resume-classico .skill-item {
    background: var(--gray-100);
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 0.85em;
    color: var(--gray-700);
}

/* Template Criativo */
.resume-criativo {
    display: flex;
}

.resume-criativo .accent-bar {
    width: 10px;
    background: linear-gradient(180deg, #f59e0b 0%, #ef4444 50%, #8b5cf6 100%);
}

.resume-criativo .content {
    flex: 1;
    padding: 30px;
}

.resume-criativo .header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--gray-200);
}

.resume-criativo .avatar {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #f59e0b 0%, #ef4444 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.8em;
    font-weight: 700;
}

.resume-criativo .header-info h1 {
    font-size: 1.8em;
    color: var(--gray-800);
    margin-bottom: 3px;
}

.resume-criativo .header-info h2 {
    font-size: 1em;
    color: #f59e0b;
    font-weight: 500;
}

.resume-criativo .contact-row {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 25px;
    padding: 15px;
    background: var(--gray-50);
    border-radius: var(--radius);
    font-size: 0.85em;
}

.resume-criativo .contact-item {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--gray-600);
}

.resume-criativo .section {
    margin-bottom: 25px;
}

.resume-criativo .section-title {
    font-size: 1em;
    font-weight: 700;
    color: #ef4444;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.resume-criativo .section-title::after {
    content: '';
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, #ef4444 0%, transparent 100%);
}

.resume-criativo .summary {
    color: var(--gray-600);
    line-height: 1.6;
}

.resume-criativo .exp-item,
.resume-criativo .edu-item {
    margin-bottom: 15px;
    padding: 12px;
    background: var(--gray-50);
    border-radius: var(--radius-sm);
    border-left: 3px solid #8b5cf6;
}

.resume-criativo .exp-title,
.resume-criativo .edu-title {
    font-weight: 600;
    color: var(--gray-800);
}

.resume-criativo .exp-meta,
.resume-criativo .edu-meta {
    color: #8b5cf6;
    font-size: 0.9em;
}

.resume-criativo .exp-date,
.resume-criativo .edu-date {
    color: var(--gray-400);
    font-size: 0.8em;
}

.resume-criativo .exp-desc {
    color: var(--gray-600);
    font-size: 0.85em;
    margin-top: 5px;
}

.resume-criativo .skills-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.resume-criativo .skill-tag {
    background: linear-gradient(135deg, #f59e0b 0%, #ef4444 100%);
    color: var(--white);
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8em;
}

/* ================================================
   FOOTER
   ================================================ */

.footer {
    background: var(--gray-900);
    color: var(--gray-400);
    padding: 60px 0 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--gray-800);
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-brand .logo-icon {
    font-size: 1.5rem;
}

.footer-brand .logo-text {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
}

.footer-brand p {
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: 32px;
}

.footer-links a {
    color: var(--gray-400);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--white);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    font-size: 0.875rem;
}

.footer-bottom p {
    margin-bottom: 8px;
}

/* ================================================
   TOAST
   ================================================ */

.toast {
    position: fixed;
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%);
    padding: 16px 32px;
    background: var(--gray-800);
    color: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    z-index: 10000;
    transition: var(--transition);
}

.toast.show {
    bottom: 30px;
}

.toast.success {
    background: var(--success);
}

.toast.error {
    background: var(--danger);
}

/* ================================================
   LOADING OVERLAY
   ================================================ */

.loading-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.loading-content {
    text-align: center;
    color: var(--white);
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top-color: var(--white);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 16px;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* ================================================
   RESPONSIVE
   ================================================ */

@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-image {
        display: none;
    }

    .builder-layout {
        grid-template-columns: 1fr;
    }

    .preview-panel {
        position: static;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px;
    }

    .nav {
        display: none;
    }

    .mobile-menu {
        display: block;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .features-grid,
    .templates-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .template-options {
        flex-direction: column;
    }

    .footer-content {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .form-panel {
        padding: 20px;
    }

    .form-progress {
        flex-wrap: wrap;
        gap: 16px;
    }

    .step-label {
        display: none;
    }
}

/* ================================================
   TESTIMONIALS / SOCIAL PROOF
   ================================================ */

.social-proof {
    padding: 60px 0;
    background: var(--white);
    border-top: 1px solid var(--gray-100);
    border-bottom: 1px solid var(--gray-100);
}

.social-proof-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.social-proof-avatars {
    display: flex;
    align-items: center;
}

.avatar-stack {
    display: flex;
}

.avatar-stack img,
.avatar-stack .avatar-placeholder {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 3px solid var(--white);
    margin-left: -12px;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
}

.avatar-stack>*:first-child {
    margin-left: 0;
}

.social-proof-text {
    text-align: center;
}

.social-proof-text strong {
    display: block;
    font-size: 2rem;
    color: var(--gray-900);
    margin-bottom: 4px;
}

.social-proof-text span {
    color: var(--gray-500);
}

.star-rating {
    color: #fbbf24;
    font-size: 1.2rem;
    letter-spacing: 2px;
}

/* ================================================
   CONFETTI CELEBRATION
   ================================================ */

.confetti-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    overflow: hidden;
}

.confetti {
    position: absolute;
    width: 10px;
    height: 10px;
    opacity: 0;
}

@keyframes confetti-fall {
    0% {
        opacity: 1;
        transform: translateY(-100vh) rotate(0deg);
    }

    100% {
        opacity: 0;
        transform: translateY(100vh) rotate(720deg);
    }
}

/* ================================================
   SCROLL ANIMATIONS
   ================================================ */

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition-slow);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger animation for grids */
.features-grid .feature-card,
.templates-grid .template-card {
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition-slow);
}

.features-grid .feature-card.visible,
.templates-grid .template-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.features-grid .feature-card:nth-child(1) {
    transition-delay: 0.1s;
}

.features-grid .feature-card:nth-child(2) {
    transition-delay: 0.2s;
}

.features-grid .feature-card:nth-child(3) {
    transition-delay: 0.3s;
}

.templates-grid .template-card:nth-child(1) {
    transition-delay: 0.1s;
}

.templates-grid .template-card:nth-child(2) {
    transition-delay: 0.2s;
}

.templates-grid .template-card:nth-child(3) {
    transition-delay: 0.3s;
}

/* ================================================
   COUNTER ANIMATION
   ================================================ */

.counter {
    display: inline-block;
    font-variant-numeric: tabular-nums;
}

/* ================================================
   FORM INPUT FOCUS GLOW
   ================================================ */

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.15), var(--shadow-glow);
}

/* Success state */
.form-group.valid input {
    border-color: var(--success);
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

/* ================================================
   LOADING SKELETON
   ================================================ */

.skeleton {
    background: linear-gradient(90deg, var(--gray-200) 25%, var(--gray-100) 50%, var(--gray-200) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: var(--radius);
}

/* ================================================
   DARK MODE
   ================================================ */

[data-theme="dark"] {
    --white: #1a1a2e;
    --gray-50: #16213e;
    --gray-100: #1f2937;
    --gray-200: #374151;
    --gray-300: #4b5563;
    --gray-400: #6b7280;
    --gray-500: #9ca3af;
    --gray-600: #d1d5db;
    --gray-700: #e5e7eb;
    --gray-800: #f3f4f6;
    --gray-900: #f9fafb;
    --gradient-hero: linear-gradient(180deg, #1a1a2e 0%, #16213e 50%, #0f0f23 100%);
    --glass-bg: rgba(26, 26, 46, 0.8);
    --glass-border: rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] body {
    background: #0f0f23;
}

[data-theme="dark"] .header {
    background: rgba(26, 26, 46, 0.95);
}

[data-theme="dark"] .logo-text {
    color: var(--gray-100);
}

[data-theme="dark"] .resume-template {
    background: #ffffff;
    color: #1f2937;
}

/* Dark Mode Toggle */
.dark-mode-toggle {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
    background: var(--gradient-primary);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.dark-mode-toggle:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-glow-lg);
}

/* ================================================
   TOOLTIPS
   ================================================ */

.tooltip-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    background: var(--gray-300);
    color: var(--gray-600);
    border-radius: 50%;
    font-size: 0.7rem;
    font-weight: 700;
    cursor: help;
    margin-left: 6px;
    position: relative;
    transition: var(--transition);
}

.tooltip-icon:hover {
    background: var(--primary);
    color: white;
}

.tooltip-icon::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    background: var(--gray-900);
    color: white;
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 400;
    white-space: nowrap;
    max-width: 250px;
    white-space: normal;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 100;
    box-shadow: var(--shadow-lg);
}

.tooltip-icon::before {
    content: '';
    position: absolute;
    bottom: calc(100% + 2px);
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top-color: var(--gray-900);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.tooltip-icon:hover::after,
.tooltip-icon:hover::before {
    opacity: 1;
    visibility: visible;
}

/* ================================================
   INPUT VALIDATION STATES
   ================================================ */

.form-group.error input,
.form-group.error textarea {
    border-color: var(--danger);
    background: rgba(239, 68, 68, 0.05);
}

.form-group.error input:focus,
.form-group.error textarea:focus {
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.15);
}

.form-group.success input,
.form-group.success textarea {
    border-color: var(--success);
    background: rgba(16, 185, 129, 0.05);
}

.form-group.success input:focus,
.form-group.success textarea:focus {
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.15);
}

.field-error {
    color: var(--danger);
    font-size: 0.75rem;
    margin-top: 4px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.field-success {
    color: var(--success);
    font-size: 0.75rem;
    margin-top: 4px;
    display: flex;
    align-items: center;
    gap: 4px;
}

/* ================================================
   COLOR PICKER
   ================================================ */

.color-picker-section {
    margin: 20px 0;
    padding: 20px;
    background: var(--gray-50);
    border-radius: var(--radius);
}

.color-picker-section label {
    display: block;
    margin-bottom: 12px;
    font-weight: 600;
}

.color-options {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.color-option {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 3px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}

.color-option:hover {
    transform: scale(1.15);
}

.color-option.active {
    border-color: var(--gray-800);
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
}

.color-option.active::after {
    content: '✓';
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.color-option[data-color="indigo"] {
    background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
}

.color-option[data-color="emerald"] {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.color-option[data-color="rose"] {
    background: linear-gradient(135deg, #f43f5e 0%, #e11d48 100%);
}

.color-option[data-color="amber"] {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.color-option[data-color="cyan"] {
    background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
}

.color-option[data-color="purple"] {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
}

.color-option[data-color="slate"] {
    background: linear-gradient(135deg, #475569 0%, #334155 100%);
}

/* ================================================
   TIPS SECTION
   ================================================ */

.tips-section {
    padding: var(--section-padding) 0;
    background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 100%);
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.tip-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--success);
    transition: var(--transition);
}

.tip-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.tip-card .tip-icon {
    font-size: 2rem;
    margin-bottom: 12px;
}

.tip-card h4 {
    font-size: 1.1rem;
    color: var(--gray-800);
    margin-bottom: 8px;
}

.tip-card p {
    color: var(--gray-600);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ================================================
   FAQ SECTION
   ================================================ */

.faq-section {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.faq-container {
    max-width: 800px;
    margin: 40px auto 0;
}

.faq-item {
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    margin-bottom: 12px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--primary-light);
}

.faq-question {
    width: 100%;
    padding: 20px 24px;
    background: var(--gray-50);
    border: none;
    text-align: left;
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-800);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--gray-100);
}

.faq-question .faq-icon {
    font-size: 1.2rem;
    transition: var(--transition);
}

.faq-item.active .faq-question {
    background: var(--primary);
    color: white;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer-content {
    padding: 20px 24px;
    color: var(--gray-600);
    line-height: 1.7;
}

/* ================================================
   CLEAR DATA BUTTON
   ================================================ */

.btn-clear {
    background: transparent;
    border: 2px solid var(--danger);
    color: var(--danger);
}

.btn-clear:hover {
    background: var(--danger);
    color: white;
}

/* ================================================
   NEW TEMPLATES - MINIMALISTA
   ================================================ */

.template-minimalista {
    background: #fafafa;
}

.template-minimalista .tp-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.template-minimalista .tp-header-line {
    height: 2px;
    background: var(--gray-300);
    width: 40%;
}

.resume-minimalista {
    background: #ffffff;
    padding: 40px;
}

.resume-minimalista .header {
    text-align: center;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--gray-200);
    margin-bottom: 30px;
}

.resume-minimalista .header-name {
    font-size: 2.2em;
    font-weight: 300;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gray-800);
    margin-bottom: 8px;
}

.resume-minimalista .header-title {
    font-size: 1em;
    color: var(--gray-500);
    letter-spacing: 2px;
}

.resume-minimalista .contact-row {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 15px;
    font-size: 0.85em;
    color: var(--gray-500);
}

.resume-minimalista .section {
    margin-bottom: 30px;
}

.resume-minimalista .section-title {
    font-size: 0.9em;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gray-400);
    margin-bottom: 15px;
    font-weight: 500;
}

.resume-minimalista .summary {
    color: var(--gray-600);
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

.resume-minimalista .exp-item,
.resume-minimalista .edu-item {
    margin-bottom: 20px;
    padding-left: 0;
}

.resume-minimalista .exp-title,
.resume-minimalista .edu-title {
    font-weight: 600;
    color: var(--gray-800);
}

.resume-minimalista .exp-meta,
.resume-minimalista .edu-meta {
    color: var(--gray-500);
    font-size: 0.9em;
}

.resume-minimalista .skills-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
}

.resume-minimalista .skill-item {
    padding: 6px 16px;
    border: 1px solid var(--gray-300);
    border-radius: 20px;
    font-size: 0.85em;
    color: var(--gray-600);
}

/* ================================================
   NEW TEMPLATES - EXECUTIVO
   ================================================ */

.template-executivo {
    background: #1a1a2e;
}

.template-executivo .tp-gold-bar {
    height: 6px;
    background: linear-gradient(90deg, #d4af37 0%, #f4e4bc 50%, #d4af37 100%);
}

.template-executivo .tp-body {
    padding: 20px;
}

.resume-executivo {
    background: #ffffff;
}

.resume-executivo .header-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #2d2d44 100%);
    color: white;
    padding: 35px 30px;
    display: flex;
    align-items: center;
    gap: 25px;
}

.resume-executivo .header-photo {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    border: 3px solid #d4af37;
    object-fit: cover;
}

.resume-executivo .header-initials {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    border: 3px solid #d4af37;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    background: rgba(212, 175, 55, 0.2);
    color: #d4af37;
}

.resume-executivo .header-info h1 {
    font-size: 1.8em;
    margin-bottom: 5px;
    font-weight: 700;
}

.resume-executivo .header-info h2 {
    font-size: 1em;
    color: #d4af37;
    font-weight: 400;
}

.resume-executivo .gold-bar {
    height: 4px;
    background: linear-gradient(90deg, #d4af37 0%, #f4e4bc 50%, #d4af37 100%);
}

.resume-executivo .contact-bar {
    background: var(--gray-100);
    padding: 12px 30px;
    display: flex;
    justify-content: center;
    gap: 30px;
    font-size: 0.85em;
    color: var(--gray-600);
}

.resume-executivo .content {
    padding: 30px;
}

.resume-executivo .section {
    margin-bottom: 25px;
}

.resume-executivo .section-title {
    font-size: 1em;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 2px solid #d4af37;
    display: inline-block;
}

.resume-executivo .exp-item,
.resume-executivo .edu-item {
    margin-bottom: 18px;
    padding-left: 15px;
    border-left: 2px solid #d4af37;
}

.resume-executivo .exp-title,
.resume-executivo .edu-title {
    font-weight: 600;
    color: var(--gray-800);
}

.resume-executivo .exp-meta,
.resume-executivo .edu-meta {
    color: #d4af37;
    font-size: 0.9em;
}

.resume-executivo .skills-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.resume-executivo .skill-item {
    background: #1a1a2e;
    color: white;
    padding: 6px 14px;
    border-radius: 4px;
    font-size: 0.85em;
}

/* ================================================
   FORM ACTIONS BAR
   ================================================ */

.form-actions-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    margin-bottom: 24px;
    border-bottom: 1px solid var(--gray-200);
}

.form-actions-bar .btn-clear {
    font-size: 0.85rem;
}

/* ================================================
   RESPONSIVE ADJUSTMENTS FOR NEW ELEMENTS
   ================================================ */

@media (max-width: 768px) {
    .tips-grid {
        grid-template-columns: 1fr;
    }

    .color-options {
        justify-content: center;
    }

    .dark-mode-toggle {
        bottom: 16px;
        right: 16px;
        width: 44px;
        height: 44px;
    }

    .tooltip-icon::after {
        max-width: 200px;
        left: auto;
        right: -10px;
        transform: none;
    }

    .tooltip-icon::before {
        left: auto;
        right: 6px;
        transform: none;
    }
}

/* ================================================
   FOOTER CONTACT SECTION
   ================================================ */

.footer-contact {
    text-align: center;
}

.footer-contact h4 {
    font-size: 1rem;
    margin-bottom: 8px;
    color: var(--white);
}

.footer-contact a {
    color: var(--primary-light);
    font-weight: 500;
    transition: var(--transition);
    display: inline-block;
    margin-bottom: 4px;
}

.footer-contact a:hover {
    color: var(--white);
    text-decoration: underline;
}

.footer-contact p {
    font-size: 0.85rem;
    color: var(--gray-400);
}