/* Reset e configurações base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Animações globais */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

:root {
    --primary-color: #1e5fa8; /* Azul principal do logo Pasqualino */
    --primary-light: #2d7bc6;
    --accent-color: #e91e63; /* Rosa/magenta do logo Pasqualino */
    --accent-hover: #d81159;
    --success-color: #1e5fa8;
    --success-hover: #155a9c;
    --text-primary: #111827;
    --text-secondary: #6b7280;
    --text-light: #9ca3af;
    --bg-primary: #ffffff;
    --bg-secondary: #f9fafb;
    --bg-tertiary: #f3f4f6;
    --bg-dark: #1f2937;
    --border-color: #e5e7eb;
    --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --radius-sm: 6px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-2xl: 20px;
}

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.7;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    font-size: 16px;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    letter-spacing: -0.01em;
    font-feature-settings: 'kern' 1, 'liga' 1, 'calt' 1;
    text-rendering: optimizeLegibility;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
}

/* Logo no header - apenas imagem */
.logo-img-only {
    height: 60px;
    width: auto;
    object-fit: contain;
    transition: all 0.3s ease;
}

.logo-img-only:hover {
    transform: scale(1.05);
}

/* Header */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.2s ease;
}

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

.logo {
    display: flex;
    align-items: center;
}

.nav-actions {
    display: flex;
    gap: 1rem;
}

/* Botões */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    border: none;
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    letter-spacing: 0.01em;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-hover) 100%);
    color: white;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--accent-hover) 0%, var(--accent-color) 100%);
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-md);
}

.btn-submit {
    background: var(--success-color);
    color: white;
    width: 100%;
    justify-content: center;
    margin-top: 1.5rem;
    font-size: 1rem;
    padding: 1rem 2rem;
}

.btn-submit:hover {
    background: var(--success-hover);
    transform: translateY(-1px);
    box-shadow: var(--shadow-lg);
}

/* Hero Section - Layout Minimalista */
.hero {
    background: linear-gradient(135deg, rgba(238, 240, 248, 0.8) 0%, rgba(238, 240, 248, 0.9) 100%), 
                url('images/conexoes.png') center/cover no-repeat;
    color: var(--text-primary);
    position: relative;
    overflow: hidden;
    padding: 120px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    width: 100%;
}



.hero .container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    text-align: left;
    position: relative;
    z-index: 1;
    max-width: 1200px;
    padding: 0 40px;
    width: 100%;
    min-height: 100vh;
    margin: 0 auto;
    gap: 2rem;
}



@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Logo Section - Estilo Talents */
.hero-logo {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.logo-placeholder {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
}

.logo-text {
    font-size: 2.5rem;
    font-weight: 700;
    color: #8b5cf6;
    line-height: 1.2;
    margin: 0;
}

.logo-subtitle {
    display: block;
    font-size: 0.75rem;
    font-weight: 500;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 0.25rem;
}

/* Tagline */
.hero-tagline {
    background: rgba(233, 30, 99, 0.1);
    color: #e91e63;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 3rem;
    border: 1px solid rgba(233, 30, 99, 0.2);
}

/* Main Title - Logo Pasqualino Conecta */
.hero-main-title {
    margin-bottom: 2rem;
}

.hero-logo {
    height: 120px;
    width: auto;
    object-fit: contain;
    transition: all 0.3s ease;
}

.hero-logo:hover {
    transform: scale(1.05);
}

/* Subtitle */
.hero-subtitle {
    margin-bottom: 2rem;
}

.hero-subtitle p {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e5fa8;
    line-height: 1.4;
    margin: 0;
    max-width: 800px;
    text-align: left;
    letter-spacing: -0.01em;
}

.hero-description {
    margin-bottom: 3rem;
}

.hero-description p {
    font-size: 1.125rem;
    color: #4a5568;
    line-height: 1.6;
    font-weight: 400;
    max-width: 600px;
    margin: 0 0 3rem 0;
    text-align: left;
}

/* Actions - Estilo Minimalista */
.hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-hover) 100%);
    color: white;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--accent-hover) 0%, var(--accent-color) 100%);
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background: var(--bg-secondary);
    border-color: var(--primary-color);
}

.btn-outline {
    background: transparent;
    color: #6b7280;
    border: 1px solid #e5e7eb;
}

.btn-outline:hover {
    background: #f9fafb;
    border-color: #d1d5db;
}

/* Hero Card Único */
.hero-unified-card {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-2xl);
    padding: 4rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: var(--shadow-2xl);
    max-width: 1000px;
    width: 100%;
    position: relative;
    z-index: 2;
    display: flex;
    overflow: hidden;
    animation: fadeInUp 0.8s ease-out;
}

.hero-unified-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(233, 30, 99, 0.3), transparent);
}

.hero-unified-card {
    flex-direction: column;
    gap: 2rem;
    margin: 0 auto;
}

.hero-content-row {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: flex-start;
    width: 100%;
}

.hero-text-section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: flex-start;
    text-align: left;
}

.hero-experts-section {
    background: rgba(255, 255, 255, 0.6);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    height: fit-content;
}

