* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.background-blur {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: -1;
    background: url('./img/backgroundSky.png') no-repeat center center fixed;
    background-size: cover;
}

.background-blur::after {
    content: "";
    position: absolute;
    inset: 0;
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    mask-image: linear-gradient(to bottom, black 0%, black 70%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 0%, black 70%, transparent 100%);
}

body {
    font-family: 'Segoe UI', sans-serif;
    background: url('./img/backgroundSky.png') no-repeat center center fixed;
    background-size: cover;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.container {
    display: flex;
    width: 100%;
    align-items: center;
    margin-top: -5px;
    justify-content: center;
    text-align: center;
    background-size: cover;
    background-position: center;
    padding: 50px 20px;
    margin-bottom: 40px;
    position: relative;
}

.logoDDT {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 600px;
}

.card {
    background-color: white;
    width: 1081px;
    height: 731px;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0px 4px 17.5px 23px rgba(0, 0, 0, 0.13);
}

.logo img {
    max-width: 250px;
    height: auto;
    margin-bottom: 1rem;
}

.contentContainer {
    display: flex;
    align-items: center;
    justify-content: center;
}

h1 {
    font-size: 45px;
    color: #1A0707;
    font-weight: 600;
    margin-top: 10px;
    margin-bottom: 20px;
     font-family: "Poppins", sans-serif;

}

p {
    font-size: 28px;
    color: #3C3B3B;
    line-height: 100%;
    font-weight: 500;
    letter-spacing: 0%;
     font-family: "Poppins", sans-serif;
}

.btn {
    width: 365px;
    height: 103px;
    padding: 15px 40px;
    margin-top: 35px;
    background-color: #25D366;
    color: white;
    font-weight: bold;
    border-radius: 19px;
    text-decoration: none;
    border: none;
    font-size: 30px;
    transition: background-color 0.3s ease, transform 0.4s ease;
    cursor: pointer;
    display: flex;
    font-family: "Poppins", sans-serif;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn span {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn:hover {
    background-color: #27ae60;
}

a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    color: white;
}

.whatsappImg {
    width: 24px;
    height: 24px;
}

.divLogo {
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 768px) {
    .card {
        width: 306px;
        height: 396px;
        padding: 24px 20px;
        margin: 0 auto;
    }

    .divLogo {
        margin-top: 25px;
    }

    .container {
        padding: 30px 10px;
        justify-content: center;
        align-items: center;
    }

    h1 {
        font-size: 23px;
        letter-spacing: 0%;
        margin-top: 25px;
    }

    p {
        font-size: 14px;
        padding: 0;
        top: 371px;
    }

    .btn {
        width: 218.74px;
        height: 61.73px;
        font-size: 17.98px;
        border-radius: 11.39px;
        padding: 12px 20px;
        top: 438px;
        flex-wrap: nowrap;
    }

    .btn svg {
        width: 24px;
        height: 24px;
    }

    .logoDDT svg {
        width: 100%;
        height: auto;
    }

}