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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: #0d1b2a;
    min-height: 100vh;
    overflow-x: hidden;
}

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

/* Header */
.header {
    background: rgba(13, 27, 42, 0.9);
    backdrop-filter: blur(20px);
    padding: 1.5rem 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(100, 150, 200, 0.2);
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgba(13, 27, 42, 0.95);
    padding: 1rem 0;
}

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

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

.logo img {
    height: 50px;
    width: auto;
    transition: all 0.3s ease;
}

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu li a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 1rem;
    border-radius: 8px;
}

.nav-menu li a:hover {
    color: #64b5f6;
    background: rgba(255, 255, 255, 0.1);
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: #64b5f6;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-menu li a:hover::after {
    width: 80%;
}

/* Estilo especial para o botão de registro no menu */
.nav-register {
    background: linear-gradient(135deg, #64b5f6, #1976d2) !important;
    color: white !important;
    padding: 0.75rem 1.5rem !important;
    border-radius: 25px !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 15px rgba(100, 181, 246, 0.3) !important;
}

.nav-register:hover {
    background: linear-gradient(135deg, #1976d2, #64b5f6) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(100, 181, 246, 0.4) !important;
    color: white !important;
}

.nav-register::after {
    display: none !important;
}

/* Hero Section */
.hero {
    padding: 150px 0 120px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0d1b2a 0%, #1b263b 50%, #2c3e50 100%);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(100, 150, 200, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(25, 118, 210, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(100, 181, 246, 0.2) 0%, transparent 50%);
    animation: float 20s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    animation: grain 8s steps(10) infinite;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease-out;
    background: linear-gradient(135deg, #ffffff 0%, #64b5f6 50%, #1976d2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 2;
}

.hero .subtitle {
    font-size: 1.3rem;
    font-weight: 300;
    margin-bottom: 2rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero .date {
    font-size: 1.1rem;
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease-out 0.4s both;
}

/* Seção Principal de Acesso */
.main-access-section {
    margin: 3rem auto 4rem;
    text-align: center;
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease-out 0.5s both;
}

.main-access-button {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 50%, #ff6b35 100%);
    color: white;
    padding: 25px 50px;
    border-radius: 60px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.3rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.4);
    border: 3px solid rgba(255, 255, 255, 0.2);
    animation: pulse 2s infinite;
}

.main-access-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f7931e 0%, #ff6b35 50%, #f7931e 100%);
    transition: left 0.4s ease;
    z-index: -1;
}

.main-access-button:hover::before {
    left: 0;
}

.main-access-button:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 25px 60px rgba(255, 107, 53, 0.6);
    border-color: rgba(255, 255, 255, 0.4);
}

.main-access-button i {
    font-size: 1.5rem;
    animation: bounce 1.5s infinite;
}

.access-description {
    margin-top: 1.5rem;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    animation: fadeInUp 1s ease-out 0.7s both;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 15px 40px rgba(255, 107, 53, 0.4);
    }
    50% {
        box-shadow: 0 20px 50px rgba(255, 107, 53, 0.6);
    }
}

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

/* Instruções de Participação */
.participation-info {
    max-width: 900px;
    margin: 0 auto 3rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.info-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    text-align: left;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, #64b5f6, #1976d2);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

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

.info-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.info-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #64b5f6, #1976d2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.4s ease;
}

.info-icon i {
    font-size: 1.5rem;
    color: white;
}

.info-card:hover .info-icon {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(100, 181, 246, 0.4);
}

.info-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ffffff;
    background: linear-gradient(135deg, #ffffff 0%, #64b5f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.info-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #64b5f6 0%, #1976d2 100%);
    color: white;
    padding: 18px 50px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.4s ease;
    animation: fadeInUp 1s ease-out 0.8s both;
    position: relative;
    z-index: 2;
    border: 2px solid transparent;
    background-clip: padding-box;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1976d2 0%, #64b5f6 100%);
    transition: left 0.4s ease;
    z-index: -1;
}

.cta-button:hover::before {
    left: 0;
}

.cta-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 40px rgba(100, 181, 246, 0.4);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Main Content */
.main-content {
    background: #ffffff;
    border-radius: 40px 40px 0 0;
    margin-top: -40px;
    position: relative;
    z-index: 1;
    box-shadow: 0 -20px 60px rgba(0, 0, 0, 0.1);
}

.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 3rem;
    font-weight: 200;
    margin-bottom: 4rem;
    color: #1a1a1a;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #64b5f6, #1976d2);
    border-radius: 2px;
}

/* Speakers */
/* Main Speaker - Pastor Alan Taylor */
.main-speaker {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 32px;
    padding: 4rem;
    margin-bottom: 4rem;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    border: 1px solid rgba(100, 181, 246, 0.2);
    position: relative;
    overflow: hidden;
}

