/* ============================================================
   NOAH SCHEFFEL — Design System Principal
   Paleta: Azul #3405C6 + Rosa #FF00FF + Branco
   Fonte: Lato (Google Fonts)
   ============================================================ */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,400&family=Playfair+Display:wght@700;900&display=swap');

/* ============================================================
   CSS VARIABLES
   ============================================================ */
:root {
    --blue:        #F00FF7;
    --blue-dark:   #C200C9;
    --blue-deeper: #8A008F;
    --blue-light:  #F555F9;
    --pink:        #3405C6;
    --pink-bright: #5D2BE8;
    --pink-soft:   #8362EE;
    --white:       #FFFFFF;
    --off-white:   #F5F5F0;
    --gray-50:     #F9FAFB;
    --gray-100:    #F3F4F6;
    --gray-200:    #E5E7EB;
    --gray-400:    #9CA3AF;
    --gray-600:    #4B5563;
    --gray-800:    #1F2937;
    --text-dark:   #141228;
    --text-body:   #374151;
    --text-muted:  #6B7280;
    
    --gradient-main:   linear-gradient(135deg, var(--blue) 0%, var(--pink) 100%);
    --gradient-blue:   linear-gradient(135deg, var(--blue-deeper) 0%, var(--blue-light) 100%);
    --gradient-pink:   linear-gradient(135deg, var(--pink) 0%, var(--pink-bright) 100%);
    --gradient-hero:   linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 50%, var(--pink) 100%);
    
    --shadow-sm:   0 2px 8px rgba(52,5,198,0.08);
    --shadow-md:   0 8px 30px rgba(52,5,198,0.12);
    --shadow-lg:   0 20px 60px rgba(52,5,198,0.18);
    --shadow-pink: 0 8px 30px rgba(232,0,232,0.2);
    
    --radius-sm:  8px;
    --radius-md:  16px;
    --radius-lg:  24px;
    --radius-xl:  40px;
    --radius-full: 9999px;
    
    --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);
    
    --nav-height: 72px;
    --section-padding: 100px 0;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-body);
    background-color: var(--off-white);
    line-height: 1.7;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--blue);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--pink);
}

ul, ol { list-style: none; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.25;
    color: var(--text-dark);
    font-weight: 900;
}

.display-1 { font-size: clamp(52px, 8vw, 96px); letter-spacing: -2px; }
.display-2 { font-size: clamp(40px, 6vw, 72px); letter-spacing: -1.5px; }
.h1 { font-size: clamp(32px, 5vw, 56px); }
.h2 { font-size: clamp(28px, 4vw, 44px); }
.h3 { font-size: clamp(22px, 3vw, 32px); }

.serif { font-family: 'Playfair Display', serif; }
.gradient-text {
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: var(--section-padding);
}

.section-alt {
    background: var(--white);
}

/* Section headers */
.section-header {
    text-align: center;
    margin-bottom: 72px;
}

