/* ====================================
   PROFESSIONAL ABOUT SECTION - CLEAN & ELEGANT
   ==================================== */

/* Root Variables */
:root {
    --pro-navy: #02243d;
    --pro-gold: #f8e874;
    --pro-gold-dark: #f4d03f;
    --pro-white: #ffffff;
    --pro-gray-50: #fafafa;
    --pro-gray-100: #f5f5f5;
    --pro-gray-200: #e5e5e5;
    --pro-gray-300: #d4d4d4;
    --pro-gray-500: #737373;
    --pro-gray-600: #525252;
    --pro-gray-700: #404040;
    --pro-gray-900: #171717;
    --pro-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Main Section */
.about-professional {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(180deg, #fafafa 0%, #ffffff 40%, #f8f9fa 100%);
    overflow: hidden;
}

.about-professional::before {
    content: '';
    position: absolute;
    top: 0;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(248, 232, 116, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.about-professional::after {
    content: '';
    position: absolute;
    bottom: -10%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(2, 36, 61, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.container-professional {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Section Header */
.section-header-pro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
}

.badge-pro {
    display: inline-block;
    padding: 8px 20px;
    background: var(--pro-gray-100);
    color: var(--pro-navy);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 100px;
    margin-bottom: 24px;
}

.title-pro {
    font-size: 42px;
    font-weight: 700;
    color: var(--pro-navy);
    line-height: 1.2;
    margin: 0 0 20px 0;
}

.subtitle-pro {
    font-size: 18px;
    line-height: 1.7;
    color: var(--pro-gray-600);
    margin: 0;
    font-weight: 400;
}

/* Content Grid */
.content-grid-pro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
    align-items: start;
}

/* Featured Image */
.featured-image-pro {
    position: relative;
}

.image-frame-pro {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.image-frame-pro img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

.featured-image-pro:hover .image-frame-pro img {
    transform: scale(1.08);
}

.image-overlay-pro {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, 
        rgba(2, 36, 61, 0.7) 0%, 
        rgba(2, 36, 61, 0.3) 50%,
        rgba(2, 36, 61, 0.8) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    align-items: flex-end;
    padding: 32px;
}

.featured-image-pro:hover .image-overlay-pro {
    opacity: 1;
}

.overlay-content-pro {
    width: 100%;
}

.event-badge-pro {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 100px;
    color: var(--pro-navy);
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.event-badge-pro svg {
    color: var(--pro-gold);
}

.image-accent {
    position: absolute;
    top: -16px;
    left: -16px;
    right: 16px;
    bottom: 16px;
    border: 3px solid var(--pro-gold);
    border-radius: 12px;
    pointer-events: none;
    z-index: -1;
    transition: all 0.4s ease;
}

.featured-image-pro:hover .image-accent {
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
}

/* Quick Stats Cards - Floating */
.quick-stats-floating {
    position: absolute;
    bottom: -30px;
    left: 20px;
    right: 20px;
    display: flex;
    gap: 16px;
    z-index: 10;
}

.quick-stat-card {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 20px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(2, 36, 61, 0.15);
    border: 1px solid rgba(248, 232, 116, 0.2);
    transition: all 0.3s ease;
}

.quick-stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(2, 36, 61, 0.25);
    border-color: var(--pro-gold);
}

.quick-stat-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--pro-navy) 0%, #03365a 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.quick-stat-icon svg {
    color: var(--pro-gold);
}

.quick-stat-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.quick-stat-number {
    font-size: 24px;
    font-weight: 800;
    color: var(--pro-navy);
    line-height: 1;
}

.quick-stat-label {
    font-size: 11px;
    color: var(--pro-gray-600);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Quick Stats Cards - Old (mantido para compatibilidade) */
.quick-stats-pro {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 24px;
}

.stat-icon-pro {
    width: 48px;
    height: 48px;
    background: rgba(248, 232, 116, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stat-icon-pro svg {
    color: var(--pro-gold);
}

.stat-info-pro {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.stat-num-pro {
    font-size: 28px;
    font-weight: 800;
    color: var(--pro-white);
    line-height: 1;
}

.stat-text-pro {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

/* Information Panel */
.info-panel-pro {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* Event Description */
.event-description-pro {
    padding: 32px;
    background: linear-gradient(135deg, var(--pro-navy) 0%, #03365a 100%);
    border-radius: 12px;
    position: relative;
    overflow: hidden;
}

.event-description-pro::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(248, 232, 116, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.description-title-pro {
    font-size: 24px;
    font-weight: 700;
    color: var(--pro-white);
    margin: 0 0 16px 0;
    position: relative;
    z-index: 1;
}

.description-text-pro {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    position: relative;
    z-index: 1;
}

/* Event Details */
.event-details-pro {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.detail-row-pro {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px 18px;
    background: var(--pro-gray-50);
    border-radius: 8px;
    border-bottom: 3px solid var(--pro-gold);
    transition: var(--pro-transition);
}

.detail-row-pro:hover {
    background: var(--pro-gray-100);
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.detail-icon-pro {
    width: 44px;
    height: 44px;
    background: var(--pro-white);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--pro-navy);
}

.detail-content-pro {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
}

.detail-label-pro {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--pro-gray-500);
}

.detail-value-pro {
    font-size: 16px;
    font-weight: 600;
    color: var(--pro-navy);
}

/* Stats */
.stats-pro {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 32px;
    background: var(--pro-navy);
    border-radius: 8px;
}

.stat-pro {
    text-align: center;
}

.stat-number-pro {
    font-size: 36px;
    font-weight: 700;
    color: var(--pro-gold);
    margin-bottom: 8px;
    line-height: 1;
}

.stat-label-pro {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

/* Topics Section */
.topics-section-pro {
    margin-bottom: 60px;
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}

.topics-bg-fixed {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('https://images.pexels.com/photos/3862132/pexels-photo-3862132.jpeg?auto=compress&cs=tinysrgb&w=1600');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 0;
}

.topics-bg-fixed::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.75) 0%, 
        rgba(2, 36, 61, 0.85) 100%);
    z-index: 1;
}

.topics-content-wrapper {
    position: relative;
    z-index: 3;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 0 24px;
}

.topics-badge-pro {
    display: inline-block;
    padding: 8px 24px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--pro-white);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 100px;
    margin-bottom: 24px;
}

.topics-title-pro {
    font-size: 48px;
    font-weight: 800;
    color: var(--pro-white);
    margin: 0 0 24px 0;
    line-height: 1.2;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.topics-subtitle-pro {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 40px 0;
    font-weight: 400;
}

.topics-buttons-pro {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.btn-topics-pro {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 36px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-topics-primary {
    background: #22c55e;
    color: var(--pro-white);
    box-shadow: 0 4px 20px rgba(34, 197, 94, 0.4);
}

.btn-topics-primary:hover {
    background: #16a34a;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(34, 197, 94, 0.5);
}

.btn-topics-secondary {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: var(--pro-white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-topics-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

/* Topics List Compact */
.topics-list-compact {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    max-width: 800px;
    margin: 0 auto;
}

.topic-item-compact {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.topic-item-compact:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--pro-gold);
    transform: translateX(4px);
}

.topic-num {
    font-size: 16px;
    font-weight: 800;
    color: var(--pro-gold);
    min-width: 32px;
}

.topic-text {
    font-size: 14px;
    font-weight: 600;
    color: var(--pro-white);
}

.topics-grid-pro {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.topic-card-pro {
    padding: 28px 24px;
    background: var(--pro-white);
    border: 2px solid var(--pro-gray-200);
    border-radius: 8px;
    transition: var(--pro-transition);
    position: relative;
    overflow: hidden;
}

.topic-card-pro::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--pro-gold);
    transition: height 0.3s ease;
}

.topic-card-pro:hover {
    border-color: var(--pro-gold);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.topic-card-pro:hover::before {
    height: 100%;
}

.topic-number-pro {
    font-size: 14px;
    font-weight: 700;
    color: var(--pro-gold);
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.topic-name-pro {
    font-size: 16px;
    font-weight: 600;
    color: var(--pro-navy);
    margin: 0;
    line-height: 1.4;
}

/* Benefits Section */
.benefits-section-pro {
    padding: 60px 0;
    background: var(--pro-gray-50);
    border-radius: 8px;
    margin-bottom: 60px;
}

.benefits-title-pro {
    font-size: 28px;
    font-weight: 700;
    color: var(--pro-navy);
    text-align: center;
    margin: 0 0 40px 0;
}

.benefits-grid-pro {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 40px;
}

.benefit-pro {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: var(--pro-white);
    border-radius: 8px;
    transition: var(--pro-transition);
    border: 1px solid var(--pro-gray-200);
}

.benefit-pro:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    border-color: var(--pro-gold);
}

.benefit-pro svg {
    flex-shrink: 0;
    color: var(--pro-navy);
}

.benefit-pro span {
    font-size: 15px;
    font-weight: 600;
    color: var(--pro-navy);
}

/* CTA Section */
.cta-section-pro {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 48px 60px;
    background: linear-gradient(135deg, var(--pro-navy) 0%, #03365a 100%);
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.cta-section-pro::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(248, 232, 116, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-content-pro {
    flex: 1;
    position: relative;
    z-index: 1;
}

.cta-title-pro {
    font-size: 28px;
    font-weight: 700;
    color: var(--pro-white);
    margin: 0 0 8px 0;
}

.cta-text-pro {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.cta-buttons-pro {
    display: flex;
    gap: 16px;
    position: relative;
    z-index: 1;
}

.btn-pro {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 6px;
    text-decoration: none;
    transition: var(--pro-transition);
    white-space: nowrap;
}

.btn-primary-pro {
    background: var(--pro-gold);
    color: var(--pro-navy);
    border: 2px solid var(--pro-gold);
}

.btn-primary-pro:hover {
    background: var(--pro-gold-dark);
    border-color: var(--pro-gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(248, 232, 116, 0.4);
}

.btn-primary-pro svg {
    transition: transform 0.3s ease;
}

.btn-primary-pro:hover svg {
    transform: translateX(4px);
}

.btn-outline-pro {
    background: transparent;
    color: var(--pro-white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline-pro:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--pro-white);
    transform: translateY(-2px);
}

/* ====================================
   TOPICS CTA SECTION - FULL WIDTH
   ==================================== */

.topics-cta-section {
    position: relative;
    padding: 140px 0;
    width: 100%;
    background-image: url('https://images.pexels.com/photos/3862132/pexels-photo-3862132.jpeg?auto=compress&cs=tinysrgb&w=1920');
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    background-repeat: no-repeat;
}

.topics-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.8) 0%, 
        rgba(2, 36, 61, 0.88) 100%);
    z-index: 1;
}

.topics-bg-fixed {
    display: none;
}

.topics-cta-content {
    position: relative;
    z-index: 3;
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
    padding: 0 40px;
}

.topics-badge-cta {
    display: inline-block;
    padding: 10px 28px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: var(--pro-white);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    border-radius: 100px;
    margin-bottom: 28px;
}

.topics-title-cta {
    font-size: 56px;
    font-weight: 800;
    color: var(--pro-white);
    margin: 0 0 28px 0;
    line-height: 1.15;
    text-shadow: 0 4px 24px rgba(0, 0, 0, 0.6);
}

.topics-subtitle-cta {
    font-size: 20px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.92);
    margin: 0 0 48px 0;
    font-weight: 400;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.topics-buttons-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 70px;
}

.btn-cta-topics {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 20px 40px;
    font-size: 17px;
    font-weight: 700;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-transform: none;
}

.btn-cta-primary {
    background: #22c55e;
    color: var(--pro-white);
    box-shadow: 0 6px 24px rgba(34, 197, 94, 0.45);
}

.btn-cta-primary:hover {
    background: #16a34a;
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(34, 197, 94, 0.6);
}

.btn-cta-secondary {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    color: var(--pro-white);
    border: 2px solid rgba(255, 255, 255, 0.35);
}

.btn-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.22);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-3px);
}

.topics-list-horizontal {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto;
}

.topic-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 100px;
    transition: all 0.3s ease;
}

.topic-badge:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--pro-gold);
    transform: translateY(-2px);
}

.topic-num-badge {
    font-size: 15px;
    font-weight: 800;
    color: var(--pro-gold);
    min-width: 26px;
}

.topic-text-badge {
    font-size: 14px;
    font-weight: 600;
    color: var(--pro-white);
    white-space: nowrap;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .topics-cta-section {
        padding: 100px 0;
    }

    .topics-cta-content {
        padding: 0 30px;
    }

    .topics-title-cta {
        font-size: 44px;
    }

    .topics-subtitle-cta {
        font-size: 18px;
    }

    .content-grid-pro {
        gap: 40px;
        margin-bottom: 100px;
    }
    
    .quick-stats-floating {
        flex-direction: column;
        bottom: -90px;
        left: 20px;
        right: 20px;
    }

    .stats-pro {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .topics-grid-pro {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-section-pro {
        padding: 40px;
    }
}

@media (max-width: 768px) {
    .topics-cta-section {
        padding: 80px 0;
        background-attachment: scroll;
    }

    .topics-cta-content {
        padding: 0 24px;
    }

    .topics-title-cta {
        font-size: 36px;
    }

    .topics-subtitle-cta {
        font-size: 17px;
        margin-bottom: 36px;
    }

    .topics-buttons-cta {
        flex-direction: column;
        margin-bottom: 50px;
    }

    .btn-cta-topics {
        width: 100%;
        justify-content: center;
        padding: 18px 32px;
    }

    .topics-list-horizontal {
        flex-direction: column;
        gap: 12px;
    }

    .topic-badge {
        width: 100%;
        justify-content: flex-start;
    }

    .about-professional {
        padding: 60px 0;
    }

    .section-header-pro {
        margin-bottom: 60px;
    }
    
    .content-grid-pro {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 60px;
    }
    
    .quick-stats-floating {
        position: static;
        margin-top: 24px;
        flex-direction: column;
    }
    
    .event-details-pro {
        grid-template-columns: 1fr;
    }
    
    .event-description-pro {
        padding: 24px;
    }
    
    .description-title-pro {
        font-size: 20px;
    }
    
    .description-text-pro {
        font-size: 14px;
    }

    .title-pro {
        font-size: 32px;
    }

    .subtitle-pro {
        font-size: 16px;
    }

    .content-grid-pro {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 60px;
    }

    .image-accent {
        display: none;
    }

    .quick-stats-pro {
        grid-template-columns: 1fr;
    }

    .topics-grid-pro {
        grid-template-columns: 1fr;
    }

    .benefits-grid-pro {
        grid-template-columns: 1fr;
        padding: 0 24px;
    }

    .cta-section-pro {
        flex-direction: column;
        text-align: center;
        padding: 40px 24px;
    }

    .cta-buttons-pro {
        flex-direction: column;
        width: 100%;
    }

    .btn-pro {
        width: 100%;
        justify-content: center;
    }

    .topics-title-pro,
    .benefits-title-pro {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .container-professional {
        padding: 0 16px;
    }

    .title-pro {
        font-size: 28px;
    }

    .detail-row-pro {
        padding: 16px;
    }

    .stats-pro {
        grid-template-columns: 1fr;
        padding: 24px;
        gap: 16px;
    }

    .stat-number-pro {
        font-size: 32px;
    }

    .cta-title-pro {
        font-size: 22px;
    }

    .benefits-section-pro {
        padding: 40px 0;
    }

    .quick-stat-card {
        padding: 16px;
    }

    .stat-num-pro {
        font-size: 24px;
    }

    .event-badge-pro {
        font-size: 13px;
        padding: 12px 20px;
    }
}

/* Root Variables */
:root {
    --bento-navy: #02243d;
    --bento-gold: #f8e874;
    --bento-gold-dark: #f4d03f;
    --bento-white: #ffffff;
    --bento-gray-50: #fafafa;
    --bento-gray-100: #f5f5f5;
    --bento-gray-200: #e5e5e5;
    --bento-gray-300: #d4d4d4;
    --bento-gray-600: #525252;
    --bento-gray-800: #262626;
    --bento-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
    --bento-shadow-lg: 0 10px 40px rgba(0,0,0,0.1);
    --bento-shadow-xl: 0 20px 60px rgba(0,0,0,0.15);
    --bento-radius: 24px;
    --bento-radius-sm: 16px;
    --bento-spacing: 16px;
}

/* Main Section */
.about-bento {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(135deg, 
        var(--bento-gray-50) 0%, 
        var(--bento-white) 50%, 
        var(--bento-gray-50) 100%);
    overflow: hidden;
}

.about-bento::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, 
        rgba(248, 232, 116, 0.08) 0%, 
        transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.about-bento::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, 
        rgba(2, 36, 61, 0.05) 0%, 
        transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.container-bento {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

/* Header */
.bento-header {
    text-align: center;
    margin-bottom: 80px;
}

.title-wrapper {
    display: inline-block;
}

.pre-title {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--bento-gold-dark);
    margin-bottom: 16px;
    position: relative;
    padding: 0 32px;
}

.pre-title::before,
.pre-title::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 24px;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent, 
        var(--bento-gold-dark), 
        transparent);
}

.pre-title::before {
    left: 0;
}

.pre-title::after {
    right: 0;
}

.main-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    color: var(--bento-navy);
    margin: 0;
}

.gradient-text {
    display: block;
    background: linear-gradient(135deg, 
        var(--bento-gold) 0%, 
        var(--bento-gold-dark) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 56px;
    margin-top: 8px;
}

/* Bento Grid */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: var(--bento-spacing);
    grid-auto-rows: 200px;
}

/* Base Card Styles */
.bento-card {
    background: var(--bento-white);
    border-radius: var(--bento-radius);
    padding: 32px;
    box-shadow: var(--bento-shadow);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid var(--bento-gray-200);
}

.bento-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(248, 232, 116, 0.03) 0%, 
        transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.bento-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--bento-shadow-lg);
    border-color: var(--bento-gold);
}

.bento-card:hover::before {
    opacity: 1;
}

/* Large Image Card */
.bento-large {
    grid-column: span 5;
    grid-row: span 3;
    padding: 0;
    background: var(--bento-gray-800);
}

.card-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.card-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, 
        rgba(2, 36, 61, 0.4) 0%, 
        rgba(2, 36, 61, 0.8) 100%);
    display: flex;
    align-items: flex-end;
    padding: 32px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.bento-large:hover .image-overlay {
    opacity: 1;
}

.overlay-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 12px 20px;
    border-radius: 100px;
    color: var(--bento-navy);
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.overlay-badge svg {
    color: var(--bento-gold-dark);
}

/* Stats Card */
.bento-stats {
    grid-column: span 4;
    grid-row: span 2;
    background: linear-gradient(135deg, 
        var(--bento-navy) 0%, 
        #03365a 100%);
    color: var(--bento-white);
}

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

.stats-header h3 {
    font-size: 18px;
    font-weight: 700;
    margin: 0;
    color: var(--bento-white);
}

.header-icon {
    width: 40px;
    height: 40px;
    background: rgba(248, 232, 116, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-icon svg {
    color: var(--bento-gold);
}

.stats-grid-mini {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.stat-mini {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: var(--bento-radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.stat-mini:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: scale(1.05);
}

.stat-number {
    font-size: 36px;
    font-weight: 800;
    background: linear-gradient(135deg, 
        var(--bento-white) 0%, 
        var(--bento-gold) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

/* Description Card */
.bento-description {
    grid-column: span 3;
    grid-row: span 2;
    background: linear-gradient(135deg, 
        var(--bento-white) 0%, 
        var(--bento-gray-50) 100%);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.card-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, 
        var(--bento-gold) 0%, 
        var(--bento-gold-dark) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bento-navy);
    flex-shrink: 0;
}

.card-text {
    font-size: 15px;
    line-height: 1.7;
    color: var(--bento-gray-600);
    margin: 0;
}

/* Info Cards (Date & Location) */
.bento-info {
    grid-column: span 4;
    grid-row: span 1;
    display: flex;
    align-items: center;
    gap: 20px;
}

.bento-date {
    background: linear-gradient(135deg, 
        #fef3c7 0%, 
        #fde68a 100%);
    border-color: var(--bento-gold);
}

.bento-location {
    background: linear-gradient(135deg, 
        #dbeafe 0%, 
        #bfdbfe 100%);
    border-color: #93c5fd;
}

.info-icon-large {
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.bento-date .info-icon-large svg {
    color: #b45309;
}

.bento-location .info-icon-large svg {
    color: #1e40af;
}

.info-content-large {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.info-title {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(0, 0, 0, 0.5);
}

.info-value-large {
    font-size: 22px;
    font-weight: 800;
    color: var(--bento-navy);
    line-height: 1.2;
}

.info-meta {
    font-size: 14px;
    font-weight: 600;
    color: rgba(0, 0, 0, 0.6);
}

/* Topics Card */
.bento-topics {
    grid-column: span 3;
    grid-row: span 3;
    background: linear-gradient(135deg, 
        var(--bento-navy) 0%, 
        #042d4f 100%);
    color: var(--bento-white);
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

.topics-header-bento h3 {
    font-size: 20px;
    font-weight: 700;
    margin: 0;
    color: var(--bento-white);
}

.pulse-indicator {
    width: 12px;
    height: 12px;
    background: var(--bento-gold);
    border-radius: 50%;
    position: relative;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(248, 232, 116, 0.7);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(248, 232, 116, 0);
    }
}

.topics-list-bento {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}

.topic-item {
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border-radius: var(--bento-radius-sm);
    border-left: 3px solid var(--bento-gold);
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
}

.topic-item:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateX(8px);
    border-left-width: 4px;
}

/* Features Card */
.bento-features {
    grid-column: span 4;
    grid-row: span 1;
}

.features-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--bento-navy);
    margin: 0 0 16px 0;
}

.features-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: var(--bento-gray-50);
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    color: var(--bento-gray-800);
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: var(--bento-gold);
    transform: scale(1.05);
}

.feature-item svg {
    color: var(--bento-navy);
    flex-shrink: 0;
}

/* CTA Card */
.bento-cta {
    grid-column: span 5;
    grid-row: span 2;
    background: linear-gradient(135deg, 
        var(--bento-gold) 0%, 
        var(--bento-gold-dark) 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.bento-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, 
        rgba(255, 255, 255, 0.2) 0%, 
        transparent 70%);
    border-radius: 50%;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h3 {
    font-size: 32px;
    font-weight: 800;
    color: var(--bento-navy);
    margin: 0 0 12px 0;
    line-height: 1.2;
}

.cta-content p {
    font-size: 16px;
    color: rgba(2, 36, 61, 0.8);
    margin: 0 0 28px 0;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.btn-bento {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    font-size: 15px;
    font-weight: 700;
    border-radius: 100px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--bento-navy);
    color: var(--bento-white);
    box-shadow: 0 4px 20px rgba(2, 36, 61, 0.4);
}

.btn-primary:hover {
    background: #03365a;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(2, 36, 61, 0.5);
}

.btn-primary svg {
    transition: transform 0.3s ease;
}

.btn-primary:hover svg {
    transform: translateX(4px);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.9);
    color: var(--bento-navy);
    border: 2px solid var(--bento-navy);
}

.btn-secondary:hover {
    background: var(--bento-white);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .bento-grid {
        grid-template-columns: repeat(8, 1fr);
        gap: 12px;
        grid-auto-rows: 180px;
    }

    .bento-large {
        grid-column: span 5;
        grid-row: span 3;
    }

    .bento-stats {
        grid-column: span 3;
        grid-row: span 2;
    }

    .bento-description {
        grid-column: span 3;
        grid-row: span 2;
    }

    .bento-info {
        grid-column: span 5;
        grid-row: span 1;
    }

    .bento-topics {
        grid-column: span 3;
        grid-row: span 3;
    }

    .bento-features {
        grid-column: span 5;
        grid-row: span 1;
    }

    .bento-cta {
        grid-column: span 5;
        grid-row: span 2;
    }

    .main-title {
        font-size: 40px;
    }

    .gradient-text {
        font-size: 48px;
    }
}

@media (max-width: 768px) {
    .about-bento {
        padding: 80px 0;
    }

    .bento-header {
        margin-bottom: 48px;
    }

    .main-title {
        font-size: 32px;
    }

    .gradient-text {
        font-size: 36px;
    }

    .bento-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        grid-auto-rows: auto;
    }

    .bento-card {
        padding: 24px;
    }

    .bento-large,
    .bento-stats,
    .bento-description,
    .bento-info,
    .bento-topics,
    .bento-features,
    .bento-cta {
        grid-column: span 1;
        grid-row: auto;
    }

    .bento-large {
        min-height: 300px;
    }

    .stats-grid-mini {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

    .btn-bento {
        width: 100%;
        justify-content: center;
    }

    .info-icon-large {
        width: 56px;
        height: 56px;
    }

    .info-value-large {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .container-bento {
        padding: 0 16px;
    }

    .bento-card {
        padding: 20px;
        border-radius: 20px;
    }

    .main-title {
        font-size: 28px;
    }

    .gradient-text {
        font-size: 32px;
    }

    .stat-number {
        font-size: 28px;
    }

    .cta-content h3 {
        font-size: 24px;
    }

    .stats-grid-mini {
        grid-template-columns: 1fr;
    }
}