.main-speaker::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(135deg, #64b5f6, #1976d2);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

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

.main-speaker:hover {
    transform: translateY(-10px);
    box-shadow: 0 35px 100px rgba(100, 181, 246, 0.2);
    border-color: rgba(100, 181, 246, 0.4);
}

.main-speaker-content {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 4rem;
    align-items: center;
}

.main-speaker-photo {
    position: relative;
}

.main-speaker-photo img {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    object-fit: cover;
    transition: all 0.4s ease;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.2));
}

.main-speaker:hover .main-speaker-photo img {
    transform: scale(1.05);
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
}

.main-speaker-info {
    text-align: left;
}

.main-speaker-badge {
    display: inline-block;
    background: linear-gradient(135deg, #64b5f6, #1976d2);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.main-speaker-name {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
    background: linear-gradient(135deg, #1a1a1a 0%, #1976d2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.main-speaker-role {
    font-size: 1.2rem;
    color: #1976d2;
    font-weight: 500;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #64b5f6, #1976d2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.main-speaker-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 2rem;
    max-width: 800px;
    text-align: justify;
}

.main-speaker-topics {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.topic-tag {
    background: rgba(100, 181, 246, 0.1);
    color: #1976d2;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid rgba(100, 181, 246, 0.2);
    transition: all 0.3s ease;
}

.topic-tag:hover {
    background: rgba(100, 181, 246, 0.2);
    border-color: rgba(100, 181, 246, 0.4);
    transform: translateY(-2px);
}

/* Guests Section */
.guests-section {
    margin-top: 2rem;
}

.guests-title {
    text-align: center;
    font-size: 1.8rem;
    font-weight: 300;
    margin-bottom: 2rem;
    color: #1a1a1a;
    position: relative;
}

.guests-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #64b5f6, #1976d2);
    border-radius: 2px;
}

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

.guest-item {
    background: #ffffff;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
    cursor: pointer;
    border: 1px solid rgba(100, 181, 246, 0.15);
    position: relative;
    overflow: hidden;
}

.guest-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, #64b5f6, #1976d2);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.guest-item:hover::before {
    transform: scaleX(1);
}

.guest-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 70px rgba(100, 181, 246, 0.15);
    border-color: rgba(100, 181, 246, 0.3);
}

.guest-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #64b5f6, #1976d2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.4s ease;
}

.guest-icon i {
    font-size: 2rem;
    color: white;
}

.guest-item:hover .guest-icon {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(100, 181, 246, 0.4);
}

.guest-name {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.guest-role {
    font-size: 1rem;
    color: #666;
    margin-bottom: 1rem;
}

.guest-participation {
    display: inline-block;
    background: rgba(25, 118, 210, 0.1);
    color: #1976d2;
    padding: 0.4rem 1rem;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid rgba(25, 118, 210, 0.2);
}

/* Schedule */
.schedule-item {
    background: #ffffff;
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-left: 4px solid transparent;
    position: relative;
    overflow: hidden;
}

.schedule-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(135deg, #00d4ff, #7c3aed);
    transform: scaleY(0);
    transition: transform 0.4s ease;
}

.schedule-item:hover::before {
    transform: scaleY(1);
}

.schedule-item:hover {
    transform: translateX(15px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 212, 255, 0.15);
    border-left-color: transparent;
}

.schedule-time {
    font-weight: 600;
    color: #1976d2;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #64b5f6, #1976d2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.1rem;
}

.schedule-title {
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.schedule-description {
    color: #666;
    font-size: 0.9rem;
}

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

.feature-card {
    text-align: center;
    padding: 2.5rem;
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
    border: 1px solid rgba(100, 181, 246, 0.15);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, #64b5f6, #1976d2);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

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

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 70px rgba(100, 181, 246, 0.15);
    border-color: rgba(100, 181, 246, 0.3);
}

.feature-icon {
    font-size: 3.5rem;
    background: linear-gradient(135deg, #64b5f6, #1976d2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    transition: all 0.4s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

.feature-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.feature-description {
    color: #666;
    line-height: 1.6;
}

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

.modal-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    margin: 5% auto;
    padding: 3rem;
    border-radius: 24px;
    width: 90%;
    max-width: 600px;
    position: relative;
    animation: modalSlideIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(100, 181, 246, 0.15);
}

.close {
    position: absolute;
    right: 1.5rem;
    top: 1.5rem;
    font-size: 2rem;
    cursor: pointer;
    color: #999;
    transition: color 0.3s ease;
}

.close:hover {
    color: #333;
}

.modal-header {
    margin-bottom: 1.5rem;
}

.modal-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.modal-subtitle {
    color: #1976d2;
    font-weight: 500;
}

.modal-body {
    line-height: 1.6;
    color: #666;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #0d1b2a 0%, #1b263b 100%);
    color: white;
    text-align: center;
    padding: 4rem 0 3rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(100, 181, 246, 0.5), transparent);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.footer-section h3 {
    margin-bottom: 1.5rem;
    color: #64b5f6;
    font-size: 1.3rem;
    font-weight: 600;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    color: white;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #64b5f6;
    transform: translateY(-3px);
}

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

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

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-20px) rotate(1deg); }
    66% { transform: translateY(10px) rotate(-1deg); }
}

