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

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    margin: 0;
}

.container {
    text-align: center;
    max-width: 1200px;
    width: 90%;
    padding: 0 20px;
    margin: 20px auto;
}

/* Logo Styles */
.logo {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-image {
    max-height: 50px;
    max-width: 200px;
    height: auto;
    width: auto;
    object-fit: contain;
}

/* Fallback para logo em texto */
.logo h1 {
    font-size: 2rem;
    font-weight: 700;
    color: #FF6B35;
    letter-spacing: -1px;
    margin: 0;
}

/* Video Styles */
.video-container {
    margin-bottom: 3rem;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.main-video {
    max-width: 100%;
    width: 320px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.main-video:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.video-fallback {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 320px;
    height: 240px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    border-radius: 20px;
    border: 2px dashed #9CA3AF;
}

.video-fallback p {
    color: #6B7280;
    font-size: 1rem;
    text-align: center;
    padding: 20px;
}

/* Content Styles */
.content {
    margin-top: 0.5rem;
    display: flex;
    align-items: center;
    gap: 35px;
    text-align: left;
}

.text-section {
    flex: 1;
    text-align: left;
}

.video-section {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.headline {
    font-size: 1.4rem;
    font-weight: 600;
    color: #6B7280;
    line-height: 1.3;
    margin-bottom: 0.8rem;
    text-align: left;
    padding: 0;
    max-width: 100%;
}

.highlight {
    color: #8571BC;
    font-weight: 700;
}

.subheadline {
    font-size: 0.9rem;
    color: #9CA3AF;
    margin-bottom: 1.2rem;
    font-weight: 400;
    text-align: left;
    line-height: 1.4;
    padding: 0;
    max-width: 100%;
}

.subheadline strong {
    color: #6B7280;
    font-weight: 600;
}

/* CTA Button Styles */
.cta-button {
    background: linear-gradient(135deg, #8571BC 0%, #B0A0F7 100%);
    color: white;
    border: none;
    padding: 12px 35px;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px #423072;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px #8571BC;
    background: linear-gradient(135deg, #423072 0%, #423072 100%);
}

.cta-button:active {
    transform: translateY(0);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.3);
}

/* Large screens optimization */
@media (min-width: 1200px) {
    .container {
        max-width: 1400px;
    }
    
    .content {
        gap: 80px;
    }
    
    .headline {
        font-size: 2.2rem;
    }
    
    .subheadline {
        font-size: 1.1rem;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        width: 95%;
        padding: 0 15px;
    }
    
    .logo-image {
        max-height: 45px;
        max-width: 180px;
    }
    
    .logo h1 {
        font-size: 1.8rem;
    }
    
    .logo {
        margin-bottom: 2rem;
    }
    
    .main-video {
        width: 280px;
    }
    
    .video-fallback {
        width: 280px;
        height: 210px;
    }
    
    .content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    
    .text-section {
        text-align: center;
    }
    
    .video-section {
        order: -1;
    }
    
    .headline {
        font-size: 1.5rem;
        margin-bottom: 0.8rem;
        text-align: center;
        padding: 0 20px;
    }
    
    .subheadline {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
        text-align: center;
        padding: 0 20px;
    }
    
    .cta-button {
        padding: 16px 50px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        width: 98%;
        padding: 0 10px;
    }
    
    .logo-image {
        max-height: 40px;
        max-width: 150px;
    }
    
    .logo h1 {
        font-size: 1.6rem;
    }
    
    .main-video {
        width: 240px;
    }
    
    .video-fallback {
        width: 240px;
        height: 180px;
    }
    
    .content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .text-section {
        text-align: center;
    }
    
    .video-section {
        order: -1;
    }
    
    .headline {
        font-size: 1.3rem;
        padding: 0 15px;
        text-align: center;
    }
    
    .subheadline {
        font-size: 0.85rem;
        padding: 0 15px;
        text-align: center;
    }
    
    .cta-button {
        padding: 14px 40px;
        font-size: 0.9rem;
    }
}

/* Animation for video container */
@keyframes fadeIn {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

.video-container {
    animation: fadeIn 1s ease-out;
}

/* Subtle pulse animation for video */
@keyframes subtlePulse {
    0%, 100% { box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2); }
    50% { box-shadow: 0 15px 40px rgba(255, 107, 53, 0.1); }
}

.main-video {
    animation: subtlePulse 4s ease-in-out infinite;
}

/* Add subtle background pattern */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(255, 107, 53, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(255, 107, 53, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}
