#db9_home {
    display: flex;
    min-height: calc(100vh - 91px);
    position: relative;
    overflow: hidden;
}

#db9_home::before {
    content: '';
    position: absolute;
    top: 20%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(183, 200, 138, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(60px);
    pointer-events: none;
    animation: db9_float 8s ease-in-out infinite;
}

@keyframes db9_float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-30px); }
}

#db9_cta {
    width: 35%;
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-top: 5%;
    animation: db9_fadeInUp 1s ease-out;
}

@keyframes db9_fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#db9_cta .db9_title {
    font-size: 4.2rem;
    color: var(--neutral-color-1);
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -0.02em;
}

#db9_cta .db9_title span {
    color: var(--color-6);
    position: relative;
    display: inline-block;
}

#db9_cta .db9_title span::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 8px;
    width: 100%;
    height: 12px;
    background: linear-gradient(90deg, var(--color-4) 0%, var(--color-6) 100%);
    opacity: 0.3;
    z-index: -1;
    border-radius: 4px;
}

#db9_cta .db9_description {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--neutral-color-2);
}

#db9_cta_buttons {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    animation: db9_fadeInUp 1s ease-out 0.3s both;
}

#db9_cta_buttons a {
    text-decoration: none;
    color: var(--neutral-color-1);
}

#db9_cta_buttons .db9_btn-default {
    position: relative;
    overflow: hidden;
}

#db9_cta_buttons .db9_btn-default::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;
}

#db9_cta_buttons .db9_btn-default:hover::before {
    left: 100%;
}

#db9_phone_button {
    display: flex;
    gap: 10px;
    align-items: center;
    background-color: var(--neutral-color-0);
    color: var(--neutral-color-1);
    padding: 12px 18px;
    font-weight: 600;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
    border-radius: 14px;
    text-decoration: none;
    border: 2px solid transparent;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

#db9_phone_button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(183, 200, 138, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

#db9_phone_button:hover::before {
    width: 300px;
    height: 300px;
}

#db9_phone_button:hover {
    border-color: var(--color-4);
    box-shadow: 0px 8px 30px rgba(233, 166, 160, 0.3);
    transform: translateY(-2px);
}

#db9_phone_button button {
    box-shadow: none;
    position: relative;
    z-index: 1;
}

#db9_banner {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 65%;
    z-index: 3;
    position: relative;
    animation: db9_fadeIn 1.2s ease-out 0.4s both;
}

.db9_banner-art {
    position: relative;
    width: clamp(520px, 42vw, 760px);
    height: clamp(380px, 32vw, 580px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.db9_banner-art::before {
    content: '';
    position: absolute;
    width: 92%;
    height: 86%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(135deg, var(--color-2) 0%, rgba(183, 200, 138, 0.8) 100%);
    border-radius: 50% 40% 15% 20%;
    z-index: 1;
    animation: db9_shapeFloat 6s ease-in-out infinite;
}

.db9_banner-art::after {
    content: '';
    position: absolute;
    inset: 4%;
    border-radius: 50% 40% 15% 20%;
    background: linear-gradient(45deg, var(--color-4), var(--color-6));
    opacity: 0.28;
    filter: blur(22px);
    z-index: 0;
    pointer-events: none;
}

@keyframes db9_fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

#db9_banner img {
    height: auto;
    width: auto;
    max-width: 72%;
    max-height: 92%;
    object-fit: contain;
    filter: drop-shadow(0px 10px 35px rgba(0, 0, 0, 0.2));
    position: relative;
    z-index: 2;
    margin-bottom: 0;
    transition: transform 0.5s ease;
}

#db9_banner img:hover {
    transform: scale(1.02);
}

@media screen and (min-width: 1280px) {
    /*
        Em telas grandes, o banner centralizado cria muito "vazio" no meio.
        Solução: alinhar o banner à direita (como o header) e puxar o CTA um pouco
        para o centro, mantendo os dois lados mais equilibrados.
    */
    #db9_home {
        /* Ajuste apenas de altura no desktop (sem mexer no alinhamento horizontal aprovado) */
        min-height: clamp(620px, calc(100vh - 91px), 760px);
        padding-top: clamp(40px, 4vh, 64px);
        padding-bottom: clamp(40px, 4vh, 64px);
        align-items: center;
    }

    #db9_cta {
        width: 42%;
        padding-left: clamp(0px, 2.8vw, 72px);
        margin-top: 0;
    }

    #db9_banner {
        width: 58%;
    }

    .db9_banner-art {
        width: clamp(540px, 38vw, 780px);
        height: clamp(360px, 28vw, 540px);
    }
}

@keyframes db9_shapeFloat {
    0%, 100% { 
        transform: translate(-50%, -50%) rotate(0deg);
        border-radius: 50% 40% 15% 20%;
    }
    50% { 
        transform: translate(-50%, -52%) rotate(2deg);
        border-radius: 45% 45% 20% 15%;
    }
}

@media screen and (max-width: 1170px) {
    #db9_home {
        min-height: 100%;
        padding-top: 0px;
    }

    #db9_home::before {
        display: none;
    }

    #db9_banner,
    #db9_banner img,
    #db9_banner .db9_banner-art {
        display: none;
    }

    #db9_cta {
        width: 100%;
        text-align: center;
        align-items: center;
    }

    #db9_cta .db9_title {
        font-size: 3rem;
    }

    #db9_cta .db9_description {
        font-size: 1.05rem;
    }
}

@media screen and (max-width: 768px) {
    #db9_cta .db9_title {
        font-size: 2.5rem;
    }

    #db9_cta_buttons {
        flex-direction: column;
        width: 100%;
    }

    #db9_cta_buttons .db9_btn-default,
    #db9_phone_button {
        width: 100%;
        justify-content: center;
    }
}

@media screen and (max-width: 450px) {
    #db9_phone_button button {
        display: none;
    }

    #db9_cta .db9_title {
        font-size: 2rem;
    }
}