.section-tag {
    display: inline-block;
    background: linear-gradient(135deg, rgba(52,5,198,0.08), rgba(232,0,232,0.08));
    border: 1px solid rgba(52,5,198,0.2);
    color: var(--blue);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: var(--radius-full);
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(32px, 4vw, 52px);
    letter-spacing: -1px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.section-desc {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Divider */
.divider-gradient {
    width: 64px;
    height: 4px;
    background: var(--gradient-main);
    border-radius: var(--radius-full);
    margin: 20px auto;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--nav-height);
    display: flex;
    align-items: center;
    transition: var(--transition-slow);
    padding: 0 20px;
}

.navbar.transparent {
    background: transparent;
}

.navbar.scrolled {
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(20px);
    box-shadow: 0 2px 30px rgba(52,5,198,0.1);
}

.navbar-inner {
    max-width: 1440px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar-logo {
    height: 44px;
    width: auto;
    transition: var(--transition);
}

.navbar-logo.dark { display: none; }
.navbar.scrolled .navbar-logo.light { display: none; }
.navbar.scrolled .navbar-logo.dark { display: block; }

.navbar-nav {
    display: flex;
    align-items: center;
    gap: 2px;
}

.navbar-nav a {
    color: rgba(255,255,255,0.9);
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 0px;
    padding: 6px 6px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.navbar.scrolled .navbar-nav a {
    color: var(--text-dark);
}

.navbar-nav a:hover {
    background: rgba(255,255,255,0.15);
    color: white;
}

.navbar.scrolled .navbar-nav a:hover {
    background: rgba(52,5,198,0.08);
    color: var(--blue);
}

.navbar-cta {
    background: var(--gradient-main) !important;
    color: white !important;
    border-radius: var(--radius-full) !important;
    padding: 10px 22px !important;
}

.navbar-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-pink) !important;
    color: white !important;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    flex-direction: column;
    gap: 5px;
}

.menu-toggle span {
    display: block;
    width: 26px;
    height: 2px;
    background: white;
    border-radius: 2px;
    transition: var(--transition);
}

.navbar.scrolled .menu-toggle span {
    background: var(--text-dark);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
    min-height: 100vh;
    background: var(--gradient-hero);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Background decorativo */
.hero-bg-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
}

.hero-shape-1 {
    width: 600px; height: 600px;
    background: var(--pink);
    top: -200px; right: -100px;
    animation: float1 8s ease-in-out infinite;
}

.hero-shape-2 {
    width: 400px; height: 400px;
    background: var(--blue-light);
    bottom: -100px; left: -100px;
    animation: float2 10s ease-in-out infinite;
}

.hero-shape-3 {
    width: 300px; height: 300px;
    background: #9B05FF;
    top: 50%; left: 40%;
    animation: float1 12s ease-in-out infinite reverse;
}

@keyframes float1 {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-30px) scale(1.05); }
}
@keyframes float2 {
    0%, 100% { transform: translateY(0) scale(1) rotate(0deg); }
    50% { transform: translateY(20px) scale(0.95) rotate(5deg); }
}

/* Grid pattern overlay */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1280px;
    margin: 0 auto;
    padding: calc(var(--nav-height) + 60px) 32px 80px;
    width: 100%;
}

.hero-text {
    color: white;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.25);
    backdrop-filter: blur(10px);
    color: white;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 8px 18px;
    border-radius: var(--radius-full);
    margin-bottom: 28px;
    animation: fadeInUp 0.6s ease both;
}


@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}

.hero-name {
    font-size: clamp(52px, 7vw, 84px);
    font-weight: 900;
    letter-spacing: -3px;
    line-height: 1;
    margin-bottom: 20px;
    animation: fadeInUp 0.6s 0.1s ease both;
}

.hero-pronouns {
    font-size: clamp(16px, 2vw, 22px);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    margin-left: 16px;
    vertical-align: middle;
    display: inline-block;
    letter-spacing: 0px;
    text-shadow: none;
}

.hero-name .highlight {
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

.hero-title {
    font-size: clamp(16px, 2vw, 22px);
    font-weight: 400;
    color: rgba(255,255,255,0.85);
    margin-bottom: 28px;
    line-height: 1.6;
    animation: fadeInUp 0.6s 0.2s ease both;
}

.hero-title strong {
    color: var(--pink-soft);
    font-weight: 700;
}

.hero-desc {
    font-size: 16px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 44px;
    line-height: 1.8;
    max-width: 480px;
    animation: fadeInUp 0.6s 0.3s ease both;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    animation: fadeInUp 0.6s 0.4s ease both;
}

.hero-stats {
    display: flex;
    gap: 36px;
    margin-top: 56px;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.15);
    animation: fadeInUp 0.6s 0.5s ease both;
}

.hero-stat-num {
    font-size: 36px;
    font-weight: 900;
    letter-spacing: -1px;
    color: #ffffff;
    line-height: 1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
}

.hero-stat-label {
    font-size: 12px;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
    font-weight: 600;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.25);
}

/* Foto do hero */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    animation: fadeInRight 0.8s 0.2s ease both;
}

.hero-photo-wrapper {
    position: relative;
    width: 460px;
    height: 560px;
}

.hero-photo-bg {
    position: absolute;
    inset: 16px -16px -16px 16px;
    background: var(--gradient-main);
    border-radius: var(--radius-lg);
    opacity: 0.4;
}

