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

:root {
    --primary-color: #0A2463; /* Azul Profundo */
    --secondary-color: #3E92CC; /* Azul Claro */
    --accent-color: #D8315B; /* Rosa/Vermelho para contraste forte */
    --background: #F4F6FC;
    --card-bg: #FFFFFF;
    --text-dark: #1E1E24;
    --text-light: #F4F6FC;
    --border-radius: 12px;
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--background);
    color: var(--text-dark);
    line-height: 1.6;
}

h1, h2, h3, h4 {
    font-family: 'Outfit', sans-serif;
    color: var(--primary-color);
}

/* Header & Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1e3c72 100%);
    color: var(--text-light);
    padding: 100px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 60%);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3.5rem;
    color: var(--text-light);
    margin-bottom: 20px;
    font-weight: 800;
    text-shadow: 0px 4px 15px rgba(0,0,0,0.3);
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.btn-cta {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--text-light);
    padding: 15px 35px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(216, 49, 91, 0.3);
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(216, 49, 91, 0.4);
    background-color: #c0254c;
}

/* Sections */
.section-container {
    max-width: 1100px;
    margin: 60px auto;
    padding: 0 20px;
}

.section-title {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 40px;
}

/* Grid Info */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.info-card {
    background-color: var(--card-bg);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    text-align: center;
}

.info-card:hover {
    transform: translateY(-5px);
}

.info-card h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
}

/* Forms */
.form-container {
    background-color: var(--card-bg);
    max-width: 600px;
    margin: 0 auto;
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.form-group {
    margin-bottom: 20px;
    text-align: left;
}

.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e1e5ee;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--secondary-color);
}

.btn-submit {
    width: 100%;
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 15px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-submit:hover {
    background-color: #081c4c;
}

.payment-methods {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.payment-method {
    flex: 1;
    padding: 15px;
    border: 2px solid #e1e5ee;
    border-radius: 8px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
    font-weight: 500;
}

.payment-method:hover {
    border-color: var(--secondary-color);
    background-color: #f8fafe;
}

input[type="radio"]:checked + label {
    border-color: var(--primary-color);
    background-color: var(--primary-color);
    color: white;
}

.radio-hidden {
    display: none;
}

/* Footer */
footer {
    text-align: center;
    padding: 30px;
    background-color: var(--primary-color);
    color: rgba(255,255,255,0.7);
    margin-top: 60px;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in {
    animation: fadeIn 0.8s ease forwards;
}

/* Speakers & Organizers Section (Bootstrap Custom) */
.speakers-main-title {
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.2;
    color: var(--primary-color);
    text-transform: uppercase;
}

.speaker-card-soft {
    background-color: #EDF2F7;
    border-radius: 12px !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
}

.speaker-card-soft:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08) !important;
}

.speaker-avatar {
    border-radius: 0 50% 50% 50%; /* Formato de gota apontando pro centro */
    width: 140px;
    height: 140px;
    object-fit: cover;
    border: 4px solid #F88A2E;
}

.speaker-name-soft {
    color: var(--primary-color);
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 2px;
}

.role-text {
    font-weight: 700;
    color: #4A5568;
    margin-bottom: 12px;
    font-size: 1rem;
}

.speaker-list-soft li {
    margin-bottom: 8px;
    font-size: 0.95rem;
    color: #2D3748;
    position: relative;
    padding-left: 20px;
}

.speaker-list-soft li::before {
    content: '➔';
    position: absolute;
    left: 0;
    color: #F88A2E;
    font-weight: bold;
}

/* Atualização SINPAC 2026 */
.hero-banner {
    padding: 30px 20px 45px;
    background: #071e63;
}

.hero-banner::before {
    opacity: 0.25;
}

.hero-banner-wrap {
    position: relative;
    z-index: 1;
    max-width: 1180px;
    margin: 0 auto;
}

.hero-event-image,
.checkout-banner {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 18px;
    box-shadow: 0 22px 55px rgba(0,0,0,0.28);
}

.hero-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 24px;
}

.btn-secondary-event {
    display: inline-block;
    color: #ffffff;
    border: 2px solid rgba(255,255,255,0.78);
    padding: 13px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.25s ease;
}

.btn-secondary-event:hover {
    background: rgba(255,255,255,0.12);
    transform: translateY(-2px);
}

.event-summary-card,
.pricing-section,
.what-section,
.final-cta {
    background-color: var(--card-bg);
    border-radius: var(--border-radius);
    box-shadow: 0 12px 35px rgba(0,0,0,0.06);
    padding: 34px;
    margin-bottom: 42px;
}

.section-kicker {
    color: #F88A2E;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
    font-size: .82rem;
}

.event-theme {
    color: #3A4665;
    font-size: 1.2rem;
    margin-top: 6px;
}

.event-summary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
    margin-top: 22px;
}

.event-summary-grid div {
    background: #F4F6FC;
    border-radius: 12px;
    padding: 16px;
}

.event-summary-grid strong,
.event-summary-grid span {
    display: block;
}

.event-summary-grid span {
    margin-top: 6px;
    color: #38425E;
}

.section-heading-inline {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 28px;
}

.price-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(255px, 1fr));
    gap: 22px;
}

.price-card {
    border: 1px solid #DDE5F4;
    border-radius: 16px;
    padding: 24px;
    background: #FFFFFF;
    transition: transform .25s ease, box-shadow .25s ease;
}

.price-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 26px rgba(0,0,0,.08);
}

.price-card-highlight {
    border-color: #F88A2E;
}

