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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-main);
    background-color: var(--background);
}

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

/* Header */
.header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.header::before {
    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="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="white" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="white" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

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

.header h1 {
    font-size: 3rem;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.header h1 i {
    margin-right: 15px;
    color: #ffd700;
}

.header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Main Content */
.main-content {
    padding: 60px 0;
}

.event-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

/* Info Section */
.info-section {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.info-section h2 {
    color: #667eea;
    margin-bottom: 30px;
    font-size: 2rem;
    text-align: center;
}

.event-details {
    display: grid;
    gap: 25px;
    margin-bottom: 30px;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 10px;
    border-left: 4px solid #667eea;
}

.detail-item i {
    font-size: 1.5rem;
    color: #667eea;
    min-width: 30px;
}

.detail-item h3 {
    color: #495057;
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.detail-item p {
    color: #6c757d;
    font-size: 0.95rem;
}

.event-highlights {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 25px;
    border-radius: 10px;
}

.event-highlights h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.event-highlights ul {
    list-style: none;
}

.event-highlights li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.event-highlights i {
    color: #ffd700;
}

/* Form Section */
.form-section {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.form-section:hover {
    transform: translateY(-5px);
}

.form-section h2 {
    color: #667eea;
    margin-bottom: 30px;
    font-size: 2rem;
    text-align: center;
}

.registration-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 600;
    color: #495057;
    font-size: 0.95rem;
}

.form-group input,
.form-group select {
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-group label[for="newsletter"] {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

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

.btn-submit {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

.btn-submit:active {
    transform: translateY(0);
}

/* Sponsors Section */
.sponsors-section {
    background: var(--primary);
    color: white;
    padding: 60px 0;
}

.sponsors-section h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 36px;
    color: #ffd600;
    font-weight: 800;
    letter-spacing: 1px;
}

.sponsors-swiper {
    width: 100%;
    padding: 32px 0 24px 0;
}
.sponsors-swiper .swiper-wrapper {
    width: 100%;
    align-items: center;
}
.sponsor-item {
    background: var(--card-bg);
    border-radius: 14px;
    box-shadow: var(--shadow);
    padding: 24px 16px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}
.sponsor-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 32px rgba(34,48,70,0.12);
}
.sponsor-item img {
    width: 140px;
    height: 70px;
    object-fit: contain;
    margin-bottom: 10px;
    background: var(--card-bg);
    border-radius: 6px;
}
.sponsor-item h3 {
    color: var(--primary);
    font-size: 1.1rem;
    margin: 0;
    font-weight: 600;
}

/* Patrocinador Principal - Omni */
.sponsor-main {
    border: 3px solid #ffd700;
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    box-shadow: 0 8px 32px rgba(255, 215, 0, 0.2);
    transform: scale(1.05);
}

.sponsor-main:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 40px rgba(255, 215, 0, 0.3);
}

.sponsor-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #223046;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 4px 8px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.sponsor-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 215, 0, 0.1) 50%, transparent 70%);
    animation: shimmer 3s infinite;
    pointer-events: none;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* Seção do Patrocinador Principal */
.main-sponsor {
    margin-bottom: 60px;
    text-align: center;
}

.main-sponsor h2 {
    color: var(--primary);
    font-size: 2.5rem;
    margin-bottom: 30px;
    font-weight: 800;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.main-sponsor-card {
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    border: 4px solid #ffd700;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 12px 40px rgba(255, 215, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.main-sponsor-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 215, 0, 0.05) 50%, transparent 70%);
    animation: shimmer 4s infinite;
    pointer-events: none;
}

.main-sponsor-card img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    border-radius: 15px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.main-sponsor-info h3 {
    color: var(--primary);
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.main-sponsor-info p {
    color: var(--text-light);
    font-size: 1.1rem;
    font-weight: 600;
}

@media (max-width: 768px) {
    .main-sponsor-card {
        flex-direction: column;
        padding: 30px 20px;
        gap: 20px;
    }
    
    .main-sponsor-card img {
        width: 100px;
        height: 100px;
    }
    
    .main-sponsor-info h3 {
        font-size: 1.5rem;
    }
    
    .main-sponsor-info p {
        font-size: 1rem;
    }
}

.sponsors-swiper .swiper-pagination {
    position: static;
    margin-top: 18px;
}

@media (max-width: 700px) {
    .sponsor-item {
        min-width: 120px;
        min-height: 80px;
        padding: 10px;
    }
    .sponsor-item img {
        width: 80px;
        height: 40px;
    }
}

/* Footer */
.footer {
    background: var(--primary);
    color: var(--card-bg);
    padding: 40px 0 20px;
}

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

.footer-section h3 {
    color: #ffd600;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.footer-section p {
    margin-bottom: 10px;
    opacity: 0.9;
}

.footer-section i {
    margin-right: 10px;
    color: var(--accent);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: var(--accent);
    color: var(--card-bg);
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    transition: transform 0.3s ease, background 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-3px);
    background: #ffd600;
    color: var(--primary);
}

.social-links a i {
    color: var(--primary);
    font-size: 1.3rem;
    transition: color 0.2s;
    margin-left: 8px;
    margin-top: 10px;
}

.social-links a:hover i {
    color: var(--button-text);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #33425b;
    opacity: 0.7;
}

/* Responsividade */
@media (max-width: 768px) {
    .header h1 {
        font-size: 2rem;
    }
    
    .event-info {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .info-section,
    .form-section {
        padding: 30px 20px;
    }
    
    .event-details {
        grid-template-columns: 1fr;
    }
    
    .sponsors-swiper {
        padding: 20px 0;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 40px 0;
    }
    
    .header h1 {
        font-size: 1.5rem;
    }
    
    .main-content {
        padding: 40px 0;
    }
    
    .sponsors-section h2 {
        font-size: 2rem;
    }
    
    .sponsors-swiper {
        padding: 16px 0;
    }
}

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

.info-section,
.form-section {
    animation: fadeInUp 0.6s ease;
}

.sponsor-item {
    animation: fadeInUp 0.6s ease;
}

/* Estados de loading e sucesso */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

.success-message {
    background: #28a745;
    color: white;
    padding: 15px;
    border-radius: 8px;
    margin-top: 20px;
    text-align: center;
    animation: fadeInUp 0.3s ease;
}

.error-message {
    background: #dc3545;
    color: white;
    padding: 15px;
    border-radius: 8px;
    margin-top: 20px;
    text-align: center;
    animation: fadeInUp 0.3s ease;
}

/* === Fusion Moto Fest Bloco Principal === */
.fusion-bg {
    background: var(--background);
    padding: 0;
    min-height: 100vh;
    display: flex;
    align-items: stretch;
    justify-content: center;
}

.fusion-container {
    display: flex;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    background: none;
    border-radius: 0;
    box-shadow: none;
    overflow: visible;
    min-height: 520px;
    height: 100%;
    flex: 1;
}

.fusion-left {
    flex: 1;
    background: none;
    color: var(--text-main);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 48px 40px 48px 48px;
}

.fusion-logo-title {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 24px;
}
.fusion-logo {
    width: 140px;
    min-width: 100px;
    height: auto;
    margin-bottom: 0;
}
.fusion-title-block {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.fusion-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 2px;
    line-height: 1.1;
}
.fusion-edition {
    font-size: 1.1rem;
    color: var(--text-light);
    font-weight: 400;
    letter-spacing: 1px;
}

.fusion-event-details {
    margin: 24px 0 18px 0;
    font-size: 1.1rem;
}
.fusion-event-details p {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-main);
}
.fusion-event-details i {
    color: var(--accent);
    font-size: 1.2em;
}

.fusion-highlights {
    list-style: none;
    margin: 0 0 18px 0;
    padding: 0;
}
.fusion-highlights li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    color: var(--accent);
    font-weight: 500;
}
.fusion-highlights i {
    color: var(--accent);
    font-size: 1.1em;
}

.fusion-note {
    font-size: 0.95rem;
    color: var(--accent);
    margin-top: 10px;
    background: #e9eef3;
    border-left: 4px solid var(--accent);
    padding: 8px 16px;
    border-radius: 6px;
    font-style: italic;
}

.fusion-right {
    flex: 1;
    background: var(--card-bg);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-width: 340px;
    box-shadow: var(--shadow);
    padding: 48px 36px;
}

.fusion-form-title {
    color: var(--primary);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 24px;
    text-align: center;
}

.fusion-form {
    width: 100%;
    max-width: 340px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.fusion-form .form-group label {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 4px;
}
.fusion-form .form-group input,
.fusion-form .form-group select {
    padding: 12px 14px;
    border: 2px solid #e9eef3;
    border-radius: 8px;
    font-size: 1rem;
    background: #f7f9fb;
    transition: border-color 0.3s;
}
.fusion-form .form-group input:focus,
.fusion-form .form-group select:focus {
    border-color: var(--accent);
    outline: none;
}

.fusion-btn-submit {
    background: var(--button-bg);
    color: var(--button-text);
    border: none;
    padding: 15px 0;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: var(--shadow);
    transition: background 0.2s;
    margin-top: 8px;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.fusion-btn-submit:hover {
    background: var(--button-bg-hover);
}

@media (max-width: 1024px) {
    .fusion-container {
        flex-direction: column;
        min-height: unset;
        height: auto;
    }
    .fusion-left, .fusion-right {
        min-height: unset;
        height: auto;
        padding: 24px 10px;
    }
    .fusion-right {
        box-shadow: none;
    }
}

/* === Header Compacto Fusion === */
.fusion-header {
    width: 100%;
    background: linear-gradient(90deg, #223046 0%, #4f6d7a 100%);
    box-shadow: var(--shadow);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 100;
}
.fusion-header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 8px 20px 4px 20px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    min-height: 54px;
}
.fusion-header-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--button-text);
    letter-spacing: 1px;
    margin-bottom: 0;
    white-space: nowrap;
}
.fusion-header-icon {
    color: var(--accent);
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    flex-shrink: 0;
}
.fusion-header-text {
    color: var(--button-text);
    font-weight: 800;
    text-shadow: 1px 1px 8px #0003;
    white-space: nowrap;
}
.fusion-header-subtitle {
    display: none;
}
.fusion-header-nav {
    display: flex;
    gap: 12px;
    margin-top: 0;
}
.fusion-nav-btn {
    background: var(--card-bg);
    color: var(--primary);
    font-weight: 700;
    border: none;
    border-radius: 24px;
    padding: 6px 18px;
    font-size: 0.98rem;
    text-decoration: none;
    box-shadow: var(--shadow);
    transition: background 0.2s, color 0.2s, transform 0.2s;
    cursor: pointer;
    height: 32px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.fusion-nav-btn i {
    font-size: 1rem;
}

.fusion-nav-btn .btn-text {
    display: inline;
}

.fusion-nav-btn:hover {
    background: var(--accent);
    color: var(--button-text);
    transform: translateY(-2px) scale(1.04);
}

@media (max-width: 700px) {
    .fusion-header-content {
        padding: 8px 12px;
        min-height: 48px;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 8px;
    }
    .fusion-header-title {
        font-size: 1.1rem;
        gap: 6px;
        flex-shrink: 0;
    }
    .fusion-header-icon {
        font-size: 1.1rem;
    }
    .fusion-header-nav {
        gap: 4px;
        flex-wrap: wrap;
        justify-content: flex-end;
    }
    .fusion-nav-btn {
        padding: 4px 8px;
        font-size: 0.8rem;
        height: 28px;
        border-radius: 16px;
        white-space: nowrap;
    }
    .fusion-nav-btn .btn-text {
        display: inline;
    }
}

@media (max-width: 480px) {
    .fusion-header-content {
        padding: 6px 8px;
        min-height: 44px;
        gap: 6px;
    }
    .fusion-header-title {
        font-size: 1rem;
        gap: 4px;
    }
    .fusion-header-icon {
        font-size: 1rem;
    }
    .fusion-header-text {
        font-size: 0.9rem;
    }
    .fusion-header-nav {
        gap: 3px;
    }
    .fusion-nav-btn {
        padding: 3px 6px;
        font-size: 0.75rem;
        height: 26px;
        border-radius: 14px;
    }
    .fusion-nav-btn .btn-text {
        display: none;
    }
    .fusion-nav-btn i {
        font-size: 0.9rem;
    }
}

@media (max-width: 360px) {
    .fusion-header-content {
        padding: 4px 6px;
        min-height: 40px;
        gap: 4px;
    }
    .fusion-header-title {
        font-size: 0.9rem;
        gap: 3px;
    }
    .fusion-header-icon {
        font-size: 0.9rem;
    }
    .fusion-header-text {
        font-size: 0.8rem;
    }
    .fusion-header-nav {
        gap: 2px;
    }
    .fusion-nav-btn {
        padding: 2px 4px;
        font-size: 0.7rem;
        height: 24px;
        border-radius: 12px;
    }
    .fusion-nav-btn .btn-text {
        display: none;
    }
    .fusion-nav-btn i {
        font-size: 0.8rem;
    }
}

.lojas-section {
    background: var(--card-bg);
    padding: 60px 0 40px 0;
}
.lojas-title {
    text-align: center;
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 36px;
    font-weight: 800;
    letter-spacing: 1px;
}
.lojas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}
.loja-card {
    background: var(--card-bg);
    border-radius: 14px;
    box-shadow: var(--shadow);
    padding: 24px 10px;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: center;
    transition: box-shadow 0.2s, border 0.2s;
    border: none;
}
.loja-card:hover {
    box-shadow: 0 8px 32px rgba(34,48,70,0.12);
}
.loja-check {
    font-size: 1.3rem;
    color: #43a047;
    margin-right: 4px;
}

@media (max-width: 700px) {
    .lojas-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    .loja-card {
        padding: 16px 4px;
        font-size: 1rem;
    }
}

.carousel-infinite {
    display: flex;
    animation: carouselScroll 15s linear infinite;
    will-change: transform;
}

@keyframes carouselScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Paleta profissional */
:root {
  --primary: #223046;
  --secondary: #3a4a5d;
  --accent: #4f6d7a;
  --background: #f5f7fa;
  --card-bg: #fff;
  --text-main: #223046;
  --text-light: #6b7685;
  --button-bg: #223046;
  --button-bg-hover: #4f6d7a;
  --button-text: #fff;
  --shadow: 0 4px 24px rgba(34,48,70,0.08);
}

/* Seção do Vídeo 3D */
.video-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0;
    position: relative;
}

.video-section::before {
    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="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23dee2e6" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.5;
}

.video-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.video-header h2 {
    color: var(--primary);
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.video-header p {
    color: var(--text-light);
    font-size: 1.2rem;
    font-weight: 500;
}

.video-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: start;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.video-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(34,48,70,0.15);
    background: #000;
}

.video-wrapper video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: opacity 0.3s ease;
    border-radius: 20px;
}

.video-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.play-btn {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    border: none;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 8px 32px rgba(255, 215, 0, 0.4);
}

.play-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 40px rgba(255, 215, 0, 0.6);
}

.play-btn i {
    font-size: 2rem;
    color: var(--primary);
    margin-left: 4px;
}

.video-info {
    background: var(--card-bg);
    padding: 30px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    height: fit-content;
}

.video-info h3 {
    color: var(--primary);
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-align: center;
}

.space-features {
    list-style: none;
    padding: 0;
}

.space-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #f1f3f4;
    color: var(--text-main);
    font-weight: 500;
}