.hero-photo {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.hero-photo-badge {
    position: absolute;
    z-index: 2;
    background: white;
    border-radius: var(--radius-md);
    padding: 14px 18px;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-photo-badge.badge-1 {
    bottom: -24px;
    left: -36px;
}

.hero-photo-badge.badge-2 {
    top: 40px;
    right: -36px;
}

.hero-photo-badge-icon {
    width: 40px; height: 40px;
    background: var(--gradient-main);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.hero-photo-badge-text strong {
    display: block;
    font-size: 18px;
    font-weight: 900;
    color: var(--text-dark);
    line-height: 1;
}

.hero-photo-badge-text span {
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: #ffffff !important;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: bounce 2s infinite;
    cursor: pointer;
    z-index: 10;
    background-color: transparent !important;
    background: transparent !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.scroll-indicator svg {
    width: 20px; height: 20px;
    stroke: #ffffff !important;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.5px;
    padding: 14px 28px;
    border-radius: var(--radius-full);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    white-space: nowrap;
}

.btn-primary {
    background: var(--gradient-main);
    color: white;
    box-shadow: 0 4px 20px rgba(232,0,232,0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(232,0,232,0.5);
    color: white;
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255,255,255,0.4);
}

.btn-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: white;
    color: white;
    transform: translateY(-2px);
}

.btn-blue {
    background: var(--gradient-blue);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-blue:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    color: white;
}

.btn-ghost {
    background: transparent;
    color: var(--blue);
    border: 2px solid var(--blue);
}

.btn-ghost:hover {
    background: var(--blue);
    color: white;
    transform: translateY(-2px);
}

.btn-sm {
    padding: 10px 20px;
    font-size: 13px;
}

.btn-lg {
    padding: 18px 40px;
    font-size: 16px;
}

/* ============================================================
   SOBRE / ABOUT
   ============================================================ */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 80px;
    align-items: start;
}

.about-photo-stack {
    position: relative;
    height: 520px;
}

.about-photo-container {
    position: relative;
    width: 100%;
}

.about-collage {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-top: 10px;
    padding-bottom: 20px;
}

.about-collage-item {
    position: relative;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: transform 0.3s ease;
}

.about-collage-item:nth-child(odd) {
    align-self: flex-start;
    width: 75%;
    margin-bottom: -20%;
    z-index: 2;
}

.about-collage-item:nth-child(even) {
    align-self: flex-end;
    width: 70%;
    margin-bottom: -20%;
    z-index: 1;
}

.about-collage-item:last-child {
    margin-bottom: 0;
}

.about-photo-main {
    position: absolute;
    width: 320px;
    height: 420px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    top: 0; left: 0;
    z-index: 2;
}

.about-photo-secondary {
    position: absolute;
    width: 260px;
    height: 320px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    bottom: 0; right: 0;
    z-index: 1;
}

.about-text .section-tag {
    text-align: left;
    display: inline-block;
    margin-bottom: 16px;
}

.about-text .section-title {
    text-align: left;
}

.about-text .divider-gradient {
    margin: 20px 0;
}

.about-body {
    font-size: 17px;
    color: var(--text-body);
    line-height: 1.9;
    margin-bottom: 32px;
}

.about-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 36px;
}

.about-highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: var(--text-body);
}

