#brdwa-root *,
#brdwa-root *::before,
#brdwa-root *::after {
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

#brdwa-root {
    margin: 0;
    padding: 0;
}

/* Mesmo comportamento de entrada/saída da referência da Pluggy:
   opacity + translateY, sem overlay escuro. */
#brdwa-popup {
    position: fixed;
    bottom: 96px;
    right: 15px;
    width: 300px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, .16);
    z-index: 100000000;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(10px);
    transition:
        opacity .2s ease,
        transform .2s ease,
        visibility 0s linear .2s;
    will-change: opacity, transform;
}

#brdwa-popup.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
    transition:
        opacity .2s ease,
        transform .2s ease,
        visibility 0s linear 0s;
}

#brdwa-popup h3 {
    font-size: 15px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 4px;
    padding: 0;
    line-height: 1.4;
}

#brdwa-popup p {
    font-size: 13px;
    color: #777;
    margin: 0 0 14px;
    padding: 0;
    line-height: 1.4;
}

#brdwa-close {
    position: absolute;
    top: 12px;
    right: 14px;
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: #bbb;
    line-height: 1;
    padding: 0;
    width: auto;
    min-width: 0;
}

#brdwa-close:hover {
    color: #888;
    background: none;
}

#brdwa-email {
    width: 100%;
    padding: 10px 12px;
    border: 1.5px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    color: #1a1a1a;
    outline: none;
    margin: 0 0 8px;
    background: #fff;
    min-height: 42px;
    line-height: 20px;
    transition: border-color .2s;
    box-shadow: none;
}

#brdwa-email:focus {
    border-color: #25D366;
    box-shadow: none;
}

#brdwa-phone-wrap {
    display: flex;
    align-items: center;
    border: 1.5px solid #e0e0e0;
    border-radius: 8px;
    overflow: visible;
    transition: border-color .2s;
    position: relative;
    background: #fff;
}

#brdwa-phone-wrap:focus-within {
    border-color: #25D366;
}

#brdwa-phone-wrap.error {
    border-color: #e53e3e;
}

#brdwa-phone {
    border: none;
    outline: none;
    padding: 10px 12px;
    font-size: 14px;
    color: #1a1a1a;
    width: 100%;
    min-width: 0;
    min-height: 40px;
    background: transparent;
    border-radius: 0 8px 8px 0;
    line-height: 20px;
    box-shadow: none;
    margin: 0;
}

#brdwa-phone:focus {
    box-shadow: none;
}

#brdwa-ddi-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 0 10px;
    background: #f5f5f5;
    border: none;
    border-right: 1.5px solid #e0e0e0;
    height: 40px;
    font-size: 13px;
    color: #444;
    cursor: pointer;
    white-space: nowrap;
    flex-shrink: 0;
    border-radius: 6px 0 0 6px;
    outline: none;
    width: auto;
    min-width: 0;
}

#brdwa-ddi-btn:hover {
    background: #ececec;
    color: #444;
}

#brdwa-ddi-flag {
    font-size: 18px;
    line-height: 1;
}

#brdwa-ddi-code {
    font-size: 12px;
    color: #666;
}

#brdwa-ddi-arrow {
    font-size: 9px;
    color: #999;
    margin-left: 1px;
}

#brdwa-ddi-list {
    position: absolute;
    bottom: calc(100% + 4px);
    left: 0;
    width: 220px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, .16);
    z-index: 100000001;
    max-height: 200px;
    overflow-y: auto;
    display: none;
    padding: 0;
    margin: 0;
}

#brdwa-ddi-list.open {
    display: block;
}

#brdwa-ddi-list li {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    cursor: pointer;
    font-size: 13px;
    color: #1a1a1a;
    transition: background .15s;
    margin: 0;
}

#brdwa-ddi-list li:hover {
    background: #f5f5f5;
}

#brdwa-ddi-list li.selected {
    background: #f0fdf4;
    font-weight: 600;
}

#brdwa-ddi-list li .flag {
    font-size: 18px;
}

#brdwa-ddi-list li .code {
    color: #888;
    margin-left: auto;
    font-size: 12px;
}

#brdwa-errmsg {
    color: #e53e3e;
    font-size: 12px;
    margin-top: 5px;
    display: none;
    line-height: 1.4;
}

#brdwa-submit {
    width: 100%;
    margin-top: 10px;
    padding: 12px;
    min-height: 44px;
    background: #25D366;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background .2s;
    line-height: 20px;
}

#brdwa-submit:hover {
    background: #1db954;
    color: #fff;
}

#brdwa-submit:disabled {
    background: #a0e8bc;
    cursor: not-allowed;
}

.brdwa-wa-icon {
    width: 18px;
    height: 18px;
    display: inline-block;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347m-5.421 7.403h-.004a9.87 9.87 0 01-5.031-1.378l-.361-.214-3.741.982.998-3.648-.235-.374a9.86 9.86 0 01-1.51-5.26c.001-5.45 4.436-9.884 9.888-9.884 2.64 0 5.122 1.03 6.988 2.898a9.825 9.825 0 012.893 6.994c-.003 5.45-4.437 9.884-9.885 9.884m8.413-18.297A11.815 11.815 0 0012.05 0C5.495 0 .16 5.335.157 11.892c0 2.096.547 4.142 1.588 5.945L.057 24l6.305-1.654a11.882 11.882 0 005.683 1.448h.005c6.554 0 11.89-5.335 11.893-11.893a11.821 11.821 0 00-3.48-8.413z'/%3E%3C/svg%3E");
}

@media (max-width: 480px) {
    #brdwa-popup {
        width: auto;
        left: 16px;
        right: 16px;
        bottom: 94px;
    }
}

@media (prefers-reduced-motion: reduce) {
    #brdwa-popup {
        transition-duration: .01ms;
    }
}
