/* Reset e configurações básicas */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #000;
    color: #fff;
    overflow-x: hidden;
}

/* Container principal */
#app {
    min-height: 100vh;
    position: relative;
}

.app-element-1 {
    min-height: 100vh;
    position: relative;
}

/* Background */
.app-background {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    overflow: hidden;
}

.bg-layer.extra {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
    z-index: 1;
}

/* Logo principal */
.logo {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 80px;
    background-image: url('../images/logo.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 10;
}

/* Logos das marcas */
.brand-logo {
    position: absolute;
    width: 120px;
    height: 60px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 10;
}

.brand-netflix {
    top: 120px;
    left: 50px;
    background-image: url('../images/netflix.png');
}

.brand-hbo {
    top: 120px;
    right: 50px;
    background-image: url('../images/hbo.png');
}

/* Conteúdo principal */
.app-content {
    position: relative;
    z-index: 5;
    padding-top: 200px;
}

.main-element-1 {
    width: 100%;
}

.main-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.main-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    min-height: 60vh;
}

/* Seção de texto */
.text-section {
    flex: 1;
    max-width: 500px;
}

.subline {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 40px;
    color: #e0e0e0;
}

.link {
    color: #00ff88;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.link:hover {
    color: #00cc6a;
}

.gradient-red {
    background: linear-gradient(45deg, #ff4757, #ff3742);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.italic {
    font-style: italic;
}

/* Grupo de botões */
.button-group {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.cta {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 30px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cta--green {
    background: linear-gradient(135deg, #00ff88, #00cc6a);
    color: #000;
}

.cta--green:hover {
    background: linear-gradient(135deg, #00cc6a, #00aa55);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 255, 136, 0.3);
}

.cta--red {
    background: linear-gradient(135deg, #ff4757, #ff3742);
    color: #fff;
}

.cta--red:hover {
    background: linear-gradient(135deg, #ff3742, #ff2f3a);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 71, 87, 0.3);
}

.cta .icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.icon-stack {
    position: relative;
    width: 24px;
    height: 24px;
}

.icon-stack .icon {
    position: absolute;
    top: 0;
    left: 0;
    width: 24px;
    height: 24px;
}

.icon-stack .check {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s ease;
}

.cta--red:hover .icon.user {
    opacity: 0;
    transform: scale(0.8);
}

.cta--red:hover .icon.check {
    opacity: 1;
    transform: scale(1);
}

/* Lista de recursos */
.feature-list {
    list-style: none;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.feature-list li {
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.feature-list--mobile {
    display: none;
}

/* Seção de imagem */
.image-section {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.tv-wrapper {
    position: relative;
    width: 100%;
    max-width: 500px;
}

.criativo1 {
    width: 100%;
    height: 400px;
    background-image: url('../images/criativo.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 20px;
}

/* Modal customizado */
.modal-content {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    color: #fff;
}

.modal-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.form-control {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    border-radius: 8px;
}

.form-control:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: #00ff88;
    box-shadow: 0 0 0 0.2rem rgba(0, 255, 136, 0.25);
    color: #fff;
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-label {
    color: #e0e0e0;
    font-weight: 500;
}

.form-text {
    color: rgba(255, 255, 255, 0.6);
}

.btn-success {
    background: linear-gradient(135deg, #00ff88, #00cc6a);
    border: none;
    color: #000;
    font-weight: 600;
}

.btn-success:hover {
    background: linear-gradient(135deg, #00cc6a, #00aa55);
    color: #000;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

/* Responsividade */
@media (max-width: 768px) {
    .main-content {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    
    .logo {
        width: 150px;
        height: 60px;
    }
    
    .brand-logo {
        width: 80px;
        height: 40px;
    }
    
    .brand-netflix {
        top: 100px;
        left: 20px;
    }
    
    .brand-hbo {
        top: 100px;
        right: 20px;
    }
    
    .app-content {
        padding-top: 160px;
    }
    
    .feature-list--primary {
        display: none;
    }
    
    .feature-list--mobile {
        display: flex;
        justify-content: center;
        margin-top: 20px;
    }
    
    .criativo1 {
        height: 300px;
    }
    
    .cta {
        font-size: 14px;
        padding: 15px 25px;
    }
}

@media (max-width: 480px) {
    .main-container {
        padding: 0 15px;
    }
    
    .subline {
        font-size: 16px;
    }
    
    .logo {
        width: 120px;
        height: 50px;
    }
    
    .brand-logo {
        width: 60px;
        height: 30px;
    }
    
    .criativo1 {
        height: 250px;
    }
}

/* Animações */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.text-section {
    animation: fadeInUp 0.8s ease-out;
}

.image-section {
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

/* Efeitos de hover nos botões */
.cta::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;
}

.cta:hover::before {
    left: 100%;
}