.about-highlight-item::before {
    content: '';
    width: 20px; height: 20px;
    background: var(--gradient-main);
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ============================================================
   COMPETÊNCIAS / SKILLS
   ============================================================ */
.skills-section { background: var(--blue); }

.skills-section .section-tag { 
    border-color: rgba(255,255,255,0.15);
    color: var(--pink-soft);
    background: rgba(255,255,255,0.05);
}

.skills-section .section-title { color: white; }
.skills-section .section-desc { color: rgba(255,255,255,0.6); }

.skills-categories {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.skill-cat-btn {
    padding: 8px 22px;
    border-radius: var(--radius-full);
    border: 1.5px solid rgba(255,255,255,0.2);
    background: transparent;
    color: rgba(255,255,255,0.7);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 13px;
    cursor: pointer;
    transition: var(--transition);
    letter-spacing: 0.5px;
}

.skill-cat-btn.active, .skill-cat-btn:hover {
    background: var(--gradient-main);
    border-color: transparent;
    color: white;
}

.skills-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.skill-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 700;
    transition: var(--transition);
    cursor: default;
    border: 1.5px solid transparent;
}

.skill-tag:hover {
    transform: translateY(-3px);
}

.skill-tag-rh { background: #E8F5E9; color: #1B5E20; border-color: transparent; }
.skill-tag-dei { background: #F3E5F5; color: #4A148C; border-color: transparent; }
.skill-tag-lideranca { background: #E3F2FD; color: #0D47A1; border-color: transparent; }
.skill-tag-ti { background: #FFF3E0; color: #E65100; border-color: transparent; }

.skill-tag-rh:hover { background: #C8E6C9; }
.skill-tag-dei:hover { background: #E1BEE7; }
.skill-tag-lideranca:hover { background: #BBDEFB; }
.skill-tag-ti:hover { background: #FFE0B2; }

/* ============================================================
   SERVIÇOS / SERVICES
   ============================================================ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    background: white;
    border-radius: var(--radius-md);
    padding: 36px 28px;
    transition: var(--transition);
    border: 1.5px solid var(--gray-200);
    position: relative;
    overflow: hidden;
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: var(--gradient-main);
    transform: scaleX(0);
    transition: var(--transition);
    transform-origin: left;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(52,5,198,0.2);
}

.service-card:hover::after {
    transform: scaleX(1);
}

.service-card.featured {
    background: var(--gradient-blue);
    border-color: transparent;
    color: white;
}

.service-card.featured::after { display: none; }

.service-icon {
    font-size: 40px;
    margin-bottom: 20px;
    display: block;
}

.service-title {
    font-size: 20px;
    font-weight: 900;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.service-card.featured .service-title {
    color: white;
}

.service-desc {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
}

.service-card.featured .service-desc {
    color: rgba(255,255,255,0.8);
}

/* ============================================================
   EXPERIÊNCIA / TIMELINE
   ============================================================ */
.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 28px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--blue), var(--pink));
}

.timeline-item {
    position: relative;
    padding: 0 0 48px 80px;
    opacity: 0;
    transform: translateX(-20px);
    transition: var(--transition-slow);
}

.timeline-item.visible {
    opacity: 1;
    transform: translateX(0);
}

.timeline-dot {
    position: absolute;
    left: 18px;
    top: 8px;
    width: 22px; height: 22px;
    border-radius: 50%;
    background: var(--gradient-main);
    border: 3px solid var(--off-white);
    box-shadow: 0 0 0 2px var(--blue);
    z-index: 1;
    transition: var(--transition);
}

.timeline-item:hover .timeline-dot {
    transform: scale(1.3);
    box-shadow: 0 0 0 3px var(--pink), var(--shadow-pink);
}

.timeline-card {
    background: white;
    border-radius: var(--radius-md);
    padding: 28px 32px;
    border: 1.5px solid var(--gray-200);
    transition: var(--transition);
    position: relative;
}

.timeline-card:hover {
    border-color: rgba(52,5,198,0.3);
    box-shadow: var(--shadow-md);
}

.timeline-period {
    font-size: 12px;
    font-weight: 700;
    color: var(--blue);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.badge-present {
    background: var(--gradient-main);
    color: white;
    font-size: 10px;
    padding: 2px 8px;
    border-radius: var(--radius-full);
    font-weight: 700;
}

.timeline-cargo {
    font-size: 20px;
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.timeline-empresa {
    font-size: 15px;
    font-weight: 700;
    color: var(--blue);
    margin-bottom: 14px;
}

.timeline-desc {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
}

.timeline-desc a {
    color: var(--blue);
    font-weight: 600;
    text-decoration: underline;
    transition: var(--transition);
}

.timeline-desc a:hover {
    color: var(--blue-dark);
    text-decoration: underline;
}

.timeline-desc.collapsed { display: none; }

/* ============================================================
   FORMAÇÃO / EDUCATION
   ============================================================ */
.education-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.edu-card {
    background: white;
    border-radius: var(--radius-md);
    padding: 28px;
    border: 1.5px solid var(--gray-200);
    transition: var(--transition);
    display: flex;
    gap: 20px;
}

.edu-card:hover {
    border-color: rgba(52,5,198,0.3);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.edu-badge-type {
    width: 48px; height: 48px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.edu-badge-graduacao { background: rgba(52,5,198,0.1); }
.edu-badge-pos-graduacao { background: rgba(232,0,232,0.1); }
.edu-badge-mba { background: rgba(16,185,129,0.1); }
.edu-badge-extensao { background: rgba(245,158,11,0.1); }
.edu-badge-curso { background: rgba(59,130,246,0.1); }

.edu-content {}

.edu-tipo {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 4px;
}

.edu-area {
    font-size: 16px;
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 4px;
    line-height: 1.3;
}

.edu-instituicao {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-muted);
    margin-bottom: 6px;
}

.edu-periodo {
    font-size: 12px;
    color: var(--gray-400);
    letter-spacing: 0.5px;
}

/* ============================================================
   CERTIFICAÇÕES
   ============================================================ */
.certs-section { background: var(--text-dark); }
.certs-section .section-title { color: white; }
.certs-section .section-tag { color: var(--pink-soft); background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.1); }

.certs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.cert-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-md);
    padding: 24px;
    transition: var(--transition);
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.cert-card:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(52,5,198,0.5);
    transform: translateY(-4px);
}

.cert-icon {
    width: 44px; height: 44px;
    background: var(--gradient-main);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.cert-title {
    font-size: 14px;
    font-weight: 700;
    color: white;
    line-height: 1.4;
    margin-bottom: 4px;
}

.cert-emissor {
    font-size: 12px;
    color: rgba(255,255,255,0.5);
}

/* ============================================================
   IDIOMAS / LANGUAGES
   ============================================================ */
.languages-grid {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
}

.lang-card {
    background: white;
    border-radius: var(--radius-md);
    padding: 32px 40px;
    border: 1.5px solid var(--gray-200);
    text-align: center;
    transition: var(--transition);
    min-width: 200px;
}

.lang-card:hover {
    border-color: var(--blue);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.lang-flag { font-size: 44px; margin-bottom: 12px; }
.lang-name { font-size: 18px; font-weight: 900; color: var(--text-dark); margin-bottom: 8px; }
.lang-level { font-size: 13px; font-weight: 700; color: var(--blue); margin-bottom: 16px; text-transform: uppercase; letter-spacing: 1px; }

.lang-bar-wrap {
    width: 100%;
    height: 6px;
    background: var(--gray-200);
    border-radius: var(--radius-full);
    overflow: hidden;
}

.lang-bar {
    height: 100%;
    background: var(--gradient-main);
    border-radius: var(--radius-full);
    transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
    width: 0;
}

.lang-bar.animated { width: var(--target-width); }

/* ============================================================
   PORTFOLIO CAROUSEL / CLIENTS
   ============================================================ */
.portfolio-section { background: var(--white); overflow: hidden; }

.client-carousel-wrapper {
    position: relative;
    overflow: hidden;
    padding: 20px 0;
}

.client-carousel-wrapper::before,
.client-carousel-wrapper::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    width: 200px;
    z-index: 2;
    pointer-events: none;
}

.client-carousel-wrapper::before {
    left: 0;
    background: linear-gradient(to right, white, transparent);
}

.client-carousel-wrapper::after {
    right: 0;
    background: linear-gradient(to left, white, transparent);
}

.client-carousel-track {
    display: flex;
    gap: 32px;
    width: max-content;
    animation: marquee 55s linear infinite;
}

.client-carousel-track:hover { animation-play-state: paused; }

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.client-logo-card {
    width: 220px;
    height: 120px;
    background: white;
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    flex-shrink: 0;
    transition: var(--transition);
    filter: grayscale(1);
    opacity: 0.65;
}

a.client-logo-card {
    text-decoration: none;
    cursor: pointer;
}

.client-logo-card:hover {
    filter: grayscale(0);
    opacity: 1;
    border-color: var(--blue);
    box-shadow: var(--shadow-md);
    transform: scale(1.05);
}

.client-logo-card img {
    max-width: 190px;
    max-height: 90px;
    object-fit: contain;
}

.client-logo-placeholder {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-muted);
    text-align: center;
    line-height: 1.3;
}

/* ============================================================
   DEPOIMENTOS / TESTIMONIALS
   ============================================================ */
.testimonials-section { background: var(--off-white); }

.testimonials-grid {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 24px;
    padding-bottom: 24px; /* Space for scrollbar */
}

.testimonial-card {
    min-width: 350px;
    max-width: 350px;
    flex: 0 0 auto;
    scroll-snap-align: center;
    background: white;
    border-radius: var(--radius-md);
    padding: 32px 28px;
    border: 1.5px solid var(--gray-200);
    transition: var(--transition);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 15px; left: 24px;
    font-size: 80px;
    font-family: 'Playfair Display', serif;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.testimonial-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-6px);
    border-color: rgba(52,5,198,0.2);
}

.testimonial-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 16px;
    margin-top: 55px;
}

.testimonial-stars span { color: #F59E0B; font-size: 16px; }

.testimonial-text {
    font-size: 15px;
    color: var(--text-body);
    line-height: 1.8;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 20px;
    border-top: 1px solid var(--gray-200);
}

.testimonial-avatar {
    width: 48px; height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--blue);
}

.testimonial-avatar-placeholder {
    width: 48px; height: 48px;
    border-radius: 50%;
    background: var(--gradient-main);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 900;
    font-size: 18px;
    flex-shrink: 0;
}

.testimonial-name {
    font-weight: 900;
    font-size: 15px;
    color: var(--text-dark);
}

.testimonial-role {
    font-size: 12px;
    color: var(--text-muted);
}

/* ============================================================
   MÍDIA / PRESS
   ============================================================ */
.media-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.media-card {
    background: white;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1.5px solid var(--gray-200);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.media-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-6px);
    border-color: rgba(52,5,198,0.2);
}

.media-thumb {
    height: 200px;
    overflow: hidden;
    position: relative;
    background: var(--gradient-hero);
}

.media-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.media-card:hover .media-thumb img { transform: scale(1.05); }

.media-type-badge {
    position: absolute;
    top: 12px; left: 12px;
    background: var(--gradient-main);
    color: white;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: var(--radius-full);
}

.media-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }

.media-veiculo {
    font-size: 11px;
    font-weight: 700;
    color: var(--blue);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.media-title {
    font-size: 16px;
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 8px;
    line-height: 1.4;
    flex: 1;
}

.media-date {
    font-size: 12px;
    color: var(--text-muted);
}

/* ============================================================
   DOWNLOADS
   ============================================================ */
.downloads-section {
    background: var(--gradient-hero);
    position: relative;
    overflow: hidden;
}

.downloads-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
}

.downloads-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    position: relative;
    z-index: 1;
}

.download-card {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: var(--radius-lg);
    padding: 44px 36px;
    text-align: center;
    transition: var(--transition);
}

.download-card:hover {
    background: rgba(255,255,255,0.13);
    transform: translateY(-6px);
    border-color: rgba(255,255,255,0.4);
}

.download-icon {
    font-size: 56px;
    margin-bottom: 20px;
}

.download-title {
    font-size: 24px;
    font-weight: 900;
    color: white;
    margin-bottom: 12px;
}

.download-desc {
    font-size: 15px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 28px;
    line-height: 1.7;
}

/* ============================================================
   CONTATO / CONTACT
   ============================================================ */
.contact-section { background: white; }

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 80px;
    align-items: start;
}

