/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --gold: #D4A843;
    --dark: #0a0a0a;
    --darker: #050505;
    --cream: #FAF7F0;
    --green: #2ECC71;
    --red: #E74C3C;
    --blue: #3498DB;
    --purple: #9B59B6;
    --orange: #F39C12;
    --brazil-green: #009739;
    --brazil-yellow: #FEDD00;
}

html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', sans-serif;
    background: var(--dark);
    color: #fff;
    overflow-x: hidden;
    line-height: 1.7;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.center { text-align: center; }
.section { padding: 6rem 0; }

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.6);
    max-width: 700px;
    margin: 0 auto 3rem;
    text-align: center;
}

.highlight-text {
    font-size: 1.3rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a0a2e 30%, #0a1628 60%, #0a0a0a 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(212,168,67,0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0,151,57,0.1) 0%, transparent 40%),
        radial-gradient(circle at 60% 80%, rgba(253,221,0,0.08) 0%, transparent 40%);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="60" height="60"><rect fill="none" width="60" height="60"/><circle fill="rgba(255,255,255,0.02)" cx="30" cy="30" r="1"/></svg>');
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 2rem;
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--brazil-green), var(--brazil-yellow));
    color: #000;
    font-weight: 700;
    font-size: 0.85rem;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    margin-bottom: 2rem;
    letter-spacing: 0.1em;
    animation: pulse 2s infinite;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 8vw, 7rem);
    font-weight: 900;
    letter-spacing: 0.05em;
    background: linear-gradient(135deg, #fff 0%, var(--gold) 50%, #fff 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 3s linear infinite;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255,255,255,0.7);
    max-width: 700px;
    margin: 0 auto 2rem;
    line-height: 2;
}

.hero-tagline {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.2rem;
    color: var(--gold);
    opacity: 0.8;
}

.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: rgba(255,255,255,0.4);
    font-size: 0.85rem;
}

.arrow-bounce {
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

/* ===== STATS BAR ===== */
.stats-bar {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, #111 0%, #1a1a2e 100%);
    border-top: 1px solid rgba(212,168,67,0.2);
    border-bottom: 1px solid rgba(212,168,67,0.2);
}

.stat {
    text-align: center;
    min-width: 150px;
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 900;
    color: var(--gold);
}

.stat-label {
    display: block;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 0.3rem;
}

/* ===== BIO SECTION ===== */
.bio-section { background: var(--darker); }

.bio-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: start;
}

.bio-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.bio-image-caption {
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.4);
    font-style: italic;
    margin-top: 1rem;
}

.bio-text p { margin-bottom: 1.2rem; color: rgba(255,255,255,0.8); }
.bio-text strong { color: var(--gold); }

.fun-fact {
    display: flex;
    gap: 1rem;
    align-items: start;
    background: rgba(212,168,67,0.08);
    border: 1px solid rgba(212,168,67,0.2);
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 2rem;
}

.fun-fact-icon { font-size: 2rem; }
.fun-fact strong { color: var(--gold); }

/* ===== DOCTOR SECTION ===== */
.doctor-section {
    background: linear-gradient(180deg, var(--dark) 0%, #0a1628 100%);
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s;
}

.card:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
    box-shadow: 0 10px 40px rgba(212,168,67,0.1);
}

.card-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.card h3 { font-family: 'Playfair Display', serif; font-size: 1.3rem; margin-bottom: 0.8rem; }
.card p { color: rgba(255,255,255,0.6); font-size: 0.95rem; }

.doctor-quote {
    text-align: center;
    margin-top: 4rem;
    padding: 3rem;
    background: rgba(212,168,67,0.05);
    border-radius: 16px;
    border: 1px solid rgba(212,168,67,0.15);
}

.doctor-quote blockquote {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.5rem;
    color: rgba(255,255,255,0.8);
}

.doctor-quote cite {
    display: block;
    margin-top: 1rem;
    color: var(--gold);
    font-size: 0.9rem;
}

/* ===== MUSIC SECTION ===== */
.music-section { background: var(--darker); }

.music-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: center;
}

.music-text p { margin-bottom: 1.2rem; color: rgba(255,255,255,0.8); }
.music-text strong { color: var(--gold); }

.instrument-list { margin-top: 2rem; }

.instrument {
    display: grid;
    grid-template-columns: 40px 120px 1fr;
    gap: 1rem;
    align-items: center;
    margin-bottom: 1rem;
}

.instrument-emoji { font-size: 1.5rem; }
.instrument span { font-size: 0.9rem; }

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

.skill-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--gold), var(--brazil-yellow));
    border-radius: 4px;
    animation: fillBar 2s ease-out;
}