.space-features li:last-child {
    border-bottom: none;
}

.space-features i {
    color: var(--accent);
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

@media (max-width: 768px) {
    .video-section {
        padding: 60px 0;
    }
    
    .video-header h2 {
        font-size: 2rem;
    }
    
    .video-header p {
        font-size: 1.1rem;
    }
    
    .video-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .video-wrapper {
        border-radius: 15px;
    }
    
    .video-wrapper video {
        border-radius: 15px;
    }
    
    .video-overlay {
        border-radius: 15px;
    }
    
    .play-btn {
        width: 60px;
        height: 60px;
    }
    
    .play-btn i {
        font-size: 1.5rem;
    }
    
    .video-info {
        padding: 25px 20px;
        border-radius: 15px;
    }
    
    .video-info h3 {
        font-size: 1.3rem;
    }
}

/* Bloco de Destaque do Sorteio JBL */
.sorteio-jbl-block {
    display: flex;
    align-items: center;
    gap: 24px;
    background: linear-gradient(135deg, #fffbe6 0%, #ffe082 100%);
    border: 2px solid #ffd700;
    border-radius: 18px;
    box-shadow: 0 6px 32px rgba(255, 215, 0, 0.10);
    padding: 22px 18px 22px 18px;
    margin-bottom: 32px;
    position: relative;
    animation: pulse-jbl 2.5s infinite;
}

@keyframes pulse-jbl {
    0% { box-shadow: 0 6px 32px rgba(255, 215, 0, 0.10); }
    50% { box-shadow: 0 0 32px 8px rgba(255, 215, 0, 0.18); }
    100% { box-shadow: 0 6px 32px rgba(255, 215, 0, 0.10); }
}

.sorteio-jbl-img {
    position: relative;
    min-width: 120px;
    max-width: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sorteio-jbl-img img {
    width: 100%;
    max-width: 140px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.10);
    background: #fff;
}

.sorteio-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #223046;
    font-size: 0.8rem;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.25);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

.sorteio-jbl-info h3 {
    color: #b8860b;
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.sorteio-jbl-info .jbl-highlight {
    color: #ff5722;
    font-weight: 900;
    letter-spacing: 1px;
    text-shadow: 0 2px 8px #fff3;
}

.sorteio-jbl-info p {
    color: #223046;
    font-weight: 500;
    margin: 0;
    text-align: center;
}

.sorteio-jbl-observacao {
    font-size: 0.75rem;
    color: #888;
    margin-top: 8px;
    text-align: center;
    font-style: italic;
    line-height: 1.3;
}

@media (max-width: 600px) {
    .sorteio-jbl-block {
        flex-direction: column;
        gap: 12px;
        padding: 16px 8px;
    }
    .sorteio-jbl-img {
        min-width: 80px;
        max-width: 100px;
    }
    .sorteio-jbl-img img {
        max-width: 90px;
    }
    .sorteio-jbl-info h3 {
        font-size: 1.05rem;
        text-align: center;
    }
    .sorteio-jbl-info p {
        font-size: 0.95rem;
    }
} 