.price-card h3 {
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.price-card p {
    color: #566075;
    min-height: 72px;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-top: 1px solid #E7ECF6;
}

.price-row strong {
    color: var(--primary-color);
    font-size: 1.25rem;
}

.price-row-late strong {
    color: #D8315B;
}

.pricing-note,
.final-cta {
    text-align: center;
}

.pricing-note {
    margin-top: 28px;
}

.checkout-page {
    max-width: 920px;
}

.checkout-header {
    text-align: center;
    margin-bottom: 30px;
}

.checkout-header h1 {
    margin-top: 24px;
    font-size: 2rem;
}

.lote-atual,
.help-text,
.checkout-security-note {
    color: #566075;
}

.help-text {
    display: block;
    margin-top: 8px;
    font-size: .88rem;
}

.selected-price-box {
    background: #F4F6FC;
    border-left: 5px solid #F88A2E;
    border-radius: 12px;
    padding: 18px;
    margin: 22px 0;
}

.selected-price-box span,
.selected-price-box small {
    display: block;
    color: #566075;
}

.selected-price-box strong {
    display: block;
    font-size: 2rem;
    color: var(--primary-color);
    margin: 4px 0;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.25rem;
    }

    .hero-banner {
        padding: 18px 10px 30px;
    }

    .hero-event-image,
    .checkout-banner {
        border-radius: 12px;
    }

    .event-summary-card,
    .pricing-section,
    .what-section,
    .final-cta,
    .form-container {
        padding: 24px;
    }

    .payment-methods {
        flex-direction: column;
    }
}

/* Ajustes Pix manual - SINPAC 2026 */
.event-card-link {
    color: var(--primary-color);
    font-weight: 800;
    text-decoration: underline;
}

.checkout-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(280px, .75fr);
    gap: 26px;
    align-items: start;
}

.checkout-form-card {
    max-width: 100%;
    margin: 0;
}

.pix-only-notice {
    background: #fff8ec;
    border: 1px solid #f4c77f;
    border-left: 5px solid #F88A2E;
    border-radius: 12px;
    padding: 16px;
    margin: 22px 0;
}

.pix-only-notice strong,
.pix-only-notice span {
    display: block;
}

.pix-only-notice span {
    color: #566075;
    margin-top: 4px;
}

.pix-card {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    padding: 28px;
    text-align: center;
}

.pix-card h2 {
    margin: 8px 0 10px;
}

.pix-key-box {
    background: #F4F6FC;
    border-radius: 12px;
    padding: 16px;
    margin: 18px 0;
}

.pix-key-box small,
.pix-key-box strong {
    display: block;
}

.pix-key-box small {
    color: #566075;
}

.pix-key-box strong {
    color: var(--primary-color);
    font-size: 1.45rem;
    margin-top: 4px;
}

.pix-qrcode {
    width: 240px;
    max-width: 100%;
    height: auto;
    background: white;
    border: 1px solid #e7ecf6;
    border-radius: 12px;
    padding: 12px;
}

.pix-small-note {
    color: #566075;
    font-size: .92rem;
    margin-top: 12px;
}

@media (max-width: 900px) {
    .checkout-layout {
        grid-template-columns: 1fr;
    }
}


.pix-dynamic-placeholder {
    border: 2px dashed #c7d1e6;
    border-radius: 12px;
    background: #f4f6fc;
    color: #23345c;
    font-weight: 700;
    text-align: center;
    padding: 34px 16px;
    margin: 16px auto;
    max-width: 280px;
}


.btn-location-mini {
    display: inline-block;
    margin-top: 12px;
    padding: 10px 16px;
    border-radius: 999px;
    background: var(--primary-color);
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.92rem;
    transition: all 0.25s ease;
}

.btn-location-mini:hover {
    background: #081c4c;
    color: #fff;
    transform: translateY(-1px);
}

.speaker-bio-soft {
    font-size: 1rem;
    color: #2D3748;
    line-height: 1.75;
}

.location-actions-wrap {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 24px;
}

.btn-secondary-location {
    display: inline-block;
    color: var(--primary-color);
    border: 2px solid #DDE5F4;
    background: #fff;
    padding: 13px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.25s ease;
}

.btn-secondary-location:hover {
    background: #F4F6FC;
    transform: translateY(-2px);
}

.location-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.location-card {
    background: #FFFFFF;
    border: 1px solid #DDE5F4;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.05);
}

.location-card h3 {
    margin-bottom: 14px;
    font-size: 1.2rem;
}


.role-text-highlight {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(248, 138, 46, 0.12);
    color: #A14D09;
    padding: 8px 14px;
    border-radius: 999px;
    margin-bottom: 14px;
}

.speaker-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.speaker-badge {
    display: inline-block;
    padding: 9px 14px;
    border-radius: 999px;
    background: #FFFFFF;
    border: 1px solid #D7E0F0;
    color: #33415C;
    font-size: 0.92rem;
    font-weight: 600;
    box-shadow: 0 6px 14px rgba(0,0,0,0.04);
}