/* Vinyl Record */
.music-visual { display: flex; justify-content: center; }

.vinyl-record {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: repeating-radial-gradient(circle, #111, #111 2px, #1a1a1a 2px, #1a1a1a 4px);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: spin 8s linear infinite;
    box-shadow: 0 0 60px rgba(0,0,0,0.5);
}

.vinyl-inner {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), #8B6914);
    display: flex;
    align-items: center;
    justify-content: center;
}

.vinyl-label {
    text-align: center;
    animation: spin 8s linear infinite reverse;
}

.vinyl-title {
    display: block;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: #000;
}

.vinyl-artist {
    display: block;
    font-size: 0.5rem;
    color: rgba(0,0,0,0.6);
}

.vinyl-track {
    display: block;
    font-size: 0.45rem;
    font-style: italic;
    color: rgba(0,0,0,0.5);
    margin-top: 4px;
}

/* ===== CHEF SECTION ===== */
.chef-section {
    background: linear-gradient(180deg, var(--dark) 0%, #1a0a0a 50%, var(--dark) 100%);
}

.chef-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.chef-item {
    perspective: 800px;
}

.chef-item-inner {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.4s;
    height: 100%;
}

.chef-item-inner:hover {
    transform: translateY(-8px);
    border-color: var(--orange);
    box-shadow: 0 15px 50px rgba(243,156,18,0.1);
}

.chef-emoji { font-size: 4rem; margin-bottom: 1rem; }
.chef-item h3 { font-family: 'Playfair Display', serif; font-size: 1.5rem; margin-bottom: 1rem; }
.chef-item p { color: rgba(255,255,255,0.6); font-size: 0.95rem; line-height: 1.7; }

.rating {
    margin-top: 1.5rem;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
}

.stars { font-size: 1.1rem; display: block; margin-top: 0.3rem; }

.chef-quote {
    text-align: center;
    margin-top: 3rem;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.3rem;
    color: rgba(255,255,255,0.5);
    padding: 2rem;
}

/* ===== FAMILY SECTION ===== */
.family-section { background: var(--darker); }

.family-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s;
}

.family-card:hover {
    transform: translateY(-4px);
    border-color: rgba(212,168,67,0.3);
}

.main-card {
    max-width: 500px;
    margin: 0 auto 2rem;
    border-color: rgba(212,168,67,0.2);
}

.family-emoji { font-size: 3rem; margin-bottom: 0.8rem; }
.family-card h3 { font-family: 'Playfair Display', serif; font-size: 1.3rem; margin-bottom: 0.3rem; }
.family-role { color: var(--gold); font-size: 0.9rem; margin-bottom: 1rem; }
.family-card p { color: rgba(255,255,255,0.6); font-size: 0.95rem; }

.kids-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.family-fact {
    margin-top: 3rem;
    text-align: center;
    padding: 2rem;
    background: rgba(212,168,67,0.05);
    border-radius: 12px;
    border: 1px solid rgba(212,168,67,0.15);
    font-size: 1.1rem;
    color: rgba(255,255,255,0.7);
}

/* ===== INVESTING SECTION ===== */
.investing-section {
    background: linear-gradient(180deg, var(--dark) 0%, #0a1a0a 50%, var(--dark) 100%);
}

.investing-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    align-items: start;
}

.investing-text p { margin-bottom: 1.2rem; color: rgba(255,255,255,0.8); }
.investing-text strong { color: var(--green); }

.portfolio-joke {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 1.5rem 2rem;
    margin-top: 2rem;
}