.experts-header {
    text-align: center;
    margin-bottom: 2rem;
}

.experts-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.experts-header p {
    font-size: 1rem;
    color: var(--text-secondary);
    margin: 0;
}

.experts-container {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    justify-content: center;
}

.expert-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
}

.expert-image {
    width: 140px;
    height: 140px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.expert-image:hover {
    transform: translateY(-5px) scale(1.05);
}

.expert-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
}

.expert-image:hover img {
    transform: scale(1.1);
    box-shadow: var(--shadow-xl);
}

.expert-info h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.expert-info p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.4;
}

/* Background Image Optional - Adicione a classe 'with-background' para ativar */
.professional-image.with-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('images/background-professional.jpg'); /* Substitua pelo caminho da sua imagem */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 20px;
    z-index: -1;
    opacity: 0.3;
    filter: blur(2px);
}

.main-expert img {
    width: 420px;
    height: auto;
    max-height: 500px;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
    transition: all 0.3s ease;
}

.secondary-expert img {
    width: 400px;
    height: auto;
    max-height: 480px;
    object-fit: contain;
    filter: drop-shadow(-5px 10px 25px rgba(0, 0, 0, 0.12));
    transition: all 0.3s ease;
}

.professional-image img:hover {
    transform: translateY(-5px) scale(1.02);
    filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.2));
}

.main-expert .image-caption {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(15px);
    border-radius: 12px;
    padding: 1rem 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(30, 95, 168, 0.15);
    max-width: 260px;
    z-index: 5;
    transform: translateX(10px);
}

/* Removido caption do secondary expert */

.image-caption h4 {
    color: #1e5fa8;
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 0.25rem 0;
    line-height: 1.3;
}

.image-caption p {
    color: #6b7280;
    font-size: 0.8rem;
    line-height: 1.4;
    margin: 0;
}

/* Tags - Estilo Minimalista */
.hero-tags {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
}

.tag {
    background: var(--bg-secondary);
    color: var(--text-secondary);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    font-weight: 500;
    border: 1px solid var(--border-color);
    transition: all 0.2s ease;
}

.tag:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

/* Scroll Indicator */
.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    color: #9ca3af;
    font-size: 0.875rem;
    font-weight: 500;
    margin-top: 2rem;
    animation: bounce 2s infinite;
}

.scroll-indicator i {
    font-size: 1rem;
    margin-left: 0.5rem;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-5px);
    }
    60% {
        transform: translateY(-3px);
    }
}

/* Layout centralizado */

.card-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
}

.card-header h3 {
    color: #1f2937;
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0;
}

.card-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.change-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #f8f9ff;
    border-radius: 12px;
    border: 1px solid rgba(139, 92, 246, 0.1);
}

.change-label {
    background: #8b5cf6;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.875rem;
    min-width: 60px;
    text-align: center;
}

.change-desc {
    color: #6b7280;
    font-size: 0.875rem;
    font-weight: 500;
}



/* Event Info */
.event-info {
    display: flex;
    justify-content: flex-start;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #6b7280;
    font-size: 0.875rem;
    font-weight: 500;
    background: rgba(139, 92, 246, 0.05);
    padding: 0.75rem 1rem;
    border-radius: 50px;
    border: 1px solid rgba(139, 92, 246, 0.1);
}

.info-item i {
    color: #8b5cf6;
    font-size: 0.875rem;
}

