@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700;800&family=Inter:wght@400;500;600;700&display=swap');

:root {
    --bg-color: #fdfaf6;
    --text-main: #1c1c1c;
    --text-muted: #5a5a5a;
    --accent-teal: #14b8a6;
    --accent-teal-hover: #0f9183;
    --accent-gold: #f5b823;
    --accent-gold-hover: #d99c10;
    --card-bg: #ffffff;
    --border-color: #eae3db;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --navy-bg: #072624;
    --navy-card-bg: rgba(12, 51, 48, 0.85);
    --navy-border: rgba(20, 184, 166, 0.25);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-main);
    background-color: var(--bg-color);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-main);
    margin-top: 0;
}

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

/* Header & Navigation */
.navbar {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(253, 250, 246, 0.94);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    padding: 12px 40px;
}

.navbar-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 14px;
    font-family: var(--font-heading);
    color: var(--text-main);
}

.brand-logo-img {
    height: 63px;
    width: auto;
    object-fit: contain;
}

.brand-title-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1.15;
}

.brand-title {
    font-weight: 800;
    font-size: 1.35rem;
    color: var(--text-main);
    letter-spacing: -0.3px;
}

.brand-subtitle {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--accent-teal);
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.brand-icon {
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg, var(--accent-teal), var(--accent-gold));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 800;
    font-size: 1.2rem;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 12px;
    list-style: none;
}

.nav-links a {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-muted);
    transition: all 0.2s ease;
    padding: 6px 14px;
    border-radius: 20px;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--accent-teal);
    background: rgba(20, 184, 166, 0.08);
}

/* Dropdown Submenu */
.nav-links .dropdown {
    position: relative;
}

.nav-links .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 14px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
    min-width: 290px;
    padding: 8px 0;
    list-style: none;
    z-index: 200;
    margin-top: 6px;
}

.nav-links .dropdown:hover .dropdown-menu {
    display: block;
}

.nav-links .dropdown-menu li {
    width: 100%;
}

.nav-links .dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    color: var(--text-main);
    font-size: 0.88rem;
    font-weight: 600;
    border-radius: 0;
    transition: background 0.2s ease, color 0.2s ease;
}

.nav-links .dropdown-menu a:hover {
    background: #fdfaf6;
    color: var(--accent-teal);
}

/* Buttons */
.btn-teal {
    display: inline-block;
    background: var(--accent-teal);
    color: #fff !important;
    padding: 12px 26px;
    border-radius: 30px;
    font-family: var(--font-heading);
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(20, 184, 166, 0.25);
}

.btn-teal:hover {
    background: var(--accent-teal-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(20, 184, 166, 0.35);
}

.btn-gold {
    display: inline-block;
    background: var(--accent-gold);
    color: #1a1a1a !important;
    padding: 12px 26px;
    border-radius: 30px;
    font-family: var(--font-heading);
    font-weight: 800;
    transition: all 0.3s ease;
    text-align: center;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(245, 184, 35, 0.3);
}

.btn-gold:hover {
    background: var(--accent-gold-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 184, 35, 0.4);
}

/* Home Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 80px 40px;
    background: linear-gradient(135deg, #fdfaf6 0%, #f4eee6 100%);
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-badge, .badge {
    display: inline-block;
    background-color: rgba(20, 184, 166, 0.1);
    color: var(--accent-teal);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 800;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid rgba(20, 184, 166, 0.2);
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* Post/Seminar Hero Section */
.post-hero {
    background: linear-gradient(135deg, #fdfaf6 0%, #f4eee6 100%);
    padding: 60px 40px;
    border-bottom: 1px solid var(--border-color);
}

.post-hero-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 40px;
}

.post-hero-content {
    flex: 1.2;
}

.post-hero-image {
    flex: 1;
    text-align: center;
}

.post-hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    border: 1px solid var(--border-color);
}

.post-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 16px;
}

.post-hero p.subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.event-meta-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    background: var(--card-bg);
    padding: 16px 24px;
    border-radius: 14px;
    border: 1px solid var(--border-color);
    margin-bottom: 30px;
    font-size: 0.95rem;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
}

/* Section Global */
section {
    padding: 80px 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
}

/* Seminars Grid (Option 5 Macro-Cards Layout) */
.cards-grid-5 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 24px;
}

.macro-card-5 {
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    padding: 28px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s ease;
}

.macro-card-5::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: var(--accent-teal);
}

.macro-card-5:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.06);
}

.tag-row {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 14px;
    margin-bottom: 20px;
}

.mini-pill {
    background: #f1f5f9;
    color: #475569;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 10px;
}

/* Speaker Card (Piloto 01) */
.speaker-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 40px;
    display: flex;
    gap: 30px;
    align-items: flex-start;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}

