:root {
    --color-primary: #a64bf4;
    --color-secondary: #38c9c9;
    --color-gradient-start: #e0b3ff;
    --color-gradient-end: #a6e3e9;
    --color-accent: #ff007c;
    --color-background: #fff;
    --color-text: #212121;
    --color-muted: #888888;
    --color-whatsapp: #25d366;
    --color-whatsapp-hover: #1ebe57;
}

.promisse {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 50px;
    max-width: 1200px;
    margin: auto;
    flex-wrap: nowrap;
}

.text-content {
    flex: 0 0 40%;
    margin-right: 20px;
    transform: translateY(100px);
    opacity: 0;
    animation: slideUp 1s ease-out forwards;
}

@keyframes slideUp {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.text-content h1 {
    margin-bottom: 20px;
    font-size: 2em;
    line-height: 1;
    font-weight: var(--weight-normal);
    padding: 0px;
}

.text-content p {
    margin-top: 10px;
    margin-bottom: 20px;
    font-size: 1em;
    font-weight: var(--weight-ligth);
    color: var(--color-muted);
}

.text-content button {
    padding: 10px 20px;
    background: linear-gradient(to right, var(--color-primary), var(--color-secondary));
    border: none;
    border-radius: 5px;
    color: white;
    cursor: pointer;
    font-size: 1rem;
}

.image-content {
    flex: 0 0 50%;
}

.image-content img {
    max-width: 100%;
    height: auto;
    transform: scale(0);
    animation: scaleUp 1s ease-out forwards;
}

@keyframes scaleUp {
    to {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .promisse {
        flex-direction: column;
        text-align: center;
    }

    .text-content, .image-content {
        max-width: 100%;
        margin-right: 0;
    }

    .text-content button {
        margin-bottom: 20px;
    }
}