/* Informações do Evento - Layout Minimalista */
.event-info-minimal {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 2.5rem 0;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.info-item-minimal {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.info-item-minimal:hover {
    color: white;
    transform: translateY(-2px);
}

.info-item-minimal i {
    color: var(--accent-color);
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.info-item-minimal:hover i {
    color: #fbbf24;
    transform: scale(1.1);
}

/* Estatísticas removidas - layout simplificado */

.hero-image {
    position: relative;
    z-index: 2;
}

.image-container {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    margin-bottom: 2rem;
}

.hero-event-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.image-container:hover .image-overlay {
    opacity: 1;
}

.image-container:hover .hero-event-image {
    transform: scale(1.05);
}

.overlay-content {
    text-align: center;
    color: white;
}

.overlay-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.overlay-content span {
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}



/* Seções */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.section-subtitle {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text-secondary);
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 400;
}

/* Benefícios */
.benefits {
    background: var(--bg-secondary);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-card {
    background: var(--bg-primary);
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-color);
    position: relative;
    box-shadow: var(--shadow-md);
    overflow: hidden;
    animation: fadeInUp 0.6s ease-out;
}

.benefit-card:nth-child(1) { animation-delay: 0.1s; }
.benefit-card:nth-child(2) { animation-delay: 0.2s; }
.benefit-card:nth-child(3) { animation-delay: 0.3s; }
.benefit-card:nth-child(4) { animation-delay: 0.4s; }
.benefit-card:nth-child(5) { animation-delay: 0.5s; }

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color), var(--primary-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.benefit-card:hover::before {
    transform: scaleX(1);
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent-color);
}

.benefit-icon {
    width: 48px;
    height: 48px;
    background: var(--accent-color);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem auto;
    transition: all 0.2s ease;
}

.benefit-card:hover .benefit-icon {
    background: var(--accent-hover);
    transform: scale(1.05);
}

.benefit-icon i {
    color: white;
    font-size: 1.125rem;
    transition: all 0.2s ease;
}

.benefit-card h3 {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.benefit-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.95rem;
    margin: 0;
}

/* Cronograma do Evento */
.program-schedule {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.schedule-item {
    display: flex;
    align-items: center;
    background: var(--bg-primary);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease-out;
}

.schedule-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.schedule-time {
    background: var(--accent-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.9rem;
    min-width: 80px;
    text-align: center;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.schedule-content {
    flex: 1;
}

.schedule-content h3 {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.schedule-content p {
    color: var(--text-secondary);
    line-height: 1.5;
    font-size: 0.9rem;
    margin: 0;
}

/* Responsividade para o cronograma */
@media (max-width: 768px) {
    .schedule-item {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
    }
    
    .schedule-time {
        margin-right: 0;
        margin-bottom: 1rem;
        min-width: auto;
    }
    
    .schedule-content h3 {
        font-size: 1rem;
    }
    
    .schedule-content p {
        font-size: 0.85rem;
    }
}

/* Sistema de Turmas - Layout Moderno e Minimalista */
.turmas-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    padding: 2rem 0;
    align-items: start;
}

/* Seção de Turma */
.turma-section {
    background: var(--bg-primary);
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.turma-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), var(--accent-hover));
}

.turma-section:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
}

/* Header da Turma */
.turma-header {
    text-align: center;
    margin-bottom: 2.5rem;
    position: relative;
}

.turma-badge {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-hover));
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 16px;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.3);
}

.turma-number {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
}

.turma-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

.turma-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.turma-time {
    font-size: 1.1rem;
    color: var(--accent-color);
    font-weight: 600;
}

/* Cronograma da Turma */
.turma-schedule {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.schedule-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.02);
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.schedule-item:hover {
    background: rgba(59, 130, 246, 0.05);
    border-color: rgba(59, 130, 246, 0.2);
    transform: translateX(8px);
}

.schedule-time {
    background: var(--accent-color);
    color: white;
    padding: 0.75rem 1rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.9rem;
    min-width: 80px;
    text-align: center;
    box-shadow: 0 2px 12px rgba(59, 130, 246, 0.3);
    flex-shrink: 0;
}

.schedule-content h4 {
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.schedule-content p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

/* Espaçamento entre as turmas lado a lado */
.turmas-container {
    position: relative;
}



.time-slot {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.time-label {
    font-size: 0.75rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.time-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
}

.time-divider {
    width: 2px;
    height: 20px;
    background: rgba(255, 255, 255, 0.3);
    margin: 0.75rem 0;
    border-radius: 1px;
}

/* Animações para as Turmas */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.turma-section {
    animation: fadeInUp 0.6s ease-out forwards;
}

.timeline-item .content:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-color);
}

.timeline-item .content h3 {
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.3;
}

.timeline-item .content p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

/* O Espaço - Galeria de Imagens */
.venue {
    background: var(--bg-primary);
    padding: 80px 0;
}

.venue-gallery {
    max-width: 1000px;
    margin: 0 auto 3rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    height: 250px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: var(--bg-secondary);
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 1.5rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .image-overlay {
    transform: translateY(0);
}

.overlay-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.overlay-content p {
    font-size: 0.9rem;
    opacity: 0.9;
    margin: 0;
}

.thumbnail.active {
    border: 2px solid var(--accent-color);
    box-shadow: 0 0 0 1px rgba(233, 30, 99, 0.3);
}

.thumbnail-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.thumbnail:hover .thumbnail-overlay {
    opacity: 1;
}

.thumbnail-overlay i {
    color: white;
    font-size: 1rem;
}

/* Features do Espaço */
.venue-features {
    margin-top: 3rem;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
    justify-items: center;
}

.feature-item {
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--bg-primary);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
    width: 100%;
    max-width: 280px;
}

.feature-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-hover));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    transition: transform 0.3s ease;
}

.feature-item:hover .feature-icon {
    transform: scale(1.05);
}

.feature-icon i {
    color: white;
    font-size: 1.25rem;
}