.contact-info .section-title { text-align: left; }
.contact-info .section-tag { text-align: left; display: inline-block; }
.contact-info .divider-gradient { margin: 20px 0; }

.contact-details {
    margin-top: 36px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-detail-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.contact-detail-icon {
    width: 48px; height: 48px;
    background: rgba(52,5,198,0.08);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.contact-detail-text strong {
    display: block;
    font-size: 14px;
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 2px;
}

.contact-detail-text span {
    font-size: 14px;
    color: var(--text-muted);
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 32px;
}

.social-link {
    width: 44px; height: 44px;
    border-radius: var(--radius-sm);
    background: rgba(52,5,198,0.08);
    border: 1.5px solid rgba(52,5,198,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--blue);
    transition: var(--transition);
}

.social-link:hover {
    background: var(--gradient-main);
    border-color: transparent;
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--shadow-pink);
}

/* Formulário */
.contact-form {
    background: var(--off-white);
    border-radius: var(--radius-lg);
    padding: 44px 40px;
    border: 1.5px solid var(--gray-200);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
    letter-spacing: 0.3px;
}

.form-control {
    width: 100%;
    padding: 14px 18px;
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-sm);
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    color: var(--text-body);
    background: white;
    transition: var(--transition);
    outline: none;
}

.form-control:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 4px rgba(52,5,198,0.08);
}