.speaker-avatar {
    width: 110px;
    height: 110px;
    background: linear-gradient(135deg, var(--accent-teal), var(--accent-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.8rem;
    color: #fff;
    flex-shrink: 0;
}

.speaker-info h3 {
    font-size: 1.8rem;
    margin-bottom: 6px;
}

.speaker-info h4 {
    font-size: 1rem;
    color: var(--accent-teal);
    font-weight: 600;
    margin-bottom: 16px;
}

.speaker-info p {
    color: var(--text-muted);
    font-size: 0.98rem;
    margin-bottom: 12px;
}

.speaker-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}

.tag {
    background: #f1f5f9;
    color: #475569;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.82rem;
    font-weight: 600;
}

/* Program Timeline Grid (Piloto 01) */
.program-timeline {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.program-block {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 24px 30px;
    display: flex;
    align-items: flex-start;
    gap: 24px;
    transition: all 0.3s ease;
}

.program-block:hover {
    border-color: var(--accent-teal);
    transform: translateX(4px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.04);
}

.block-time {
    background: rgba(20, 184, 166, 0.1);
    color: var(--accent-teal);
    padding: 8px 16px;
    border-radius: 12px;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.95rem;
    white-space: nowrap;
}

.block-content h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.block-content p {
    color: var(--text-muted);
    font-size: 0.96rem;
    margin-bottom: 0;
}

/* Benefits Grid (Piloto 01 ROI) */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.benefit-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    padding: 26px;
    border-radius: 16px;
}

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

.benefit-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.benefit-card p {
    color: var(--text-muted);
    font-size: 0.92rem;
    margin-bottom: 0;
}

/* Methodology Grid */
.method-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.method-card {
    background: var(--card-bg);
    padding: 32px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.method-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    border-color: var(--accent-teal);
}

.method-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--accent-teal);
}

.method-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Pricing Section */
.pricing-section {
    background: linear-gradient(135deg, #061f1d 0%, #0c3330 50%, #072422 100%);
    color: #fff;
    padding: 80px 40px;
}

.pricing-section .section-header h2 {
    color: #fff;
}

.pricing-section .section-header p {
    color: #a3d9d3;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.price-card {
    background: rgba(12, 51, 48, 0.85);
    border: 1px solid rgba(20, 184, 166, 0.25);
    padding: 40px 30px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.price-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 16px 36px rgba(20, 184, 166, 0.2);
}

.price-card.featured {
    border: 2px solid var(--accent-teal);
    background: rgba(16, 68, 64, 0.95);
    box-shadow: 0 12px 30px rgba(20, 184, 166, 0.25);
}

.price-card.vip {
    border: 2px solid var(--accent-gold);
    background: rgba(18, 62, 58, 0.95);
    box-shadow: 0 12px 30px rgba(245, 184, 35, 0.2);
}

.price-card h3 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.price-card .price {
    font-size: 3rem;
    font-family: var(--font-heading);
    font-weight: 800;
    margin-bottom: 20px;
    color: #fff;
}

.price-card ul {
    list-style: none;
    flex-grow: 1;
    margin-bottom: 30px;
    padding-left: 0;
}

.price-card ul li {
    margin-bottom: 12px;
    color: #d0d0d0;
    display: flex;
    align-items: center;
    font-size: 0.95rem;
}

.price-card ul li::before {
    content: '✓';
    color: var(--accent-teal);
    font-weight: bold;
    margin-right: 10px;
}

.price-card.vip ul li::before {
    color: var(--accent-gold);
}

/* Sponsors Section */
.sponsors-box {
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.1) 0%, rgba(245, 184, 35, 0.1) 100%);
    border: 1px solid var(--accent-gold);
    border-radius: 20px;
    padding: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 40px;
}

.sponsors-text h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.sponsors-text p {
    font-size: 1.05rem;
    color: var(--text-muted);
}

/* Footer */
footer {
    background: #111111;
    color: #888888;
    padding: 60px 40px 30px;
    border-top: 1px solid #222;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-brand {
    max-width: 400px;
}

.footer-brand h3 {
    color: #ffffff;
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.footer-links {
    display: flex;
    gap: 40px;
    list-style: none;
}

.footer-links a {
    color: #aaaaaa;
    transition: color 0.2s;
}

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

.footer-bottom {
    border-top: 1px solid #222222;
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    flex-wrap: wrap;
    gap: 16px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .navbar {
        padding: 16px 20px;
    }
    
    .nav-links {
        display: none;
    }

    .hero {
        flex-direction: column;
        text-align: center;
        padding: 50px 20px;
    }

    .hero-content {
        margin-bottom: 30px;
    }

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

    .post-hero-container {
        flex-direction: column;
        text-align: center;
    }

    .speaker-card {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .program-block {
        flex-direction: column;
        gap: 12px;
    }

    section {
        padding: 60px 20px;
    }

    .sponsors-box {
        flex-direction: column;
        text-align: center;
        gap: 24px;
        padding: 30px 20px;
    }

    .footer-top {
        flex-direction: column;
    }
}