.feature-item h4 {
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.feature-item p {
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin: 0;
    line-height: 1.4;
}

/* Responsividade da Galeria */
@media (max-width: 768px) {
    .venue {
        padding: 60px 0;
    }
    
    .venue-gallery {
        max-width: 100%;
        margin: 0 auto 2rem;
    }
    
    .gallery-grid {
        gap: 1rem;
        max-width: 600px;
    }
    
    .gallery-item {
        height: 200px;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 400px;
    }
    
    .feature-item {
        padding: 1.5rem 1rem;
        max-width: 100%;
    }
    
    .feature-icon {
        width: 45px;
        height: 45px;
    }
    
    .feature-icon i {
        font-size: 1.1rem;
    }
    
    .feature-item h4 {
        font-size: 0.95rem;
    }
    
    .feature-item p {
        font-size: 0.8rem;
    }
    
    .image-overlay {
        padding: 1rem;
    }
    
    .overlay-content h3 {
        font-size: 1.1rem;
    }
    
    .overlay-content p {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .venue {
        padding: 40px 0;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
        max-width: 400px;
    }
    
    .gallery-item {
        height: 180px;
    }
    
    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    .feature-item {
        padding: 1rem 0.5rem;
    }
    
    .feature-icon {
        width: 40px;
        height: 40px;
    }
    
    .feature-icon i {
        font-size: 1rem;
    }
    
    .feature-item h4 {
        font-size: 0.9rem;
    }
    
    .feature-item p {
        font-size: 0.75rem;
    }
    
    .image-overlay {
        padding: 0.75rem;
    }
    
    .overlay-content h3 {
        font-size: 1rem;
    }
    
    .overlay-content p {
        font-size: 0.8rem;
    }
}

/* Palestrantes */
.speakers {
    background: var(--bg-secondary);
}

/* Patrocinadores */
.sponsors {
    padding: 80px 0;
    background: var(--bg-primary);
}

.sponsors-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.sponsor-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    padding: 1rem;
    border-radius: var(--radius-md);
}

.sponsor-logo:hover {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.1);
}

.sponsor-image {
    max-width: 200px;
    max-height: 120px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: all 0.3s ease;
}

.sponsor-logo:hover .sponsor-image {
    transform: scale(1.05);
}

/* Garantir que os 5 cards fiquem na mesma linha em telas grandes */
@media (min-width: 1200px) {
    .speakers-grid {
        gap: 1rem;
    }
    
    .speaker-card {
        width: calc(20% - 0.8rem);
    }
    
    .program-timeline {
        gap: 3rem;
    }
    
    .content-card {
        max-width: 300px;
    }
}

/* Animações para a programação */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.timeline-item {
    animation: fadeInUp 0.6s ease-out forwards;
}

.timeline-item:nth-child(1) { animation-delay: 0.1s; }
.timeline-item:nth-child(2) { animation-delay: 0.2s; }
.timeline-item:nth-child(3) { animation-delay: 0.3s; }
.timeline-item:nth-child(4) { animation-delay: 0.4s; }

.speakers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 0;
    width: 100%;
}

.speaker-card {
    background: var(--bg-primary);
    padding: 1.5rem;
    border-radius: var(--radius-xl);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.6s ease-out;
    width: 100%;
}

.speaker-card:nth-child(1) { animation-delay: 0.1s; }
.speaker-card:nth-child(2) { animation-delay: 0.2s; }
.speaker-card:nth-child(3) { animation-delay: 0.3s; }
.speaker-card:nth-child(4) { animation-delay: 0.4s; }
.speaker-card:nth-child(5) { animation-delay: 0.5s; }
.speaker-card:nth-child(6) { animation-delay: 0.6s; }

.speaker-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.speaker-card:hover::before {
    transform: scaleX(1);
}

.speaker-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent-color);
}

.speaker-avatar {
    width: 70px;
    height: 70px;
    background: var(--bg-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    border: 2px solid var(--border-color);
}

.speaker-avatar img.speaker-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 15%;
    border-radius: 50%;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    image-rendering: pixelated;
    image-rendering: -moz-crisp-edges;
    image-rendering: crisp-edges;
    image-rendering: optimizeQuality;
}

/* Ajuste específico para a foto da Suzane */
.speaker-card:nth-child(4) .speaker-avatar img.speaker-photo {
    object-position: center 10%;
}

.speaker-photo-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.5rem;
}

.speaker-avatar i {
    font-size: 2.5rem;
    color: white;
}

.speaker-card h3 {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
    font-weight: 600;
}

.speaker-card p {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    line-height: 1.4;
    font-size: 0.9rem;
}

.expertise {
    background: var(--bg-secondary);
    color: var(--text-secondary);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    border: 1px solid var(--border-color);
}

/* Formulário de Inscrição */
.registration {
    background: var(--bg-primary);
    color: var(--text-primary);
    position: relative;
    overflow: hidden;
}

.registration .section-header {
    position: relative;
    z-index: 1;
}

.registration .section-title,
.registration .section-subtitle {
    color: var(--text-primary);
}

.registration-form {
    max-width: 600px;
    margin: 0 auto;
    background: var(--bg-primary);
    padding: 3rem;
    border-radius: var(--radius-2xl);
    border: 1px solid var(--border-color);
    position: relative;
    z-index: 1;
    box-shadow: var(--shadow-2xl);
    overflow: hidden;
}

.registration-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), var(--primary-color));
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.875rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-lg);
    background: var(--bg-primary);
    color: var(--text-primary);
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    box-sizing: border-box;
    box-shadow: var(--shadow-sm);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    background: var(--bg-primary);
    color: var(--text-primary);
    box-shadow: 0 0 0 4px rgba(233, 30, 99, 0.1), var(--shadow-md);
    transform: translateY(-1px);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-light);
}