.location-page-body {
    background: linear-gradient(180deg, #EDF3FF 0%, #F7F9FD 100%);
}

.location-page-wrap {
    max-width: 1180px;
}

.location-hero-card {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 28px;
    align-items: stretch;
    background: linear-gradient(135deg, #FFFFFF 0%, #F6F8FE 100%);
    border-radius: 24px;
    box-shadow: 0 18px 40px rgba(7, 30, 99, 0.08);
    padding: 32px;
    margin-bottom: 36px;
}

.location-hero-copy h1 {
    font-size: 2.25rem;
    margin: 10px 0 12px;
}

.location-address-box {
    margin-top: 20px;
    padding: 18px;
    border-radius: 18px;
    background: #FFFFFF;
    border: 1px solid #DFE7F5;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.8);
}

.location-address-box strong,
.location-address-box span {
    display: block;
}

.location-address-box span {
    margin-top: 8px;
    color: #38425E;
}

.location-hero-map iframe {
    width: 100%;
    min-height: 100%;
    height: 100%;
    min-height: 380px;
    border: 0;
    border-radius: 20px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.location-title-block p {
    margin-top: 8px;
    color: #566075;
}

.location-mini-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 18px;
}

.location-mini-card {
    background: #FFFFFF;
    border: 1px solid #DDE5F4;
    border-radius: 18px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 10px 24px rgba(0,0,0,0.05);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.location-mini-card:hover,
.hotel-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 28px rgba(0,0,0,0.08);
}

.location-mini-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(10, 36, 99, 0.08);
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.location-mini-card strong {
    display: block;
    color: var(--primary-color);
    font-size: 1rem;
}

.location-mini-card p {
    margin: 8px 0 0;
    font-weight: 700;
    color: #D8315B;
}

.hotels-grid-enhanced {
    align-items: stretch;
}

.hotel-card-top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.hotel-card-top .location-mini-icon {
    margin-bottom: 0;
    flex-shrink: 0;
}

.hotel-card h3 {
    margin: 0;
}

.hotel-distance {
    font-weight: 800;
    color: #D8315B;
    margin-bottom: 10px;
}

@media (max-width: 900px) {
    .location-hero-card {
        grid-template-columns: 1fr;
        padding: 24px;
    }
}

@media (max-width: 768px) {
    .speaker-badges {
        justify-content: center;
    }

    .location-hero-copy h1 {
        font-size: 1.9rem;
    }

    .location-mini-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
}


/* PREMIUM REDESIGN V2 */
.premium-page-body {
    background: linear-gradient(180deg, #F6F8FD 0%, #EEF3FB 38%, #F7F9FC 100%);
    color: var(--text-dark);
}

.premium-hero {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at top right, rgba(216,49,91,0.18), transparent 28%),
        radial-gradient(circle at left center, rgba(62,146,204,0.22), transparent 30%),
        linear-gradient(135deg, #071B4D 0%, #0A2463 48%, #132E7A 100%);
    color: #fff;
    padding: 24px 0 70px;
}

.premium-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0));
    pointer-events: none;
}

.premium-nav-wrap {
    max-width: 1200px;
    margin: 0 auto 28px;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    position: relative;
    z-index: 1;
}

.premium-branding {
    display: flex;
    align-items: center;
    gap: 14px;
}

.premium-logo-main,
.premium-logo-badge {
    height: 62px;
    width: auto;
    object-fit: contain;
    background: rgba(255,255,255,0.92);
    border-radius: 16px;
    padding: 8px 12px;
    box-shadow: 0 14px 30px rgba(0,0,0,0.14);
}

.premium-logo-badge {
    height: 58px;
}

.premium-nav-actions,
.premium-hero-cta,
.premium-final-cta-actions,
.premium-location-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
}

.btn-premium-solid,
.btn-premium-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 24px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.28s ease;
}

.btn-premium-solid {
    background: linear-gradient(135deg, #D8315B 0%, #F04F6F 100%);
    color: #fff;
    box-shadow: 0 16px 30px rgba(216,49,91,0.24);
}

.btn-premium-solid:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 18px 34px rgba(216,49,91,0.34);
}

.btn-premium-outline {
    border: 1px solid rgba(255,255,255,0.35);
    background: rgba(255,255,255,0.08);
    color: #fff;
    backdrop-filter: blur(10px);
}

.btn-premium-outline:hover {
    color: #fff;
    transform: translateY(-2px);
    background: rgba(255,255,255,0.16);
}

.btn-premium-large {
    padding: 15px 28px;
    font-size: 1.02rem;
}

.premium-hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
    gap: 34px;
    align-items: center;
}

.premium-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.18);
    font-size: 0.92rem;
    font-weight: 700;
    margin-bottom: 18px;
}

.premium-hero-copy h1 {
    font-size: clamp(2.4rem, 4vw, 4.25rem);
    line-height: 1.03;
    color: #fff;
    margin-bottom: 14px;
}

.premium-hero-theme {
    font-family: 'Outfit', sans-serif;
    font-size: 1.3rem;
    color: #FFD8E2;
    margin-bottom: 18px;
}

.premium-hero-description {
    font-size: 1.08rem;
    color: rgba(255,255,255,0.88);
    max-width: 680px;
}

.premium-hero-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 24px 0;
}

.premium-hero-chips span {
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 999px;
    padding: 9px 14px;
    color: #fff;
}

.premium-highlight-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 30px;
}

.premium-highlight-card {
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 18px;
    padding: 18px;
    backdrop-filter: blur(10px);
}

.premium-highlight-card strong,
.premium-highlight-card span {
    display: block;
}

.premium-highlight-card strong {
    color: #fff;
    margin-bottom: 8px;
}

.premium-highlight-card span {
    color: rgba(255,255,255,0.82);
    font-size: 0.95rem;
}

.premium-hero-visual {
    position: relative;
    min-height: 520px;
}

.premium-poster-card {
    background: rgba(255,255,255,0.08);
    padding: 16px;
    border-radius: 28px;
    border: 1px solid rgba(255,255,255,0.12);
    box-shadow: 0 20px 40px rgba(0,0,0,0.22);
    backdrop-filter: blur(8px);
}

.premium-poster-image {
    width: 100%;
    display: block;
    border-radius: 22px;
}

.premium-floating-info {
    position: absolute;
    max-width: 320px;
    background: #fff;
    color: #233255;
    border-radius: 18px;
    padding: 16px 18px;
    box-shadow: 0 18px 35px rgba(4, 18, 51, 0.18);
}