.form-control::placeholder { color: var(--gray-400); }

textarea.form-control {
    resize: vertical;
    min-height: 140px;
}

.form-submit {
    width: 100%;
    justify-content: center;
}

.form-feedback {
    display: none;
    padding: 14px 20px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 15px;
    margin-top: 16px;
    text-align: center;
}

.form-feedback.success { background: #f0fdf4; color: #166534; border: 1.5px solid #22c55e; display: block; }
.form-feedback.error { background: #fef2f2; color: #991b1b; border: 1.5px solid #ef4444; display: block; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    background: var(--text-dark);
    padding: 60px 0 32px;
    color: rgba(255,255,255,0.6);
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 48px;
}

.footer-brand .footer-logo {
    height: 44px;
    margin-bottom: 16px;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.footer-brand p {
    font-size: 14px;
    line-height: 1.7;
    max-width: 300px;
}

.footer-col h4 {
    font-size: 14px;
    font-weight: 900;
    color: white;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.footer-col a {
    display: block;
    color: rgba(255,255,255,0.55);
    font-size: 14px;
    margin-bottom: 10px;
    transition: var(--transition);
}

.footer-col a:hover {
    color: var(--pink-soft);
    transform: translateX(4px);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { color: rgba(255,255,255,0.5); font-size: 13px; }
.footer-bottom-links a:hover { color: var(--pink-soft); }

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Delay utilities */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* ============================================================
   HERO ANIMATIONS
   ============================================================ */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(40px); }
    to { opacity: 1; transform: translateX(0); }
}

/* ============================================================
   MOBILE MENU
   ============================================================ */
.mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--text-dark);
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
    font-size: 24px;
    font-weight: 900;
    color: white;
    padding: 12px 32px;
    letter-spacing: -0.5px;
    transition: var(--transition);
}