/* Estilo específico para textarea para igualar aos outros campos */
.form-group textarea {
    min-height: 85px;
    line-height: 1.5;
    vertical-align: top;
    resize: vertical;
    height: auto;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    background: rgba(255, 255, 255, 0.2) !important;
    border-radius: var(--radius-sm) !important;
}

/* Estado de foco específico para textarea */
.form-group textarea:focus {
    border: 1px solid var(--accent-color) !important;
    background: rgba(255, 255, 255, 0.9) !important;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1) !important;
}

/* Garantir bordas mais visíveis no textarea */
#maior_duvida {
    border: 2px solid rgba(255, 255, 255, 0.4) !important;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1) !important;
}

#maior_duvida:focus {
    border: 2px solid #3b82f6 !important;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1), inset 0 1px 3px rgba(0, 0, 0, 0.1) !important;
}

/* Estilos para campos bloqueados */
.form-group input[readonly] {
    background-color: rgba(248, 249, 250, 0.1) !important;
    cursor: not-allowed !important;
    opacity: 0.8;
    border-color: rgba(222, 226, 230, 0.3);
}

.form-group input[readonly]:focus {
    outline: none;
    border-color: rgba(222, 226, 230, 0.3);
    box-shadow: none;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.9);
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}


/* Footer */
.footer {
    background: var(--bg-dark);
    color: white;
    padding: 80px 0 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    font-weight: 600;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
}

.footer-section i {
    color: var(--accent-color);
    width: 16px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    overflow-y: auto;
    padding: 20px;
    box-sizing: border-box;
}

.modal-content {
    background-color: var(--bg-primary);
    margin: 5% auto;
    padding: 0;
    border-radius: var(--radius-2xl);
    width: 90%;
    max-width: 1000px;
    box-shadow: var(--shadow-2xl);
    animation: modalSlideIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--border-color);
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-hover) 100%);
    color: white;
    padding: 2rem 3rem;
    border-radius: var(--radius-2xl) var(--radius-2xl) 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.modal-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.modal-header h3 {
    margin: 0;
    font-size: 1.75rem;
    font-weight: 700;
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.close {
    color: white;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
    opacity: 0.8;
    transition: opacity 0.2s ease;
}

.close:hover {
    opacity: 1;
}

.modal-body {
    padding: 2rem;
    text-align: center;
}

.modal-body p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.6;
}

.modal-actions {
    margin-top: 2rem;
}

/* Animações e efeitos */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Header com scroll */
.header {
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-lg);
}

/* Botão voltar ao topo */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--accent-color);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--accent-hover);
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