.premium-floating-info strong,
.premium-floating-info span {
    display: block;
}

.premium-floating-info strong { margin-bottom: 6px; }
.premium-floating-info span { color: #566075; font-size: 0.92rem; }
.premium-floating-info-top { top: 18px; left: -14px; }
.premium-floating-info-bottom { bottom: 18px; right: -14px; }

.premium-main-content {
    padding-top: 24px;
}

.premium-section-header {
    max-width: 820px;
    margin-bottom: 28px;
}

.premium-section-header.centered {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.premium-section-header h2,
.premium-coordinator-copy h2,
.premium-location-copy h2,
.premium-program-card h2,
.premium-final-cta-card h2,
.checkout-card-header h2,
.checkout-side-card h3 {
    font-size: clamp(1.9rem, 3vw, 2.55rem);
    line-height: 1.12;
    margin-bottom: 12px;
}

.premium-section-header p {
    color: #566075;
    font-size: 1.02rem;
}

.premium-overview-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.premium-overview-card,
.premium-price-card,
.checkout-step-card,
.checkout-form-premium-card,
.checkout-side-card,
.premium-final-cta-card,
.premium-program-card {
    background: #fff;
    border: 1px solid #DFE6F4;
    border-radius: 24px;
    box-shadow: 0 16px 34px rgba(14, 37, 91, 0.08);
}

.premium-overview-card {
    padding: 28px;
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.premium-overview-card:hover,
.premium-price-card:hover,
.checkout-side-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 38px rgba(14, 37, 91, 0.12);
}

.premium-card-icon {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(10,36,99,0.10), rgba(62,146,204,0.18));
    font-size: 1.65rem;
    margin-bottom: 18px;
}

.premium-overview-card h3 {
    font-size: 1.28rem;
    margin-bottom: 12px;
}

.premium-overview-card p {
    color: #566075;
}

.premium-coordinator-card,
.premium-location-card {
    display: grid;
    grid-template-columns: 330px minmax(0, 1fr);
    gap: 28px;
    background: linear-gradient(180deg, #FFFFFF 0%, #F8FAFE 100%);
    border: 1px solid #DFE7F4;
    border-radius: 28px;
    padding: 30px;
    box-shadow: 0 18px 38px rgba(8, 28, 76, 0.08);
}

.premium-coordinator-photo-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
}

.premium-coordinator-photo {
    width: 100%;
    max-width: 290px;
    aspect-ratio: 1 / 1.18;
    object-fit: cover;
    border-radius: 28px;
    box-shadow: 0 18px 34px rgba(9, 26, 73, 0.18);
}

.premium-pill {
    display: inline-flex;
    padding: 9px 14px;
    border-radius: 999px;
    background: rgba(248, 138, 46, 0.14);
    color: #A14D09;
    font-weight: 800;
    margin-bottom: 14px;
}

.premium-coordinator-lead {
    font-size: 1.06rem;
    color: #2D3748;
    margin-bottom: 12px;
}

.premium-coordinator-text,
.premium-location-copy p,
.premium-program-card p,
.premium-final-cta-card p,
.checkout-card-header p,
.checkout-side-theme,
.checkout-security-note,
.pix-small-note {
    color: #566075;
}

.premium-badges-wrap {
    margin-top: 18px;
}

.premium-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.premium-price-card {
    padding: 26px;
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.premium-price-card-featured {
    border: 1px solid rgba(216,49,91,0.28);
    background: linear-gradient(180deg, rgba(216,49,91,0.04) 0%, #FFFFFF 100%);
}

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

.premium-price-card-top p {
    color: #566075;
    min-height: 70px;
}

.premium-price-row {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 0;
    border-top: 1px solid #E7ECF6;
}

.premium-price-row span {
    color: #4A5568;
}

.premium-price-row strong {
    color: var(--primary-color);
    font-size: 1.24rem;
}

.premium-price-row.late strong,
.hotel-distance,
.location-mini-card p {
    color: #D8315B;
}

.premium-info-banner {
    margin-top: 28px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: center;
    padding: 24px 26px;
    border-radius: 24px;
    background: linear-gradient(135deg, #0A2463 0%, #16367E 100%);
    color: #fff;
    box-shadow: 0 18px 34px rgba(10,36,99,0.18);
}

.premium-info-banner strong {
    display: block;
    margin-bottom: 8px;
    font-size: 1.15rem;
}

.premium-info-banner p {
    margin: 0;
    color: rgba(255,255,255,0.84);
}

.premium-location-card {
    grid-template-columns: minmax(0, 1.1fr) 320px;
}

.premium-location-address {
    font-weight: 700;
    color: var(--primary-color);
}

.premium-reference-list {
    display: grid;
    gap: 14px;
}

.premium-reference-item {
    background: #fff;
    border: 1px solid #DFE6F4;
    border-radius: 18px;
    padding: 16px 18px;
}

.premium-reference-item strong,
.premium-reference-item span {
    display: block;
}

.premium-reference-item strong {
    color: #D8315B;
    font-size: 1.25rem;
    margin-bottom: 4px;
}

.premium-reference-item span {
    color: #4A5568;
}

.premium-program-card {
    padding: 28px 32px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: center;
}

.premium-final-cta-card {
    padding: 34px;
    text-align: center;
    background:
        radial-gradient(circle at top left, rgba(62,146,204,0.10), transparent 28%),
        linear-gradient(180deg, #FFFFFF 0%, #F8FAFE 100%);
}

.premium-footer {
    margin-top: 50px;
    padding: 26px 20px 40px;
    background: #081C4C;
}

.premium-footer-inner {
    max-width: 1180px;
    margin: 0 auto;
    text-align: center;
    color: rgba(255,255,255,0.72);
}

.premium-footer a {
    color: #fff;
    text-decoration: underline;
}

.checkout-premium-hero {
    background: linear-gradient(135deg, #0A2463 0%, #12307B 100%);
    color: #fff;
    padding: 34px 0 32px;
    box-shadow: 0 14px 28px rgba(10,36,99,0.12);
}

.checkout-premium-hero-inner {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    align-items: flex-start;
}

.checkout-premium-heading h1 {
    color: #fff;
    font-size: clamp(2rem, 3vw, 3.1rem);
    margin-bottom: 12px;
}

.checkout-premium-heading p {
    color: rgba(255,255,255,0.84);
    max-width: 760px;
}

.checkout-premium-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 18px;
}

.checkout-premium-meta span {
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.14);
}

.checkout-premium-wrap {
    padding-top: 30px;
}

.checkout-premium-steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 26px;
}

.checkout-step-card {
    padding: 18px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.checkout-step-card strong {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(10,36,99,0.08);
    color: var(--primary-color);
}

.checkout-step-card span { font-weight: 600; color: #33415C; }
.checkout-step-card.active { border-color: rgba(216,49,91,0.20); background: rgba(216,49,91,0.03); }

.checkout-premium-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) 390px;
    gap: 24px;
    align-items: start;
}

.checkout-form-premium-card,
.checkout-side-card {
    padding: 28px;
}

.checkout-card-header {
    margin-bottom: 22px;
}

.premium-form-grid {
    display: grid;
    gap: 18px;
}

.premium-form-grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.checkout-value-panel {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    background: linear-gradient(135deg, #F6F8FE 0%, #EEF3FB 100%);
    border: 1px solid #DDE5F4;
    border-radius: 20px;
    padding: 20px;
    margin: 22px 0 18px;
}

.checkout-value-panel span,
.checkout-value-panel small,
.checkout-value-panel strong {
    display: block;
}

.checkout-value-panel span { color: #566075; }
.checkout-value-panel strong { color: var(--primary-color); font-size: 2rem; margin: 4px 0; }
.checkout-value-badge {
    padding: 9px 16px;
    border-radius: 999px;
    background: linear-gradient(135deg, #D8315B 0%, #F04F6F 100%);
    color: #fff;
    font-weight: 700;
}

.checkout-notice-premium {
    margin-bottom: 20px;
    padding: 18px 20px;
    border-radius: 18px;
    background: rgba(248,138,46,0.10);
    border: 1px solid rgba(248,138,46,0.20);
}

.checkout-notice-premium strong { display: block; color: #A14D09; margin-bottom: 8px; }
.checkout-notice-premium p { margin: 0; color: #6E5A46; }
.checkout-submit-premium { border-radius: 999px; padding: 16px 24px; }

.checkout-side-event-card h3,
.checkout-side-pix-card h3,
.checkout-side-trust-card h3 {
    font-size: 1.45rem;
    margin-bottom: 8px;
}

.checkout-side-theme {
    margin-bottom: 14px;
    font-weight: 600;
}

.checkout-side-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 10px;
}

.checkout-side-list li {
    color: #44506B;
    line-height: 1.55;
}

.checkout-side-list.compact li {
    position: relative;
    padding-left: 18px;
}

.checkout-side-list.compact li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #D8315B;
    font-weight: 900;
}

.checkout-text-link {
    display: inline-block;
    margin-top: 14px;
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 700;
}

.checkout-text-link:hover { text-decoration: underline; }

.premium-pix-key-box {
    margin-top: 14px;
}

.premium-qr-placeholder {
    margin-top: 18px;
    min-height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 20px;
    background: linear-gradient(135deg, #F7F9FD 0%, #EFF3FA 100%);
    border: 1px dashed #C4D0E8;
    color: #64748B;
    padding: 20px;
}

@media (max-width: 1100px) {
    .premium-hero-grid,
    .checkout-premium-grid,
    .premium-pricing-grid,
    .premium-overview-grid,
    .premium-coordinator-card,
    .premium-location-card {
        grid-template-columns: 1fr;
    }

    .premium-highlight-grid,
    .checkout-premium-steps {
        grid-template-columns: 1fr;
    }

    .premium-floating-info-top,
    .premium-floating-info-bottom {
        position: static;
        max-width: none;
        margin-top: 14px;
    }

    .premium-hero-visual { min-height: auto; }
}

@media (max-width: 768px) {
    .premium-nav-wrap,
    .checkout-premium-hero-inner,
    .premium-program-card,
    .premium-info-banner {
        flex-direction: column;
        align-items: flex-start;
    }

    .premium-form-grid-2,
    .premium-overview-grid,
    .premium-pricing-grid,
    .location-grid,
    .location-mini-grid {
        grid-template-columns: 1fr;
    }

    .premium-hero {
        padding-bottom: 44px;
    }

    .premium-nav-actions,
    .premium-hero-cta,
    .premium-final-cta-actions,
    .premium-location-actions {
        width: 100%;
    }

    .btn-premium-solid,
    .btn-premium-outline,
    .btn-cta,
    .btn-secondary-location {
        width: 100%;
    }

    .premium-highlight-grid {
        grid-template-columns: 1fr;
    }

    .premium-overview-card,
    .premium-price-card,
    .premium-final-cta-card,
    .checkout-form-premium-card,
    .checkout-side-card,
    .premium-program-card,
    .premium-coordinator-card,
    .premium-location-card {
        padding: 22px;
    }

    .premium-logo-main,
    .premium-logo-badge { height: 52px; }

    .premium-hero-copy h1,
    .checkout-premium-heading h1 {
        font-size: 2rem;
    }

    .checkout-value-panel {
        flex-direction: column;
        align-items: flex-start;
    }
}


/* PREMIUM STYLE RETROFIT FOR PREVIOUS INDEX STRUCTURE */
/* Mantém a estrutura anterior do index.php, mas com acabamento visual premium. */
body:not(.premium-page-body):not(.location-page-body) {
    background: linear-gradient(180deg, #F4F7FC 0%, #EEF3FB 38%, #F8FAFE 100%);
}

body:not(.premium-page-body):not(.location-page-body) .hero-banner {
    padding: 36px 20px 52px;
    background:
        radial-gradient(circle at top right, rgba(216,49,91,0.18), transparent 30%),
        radial-gradient(circle at left center, rgba(62,146,204,0.22), transparent 34%),
        linear-gradient(135deg, #071B4D 0%, #0A2463 52%, #132E7A 100%);
}

body:not(.premium-page-body):not(.location-page-body) .hero-banner-wrap {
    max-width: 1140px;
}

body:not(.premium-page-body):not(.location-page-body) .hero-event-image,
body:not(.premium-page-body):not(.location-page-body) .checkout-banner {
    border-radius: 28px;
    border: 1px solid rgba(255,255,255,0.16);
    box-shadow: 0 24px 60px rgba(0,0,0,0.30);
}

body:not(.premium-page-body):not(.location-page-body) .hero-actions {
    margin-top: 28px;
}

body:not(.premium-page-body):not(.location-page-body) .btn-cta,
body:not(.premium-page-body):not(.location-page-body) .btn-submit {
    border-radius: 999px;
    background: linear-gradient(135deg, #D8315B 0%, #F04F6F 100%);
    box-shadow: 0 16px 30px rgba(216,49,91,0.24);
}

body:not(.premium-page-body):not(.location-page-body) .btn-cta:hover,
body:not(.premium-page-body):not(.location-page-body) .btn-submit:hover {
    background: linear-gradient(135deg, #C7244E 0%, #E44765 100%);
    box-shadow: 0 18px 34px rgba(216,49,91,0.34);
}

body:not(.premium-page-body):not(.location-page-body) .btn-secondary-event {
    border-color: rgba(255,255,255,0.42);
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(8px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.12);
}

body:not(.premium-page-body):not(.location-page-body) .section-container {
    max-width: 1140px;
}

body:not(.premium-page-body):not(.location-page-body) .event-summary-card,
body:not(.premium-page-body):not(.location-page-body) .pricing-section,
body:not(.premium-page-body):not(.location-page-body) .what-section,
body:not(.premium-page-body):not(.location-page-body) .final-cta,
body:not(.premium-page-body):not(.location-page-body) .speaker-card-soft {
    border-radius: 24px;
    border: 1px solid #DFE6F4;
    box-shadow: 0 18px 38px rgba(14, 37, 91, 0.08);
    background: linear-gradient(180deg, #FFFFFF 0%, #F8FAFE 100%);
}

body:not(.premium-page-body):not(.location-page-body) .event-summary-card {
    position: relative;
    overflow: hidden;
}

body:not(.premium-page-body):not(.location-page-body) .event-summary-card::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(62,146,204,0.18), transparent 68%);
}

body:not(.premium-page-body):not(.location-page-body) .event-summary-card > * {
    position: relative;
    z-index: 1;
}

body:not(.premium-page-body):not(.location-page-body) .section-kicker {
    color: #D8315B;
    letter-spacing: .10em;
}

body:not(.premium-page-body):not(.location-page-body) .event-summary-card h1 {
    font-size: clamp(2rem, 3.2vw, 3rem);
    line-height: 1.1;
    margin-top: 8px;
}

body:not(.premium-page-body):not(.location-page-body) .event-theme {
    font-size: 1.22rem;
    color: #44506B;
}

body:not(.premium-page-body):not(.location-page-body) .event-summary-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

body:not(.premium-page-body):not(.location-page-body) .event-summary-grid div {
    background: #FFFFFF;
    border: 1px solid #E1E8F6;
    border-radius: 18px;
    padding: 18px 20px;
    box-shadow: 0 10px 22px rgba(14, 37, 91, 0.05);
}

body:not(.premium-page-body):not(.location-page-body) .event-summary-grid strong {
    color: var(--primary-color);
}

body:not(.premium-page-body):not(.location-page-body) .btn-location-mini {
    background: linear-gradient(135deg, #0A2463 0%, #14377C 100%);
    box-shadow: 0 10px 20px rgba(10,36,99,0.16);
}

body:not(.premium-page-body):not(.location-page-body) .price-grid {
    gap: 24px;
}

body:not(.premium-page-body):not(.location-page-body) .price-card {
    border-radius: 22px;
    border: 1px solid #DFE6F4;
    box-shadow: 0 14px 30px rgba(14,37,91,0.07);
    padding: 26px;
}

body:not(.premium-page-body):not(.location-page-body) .price-card-highlight {
    border-color: rgba(216,49,91,0.26);
    background: linear-gradient(180deg, rgba(216,49,91,0.04) 0%, #FFFFFF 100%);
}

body:not(.premium-page-body):not(.location-page-body) .price-card h3,
body:not(.premium-page-body):not(.location-page-body) .info-card h3 {
    font-size: 1.25rem;
}

body:not(.premium-page-body):not(.location-page-body) .price-card p,
body:not(.premium-page-body):not(.location-page-body) .info-card p,
body:not(.premium-page-body):not(.location-page-body) .pricing-note p,
body:not(.premium-page-body):not(.location-page-body) .final-cta p {
    color: #566075;
}

body:not(.premium-page-body):not(.location-page-body) .price-row {
    padding: 14px 0;
}

body:not(.premium-page-body):not(.location-page-body) .info-card {
    border: 1px solid #DFE6F4;
    border-radius: 22px;
    box-shadow: 0 14px 30px rgba(14,37,91,0.07);
    background: #FFFFFF;
}

body:not(.premium-page-body):not(.location-page-body) .speakers-main-title {
    font-size: clamp(2rem, 3vw, 2.7rem);
    letter-spacing: -0.02em;
}

body:not(.premium-page-body):not(.location-page-body) .speaker-card-soft {
    background: linear-gradient(180deg, #FFFFFF 0%, #F8FAFE 100%);
}

body:not(.premium-page-body):not(.location-page-body) .speaker-avatar {
    width: 170px;
    height: 170px;
    border-radius: 28px;
    border: 5px solid #FFFFFF;
    box-shadow: 0 18px 34px rgba(9, 26, 73, 0.18) !important;
}

body:not(.premium-page-body):not(.location-page-body) .speaker-name-soft {
    font-size: 1.7rem;
    letter-spacing: -0.01em;
}

body:not(.premium-page-body):not(.location-page-body) .role-text-highlight {
    background: rgba(248, 138, 46, 0.14);
    color: #A14D09;
}

body:not(.premium-page-body):not(.location-page-body) .speaker-badge {
    background: #FFFFFF;
    border: 1px solid #D7E0F0;
    box-shadow: 0 8px 18px rgba(0,0,0,0.04);
}

body:not(.premium-page-body):not(.location-page-body) .final-cta {
    text-align: center;
    background:
        radial-gradient(circle at top left, rgba(62,146,204,0.10), transparent 30%),
        linear-gradient(180deg, #FFFFFF 0%, #F8FAFE 100%);
}

body:not(.premium-page-body):not(.location-page-body) footer {
    background: #081C4C;
}

@media (max-width: 768px) {
    body:not(.premium-page-body):not(.location-page-body) .hero-banner {
        padding: 20px 10px 36px;
    }

    body:not(.premium-page-body):not(.location-page-body) .hero-event-image {
        border-radius: 18px;
    }

    body:not(.premium-page-body):not(.location-page-body) .event-summary-card,
    body:not(.premium-page-body):not(.location-page-body) .pricing-section,
    body:not(.premium-page-body):not(.location-page-body) .what-section,
    body:not(.premium-page-body):not(.location-page-body) .final-cta {
        padding: 24px;
    }
}


/* COORDINATOR CARD REFINEMENT */
body:not(.premium-page-body):not(.location-page-body) .coordinator-card-soft {
    border: 1px solid #DFE7F4;
    border-radius: 26px !important;
    overflow: hidden;
    background: transparent;
    box-shadow: 0 18px 38px rgba(8, 28, 76, 0.10) !important;
}

body:not(.premium-page-body):not(.location-page-body) .coordinator-card-body {
    position: relative;
    overflow: hidden;
    padding: 32px !important;
    background:
        radial-gradient(circle at top right, rgba(62,146,204,0.12), transparent 34%),
        linear-gradient(135deg, #FFFFFF 0%, #F7F9FE 100%);
    border-radius: 24px;
}

body:not(.premium-page-body):not(.location-page-body) .coordinator-card-body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #F88A2E 0%, #D8315B 48%, #0A2463 100%);
}

body:not(.premium-page-body):not(.location-page-body) .coordinator-card-body .row {
    position: relative;
    z-index: 1;
}

body:not(.premium-page-body):not(.location-page-body) .coordinator-card-body .speaker-avatar {
    width: 165px;
    height: 165px;
    object-fit: cover;
    border-radius: 0 50% 50% 50%;
    border: 5px solid #FFFFFF;
    box-shadow: 0 18px 34px rgba(9, 26, 73, 0.20) !important;
}

body:not(.premium-page-body):not(.location-page-body) .coordinator-card-body .speaker-name-soft {
    font-size: clamp(1.55rem, 2.2vw, 2rem);
    line-height: 1.15;
    margin-bottom: 12px;
}

body:not(.premium-page-body):not(.location-page-body) .coordinator-card-body .role-text-highlight {
    display: inline-flex;
    align-items: center;
    background: rgba(248, 138, 46, 0.14);
    color: #A14D09;
    border: 1px solid rgba(248, 138, 46, 0.22);
    padding: 8px 15px;
    border-radius: 999px;
    font-size: 0.92rem;
    letter-spacing: 0.01em;
    margin-bottom: 13px;
}

.coordinator-summary-text {
    color: #2D3748;
    font-size: 1.03rem;
    line-height: 1.75;
    max-width: 700px;
}

body:not(.premium-page-body):not(.location-page-body) .speaker-avatar {
    border-radius: 0 50% 50% 50%;
}

@media (max-width: 768px) {
    body:not(.premium-page-body):not(.location-page-body) .coordinator-card-body {
        padding: 26px !important;
    }

    body:not(.premium-page-body):not(.location-page-body) .coordinator-card-body .speaker-avatar {
        width: 150px;
        height: 150px;
        margin-bottom: 4px;
    }

    .coordinator-summary-text {
        font-size: 0.98rem;
    }
}


/* AJUSTES FINOS COORDENADOR LOCAL CHECKOUT */
body:not(.premium-page-body):not(.location-page-body) .btn-location-mini {
    padding: 7px 12px;
    font-size: 0.78rem;
    line-height: 1.05;
    margin-top: 10px;
    box-shadow: 0 7px 14px rgba(10,36,99,0.12);
}

body:not(.premium-page-body):not(.location-page-body) .btn-location-mini:hover {
    transform: translateY(-1px);
}

body:not(.premium-page-body):not(.location-page-body) .speaker-avatar-frame {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    border-radius: 0 50% 50% 50%;
    background: linear-gradient(135deg, #FFF7EC 0%, #EEF4FF 100%);
    border: 1px solid rgba(255,255,255,0.9);
    box-shadow: 0 18px 34px rgba(9, 26, 73, 0.13);
}

body:not(.premium-page-body):not(.location-page-body) .coordinator-card-body .speaker-avatar-frame .speaker-avatar {
    width: 165px;
    height: 165px;
    object-fit: cover;
    border-radius: 0 50% 50% 50%;
    border: 4px solid #FFFFFF;
    box-shadow: none !important;
    background: #FFFFFF;
}

.premium-pix-key-box strong,
.checkout-side-pix-card .pix-key-box strong {
    font-size: clamp(0.74rem, 1.15vw, 0.88rem);
    line-height: 1.25;
    white-space: nowrap;
    letter-spacing: -0.02em;
}

@media (max-width: 420px) {
    .premium-pix-key-box strong,
    .checkout-side-pix-card .pix-key-box strong {
        font-size: 0.72rem;
        white-space: normal;
        overflow-wrap: anywhere;
    }

    body:not(.premium-page-body):not(.location-page-body) .coordinator-card-body .speaker-avatar-frame .speaker-avatar {
        width: 140px;
        height: 140px;
    }
}

/* Destaques do tema central, homenageado e palestrante */
.event-theme {
    display: grid;
    gap: 14px;
    color: #3A4665;
    font-size: 1.2rem;
    margin-top: 10px;
}

.event-theme-line strong,
.event-theme-line span {
    display: block;
}

.event-theme-line strong {
    color: var(--primary-color);
    font-weight: 800;
    margin-bottom: 4px;
}

.event-theme-line span {
    color: #44506B;
    font-weight: 700;
}

.event-featured-people {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 2px;
}

.event-featured-person {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 260px;
    background: #FFFFFF;
    border: 1px solid #DFE6F4;
    border-radius: 18px;
    padding: 10px 14px;
    box-shadow: 0 10px 22px rgba(14, 37, 91, 0.05);
}

.event-featured-avatar {
    width: 64px;
    height: 64px;
    object-fit: cover;
    border-radius: 0 50% 50% 50%;
    border: 3px solid #F88A2E;
    background: #FFFFFF;
    flex-shrink: 0;
}

.event-featured-person strong,
.event-featured-person span {
    display: block;
}

.event-featured-person strong {
    color: #A14D09;
    font-size: 0.9rem;
    line-height: 1.2;
    margin-bottom: 3px;
}

.event-featured-person span {
    color: var(--primary-color);
    font-weight: 800;
    line-height: 1.25;
}

@media (max-width: 576px) {
    .event-featured-people {
        flex-direction: column;
    }

    .event-featured-person {
        width: 100%;
        min-width: 0;
    }

    .event-featured-avatar {
        width: 58px;
        height: 58px;
    }
}

/* Responsável pelo simpósio no resumo do evento */
.event-summary-responsible {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 14px;
    margin-top: 18px;
    padding: 16px 20px;
    background: #FFF7EC;
    border: 1px solid rgba(248, 138, 46, 0.35);
    border-radius: 18px;
}

.event-summary-responsible strong,
.event-summary-responsible span {
    display: block;
}

.event-summary-responsible strong {
    color: #A14D09;
    font-weight: 800;
}

.event-summary-responsible span {
    color: var(--primary-color);
    font-weight: 800;
}

@media (max-width: 576px) {
    .event-summary-responsible {
        display: block;
    }

    .event-summary-responsible span {
        margin-top: 4px;
    }
}

/* AJUSTE FINAL DO BANNER PRINCIPAL - SINPAC 2026
   Mantém o site original e altera somente o tamanho/acabamento da imagem do banner. */
body:not(.premium-page-body):not(.location-page-body) .hero-banner-wrap {
    width: 96vw;
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
    line-height: 0;
}

body:not(.premium-page-body):not(.location-page-body) .hero-event-image {
    display: block;
    width: 100%;
    height: auto;
    max-height: none;
    object-fit: contain;
    border: 0 !important;
    border-radius: 14px !important;
    box-shadow: none !important;
}

@media (max-width: 768px) {
    body:not(.premium-page-body):not(.location-page-body) .hero-banner-wrap {
        width: 100%;
        max-width: 100%;
    }

    body:not(.premium-page-body):not(.location-page-body) .hero-event-image {
        width: 100%;
        height: auto;
        max-height: none;
        object-fit: contain;
        border: 0 !important;
        border-radius: 10px !important;
        box-shadow: none !important;
    }
}
/* FIM DO AJUSTE FINAL DO BANNER PRINCIPAL */


.pricing-section .section-kicker {
    display: inline-block;
    font-size: 1.15rem;
    letter-spacing: .08em;
    margin-bottom: 8px;
    color: #D8315B;
}


.event-summary-responsible {
    justify-content: space-between;
    align-items: flex-start;
}

.event-summary-responsible-main,
.event-summary-contact {
    display: grid;
    gap: 4px;
}

.event-summary-contact a {
    color: var(--primary-color);
    font-weight: 800;
    text-decoration: none;
}

.event-summary-contact a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .event-summary-responsible {
        display: grid;
        gap: 14px;
    }
}

