@import url('../base/global.css');

.container {
    width: 100%;
    max-width: 1000px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    background-color: #fff;
}

/* HEADER */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 10px 0;
}

/* Marcador da Logo */
.logo-placeholder {
    width: 150px;
    height: 80px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 12px;
    font-weight: bold;
    color: #683cd3;
    padding: 5px;
}

.nav-menu {
    display: flex;
    gap: 15px;
}

.nav-btn {
    text-decoration: none;
    color: #6c5ce7;
    font-weight: 500;
    font-size: 16px;
    padding: 12px 24px;
    border-radius: 8px;
    border: 1px solid #6c5ce7;
    background-color: #fff;
    transition: all 0.3s ease;
}

.nav-btn.active {
    background-color: #6c5ce7;
    color: #fff;
}

.nav-btn:hover:not(.active) {
    background-color: #f1eeff;
}

/* CARD PRINCIPAL */
.card {
    background-color: #ececf1;
    border-radius: 3%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    display: grid;
    margin: 0 2rem;
    padding: 5rem;
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
    min-height: 500px;
    max-width: 100%;
}

/* Conteúdo Esquerdo */
.card-content {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.title-container {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.main-title {
    font-size: 48px;
    font-weight: 700;
    color: #2d8249;
    letter-spacing: 2px;
}

.title-underline {
    width: 60px;
    height: 5px;
    background-color: #6c5ce7;
    border-radius: 3px;
}

.subtitle {
    font-size: 24px;
    color: #4a4a4a;
    line-height: 1.4;
    font-weight: 400;
}

/* Grid de Benefícios */
.features-grid {
    display: flex;
    gap: 20px;
    margin-top: 10px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: #333;
}

.feature-item strong {
    display: block;
    color: #000;
}

/* Marcador dos mini-ícones */
.icon-placeholder {
    width: 35px;
    height: 35px;
    background-color: #eceaff;
    border: 1.5px dashed #6c5ce7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #6c5ce7;
    font-weight: bold;
    flex-shrink: 0;
}

.cta-button {
    background-color: #6c5ce7;
    color: white;
    border: none;
    padding: 16px 32px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: fit-content;
    box-shadow: 0 8px 20px rgba(108, 92, 231, 0.3);
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.cta-button:hover {
    background-color: #5b4bc4;
    transform: translateY(-2px);
}

.play-icon {
    background-color: white;
    color: #6c5ce7;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    padding-left: 2px;
}

/* LADO DIREITO */
.card-image-section {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.phone-illustration-placeholder {
    width: 100%;
    height: 380px;
    max-width: 340px;
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    color: #2d8249;
    font-size: 14px;
    gap: 10px;
}

.phone-illustration-placeholder img {
    margin-right: 21rem
}
/* Responsividade (Celulares) */
@media (max-width: 768px) {
    .header {
        flex-direction: column;
        gap: 15px;
    }
    
    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .card {
        grid-template-columns: 1fr;
        padding: 30px 20px;
        text-align: center;
    }
    
    .title-underline {
        margin: 0 auto;
    }
    
    .features-grid {
        flex-direction: column;
        align-items: flex-start;
        width: fit-content;
        margin: 15px auto;
    }
    
    .cta-button {
        margin: 0 auto;
    }
    
    .phone-illustration-placeholder {
        height: 300px;
    }
}