/* Estados de erro do formulário */
.form-group input.error,
.form-group select.error {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.field-error {
    color: #ef4444;
    font-size: 0.875rem;
    margin-top: 0.5rem;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.3s ease;
}

/* Estados de loading */
.btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Hover effects melhorados */
.benefit-card:hover .benefit-icon,
.speaker-card:hover .speaker-avatar {
    transform: scale(1.1);
}

.benefit-icon,
.speaker-avatar {
    transition: transform 0.3s ease;
}

/* Responsividade */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    .logo-img-only {
        height: 50px;
    }
    
    .hero {
        padding: 100px 0 60px;
        min-height: auto;
    }
    
    .hero .container {
        padding: 0 1rem;
    }
    
    .hero-unified-card {
        padding: 2rem;
        gap: 1.5rem;
        border-radius: var(--radius-xl);
        margin: 0 1rem;
    }
    
    .hero-content-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .hero-experts-section {
        padding: 1rem;
        order: -1;
    }
    
    .experts-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .expert-item {
        flex-direction: row;
        text-align: left;
        gap: 1rem;
    }
    
    .expert-image {
        width: 100px;
        height: 100px;
        margin-bottom: 0;
    }
    
    .expert-info h4 {
        font-size: 0.9rem;
    }
    
    .expert-info p {
        font-size: 0.8rem;
    }
    
    .hero-logo {
        height: 80px;
    }
    
    .hero-subtitle p {
        font-size: 1.125rem;
        text-align: center;
        max-width: 100%;
        font-weight: 500;
    }
    
    .hero-description p {
        text-align: center;
        max-width: 100%;
        font-size: 0.95rem;
    }
    
    .hero-actions {
        justify-content: center;
        gap: 1rem;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-actions .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .hero-tags {
        justify-content: center;
        gap: 0.5rem;
    }
    
    .tag {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
    
    /* Seções */
    section {
        padding: 60px 0;
    }
    
    .section-header {
        margin-bottom: 2rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    /* Benefícios */
    .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
    
    .benefit-card {
        padding: 1.5rem;
        text-align: center;
    }
    
    .benefit-icon {
        margin: 0 auto 1rem auto;
    }
    
    /* Palestrantes */
    .speakers-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .speaker-card {
        max-width: 100%;
        margin: 0 auto;
        flex: none;
    }
    
    /* Patrocinadores */
    .sponsors-grid {
        flex-direction: column;
        gap: 2rem;
    }
    
    .sponsor-image {
        max-width: 150px;
        max-height: 90px;
    }
    
    
    /* Formulários */
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .registration-form {
        padding: 2rem;
        margin: 0 1rem;
        border-radius: var(--radius-xl);
    }
    
    /* Modais */
    .modal-content {
        width: 95%;
        margin: 5% auto;
    }
    
    .modal-header {
        padding: 1rem 1.5rem;
    }
    
    .modal-body {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero-title .title-main {
        font-size: 2.25rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .btn-large {
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .hero-event-image {
        border-radius: var(--radius-lg);
    }
    
    .hero {
        background: linear-gradient(135deg, rgba(238, 240, 248, 0.8) 0%, rgba(238, 240, 248, 0.9) 100%), 
                    url('images/conexoes.png') center/cover no-repeat;
    }
    
    .hero-unified-card {
        padding: 1.5rem;
        gap: 1rem;
    }
    
    .hero-content-row {
        gap: 1.5rem;
    }
    
    .hero-experts-section {
        padding: 1rem;
    }
    
    .experts-header h3 {
        font-size: 1.25rem;
    }
    
    .experts-header p {
        font-size: 0.9rem;
    }
    
    .expert-image {
        width: 60px;
        height: 60px;
    }
    
    .expert-info h4 {
        font-size: 0.8rem;
    }
    
    .expert-info p {
        font-size: 0.75rem;
    }
    
    .hero-actions {
        flex-direction: row;
        gap: 0.75rem;
        flex-wrap: nowrap;
    }
    
    .hero-actions .btn {
        flex: 1;
        min-width: 120px;
        font-size: 0.85rem;
        padding: 0.75rem 1rem;
    }
}

/* Para telas muito pequenas, empilhar os botões */
@media (max-width: 360px) {
    .hero-actions {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .hero-actions .btn {
        width: 100%;
        min-width: auto;
    }
    
    .benefit-card,
    .speaker-card {
        background: var(--bg-primary);
        padding: 2rem 1.5rem;
    }
}

/* Estilos para Programação "Em Breve" */
.program-coming-soon {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.coming-soon-content {
    background: var(--bg-primary);
    border-radius: var(--radius-xl);
    padding: 4rem 2rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
}

.coming-soon-content i {
    font-size: 4rem;
    color: var(--accent-color);
    margin-bottom: 2rem;
}

.coming-soon-content h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.coming-soon-content p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 2rem;
}

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

.detail-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--bg-secondary);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
}

.detail-item i {
    font-size: 1.25rem;
    color: var(--accent-color);
    margin-bottom: 0;
}

.detail-item span {
    font-weight: 600;
    color: var(--text-primary);
}

/* Responsividade para Programação "Em Breve" */
@media (max-width: 768px) {
    .coming-soon-content {
        padding: 2rem 1.5rem;
    }
    
    .coming-soon-content i {
        font-size: 3rem;
    }
    
    .coming-soon-content h3 {
        font-size: 1.5rem;
    }
    
    .event-details {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

/* Para telas muito pequenas - uma coluna */
@media (max-width: 480px) {
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .benefit-card {
        padding: 1.25rem;
    }
    
    .benefit-card h3 {
        font-size: 1.1rem;
    }
    
    .benefit-card p {
        font-size: 0.85rem;
    }
    
    .timeline-item .content {
        padding: 1.5rem;
    }
    
    .turmas-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .turma-section {
        padding: 1.5rem;
    }
    
    .turma-badge {
        padding: 0.75rem 1.25rem;
    }
    
    .turma-number {
        font-size: 1.5rem;
    }
    
    .turma-title {
        font-size: 1.5rem;
    }
    
    .schedule-item {
        padding: 1.25rem;
        gap: 1rem;
    }
    
    .schedule-time {
        min-width: 70px;
        padding: 0.5rem 0.75rem;
        font-size: 0.8rem;
    }
    
    .speakers-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .speaker-card {
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }
    
    .turmas-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .turmas-container::before {
        display: none;
    }
    
    .turma-section {
        padding: 1.25rem;
    }
    
    .turma-badge {
        padding: 0.5rem 1rem;
    }
    
    .turma-number {
        font-size: 1.25rem;
    }
    
    .turma-title {
        font-size: 1.25rem;
    }
}

/* ===== SISTEMA DE TICKET ===== */

/* Botão de Retirar Ingresso */
#btnRetirarIngresso {
    display: block;
    margin: 0 auto;
    background: var(--accent-color);
    border: none;
    color: white;
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: var(--shadow-lg);
}

#btnRetirarIngresso:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
    background: var(--accent-hover);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 0;
    border-radius: var(--radius-lg);
    width: 90%;
    max-width: 600px;
    box-shadow: var(--shadow-xl);
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header {
    background: linear-gradient(135deg, var(--accent-color), #1d4ed8);
    color: white;
    padding: 1.5rem 2rem;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    margin: 0;
    font-size: 1.3rem;
}

.close {
    color: white;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.close:hover {
    transform: scale(1.1);
}

/* Formulário do Ticket */
.ticket-form {
    padding: 3rem;
    background: var(--bg-primary);
}

.ticket-form .form-group {
    margin-bottom: 2rem;
}

.ticket-form .form-group label {
    display: block;
    margin-bottom: 0.75rem;
    font-weight: 700;
    color: var(--text-primary);
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1rem;
}

.ticket-form .form-group input,
.ticket-form .form-group textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-lg);
    font-size: 1rem;
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-sm);
}

.ticket-form .form-group input:focus,
.ticket-form .form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 4px rgba(233, 30, 99, 0.1), var(--shadow-md);
    transform: translateY(-1px);
}

.ticket-form .form-group input[readonly] {
    background-color: #f8f9fa;
    color: #6c757d;
    cursor: not-allowed;
    opacity: 0.8;
    border-color: #dee2e6;
}

.ticket-form .form-group input[readonly]:focus {
    outline: none;
    border-color: #dee2e6;
    box-shadow: none;
}

.ticket-form .form-group small {
    display: block;
    margin-top: 0.25rem;
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.ticket-form .field-help {
    color: #6c757d;
    font-style: italic;
    margin-top: 0.25rem;
    font-size: 0.8rem;
}

.ticket-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.ticket-form .btn-submit {
    width: 100%;
    margin-top: 2rem;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-hover) 100%);
    border: none;
    color: white;
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 700;
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    border-radius: var(--radius-xl);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.ticket-form .btn-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.ticket-form .btn-submit:hover::before {
    left: 100%;
}

.ticket-form .btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
    background: linear-gradient(135deg, var(--accent-hover) 0%, var(--accent-color) 100%);
}

.ticket-form .form-notice {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    border: 1px solid #f59e0b;
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    margin: 2rem 0;
    color: #92400e;
    font-size: 0.95rem;
    line-height: 1.6;
}

.ticket-form .form-notice i {
    color: #f59e0b;
    margin-right: 0.5rem;
}

.ticket-form .form-notice strong {
    font-weight: 700;
    color: #92400e;
}

/* Modal de Ticket Gerado */
.ticket-gerado .modal-content {
    max-width: 900px;
    max-height: calc(100vh - 40px);
    overflow-y: auto;
    margin: 20px auto;
}

.ticket-content {
    padding: 2.5rem;
}

.ticket-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--border-color);
}

.ticket-header h4 {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.evento-info, .data-info {
    margin: 0.25rem 0;
    color: var(--text-primary);
    font-weight: 500;
}

.ticket-details {
    background: var(--bg-secondary);
    padding: 1.5rem;
    border-radius: var(--radius-sm);
    margin-bottom: 2rem;
}

.ticket-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
}

.ticket-row:last-child {
    border-bottom: none;
}

.ticket-row strong {
    color: var(--text-primary);
    font-weight: 600;
}

.ticket-footer {
    text-align: center;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
}

.ticket-numero {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.ticket-status {
    margin: 0;
}

.status-confirmado {
    background: #28a745;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Estilos para o QR Code */
.qr-code-section {
    text-align: center;
    margin: 20px 0;
    padding: 20px;
    background: var(--bg-secondary);
    border-radius: var(--radius-sm);
    border: 2px dashed var(--border-color);
}

.qr-code-section h4 {
    color: var(--text-primary);
    margin-bottom: 10px;
    font-size: 1.2em;
}

.qr-code-section p {
    color: var(--text-secondary);
    margin-bottom: 15px;
    font-size: 0.9em;
}

.qr-code-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
    margin: 20px 0;
}

.qr-code-container img {
    max-width: 200px;
    height: auto;
    border: 3px solid var(--success-color);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-md);
}

.qr-loading {
    text-align: center;
}

.spinner {
    border: 4px solid var(--border-color);
    border-top: 4px solid var(--success-color);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    margin: 0 auto 15px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.qr-code-info {
    margin-top: 15px;
    padding: 10px;
    background: var(--bg-primary);
    border-radius: var(--radius-sm);
    font-size: 0.8em;
    border: 1px solid var(--border-color);
}

.hash-text {
    font-family: 'Courier New', monospace;
    background: var(--bg-secondary);
    padding: 5px 10px;
    border-radius: 3px;
    border: 1px solid var(--border-color);
    word-break: break-all;
    font-size: 0.7em;
    color: var(--text-secondary);
}

.modal-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    padding: 1.5rem 2rem;
    border-top: 1px solid var(--border-color);
}

.btn-secondary {
    background: #6c757d;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #5a6268;
}

.btn-primary {
    background: var(--accent-color);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #1d4ed8;
}

/* Responsividade dos Modais */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        margin: 5% auto;
        max-height: 95vh;
    }
    
    .modal-header {
        padding: 1.5rem 2rem;
    }
    
    .modal-header h3 {
        font-size: 1.5rem;
    }
    
    .ticket-form {
        padding: 2rem;
    }
    
    .ticket-form .form-row {
        grid-template-columns: 1fr;
    }
    
    .ticket-form .btn-submit {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .modal-actions {
        flex-direction: column;
    }
    
    .ticket-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }
}