.mobile-menu a:hover { color: var(--pink-soft); }

.mobile-close {
    position: absolute;
    top: 24px; right: 24px;
    background: none; border: none;
    color: white; font-size: 32px;
    cursor: pointer;
    padding: 8px;
}

/* ============================================================
   RESPONSIVO
   ============================================================ */
@media (max-width: 1100px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    
    .certs-grid { grid-template-columns: repeat(2, 1fr); }
    .media-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
    :root { --section-padding: 72px 0; }
    
    .hero {
        min-height: auto;
        height: auto;
        padding: 120px 0 60px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 36px;
        padding: 0 24px;
    }
    
    .hero-visual {
        display: flex;
        justify-content: center;
        margin-top: 32px;
        width: 100%;
    }
    .hero-photo-wrapper {
        width: 300px;
        height: 360px;
    }
    .hero-photo-badge {
        padding: 8px 12px;
    }
    .hero-photo-badge-icon {
        width: 30px;
        height: 30px;
        font-size: 15px;
    }
    .hero-photo-badge-text strong {
        font-size: 13px;
    }
    .hero-photo-badge-text span {
        font-size: 10px;
    }
    .hero-photo-badge.badge-1 {
        bottom: -15px;
        left: -15px;
    }
    .hero-photo-badge.badge-2 {
        top: 20px;
        right: -15px;
    }
    .hero-stats { gap: 20px; flex-wrap: wrap; }
    
    .hero-pronouns {
        font-size: 12px;
        margin-left: 8px;
        vertical-align: middle;
    }
    
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-photo-stack { display: none; }
    
    .about-collage {
        display: flex;
        flex-direction: column;
        gap: 24px;
        align-items: center;
    }
    .about-collage-item {
        max-height: none !important;
        margin-bottom: 0 !important;
        align-self: center !important;
        width: 80% !important;
        box-shadow: var(--shadow-md);
    }
    
    .education-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .footer-top { grid-template-columns: 1fr; gap: 36px; }
    
    .downloads-grid { grid-template-columns: 1fr; }
    
    .navbar-nav { display: none; }
    .menu-toggle { display: flex; }
}

@media (max-width: 640px) {
    .container { padding: 0 20px; }
    :root { --section-padding: 56px 0; }
    
    .services-grid { grid-template-columns: 1fr; }
    
    .certs-grid { grid-template-columns: 1fr; }
    .media-grid { grid-template-columns: 1fr; }
    
    .form-row { grid-template-columns: 1fr; }
    .hero-stats { flex-wrap: wrap; gap: 20px; }
    
    .contact-form { padding: 28px 24px; }
    .footer-bottom { flex-direction: column; text-align: center; }
}

/* ============================================================
   UTILITY CLASSES
   ============================================================ */
