body {
    background-color: #1c1c1c;
}

.container-assinatura {
    display: flex;
    flex-direction: row;
    height: 100vh;
    overflow: hidden;
}

/* Coluna Esquerda */
.col-left {
    flex: 1;
    background: url('../images/streaming-plus.webp') no-repeat center center;
    background-size: contain;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

/* Esconde a coluna esquerda no mobile */
@media (max-width: 768px) {
    .col-left {
        display: none;
    }

    .container-assinatura {
        justify-content: center;
        align-items: center;
    }
}

/* Benefícios */
.benefits-container {
    position: absolute;
    top: 17%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.benefit-item {
    font-size: 20px;
    color: #fff;
    position: absolute;
    opacity: 0;
    animation: fadeCycle 8s infinite;
}

.benefit-item:nth-child(1) {
    animation-delay: 0s;
}

.benefit-item:nth-child(2) {
    animation-delay: 2s;
}

.benefit-item:nth-child(3) {
    animation-delay: 4s;
}

.benefit-item:nth-child(4) {
    animation-delay: 6s;
}

@keyframes fadeCycle {

    0%,
    20% {
        opacity: 1;
        transform: scale(1);
    }

    25%,
    95% {
        opacity: 0;
        transform: scale(0.9);
    }
}

/* Coluna Direita */
.col-right {
    flex: 1;
    padding: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #1c1c1c;
}

.form-container {
    width: 100%;
    max-width: 450px;
    background: #282828;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.form-container h1 {
    font-size: 24px;
    color: #fff;
    text-align: center;
    margin-bottom: 1rem;
}

.form-container p {
    font-size: 14px;
    color: #aaa;
    text-align: center;
    margin-bottom: 1.5rem;
}

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

.form-group label {
    font-size: 14px;
    color: #ccc;
    margin-bottom: 0.5rem;
    display: block;
}

.form-group input,
select {
    width: 100%;
    padding: 10px;
    border: 1px solid #555;
    border-radius: 5px;
    background-color: #1c1c1c;
    color: #fff;
}

select {
    width: 48%;
}

/* Mantém os campos Validade e CVV na mesma linha */
.form-group.inline {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.form-group.inline div {
    flex: 1;
}

.btn-assinar {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    background-color: #f128b6;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-assinar:hover {
    background-color: #c11a8c;
}

@media (max-width: 768px) {
    .container-assinatura {
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
}

.card-selection {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 1rem;
}

.card-selection label {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #fff;
    cursor: pointer;
}