/* ===== SEÇÃO DE AGRADECIMENTO ===== */
.agradecimento {
    background: linear-gradient(135deg, #d4edda, #c3e6cb);
    border: 1px solid #c3e6cb;
    border-radius: 10px;
    padding: 20px;
    margin: 20px 0;
    text-align: center;
}

.agradecimento h4 {
    color: #155724;
    margin: 0 0 15px 0;
    font-size: 1.3em;
}

.agradecimento p {
    color: #155724;
    margin: 8px 0;
    font-size: 0.95em;
}

.agradecimento strong {
    color: #0f5132;
}

/* ===== MELHORIAS PARA DISPOSITIVOS MÓVEIS ===== */
@media (max-width: 768px) {
    .modal {
        padding: 8px;
    }
    
    .modal-content {
        margin: 8px auto;
        width: 95%;
        max-height: calc(100vh - 16px);
        border-radius: var(--radius-md);
    }
    
    .ticket-gerado .modal-content {
        max-height: calc(100vh - 16px);
        margin: 8px auto;
    }
    
    .ticket-content {
        padding: 1rem;
    }
    
    .modal-actions {
        flex-direction: column;
        gap: 0.5rem;
        padding: 1rem;
    }
    
    .btn {
        width: 100%;
        margin: 0.25rem 0;
        border-radius: var(--radius-md);
    }
}

/* ===== CORREÇÕES PARA INTERATIVIDADE ===== */

/* Garantir que os campos sejam interativos */
.ticket-form input,
.ticket-form input[type="text"],
.ticket-form input[type="email"],
.ticket-form input[type="tel"] {
    pointer-events: auto !important;
    user-select: text !important;
    cursor: text !important;
    background-color: white !important;
    color: #333 !important;
    border: 2px solid #e5e7eb !important;
    padding: 0.75rem !important;
    font-size: 1rem !important;
    width: 100% !important;
    box-sizing: border-box !important;
    transition: all 0.3s ease !important;
}

.ticket-form input:focus {
    outline: none !important;
    border-color: #3b82f6 !important;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1) !important;
    background-color: white !important;
}

.ticket-form input[readonly] {
    background-color: #f8f9fa !important;
    color: #6c757d !important;
    cursor: default !important;
}

/* Garantir que o modal seja interativo */
.modal {
    pointer-events: auto !important;
}

.modal-content {
    pointer-events: auto !important;
}

.ticket-form {
    pointer-events: auto !important;
}

/* Garantir que os labels sejam clicáveis */
.ticket-form label {
    pointer-events: auto !important;
    cursor: pointer !important;
    user-select: none !important;
}

/* Garantir que o botão seja clicável */
.ticket-form .btn-submit {
    pointer-events: auto !important;
    cursor: pointer !important;
    user-select: none !important;
}

/* Garantir que o botão de fechar seja clicável */
.close {
    pointer-events: auto !important;
    cursor: pointer !important;
    user-select: none !important;
}

/* Garantir que o botão de abrir modal seja clicável */
#btnRetirarIngresso {
    pointer-events: auto !important;
    cursor: pointer !important;
    user-select: none !important;
}