.text-center { text-align: center; }
.text-left   { text-align: left; }
.text-muted  { color: var(--text-muted); }
.text-white  { color: white; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.d-none { display: none !important; }
.d-flex { display: flex; }
.align-center { align-items: center; }
.justify-center { justify-content: center; }
.gap-16 { gap: 16px; }
.w-full { width: 100%; }

/* ============================================================
   LOADING STATE
   ============================================================ */
.loading-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(20, 18, 40, 0.85);
    backdrop-filter: blur(4px);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.loading-overlay.active { display: flex; }

.loading-spinner {
    width: 48px; height: 48px;
    border: 4px solid rgba(255,255,255,0.2);
    border-top-color: var(--pink);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Top progress bar */
.progress-bar-top {
    position: fixed;
    top: 0; left: 0;
    width: 0%;
    height: 3px;
    background: var(--gradient-main);
    z-index: 9999;
    transition: width 0.2s ease;
}

/* Back to top button */
.back-to-top {
    position: fixed;
    bottom: 32px; right: 32px;
    width: 48px; height: 48px;
    background: var(--gradient-main);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition);
    box-shadow: var(--shadow-pink);
    z-index: 100;
}

.back-to-top.visible {
    opacity: 1;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(232,0,232,0.5);
}

.back-to-top svg { width: 20px; height: 20px; stroke: white; stroke-width: 2.5; }

/* Custom Scrollbar for Testimonials */
.testimonials-grid::-webkit-scrollbar {
    height: 8px;
}
.testimonials-grid::-webkit-scrollbar-track {
    background: var(--gray-100);
    border-radius: 4px;
}
.testimonials-grid::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 4px;
}
.testimonials-grid::-webkit-scrollbar-thumb:hover {
    background: var(--accent);
}

/* ============================================================
   Reconhecimentos - Timeline Horizontal
   ============================================================ */
.rec-scroll-indicator {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: -15px;
    margin-top: 10px;
    opacity: 0.8;
    animation: bounceRight 2s infinite;
}
@keyframes bounceRight {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(5px); }
}
.rec-timeline-wrapper {
    width: 100%;
    overflow-x: auto;
    padding: 20px 0 40px 0;
    margin-top: 20px;
}
.rec-timeline-wrapper::-webkit-scrollbar {
    height: 8px;
}
.rec-timeline-wrapper::-webkit-scrollbar-track {
    background: var(--gray-200);
    border-radius: 4px;
}
.rec-timeline-wrapper::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 4px;
}
.rec-timeline-wrapper::-webkit-scrollbar-thumb:hover {
    background: var(--accent);
}
.rec-timeline {
    display: flex;
    position: relative;
    height: 320px;
    align-items: center;
    min-width: max-content;
    padding: 0 40px; /* buffer edges */
}
.rec-line {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    right: 0;
    height: 120px;
    background-image: url("data:image/svg+xml,%3Csvg width='300' height='120' xmlns='http://www.w3.org/2000/svg'%3E%3Cdefs%3E%3ClinearGradient id='g' x1='0' y1='0' x2='1' y2='0'%3E%3Cstop offset='0%25' stop-color='%23F00FF7' /%3E%3Cstop offset='50%25' stop-color='%233405C6' /%3E%3Cstop offset='100%25' stop-color='%23F00FF7' /%3E%3C/linearGradient%3E%3C/defs%3E%3Cpath d='M 0 60 Q 75 10 150 60 T 300 60' stroke='url(%23g)' stroke-width='5' fill='none' /%3E%3C/svg%3E");
    background-repeat: repeat-x;
    background-position: 40px center;
    z-index: 1;
}
.rec-item {
    position: relative;
    width: 150px;
    height: 100%;
    flex-shrink: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.rec-dot {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: var(--pink);
    border: 4px solid var(--off-white);
    box-shadow: 0 2px 8px rgba(52, 5, 198, 0.4);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
}
.rec-item:nth-of-type(odd) .rec-dot {
    margin-top: -50px;
}
.rec-item:nth-of-type(even) .rec-dot {
    margin-top: 50px;
}
.rec-item:hover .rec-dot {
    transform: translate(-50%, -50%) scale(1.6);
    background-color: var(--blue);
    box-shadow: 0 4px 12px rgba(240, 15, 247, 0.5);
}
.rec-content {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 140px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.rec-item:nth-of-type(odd) .rec-content {
    bottom: 50%;
    margin-bottom: 70px;
}
.rec-item:nth-of-type(even) .rec-content {
    top: 50%;
    margin-top: 70px;
}
.rec-year {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 6px;
    font-family: 'Playfair Display', serif;
}
.rec-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.3;
}

/* ============================================================
   PORTRAIT ORIENTATION FIX (Mobile / Tablet Portrait)
   ============================================================ */
@media (orientation: portrait) {
    .hero {
        min-height: auto !important;
        height: auto !important;
        padding: 100px 0 40px !important;
    }
}
