.contactos_dardebaja_boton {
    display: block;
    position: relative;
    padding: 14px 60px;
    background: var(--rojizomagenta);
    /* Minimalist 3D gradient effect */
    background: linear-gradient(
        to bottom,
        #f01a4a 0%,
        #e30039 50%,
        #d10033 100%
    );
    color: #fff;
    font-family: "Nunito", "Noto Sans", sans-serif;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.5px;    
    border-radius: 12px;
    margin: 30px auto;
    border: none;
    outline: none;    
    /* Minimalist 3D shadow effect */
    box-shadow: 
        0 4px 12px rgba(227, 0, 57, 0.3),
        0 2px 4px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    /* Smooth transitions */
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    /* Prevent text selection */
    user-select: none;
    -webkit-user-select: none;
}

/* Hover state - subtle lift effect */
.contactos_dardebaja_boton:hover {    
    transform: scale(1.02);
    box-shadow: 
        0 6px 16px rgba(227, 0, 57, 0.4),
        0 3px 6px rgba(0, 0, 0, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
    background: linear-gradient(
        to bottom,
        #f31d4d 0%,
        #e5003b 50%,
        #d30035 100%
    );
}

/* Active state - pressed effect */
.contactos_dardebaja_boton:active {    
    box-shadow: 
        0 2px 6px rgba(227, 0, 57, 0.3),
        0 1px 2px rgba(0, 0, 0, 0.2),
        inset 0 2px 4px rgba(0, 0, 0, 0.15);
    background: linear-gradient(
        to bottom,
        #d10033 0%,
        #c5002f 50%,
        #b9002b 100%
    );
}

/* Focus state - accessibility */
.contactos_dardebaja_boton:focus {
    outline: 2px solid rgba(255, 255, 255, 0.6);
    outline-offset: 2px;
}

/* Disabled state */
.contactos_dardebaja_boton:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
    box-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}


.contactos_dardebaja_textarea {        
    min-height: 50px;
    max-height: 180px;   
    height: fit-content;
    field-sizing: content; 
}

.contactos_dardebaja_texto {
    display: block;
    width: 96%;
    max-width: 600px;
    margin: -10px auto 35px;
    padding: 12px 30px;    
    font-family: Poppins, "Noto Sans", sans-serif;
    font-size: 0.85rem;
    font-weight: 400;
    line-height: 1.6;
    color: #666;
    text-align: center;
    background-color: #f9f9f9;
    border-left: 3px solid var(--rojizomagenta);
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