.portfolio-joke h4 {
    color: var(--gold);
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.portfolio-joke ul { list-style: none; }
.portfolio-joke li {
    padding: 0.5rem 0;
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
}

.stock-ticker {
    background: #111;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    overflow: hidden;
    padding: 1rem;
}

.ticker-tape {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.ticker-item {
    font-family: 'Courier New', monospace;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 0.5rem 1rem;
    border-radius: 4px;
}

.ticker-item.green {
    color: var(--green);
    background: rgba(46,204,113,0.08);
}

.ticker-item.red {
    color: var(--red);
    background: rgba(231,76,60,0.08);
}

/* ===== TRAVEL SECTION ===== */
.travel-section { background: var(--darker); }

.travel-map {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.travel-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    max-width: 200px;
    transition: all 0.3s;
}

.travel-card:hover { transform: translateY(-4px); border-color: var(--gold); }
.travel-card.origin { border-color: var(--brazil-green); }
.travel-card.destination { border-color: var(--gold); background: rgba(212,168,67,0.05); }
.travel-card.pulse { animation: pulse 2s infinite; }
.travel-card .flag { font-size: 2rem; display: block; margin-bottom: 0.5rem; }
.travel-card h4 { font-family: 'Playfair Display', serif; font-size: 1rem; margin-bottom: 0.4rem; }
.travel-card p { font-size: 0.8rem; color: rgba(255,255,255,0.5); }

.travel-arrow { font-size: 1.5rem; }

/* ===== FRIENDS SECTION ===== */
.friends-section {
    background: linear-gradient(180deg, var(--dark) 0%, #0a1a0a 50%, var(--dark) 100%);
}

.friends-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.friends-text p { margin-bottom: 1.2rem; color: rgba(255,255,255,0.8); }
.friends-text strong { color: var(--brazil-yellow); }

.experience-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
    margin-top: 2rem;
}

.experience-item {
    display: flex;
    gap: 0.8rem;
    align-items: center;
    font-size: 0.95rem;
    color: rgba(255,255,255,0.7);
    background: rgba(255,255,255,0.03);
    padding: 0.8rem 1rem;
    border-radius: 8px;
}

.experience-item span { font-size: 1.3rem; }

/* WhatsApp Mock */
.whatsapp-mock {
    background: #0b141a;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.08);
}

.wa-header {
    background: #202c33;
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 0.95rem;
}

.wa-status {
    font-size: 0.75rem;
    background: #25D366;
    color: #000;
    padding: 0.2rem 0.6rem;
    border-radius: 10px;
    font-weight: 700;
}

.wa-messages { padding: 1rem; display: flex; flex-direction: column; gap: 0.5rem; }

.wa-msg {
    max-width: 80%;
    padding: 0.6rem 1rem;
    border-radius: 8px;
    font-size: 0.85rem;
    line-height: 1.5;
}

.wa-msg.incoming {
    background: #202c33;
    align-self: flex-start;
    border-bottom-left-radius: 0;
}

.wa-msg.outgoing {
    background: #005c4b;
    align-self: flex-end;
    border-bottom-right-radius: 0;
}

/* ===== RESUME / TIMELINE ===== */
.resume-section { background: var(--darker); }

.timeline {
    position: relative;
    max-width: 700px;
    margin: 3rem auto 0;
    padding-left: 3rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--brazil-green), var(--gold), var(--brazil-yellow));
}

.timeline-item {
    position: relative;
    margin-bottom: 2.5rem;
    padding-left: 2rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -3rem;
    top: 0.5rem;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--gold);
    border: 3px solid var(--dark);
    margin-left: -5px;
}

.timeline-year {
    font-family: 'Permanent Marker', cursive;
    font-size: 1.1rem;
    color: var(--gold);
    margin-bottom: 0.3rem;
}

.timeline-content h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.timeline-content p {
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
    font-style: italic;
}

/* ===== FOOTER ===== */
.footer {
    background: #050505;
    padding: 5rem 0 3rem;
    text-align: center;
    border-top: 1px solid rgba(212,168,67,0.15);
}

.footer h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--gold);
}

.footer-text {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.7);
    max-width: 700px;
    margin: 0 auto 1.5rem;
    line-height: 1.8;
}

.footer-small {
    font-size: 1rem;
    color: rgba(255,255,255,0.5);
    max-width: 600px;
    margin: 0 auto 2.5rem;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.footer-links a {
    color: var(--gold);
    text-decoration: none;
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    border: 1px solid rgba(212,168,67,0.3);
    border-radius: 8px;
    transition: all 0.3s;
}

.footer-links a:hover {
    background: rgba(212,168,67,0.1);
    border-color: var(--gold);
}

.footer-disclaimer {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.3);
    max-width: 500px;
    margin: 0 auto;
}

/* ===== ANIMATIONS ===== */
@keyframes shimmer {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(10px); }
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(212,168,67,0.4); }
    50% { box-shadow: 0 0 20px 5px rgba(212,168,67,0.15); }
}

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

@keyframes fillBar {
    from { width: 0; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .bio-grid, .music-content, .investing-content, .friends-content {
        grid-template-columns: 1fr;
    }
    .chef-grid { grid-template-columns: 1fr; }
    .kids-row { grid-template-columns: 1fr; }
    .travel-map { flex-direction: column; }
    .travel-arrow { transform: rotate(90deg); }
    .section-title { font-size: 2.2rem; }
    .experience-list { grid-template-columns: 1fr; }
    .vinyl-record { width: 200px; height: 200px; }
    .vinyl-inner { width: 80px; height: 80px; }
}

@media (max-width: 600px) {
    .hero h1 { font-size: 2.5rem; }
    .hero-subtitle { font-size: 1rem; }
    .stats-bar { gap: 1rem; }
    .stat-number { font-size: 2rem; }
    .section { padding: 4rem 0; }
}