@keyframes grain {
    0%, 100% { transform: translate(0, 0); }
    10% { transform: translate(-5%, -5%); }
    20% { transform: translate(-10%, 5%); }
    30% { transform: translate(5%, -10%); }
    40% { transform: translate(-5%, 15%); }
    50% { transform: translate(-10%, 5%); }
    60% { transform: translate(15%, 0%); }
    70% { transform: translate(0%, 10%); }
    80% { transform: translate(3%, 15%); }
    90% { transform: translate(-10%, 10%); }
}

@keyframes glow {
    0%, 100% { box-shadow: 0 0 20px rgba(0, 212, 255, 0.3); }
    50% { box-shadow: 0 0 40px rgba(0, 212, 255, 0.6); }
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .nav-menu {
        display: none;
    }

    .section {
        padding: 60px 0;
    }

    .main-speaker-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .main-speaker-photo img {
        width: 180px;
        height: 180px;
    }

    .main-speaker-name {
        font-size: 2rem;
    }

    .main-speaker-topics {
        justify-content: center;
    }

    .guests-grid {
        grid-template-columns: 1fr;
    }

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

    /* Responsive para as instruções de participação */
    .participation-info {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .info-card {
        padding: 1.5rem;
    }
    
    .info-content h3 {
        font-size: 1.2rem;
    }
    
    .info-content p {
        font-size: 0.95rem;
    }
    
    /* Responsive para o botão principal de acesso */
    .main-access-button {
        font-size: 1.1rem;
        padding: 20px 40px;
        gap: 0.8rem;
    }
    
    .main-access-button i {
        font-size: 1.3rem;
    }
    
    .access-description {
        font-size: 1rem;
        margin-top: 1rem;
    }
}

/* Scroll animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

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

/* Custom Alerts */
.custom-alert {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
    max-width: 400px;
    animation: slideInRight 0.3s ease-out;
}

.custom-alert-success {
    background: linear-gradient(135deg, #4caf50, #45a049);
}

.custom-alert-error {
    background: linear-gradient(135deg, #f44336, #d32f2f);
}

.alert-content {
    display: flex;
    align-items: center;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    color: white;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.alert-icon {
    font-size: 1.2rem;
    margin-right: 1rem;
    flex-shrink: 0;
}

.alert-message {
    flex: 1;
    font-weight: 500;
    line-height: 1.4;
}

.alert-close {
    background: none;
    border: none;
    color: white;
    font-size: 1rem;
    cursor: pointer;
    padding: 0.25rem;
    margin-left: 1rem;
    border-radius: 4px;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.alert-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

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

/* Form Validation Styles */
.form-field input:focus {
    outline: none;
    border-color: #64b5f6;
    box-shadow: 0 0 0 3px rgba(100, 181, 246, 0.1);
}

.form-field.error input {
    border-color: #e74c3c;
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
}

.field-error {
    color: #e74c3c;
    font-size: 0.85rem;
    margin-top: 0.5rem;
    font-weight: 500;
    display: flex;
    align-items: center;
}

.field-error::before {
    content: '⚠';
    margin-right: 0.5rem;
    font-size: 1rem;
}

/* Form field hover effects */
.form-field input:hover {
    border-color: #64b5f6;
}

/* Button hover effects */
.form-field button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(100, 181, 255, 0.4);
}

/* Additional styles for inline elements */
.schedule-section {
    background: #f8f9fa;
}

.register-section {
    background: linear-gradient(135deg, #0d1b2a 0%, #1b263b 50%, #2c3e50 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.register-section .section-title {
    color: white;
}

.register-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.register-description {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    line-height: 1.8;
}

.register-button {
    background: linear-gradient(135deg, #64b5f6 0%, #1976d2 100%);
    color: white;
    font-size: 1.1rem;
    padding: 20px 60px;
}

.background-effects {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.1;
}

.background-effect-1 {
    position: absolute;
    top: 20%;
    left: 10%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, #64b5f6 0%, transparent 70%);
    animation: float 15s ease-in-out infinite;
}

.background-effect-2 {
    position: absolute;
    top: 60%;
    right: 15%;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, #1976d2 0%, transparent 70%);
    animation: float 18s ease-in-out infinite reverse;
}

.footer-divider {
    border-top: 1px solid #555;
    padding-top: 2rem;
    text-align: center;
}

.form-container {
    text-align: left;
}

.form-field-spacing {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #1a1a1a;
}

.required-field {
    color: #e74c3c;
}

.form-input {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e1e8ed;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #ffffff;
}

.form-submit-button {
    background: linear-gradient(135deg, #64b5f6, #1976d2);
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(100, 181, 246, 0.3);
}

.form-note {
    font-size: 0.9rem;
    opacity: 0.8;
}