/* Estado de Processamento do Modal */
.modal-processing {
    text-align: center;
    padding: 3rem 2rem;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.processing-content {
    max-width: 600px;
    margin: 0 auto;
}

/* Responsividade para modal grande */
@media (max-width: 768px) {
    .modal-large {
        width: 95% !important;
        margin: 5% auto !important;
        max-height: 95vh !important;
    }
    
    .spinner-ring {
        width: 60px;
        height: 60px;
        border-width: 4px;
    }
    
    .spinner-ring::before,
    .spinner-ring::after {
        border-width: 1px;
    }
}

/* Modal Grande */
.modal-large {
    width: 90% !important;
    max-width: 800px !important;
    margin: 3% auto !important;
    max-height: 90vh !important;
    overflow-y: auto !important;
}

/* Spinner Ajax Elegante */
.ajax-spinner {
    text-align: center;
    margin: 3rem 0;
}

.spinner-ring {
    width: 80px;
    height: 80px;
    border: 6px solid #e3f2fd;
    border-top: 6px solid #2196f3;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 2rem;
    position: relative;
}

.spinner-ring::before {
    content: '';
    position: absolute;
    top: -6px;
    left: -6px;
    right: -6px;
    bottom: -6px;
    border: 2px solid transparent;
    border-top: 2px solid #1976d2;
    border-radius: 50%;
    animation: spin 1.5s linear infinite reverse;
}

.spinner-ring::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border: 2px solid transparent;
    border-top: 2px solid #64b5f6;
    border-radius: 50%;
    animation: spin 2s linear infinite;
}

.spinner-text {
    font-size: 1.3rem;
    color: #2196f3;
    font-weight: 500;
    margin-top: 1rem;
}

/* Animação de fade para transições */
.ticket-content,
.agradecimento,
.modal-actions {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.ticket-content.show,
.agradecimento.show,
.modal-actions.show {
    opacity: 1;
    transform: translateY(0);
}

.qr-loading {
    text-align: center;
}

/* Estado de Processamento do Modal */
